diff --git a/bases/behave_components/src/cljs/behave/components/inputs.cljs b/bases/behave_components/src/cljs/behave/components/inputs.cljs index dde50fbf..08bcdb92 100644 --- a/bases/behave_components/src/cljs/behave/components/inputs.cljs +++ b/bases/behave_components/src/cljs/behave/components/inputs.cljs @@ -173,7 +173,7 @@ (defn text-input [{:keys [disabled? error? error-msg focused? id label name on-blur on-change on-focus - placeholder value value-atom default-value on-key-press]}] + placeholder value value-atom default-value on-key-press background font-color]}] [:div {:class ["input-text" (when error? "input-text--error") (when disabled? "input-text--disabled") @@ -188,6 +188,8 @@ :on-focus on-focus :placeholder placeholder :type "text"} + background (assoc :style {:background background}) + font-color (assoc-in [:style :color] font-color) on-change (assoc :on-change on-change) default-value (assoc :default-value default-value) value (assoc :value value) diff --git a/behave-lib/CMakeLists.txt b/behave-lib/CMakeLists.txt index 40b1d16c..fd5f864e 100644 --- a/behave-lib/CMakeLists.txt +++ b/behave-lib/CMakeLists.txt @@ -98,6 +98,7 @@ SET(SOURCE behave-mirror/src/behave/randthread.cpp behave-mirror/src/behave/relativeHumidity.cpp behave-mirror/src/behave/safety.cpp + behave-mirror/src/behave/safeSeparationDistanceCalculator.cpp behave-mirror/src/behave/slopeTool.cpp behave-mirror/src/behave/species_master_table.cpp behave-mirror/src/behave/spot.cpp @@ -154,6 +155,7 @@ SET(HEADERS behave-mirror/src/behave/randthread.h behave-mirror/src/behave/relativeHumidity.h behave-mirror/src/behave/safety.h + behave-mirror/src/behave/safeSeparationDistanceCalculator.h behave-mirror/src/behave/slopeTool.h behave-mirror/src/behave/species_master_table.h behave-mirror/src/behave/spot.h diff --git a/behave-lib/behave-mirror b/behave-lib/behave-mirror index 41b60ed2..a0cd7245 160000 --- a/behave-lib/behave-mirror +++ b/behave-lib/behave-mirror @@ -1 +1 @@ -Subproject commit 41b60ed2ad969f685b83abda131e0fa3e513afd7 +Subproject commit a0cd7245cf512ee8a065e9201d0b2662ea3a77a4 diff --git a/behave-lib/include/cpp/emscripten/enums.cpp b/behave-lib/include/cpp/emscripten/enums.cpp index 581f7087..0cba9cac 100644 --- a/behave-lib/include/cpp/emscripten/enums.cpp +++ b/behave-lib/include/cpp/emscripten/enums.cpp @@ -83,3 +83,9 @@ typedef FDFMToolTimeOfDayIndex::TimeOfDayIndexEnum FDFMToolTimeOfDayIndex_TimeOf // slopeTool.h typedef RepresentativeFraction::RepresentativeFractionEnum RepresentativeFraction_RepresentativeFractionEnum; typedef HorizontalDistanceIndex::HorizontalDistanceIndexEnum HorizontalDistanceIndex_HorizontalDistanceIndexEnum; + +// SafeSeparationDistanceCalculator.h +typedef BurningCondition::BurningConditionEnum BurningCondition_BurningConditionEnum; +typedef SlopeClass::SlopeClassEnum SlopeClass_SlopeClassEnum; +typedef SpeedClass::SpeedClassEnum SpeedClass_SpeedClassEnum; +typedef SafetyCondition::SafetyConditionEnum SafetyCondition_SafetyConditionEnum; diff --git a/behave-lib/include/cpp/emscripten/glue.cpp b/behave-lib/include/cpp/emscripten/glue.cpp index 93f76b11..308318ac 100644 --- a/behave-lib/include/cpp/emscripten/glue.cpp +++ b/behave-lib/include/cpp/emscripten/glue.cpp @@ -1,35 +1,34 @@ #include +#include -EM_JS_DEPS(webidl_binder, "$intArrayFromString"); +EM_JS_DEPS(webidl_binder, "$intArrayFromString,$UTF8ToString,$alignMemory,$addOnInit"); extern "C" { -// Not using size_t for array indices as the values used by the javascript code are signed. +// Define custom allocator functions that we can force export using +// EMSCRIPTEN_KEEPALIVE. This avoids all webidl users having to add +// malloc/free to -sEXPORTED_FUNCTIONS. +EMSCRIPTEN_KEEPALIVE void webidl_free(void* p) { free(p); } +EMSCRIPTEN_KEEPALIVE void* webidl_malloc(size_t len) { return malloc(len); } -EM_JS(void, array_bounds_check_error, (size_t idx, size_t size), { - throw 'Array index ' + idx + ' out of bounds: [0,' + size + ')'; -}); -void array_bounds_check(const int array_size, const int array_idx) { - if (array_idx < 0 || array_idx >= array_size) { - array_bounds_check_error(array_idx, array_size); - } -} +// Interface: VoidPtr -// VoidPtr void EMSCRIPTEN_KEEPALIVE emscripten_bind_VoidPtr___destroy___0(void** self) { delete self; } -// DoublePtr +// Interface: DoublePtr + void EMSCRIPTEN_KEEPALIVE emscripten_bind_DoublePtr___destroy___0(DoublePtr* self) { delete self; } -// BoolVector +// Interface: BoolVector + BoolVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_BoolVector_BoolVector_0() { return new BoolVector(); @@ -59,7 +58,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_BoolVector___destroy___0(BoolVector* s delete self; } -// CharVector +// Interface: CharVector + CharVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_CharVector_CharVector_0() { return new CharVector(); @@ -89,7 +89,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_CharVector___destroy___0(CharVector* s delete self; } -// IntVector +// Interface: IntVector + IntVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_IntVector_IntVector_0() { return new IntVector(); @@ -119,7 +120,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_IntVector___destroy___0(IntVector* sel delete self; } -// DoubleVector +// Interface: DoubleVector + DoubleVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_DoubleVector_DoubleVector_0() { return new DoubleVector(); @@ -149,7 +151,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_DoubleVector___destroy___0(DoubleVecto delete self; } -// SpeciesMasterTableRecordVector +// Interface: SpeciesMasterTableRecordVector + SpeciesMasterTableRecordVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0() { return new SpeciesMasterTableRecordVector(); @@ -179,245 +182,263 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTableRecordVector___destr delete self; } -// AreaUnits +// Interface: AreaUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits_toBaseUnits_2(AreaUnits* self, double value, AreaUnits_AreaUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits_toBaseUnits_2(double value, AreaUnits_AreaUnitsEnum units) { + return AreaUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits_fromBaseUnits_2(AreaUnits* self, double value, AreaUnits_AreaUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits_fromBaseUnits_2(double value, AreaUnits_AreaUnitsEnum units) { + return AreaUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits___destroy___0(AreaUnits* self) { delete self; } -// BasalAreaUnits +// Interface: BasalAreaUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits_toBaseUnits_2(BasalAreaUnits* self, double value, BasalAreaUnits_BasalAreaUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits_toBaseUnits_2(double value, BasalAreaUnits_BasalAreaUnitsEnum units) { + return BasalAreaUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits_fromBaseUnits_2(BasalAreaUnits* self, double value, BasalAreaUnits_BasalAreaUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits_fromBaseUnits_2(double value, BasalAreaUnits_BasalAreaUnitsEnum units) { + return BasalAreaUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits___destroy___0(BasalAreaUnits* self) { delete self; } -// FractionUnits +// Interface: FractionUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits_toBaseUnits_2(FractionUnits* self, double value, FractionUnits_FractionUnitsEnum units) { - return self->toBaseUnits(value, units); + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits_toBaseUnits_2(double value, FractionUnits_FractionUnitsEnum units) { + return FractionUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits_fromBaseUnits_2(FractionUnits* self, double value, FractionUnits_FractionUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits_fromBaseUnits_2(double value, FractionUnits_FractionUnitsEnum units) { + return FractionUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits___destroy___0(FractionUnits* self) { delete self; } -// LengthUnits +// Interface: LengthUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits_toBaseUnits_2(LengthUnits* self, double value, LengthUnits_LengthUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits_toBaseUnits_2(double value, LengthUnits_LengthUnitsEnum units) { + return LengthUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits_fromBaseUnits_2(LengthUnits* self, double value, LengthUnits_LengthUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits_fromBaseUnits_2(double value, LengthUnits_LengthUnitsEnum units) { + return LengthUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits___destroy___0(LengthUnits* self) { delete self; } -// LoadingUnits +// Interface: LoadingUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits_toBaseUnits_2(LoadingUnits* self, double value, LoadingUnits_LoadingUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits_toBaseUnits_2(double value, LoadingUnits_LoadingUnitsEnum units) { + return LoadingUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits_fromBaseUnits_2(LoadingUnits* self, double value, LoadingUnits_LoadingUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits_fromBaseUnits_2(double value, LoadingUnits_LoadingUnitsEnum units) { + return LoadingUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits___destroy___0(LoadingUnits* self) { delete self; } -// SurfaceAreaToVolumeUnits +// Interface: SurfaceAreaToVolumeUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(SurfaceAreaToVolumeUnits* self, double value, SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum units) { - return self->toBaseUnits(value, units); + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(double value, SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum units) { + return SurfaceAreaToVolumeUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(SurfaceAreaToVolumeUnits* self, double value, SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(double value, SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum units) { + return SurfaceAreaToVolumeUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0(SurfaceAreaToVolumeUnits* self) { delete self; } -// SpeedUnits +// Interface: SpeedUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits_toBaseUnits_2(SpeedUnits* self, double value, SpeedUnits_SpeedUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits_toBaseUnits_2(double value, SpeedUnits_SpeedUnitsEnum units) { + return SpeedUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits_fromBaseUnits_2(SpeedUnits* self, double value, SpeedUnits_SpeedUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits_fromBaseUnits_2(double value, SpeedUnits_SpeedUnitsEnum units) { + return SpeedUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits___destroy___0(SpeedUnits* self) { delete self; } -// PressureUnits +// Interface: PressureUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits_toBaseUnits_2(PressureUnits* self, double value, PressureUnits_PressureUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits_toBaseUnits_2(double value, PressureUnits_PressureUnitsEnum units) { + return PressureUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits_fromBaseUnits_2(PressureUnits* self, double value, PressureUnits_PressureUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits_fromBaseUnits_2(double value, PressureUnits_PressureUnitsEnum units) { + return PressureUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits___destroy___0(PressureUnits* self) { delete self; } -// SlopeUnits +// Interface: SlopeUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits_toBaseUnits_2(SlopeUnits* self, double value, SlopeUnits_SlopeUnitsEnum units) { - return self->toBaseUnits(value, units); + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits_toBaseUnits_2(double value, SlopeUnits_SlopeUnitsEnum units) { + return SlopeUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits_fromBaseUnits_2(SlopeUnits* self, double value, SlopeUnits_SlopeUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits_fromBaseUnits_2(double value, SlopeUnits_SlopeUnitsEnum units) { + return SlopeUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits___destroy___0(SlopeUnits* self) { delete self; } -// DensityUnits +// Interface: DensityUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits_toBaseUnits_2(DensityUnits* self, double value, DensityUnits_DensityUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits_toBaseUnits_2(double value, DensityUnits_DensityUnitsEnum units) { + return DensityUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits_fromBaseUnits_2(DensityUnits* self, double value, DensityUnits_DensityUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits_fromBaseUnits_2(double value, DensityUnits_DensityUnitsEnum units) { + return DensityUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits___destroy___0(DensityUnits* self) { delete self; } -// HeatOfCombustionUnits +// Interface: HeatOfCombustionUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(HeatOfCombustionUnits* self, double value, HeatOfCombustionUnits_HeatOfCombustionUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(double value, HeatOfCombustionUnits_HeatOfCombustionUnitsEnum units) { + return HeatOfCombustionUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(HeatOfCombustionUnits* self, double value, HeatOfCombustionUnits_HeatOfCombustionUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(double value, HeatOfCombustionUnits_HeatOfCombustionUnitsEnum units) { + return HeatOfCombustionUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits___destroy___0(HeatOfCombustionUnits* self) { delete self; } -// HeatSinkUnits +// Interface: HeatSinkUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits_toBaseUnits_2(HeatSinkUnits* self, double value, HeatSinkUnits_HeatSinkUnitsEnum units) { - return self->toBaseUnits(value, units); + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits_toBaseUnits_2(double value, HeatSinkUnits_HeatSinkUnitsEnum units) { + return HeatSinkUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits_fromBaseUnits_2(HeatSinkUnits* self, double value, HeatSinkUnits_HeatSinkUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits_fromBaseUnits_2(double value, HeatSinkUnits_HeatSinkUnitsEnum units) { + return HeatSinkUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits___destroy___0(HeatSinkUnits* self) { delete self; } -// HeatPerUnitAreaUnits +// Interface: HeatPerUnitAreaUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(HeatPerUnitAreaUnits* self, double value, HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(double value, HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum units) { + return HeatPerUnitAreaUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(HeatPerUnitAreaUnits* self, double value, HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(double value, HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum units) { + return HeatPerUnitAreaUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits___destroy___0(HeatPerUnitAreaUnits* self) { delete self; } -// HeatSourceAndReactionIntensityUnits +// Interface: HeatSourceAndReactionIntensityUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(HeatSourceAndReactionIntensityUnits* self, double value, HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(double value, HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum units) { + return HeatSourceAndReactionIntensityUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(HeatSourceAndReactionIntensityUnits* self, double value, HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(double value, HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum units) { + return HeatSourceAndReactionIntensityUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0(HeatSourceAndReactionIntensityUnits* self) { delete self; } -// FirelineIntensityUnits +// Interface: FirelineIntensityUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(FirelineIntensityUnits* self, double value, FirelineIntensityUnits_FirelineIntensityUnitsEnum units) { - return self->toBaseUnits(value, units); + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(double value, FirelineIntensityUnits_FirelineIntensityUnitsEnum units) { + return FirelineIntensityUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(FirelineIntensityUnits* self, double value, FirelineIntensityUnits_FirelineIntensityUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(double value, FirelineIntensityUnits_FirelineIntensityUnitsEnum units) { + return FirelineIntensityUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits___destroy___0(FirelineIntensityUnits* self) { delete self; } -// TemperatureUnits +// Interface: TemperatureUnits + -double EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits_toBaseUnits_2(TemperatureUnits* self, double value, TemperatureUnits_TemperatureUnitsEnum units) { - return self->toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits_toBaseUnits_2(double value, TemperatureUnits_TemperatureUnitsEnum units) { + return TemperatureUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits_fromBaseUnits_2(TemperatureUnits* self, double value, TemperatureUnits_TemperatureUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits_fromBaseUnits_2(double value, TemperatureUnits_TemperatureUnitsEnum units) { + return TemperatureUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits___destroy___0(TemperatureUnits* self) { delete self; } -// TimeUnits +// Interface: TimeUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits_toBaseUnits_2(TimeUnits* self, double value, TimeUnits_TimeUnitsEnum units) { - return self->toBaseUnits(value, units); + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits_toBaseUnits_2(double value, TimeUnits_TimeUnitsEnum units) { + return TimeUnits::toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits_fromBaseUnits_2(TimeUnits* self, double value, TimeUnits_TimeUnitsEnum units) { - return self->fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits_fromBaseUnits_2(double value, TimeUnits_TimeUnitsEnum units) { + return TimeUnits::fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits___destroy___0(TimeUnits* self) { delete self; } -// FireSize +// Interface: FireSize + double EMSCRIPTEN_KEEPALIVE emscripten_bind_FireSize_getBackingSpreadRate_1(FireSize* self, SpeedUnits_SpeedUnitsEnum spreadRateUnits) { return self->getBackingSpreadRate(spreadRateUnits); @@ -475,7 +496,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_FireSize___destroy___0(FireSize* self) delete self; } -// SIGContainAdapter +// Interface: SIGContainAdapter + SIGContainAdapter* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainAdapter_SIGContainAdapter_0() { return new SIGContainAdapter(); @@ -486,12 +508,12 @@ ContainStatus_ContainStatusEnum EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainA } DoubleVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainAdapter_getFirePerimeterX_0(SIGContainAdapter* self) { - static DoubleVector temp; + static thread_local DoubleVector temp; return (temp = self->getFirePerimeterX(), &temp); } DoubleVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainAdapter_getFirePerimeterY_0(SIGContainAdapter* self) { - static DoubleVector temp; + static thread_local DoubleVector temp; return (temp = self->getFirePerimeterY(), &temp); } @@ -659,7 +681,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainAdapter___destroy___0(SIGCon delete self; } -// SIGIgnite +// Interface: SIGIgnite + SIGIgnite* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGIgnite_SIGIgnite_0() { return new SIGIgnite(); @@ -753,7 +776,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGIgnite___destroy___0(SIGIgnite* sel delete self; } -// SIGMoistureScenarios +// Interface: SIGMoistureScenarios + SIGMoistureScenarios* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0() { return new SIGMoistureScenarios(); @@ -831,7 +855,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGMoistureScenarios___destroy___0(SIG delete self; } -// SIGSpot +// Interface: SIGSpot + SIGSpot* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSpot_SIGSpot_0() { return new SIGSpot(); @@ -1057,7 +1082,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSpot___destroy___0(SIGSpot* self) { delete self; } -// SIGFuelModels +// Interface: SIGFuelModels + SIGFuelModels* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGFuelModels_SIGFuelModels_0() { return new SIGFuelModels(); @@ -1155,7 +1181,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGFuelModels___destroy___0(SIGFuelMod delete self; } -// SIGSurface +// Interface: SIGSurface + SIGSurface* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSurface_SIGSurface_1(SIGFuelModels* fuelModels) { return new SIGSurface(*fuelModels); @@ -2033,7 +2060,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSurface___destroy___0(SIGSurface* s delete self; } -// PalmettoGallberry +// Interface: PalmettoGallberry + PalmettoGallberry* EMSCRIPTEN_KEEPALIVE emscripten_bind_PalmettoGallberry_PalmettoGallberry_0() { return new PalmettoGallberry(); @@ -2123,7 +2151,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_PalmettoGallberry___destroy___0(Palmet delete self; } -// WesternAspen +// Interface: WesternAspen + WesternAspen* EMSCRIPTEN_KEEPALIVE emscripten_bind_WesternAspen_WesternAspen_0() { return new WesternAspen(); @@ -2193,7 +2222,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_WesternAspen___destroy___0(WesternAspe delete self; } -// SIGCrown +// Interface: SIGCrown + SIGCrown* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGCrown_SIGCrown_1(SIGFuelModels* fuelModels) { return new SIGCrown(*fuelModels); @@ -2643,7 +2673,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGCrown___destroy___0(SIGCrown* self) delete self; } -// SpeciesMasterTableRecord +// Interface: SpeciesMasterTableRecord + SpeciesMasterTableRecord* EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0() { return new SpeciesMasterTableRecord(); @@ -2657,7 +2688,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTableRecord___destroy___0 delete self; } -// SpeciesMasterTable +// Interface: SpeciesMasterTable + SpeciesMasterTable* EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0() { return new SpeciesMasterTable(); @@ -2683,7 +2715,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTable___destroy___0(Speci delete self; } -// SIGMortality +// Interface: SIGMortality + SIGMortality* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGMortality_SIGMortality_1(SpeciesMasterTable* speciesMasterTable) { return new SIGMortality(*speciesMasterTable); @@ -3089,7 +3122,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGMortality___destroy___0(SIGMortalit delete self; } -// WindSpeedUtility +// Interface: WindSpeedUtility + WindSpeedUtility* EMSCRIPTEN_KEEPALIVE emscripten_bind_WindSpeedUtility_WindSpeedUtility_0() { return new WindSpeedUtility(); @@ -3107,7 +3141,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_WindSpeedUtility___destroy___0(WindSpe delete self; } -// SIGFineDeadFuelMoistureTool +// Interface: SIGFineDeadFuelMoistureTool + SIGFineDeadFuelMoistureTool* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0() { return new SIGFineDeadFuelMoistureTool(); @@ -3201,7 +3236,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGFineDeadFuelMoistureTool___destroy_ delete self; } -// SIGSlopeTool +// Interface: SIGSlopeTool + SIGSlopeTool* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSlopeTool_SIGSlopeTool_0() { return new SIGSlopeTool(); @@ -3351,7 +3387,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSlopeTool___destroy___0(SIGSlopeToo delete self; } -// VaporPressureDeficitCalculator +// Interface: VaporPressureDeficitCalculator + VaporPressureDeficitCalculator* EMSCRIPTEN_KEEPALIVE emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0() { return new VaporPressureDeficitCalculator(); @@ -3377,7 +3414,8 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_VaporPressureDeficitCalculator___destr delete self; } -// RelativeHumidityTool +// Interface: RelativeHumidityTool + RelativeHumidityTool* EMSCRIPTEN_KEEPALIVE emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0() { return new RelativeHumidityTool(); @@ -3427,7 +3465,66 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_RelativeHumidityTool___destroy___0(Rel delete self; } -// AreaUnits_AreaUnitsEnum +// Interface: SafeSeparationDistanceCalculator + + +SafeSeparationDistanceCalculator* EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0() { + return new SafeSeparationDistanceCalculator(); +} + +void EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_calculate_0(SafeSeparationDistanceCalculator* self) { + self->calculate(); +} + +BurningCondition_BurningConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0(SafeSeparationDistanceCalculator* self) { + return self->getBurningCondition(); +} + +SlopeClass_SlopeClassEnum EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0(SafeSeparationDistanceCalculator* self) { + return self->getSlopeClass(); +} + +SpeedClass_SpeedClassEnum EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0(SafeSeparationDistanceCalculator* self) { + return self->getSpeedClass(); +} + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1(SafeSeparationDistanceCalculator* self, LengthUnits_LengthUnitsEnum lengthUnits) { + return self->getSafeSeparationDistance(lengthUnits); +} + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1(SafeSeparationDistanceCalculator* self, AreaUnits_AreaUnitsEnum areaUnits) { + return self->getSafetyZoneSize(areaUnits); +} + +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1(SafeSeparationDistanceCalculator* self, LengthUnits_LengthUnitsEnum lengthUnits) { + return self->getVegetationHeight(lengthUnits); +} + +SafetyCondition_SafetyConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0(SafeSeparationDistanceCalculator* self) { + return self->getSafetyCondition(); +} + +void EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1(SafeSeparationDistanceCalculator* self, BurningCondition_BurningConditionEnum condition) { + self->setBurningCondition(condition); +} + +void EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1(SafeSeparationDistanceCalculator* self, SlopeClass_SlopeClassEnum slope) { + self->setSlopeClass(slope); +} + +void EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1(SafeSeparationDistanceCalculator* self, SpeedClass_SpeedClassEnum speed) { + self->setSpeedClass(speed); +} + +void EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2(SafeSeparationDistanceCalculator* self, double height, LengthUnits_LengthUnitsEnum lengthUnits) { + self->setVegetationHeight(height, lengthUnits); +} + +void EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator___destroy___0(SafeSeparationDistanceCalculator* self) { + delete self; +} + +// $AreaUnits_AreaUnitsEnum AreaUnits_AreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet() { return AreaUnits::SquareFeet; } @@ -3447,7 +3544,7 @@ AreaUnits_AreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_AreaUnits_AreaUnits return AreaUnits::SquareKilometers; } -// BasalAreaUnits_BasalAreaUnitsEnum +// $BasalAreaUnits_BasalAreaUnitsEnum BasalAreaUnits_BasalAreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre() { return BasalAreaUnits::SquareFeetPerAcre; } @@ -3455,7 +3552,7 @@ BasalAreaUnits_BasalAreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_BasalArea return BasalAreaUnits::SquareMetersPerHectare; } -// FractionUnits_FractionUnitsEnum +// $FractionUnits_FractionUnitsEnum FractionUnits_FractionUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction() { return FractionUnits::Fraction; } @@ -3463,7 +3560,7 @@ FractionUnits_FractionUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FractionUni return FractionUnits::Percent; } -// LengthUnits_LengthUnitsEnum +// $LengthUnits_LengthUnitsEnum LengthUnits_LengthUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LengthUnits_LengthUnitsEnum_Feet() { return LengthUnits::Feet; } @@ -3489,7 +3586,7 @@ LengthUnits_LengthUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LengthUnits_Len return LengthUnits::Kilometers; } -// LoadingUnits_LoadingUnitsEnum +// $LoadingUnits_LoadingUnitsEnum LoadingUnits_LoadingUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot() { return LoadingUnits::PoundsPerSquareFoot; } @@ -3503,7 +3600,7 @@ LoadingUnits_LoadingUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LoadingUnits_ return LoadingUnits::KilogramsPerSquareMeter; } -// SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum +// $SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet() { return SurfaceAreaToVolumeUnits::SquareFeetOverCubicFeet; } @@ -3517,7 +3614,7 @@ SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum EMSCRIPTEN_KEEPALIVE emscr return SurfaceAreaToVolumeUnits::SquareCentimetersOverCubicCentimeters; } -// SpeedUnits_SpeedUnitsEnum +// $SpeedUnits_SpeedUnitsEnum SpeedUnits_SpeedUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute() { return SpeedUnits::FeetPerMinute; } @@ -3537,7 +3634,7 @@ SpeedUnits_SpeedUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedUnits_SpeedU return SpeedUnits::KilometersPerHour; } -// PressureUnits_PressureUnitsEnum +// $PressureUnits_PressureUnitsEnum PressureUnits_PressureUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal() { return PressureUnits::Pascal; } @@ -3566,7 +3663,7 @@ PressureUnits_PressureUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_PressureUni return PressureUnits::PoundPerSquareInch; } -// SlopeUnits_SlopeUnitsEnum +// $SlopeUnits_SlopeUnitsEnum SlopeUnits_SlopeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees() { return SlopeUnits::Degrees; } @@ -3574,7 +3671,7 @@ SlopeUnits_SlopeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeUnits_SlopeU return SlopeUnits::Percent; } -// DensityUnits_DensityUnitsEnum +// $DensityUnits_DensityUnitsEnum DensityUnits_DensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot() { return DensityUnits::PoundsPerCubicFoot; } @@ -3582,7 +3679,7 @@ DensityUnits_DensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_DensityUnits_ return DensityUnits::KilogramsPerCubicMeter; } -// HeatOfCombustionUnits_HeatOfCombustionUnitsEnum +// $HeatOfCombustionUnits_HeatOfCombustionUnitsEnum HeatOfCombustionUnits_HeatOfCombustionUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound() { return HeatOfCombustionUnits::BtusPerPound; } @@ -3590,7 +3687,7 @@ HeatOfCombustionUnits_HeatOfCombustionUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_ return HeatOfCombustionUnits::KilojoulesPerKilogram; } -// HeatSinkUnits_HeatSinkUnitsEnum +// $HeatSinkUnits_HeatSinkUnitsEnum HeatSinkUnits_HeatSinkUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot() { return HeatSinkUnits::BtusPerCubicFoot; } @@ -3598,7 +3695,7 @@ HeatSinkUnits_HeatSinkUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatSinkUni return HeatSinkUnits::KilojoulesPerCubicMeter; } -// HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum +// $HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot() { return HeatPerUnitAreaUnits::BtusPerSquareFoot; } @@ -3609,7 +3706,7 @@ HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_en return HeatPerUnitAreaUnits::KilowattSecondsPerSquareMeter; } -// HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum +// $HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute() { return HeatSourceAndReactionIntensityUnits::BtusPerSquareFootPerMinute; } @@ -3626,7 +3723,7 @@ HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum EMSC return HeatSourceAndReactionIntensityUnits::KilowattsPerSquareMeter; } -// FirelineIntensityUnits_FirelineIntensityUnitsEnum +// $FirelineIntensityUnits_FirelineIntensityUnitsEnum FirelineIntensityUnits_FirelineIntensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond() { return FirelineIntensityUnits::BtusPerFootPerSecond; } @@ -3643,7 +3740,7 @@ FirelineIntensityUnits_FirelineIntensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripte return FirelineIntensityUnits::KilowattsPerMeter; } -// TemperatureUnits_TemperatureUnitsEnum +// $TemperatureUnits_TemperatureUnitsEnum TemperatureUnits_TemperatureUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit() { return TemperatureUnits::Fahrenheit; } @@ -3654,7 +3751,7 @@ TemperatureUnits_TemperatureUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Tempe return TemperatureUnits::Kelvin; } -// TimeUnits_TimeUnitsEnum +// $TimeUnits_TimeUnitsEnum TimeUnits_TimeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes() { return TimeUnits::Minutes; } @@ -3665,7 +3762,7 @@ TimeUnits_TimeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_TimeUnits_TimeUnits return TimeUnits::Hours; } -// ContainTactic_ContainTacticEnum +// $ContainTactic_ContainTacticEnum ContainTactic_ContainTacticEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack() { return ContainTactic::HeadAttack; } @@ -3673,7 +3770,7 @@ ContainTactic_ContainTacticEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainTact return ContainTactic::RearAttack; } -// ContainStatus_ContainStatusEnum +// $ContainStatus_ContainStatusEnum ContainStatus_ContainStatusEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainStatus_ContainStatusEnum_Unreported() { return ContainStatus::Unreported; } @@ -3702,7 +3799,7 @@ ContainStatus_ContainStatusEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainStat return ContainStatus::TimeLimitExceeded; } -// ContainFlank_ContainFlankEnum +// $ContainFlank_ContainFlankEnum ContainFlank_ContainFlankEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank() { return ContainFlank::LeftFlank; } @@ -3716,7 +3813,7 @@ ContainFlank_ContainFlankEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainFlank_ return ContainFlank::NeitherFlank; } -// ContainMode +// $ContainMode ContainMode EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainMode_Default() { return ContainMode::Default; } @@ -3724,7 +3821,7 @@ ContainMode EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainMode_ComputeWithOptimalR return ContainMode::ComputeWithOptimalResource; } -// IgnitionFuelBedType_IgnitionFuelBedTypeEnum +// $IgnitionFuelBedType_IgnitionFuelBedTypeEnum IgnitionFuelBedType_IgnitionFuelBedTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter() { return IgnitionFuelBedType::PonderosaPineLitter; } @@ -3750,7 +3847,7 @@ IgnitionFuelBedType_IgnitionFuelBedTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum return IgnitionFuelBedType::PeatMoss; } -// LightningCharge_LightningChargeEnum +// $LightningCharge_LightningChargeEnum LightningCharge_LightningChargeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LightningCharge_LightningChargeEnum_Negative() { return LightningCharge::Negative; } @@ -3761,7 +3858,7 @@ LightningCharge_LightningChargeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Lightni return LightningCharge::Unknown; } -// SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum +// $SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED() { return SpotDownWindCanopyMode::CLOSED; } @@ -3769,7 +3866,7 @@ SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum EMSCRIPTEN_KEEPALIVE emscripte return SpotDownWindCanopyMode::OPEN; } -// SpotTreeSpecies_SpotTreeSpeciesEnum +// $SpotTreeSpecies_SpotTreeSpeciesEnum SpotTreeSpecies_SpotTreeSpeciesEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE() { return SpotTreeSpecies::ENGELMANN_SPRUCE; } @@ -3813,7 +3910,7 @@ SpotTreeSpecies_SpotTreeSpeciesEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotTre return SpotTreeSpecies::LOBLOLLY_PINE; } -// SpotFireLocation_SpotFireLocationEnum +// $SpotFireLocation_SpotFireLocationEnum SpotFireLocation_SpotFireLocationEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD() { return SpotFireLocation::MIDSLOPE_WINDWARD; } @@ -3827,7 +3924,7 @@ SpotFireLocation_SpotFireLocationEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotF return SpotFireLocation::RIDGE_TOP; } -// FuelLifeState_FuelLifeStateEnum +// $FuelLifeState_FuelLifeStateEnum FuelLifeState_FuelLifeStateEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead() { return FuelLifeState::Dead; } @@ -3835,7 +3932,7 @@ FuelLifeState_FuelLifeStateEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FuelLifeSta return FuelLifeState::Live; } -// FuelConstantsEnum_FuelConstantsEnum +// $FuelConstantsEnum_FuelConstantsEnum FuelConstantsEnum_FuelConstantsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates() { return FuelConstants::MaxLifeStates; } @@ -3855,7 +3952,7 @@ FuelConstantsEnum_FuelConstantsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FuelCon return FuelConstants::MaxFuelModels; } -// AspenFireSeverity_AspenFireSeverityEnum +// $AspenFireSeverity_AspenFireSeverityEnum AspenFireSeverity_AspenFireSeverityEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low() { return AspenFireSeverity::Low; } @@ -3863,7 +3960,7 @@ AspenFireSeverity_AspenFireSeverityEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Asp return AspenFireSeverity::Moderate; } -// ChaparralFuelType_ChaparralFuelTypeEnum +// $ChaparralFuelType_ChaparralFuelTypeEnum ChaparralFuelType_ChaparralFuelTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet() { return ChaparralFuelType::NotSet; } @@ -3874,7 +3971,7 @@ ChaparralFuelType_ChaparralFuelTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Cha return ChaparralFuelType::MixedBrush; } -// ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum +// $ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad() { return ChaparralFuelLoadInputMode::DirectFuelLoad; } @@ -3882,7 +3979,7 @@ ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum EMSCRIPTEN_KEEPALIVE e return ChaparralFuelLoadInputMode::FuelLoadFromDepthAndChaparralType; } -// MoistureInputMode_MoistureInputModeEnum +// $MoistureInputMode_MoistureInputModeEnum MoistureInputMode_MoistureInputModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass() { return MoistureInputMode::BySizeClass; } @@ -3899,7 +3996,7 @@ MoistureInputMode_MoistureInputModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Moi return MoistureInputMode::MoistureScenario; } -// MoistureClassInput_MoistureClassInputEnum +// $MoistureClassInput_MoistureClassInputEnum MoistureClassInput_MoistureClassInputEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour() { return MoistureClassInput::OneHour; } @@ -3922,7 +4019,7 @@ MoistureClassInput_MoistureClassInputEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_M return MoistureClassInput::LiveAggregate; } -// SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum +// $SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint() { return SurfaceFireSpreadDirectionMode::FromIgnitionPoint; } @@ -3930,7 +4027,7 @@ SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum EMSCRIPTEN_KEE return SurfaceFireSpreadDirectionMode::FromPerimeter; } -// TwoFuelModelsMethod_TwoFuelModelsMethodEnum +// $TwoFuelModelsMethod_TwoFuelModelsMethodEnum TwoFuelModelsMethod_TwoFuelModelsMethodEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod() { return TwoFuelModelsMethod::NoMethod; } @@ -3944,7 +4041,7 @@ TwoFuelModelsMethod_TwoFuelModelsMethodEnum EMSCRIPTEN_KEEPALIVE emscripten_enum return TwoFuelModelsMethod::TwoDimensional; } -// WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum +// $WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered() { return WindAdjustmentFactorShelterMethod::Unsheltered; } @@ -3952,7 +4049,7 @@ WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum EMSCRIPT return WindAdjustmentFactorShelterMethod::Sheltered; } -// WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum +// $WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput() { return WindAdjustmentFactorCalculationMethod::UserInput; } @@ -3963,7 +4060,7 @@ WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum return WindAdjustmentFactorCalculationMethod::DontUseCrownRatio; } -// WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum +// $WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope() { return WindAndSpreadOrientationMode::RelativeToUpslope; } @@ -3971,7 +4068,7 @@ WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum EMSCRIPTEN_KEEPALI return WindAndSpreadOrientationMode::RelativeToNorth; } -// WindHeightInputMode_WindHeightInputModeEnum +// $WindHeightInputMode_WindHeightInputModeEnum WindHeightInputMode_WindHeightInputModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame() { return WindHeightInputMode::DirectMidflame; } @@ -3982,7 +4079,7 @@ WindHeightInputMode_WindHeightInputModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum return WindHeightInputMode::TenMeter; } -// WindUpslopeAlignmentMode +// $WindUpslopeAlignmentMode WindUpslopeAlignmentMode EMSCRIPTEN_KEEPALIVE emscripten_enum_WindUpslopeAlignmentMode_NotAligned() { return WindUpslopeAlignmentMode::NotAligned; } @@ -3990,7 +4087,7 @@ WindUpslopeAlignmentMode EMSCRIPTEN_KEEPALIVE emscripten_enum_WindUpslopeAlignme return WindUpslopeAlignmentMode::Aligned; } -// SurfaceRunInDirectionOf +// $SurfaceRunInDirectionOf SurfaceRunInDirectionOf EMSCRIPTEN_KEEPALIVE emscripten_enum_SurfaceRunInDirectionOf_MaxSpread() { return SurfaceRunInDirectionOf::MaxSpread; } @@ -4001,7 +4098,7 @@ SurfaceRunInDirectionOf EMSCRIPTEN_KEEPALIVE emscripten_enum_SurfaceRunInDirecti return SurfaceRunInDirectionOf::HeadingBackingFlanking; } -// FireType_FireTypeEnum +// $FireType_FireTypeEnum FireType_FireTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FireType_FireTypeEnum_Surface() { return FireType::Surface; } @@ -4015,7 +4112,7 @@ FireType_FireTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FireType_FireTypeEnum return FireType::Crowning; } -// BeetleDamage +// $BeetleDamage BeetleDamage EMSCRIPTEN_KEEPALIVE emscripten_enum_BeetleDamage_not_set() { return BeetleDamage::not_set; } @@ -4026,7 +4123,7 @@ BeetleDamage EMSCRIPTEN_KEEPALIVE emscripten_enum_BeetleDamage_yes() { return BeetleDamage::yes; } -// CrownFireCalculationMethod +// $CrownFireCalculationMethod CrownFireCalculationMethod EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownFireCalculationMethod_rothermel() { return CrownFireCalculationMethod::rothermel; } @@ -4034,7 +4131,7 @@ CrownFireCalculationMethod EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownFireCalcula return CrownFireCalculationMethod::scott_and_reinhardt; } -// CrownDamageEquationCode +// $CrownDamageEquationCode CrownDamageEquationCode EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownDamageEquationCode_not_set() { return CrownDamageEquationCode::not_set; } @@ -4072,7 +4169,7 @@ CrownDamageEquationCode EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownDamageEquation return CrownDamageEquationCode::douglas_fir; } -// CrownDamageType +// $CrownDamageType CrownDamageType EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownDamageType_not_set() { return CrownDamageType::not_set; } @@ -4086,7 +4183,7 @@ CrownDamageType EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownDamageType_crown_kill( return CrownDamageType::crown_kill; } -// EquationType +// $EquationType EquationType EMSCRIPTEN_KEEPALIVE emscripten_enum_EquationType_not_set() { return EquationType::not_set; } @@ -4100,7 +4197,7 @@ EquationType EMSCRIPTEN_KEEPALIVE emscripten_enum_EquationType_crown_damage() { return EquationType::crown_damage; } -// FireSeverity +// $FireSeverity FireSeverity EMSCRIPTEN_KEEPALIVE emscripten_enum_FireSeverity_not_set() { return FireSeverity::not_set; } @@ -4111,7 +4208,7 @@ FireSeverity EMSCRIPTEN_KEEPALIVE emscripten_enum_FireSeverity_low() { return FireSeverity::low; } -// FlameLengthOrScorchHeightSwitch +// $FlameLengthOrScorchHeightSwitch FlameLengthOrScorchHeightSwitch EMSCRIPTEN_KEEPALIVE emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length() { return FlameLengthOrScorchHeightSwitch::flame_length; } @@ -4119,7 +4216,7 @@ FlameLengthOrScorchHeightSwitch EMSCRIPTEN_KEEPALIVE emscripten_enum_FlameLength return FlameLengthOrScorchHeightSwitch::scorch_height; } -// GACC +// $GACC GACC EMSCRIPTEN_KEEPALIVE emscripten_enum_GACC_NotSet() { return GACC::NotSet; } @@ -4151,7 +4248,7 @@ GACC EMSCRIPTEN_KEEPALIVE emscripten_enum_GACC_Southwest() { return GACC::Southwest; } -// RequiredFieldNames +// $RequiredFieldNames RequiredFieldNames EMSCRIPTEN_KEEPALIVE emscripten_enum_RequiredFieldNames_region() { return RequiredFieldNames::region; } @@ -4195,7 +4292,7 @@ RequiredFieldNames EMSCRIPTEN_KEEPALIVE emscripten_enum_RequiredFieldNames_num_i return RequiredFieldNames::num_inputs; } -// FDFMToolAspectIndex_AspectIndexEnum +// $FDFMToolAspectIndex_AspectIndexEnum FDFMToolAspectIndex_AspectIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH() { return FDFMToolAspectIndex::NORTH; } @@ -4209,7 +4306,7 @@ FDFMToolAspectIndex_AspectIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToo return FDFMToolAspectIndex::WEST; } -// FDFMToolDryBulbIndex_DryBulbIndexEnum +// $FDFMToolDryBulbIndex_DryBulbIndexEnum FDFMToolDryBulbIndex_DryBulbIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F() { return FDFMToolDryBulbIndex::TEN_TO_TWENTY_NINE_DEGREES_F; } @@ -4229,7 +4326,7 @@ FDFMToolDryBulbIndex_DryBulbIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMT return FDFMToolDryBulbIndex::GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F; } -// FDFMToolElevationIndex_ElevationIndexEnum +// $FDFMToolElevationIndex_ElevationIndexEnum FDFMToolElevationIndex_ElevationIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT() { return FDFMToolElevationIndex::BELOW_1000_TO_2000_FT; } @@ -4240,7 +4337,7 @@ FDFMToolElevationIndex_ElevationIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_F return FDFMToolElevationIndex::ABOVE_1000_TO_2000_FT; } -// FDFMToolMonthIndex_MonthIndexEnum +// $FDFMToolMonthIndex_MonthIndexEnum FDFMToolMonthIndex_MonthIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY() { return FDFMToolMonthIndex::MAY_JUNE_JULY; } @@ -4251,7 +4348,7 @@ FDFMToolMonthIndex_MonthIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolM return FDFMToolMonthIndex::NOV_DEC_JAN; } -// FDFMToolRHIndex_RHIndexEnum +// $FDFMToolRHIndex_RHIndexEnum FDFMToolRHIndex_RHIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT() { return FDFMToolRHIndex::ZERO_TO_FOUR_PERCENT; } @@ -4316,7 +4413,7 @@ FDFMToolRHIndex_RHIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolRHIndex return FDFMToolRHIndex::ONE_HUNDRED_PERCENT; } -// FDFMToolShadingIndex_ShadingIndexEnum +// $FDFMToolShadingIndex_ShadingIndexEnum FDFMToolShadingIndex_ShadingIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED() { return FDFMToolShadingIndex::EXPOSED; } @@ -4324,7 +4421,7 @@ FDFMToolShadingIndex_ShadingIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMT return FDFMToolShadingIndex::SHADED; } -// FDFMToolSlopeIndex_SlopeIndexEnum +// $FDFMToolSlopeIndex_SlopeIndexEnum FDFMToolSlopeIndex_SlopeIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT() { return FDFMToolSlopeIndex::ZERO_TO_THIRTY_PERCENT; } @@ -4332,7 +4429,7 @@ FDFMToolSlopeIndex_SlopeIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolS return FDFMToolSlopeIndex::GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT; } -// FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum +// $FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE() { return FDFMToolTimeOfDayIndex::EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE; } @@ -4352,7 +4449,7 @@ FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_F return FDFMToolTimeOfDayIndex::EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET; } -// RepresentativeFraction_RepresentativeFractionEnum +// $RepresentativeFraction_RepresentativeFractionEnum RepresentativeFraction_RepresentativeFractionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY() { return RepresentativeFraction::NINTEEN_HUNDRED_EIGHTY; } @@ -4408,7 +4505,7 @@ RepresentativeFraction_RepresentativeFractionEnum EMSCRIPTEN_KEEPALIVE emscripte return RepresentativeFraction::ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY; } -// HorizontalDistanceIndex_HorizontalDistanceIndexEnum +// $HorizontalDistanceIndex_HorizontalDistanceIndexEnum HorizontalDistanceIndex_HorizontalDistanceIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES() { return HorizontalDistanceIndex::UPSLOPE_ZERO_DEGREES; } @@ -4431,5 +4528,49 @@ HorizontalDistanceIndex_HorizontalDistanceIndexEnum EMSCRIPTEN_KEEPALIVE emscrip return HorizontalDistanceIndex::CROSS_SLOPE_NINETY_DEGREES; } +// $BurningCondition_BurningConditionEnum +BurningCondition_BurningConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_BurningCondition_BurningConditionEnum_Low() { + return BurningCondition::Low; +} +BurningCondition_BurningConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_BurningCondition_BurningConditionEnum_Moderate() { + return BurningCondition::Moderate; +} +BurningCondition_BurningConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_BurningCondition_BurningConditionEnum_Extreme() { + return BurningCondition::Extreme; +} + +// $SlopeClass_SlopeClassEnum +SlopeClass_SlopeClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeClass_SlopeClassEnum_Flat() { + return SlopeClass::Flat; +} +SlopeClass_SlopeClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeClass_SlopeClassEnum_Moderate() { + return SlopeClass::Moderate; +} +SlopeClass_SlopeClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeClass_SlopeClassEnum_Steep() { + return SlopeClass::Steep; +} + +// $SpeedClass_SpeedClassEnum +SpeedClass_SpeedClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedClass_SpeedClassEnum_Light() { + return SpeedClass::Light; +} +SpeedClass_SpeedClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedClass_SpeedClassEnum_Moderate() { + return SpeedClass::Moderate; +} +SpeedClass_SpeedClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedClass_SpeedClassEnum_High() { + return SpeedClass::High; +} + +// $SafetyCondition_SafetyConditionEnum +SafetyCondition_SafetyConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SafetyCondition_SafetyConditionEnum_Low() { + return SafetyCondition::Low; +} +SafetyCondition_SafetyConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate() { + return SafetyCondition::Moderate; +} +SafetyCondition_SafetyConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme() { + return SafetyCondition::Extreme; +} + } diff --git a/behave-lib/include/cpp/emscripten/wrapper.cpp b/behave-lib/include/cpp/emscripten/wrapper.cpp index 40901c6b..f87b129f 100644 --- a/behave-lib/include/cpp/emscripten/wrapper.cpp +++ b/behave-lib/include/cpp/emscripten/wrapper.cpp @@ -51,6 +51,7 @@ #include "SIGFineDeadFuelMoistureTool.cpp" #include "vaporPressureDeficitCalculator.cpp" #include "relativeHumidity.cpp" +#include "safeSeparationDistanceCalculator.cpp" #include "enums.cpp" #include "glue.cpp" diff --git a/behave-lib/include/idl/behave.idl b/behave-lib/include/idl/behave.idl index e44f0115..82ca78a2 100644 --- a/behave-lib/include/idl/behave.idl +++ b/behave-lib/include/idl/behave.idl @@ -1448,3 +1448,49 @@ interface RelativeHumidityTool { void setSiteElevation(double siteElevation, LengthUnits_LengthUnitsEnum lengthUnits); void setWetBulbTemperature(double wetBulbTemperature, TemperatureUnits_TemperatureUnitsEnum temperatureUnits); }; + +enum BurningCondition_BurningConditionEnum { + "BurningCondition::Low", + "BurningCondition::Moderate", + "BurningCondition::Extreme" +}; + +enum SlopeClass_SlopeClassEnum { + "SlopeClass::Flat", + "SlopeClass::Moderate", + "SlopeClass::Steep" +}; + +enum SpeedClass_SpeedClassEnum { + "SpeedClass::Light", + "SpeedClass::Moderate", + "SpeedClass::High" +}; + +enum SafetyCondition_SafetyConditionEnum { + "SafetyCondition::Low", + "SafetyCondition::Moderate", + "SafetyCondition::Extreme" +}; + +interface SafeSeparationDistanceCalculator { + void SafeSeparationDistanceCalculator(); + + // Calculate + void calculate(); + BurningCondition_BurningConditionEnum getBurningCondition(); + SlopeClass_SlopeClassEnum getSlopeClass(); + SpeedClass_SpeedClassEnum getSpeedClass(); + + // Getters + double getSafeSeparationDistance(LengthUnits_LengthUnitsEnum lengthUnits); + double getSafetyZoneSize(AreaUnits_AreaUnitsEnum areaUnits); + double getVegetationHeight(LengthUnits_LengthUnitsEnum lengthUnits); + SafetyCondition_SafetyConditionEnum getSafetyCondition(); + + // Setters + void setBurningCondition(BurningCondition_BurningConditionEnum condition); + void setSlopeClass(SlopeClass_SlopeClassEnum slope); + void setSpeedClass(SpeedClass_SpeedClassEnum speed); + void setVegetationHeight(double height, LengthUnits_LengthUnitsEnum lengthUnits); +}; diff --git a/behave-lib/include/js/glue.js b/behave-lib/include/js/glue.js index 527e74be..fe0a3c26 100644 --- a/behave-lib/include/js/glue.js +++ b/behave-lib/include/js/glue.js @@ -74,15 +74,15 @@ var ensureCache = { temps: [], // extra allocations needed: 0, // the total size we need next time - prepare: function() { + prepare() { if (ensureCache.needed) { // clear the temps for (var i = 0; i < ensureCache.temps.length; i++) { - Module['_free'](ensureCache.temps[i]); + Module['_webidl_free'](ensureCache.temps[i]); } ensureCache.temps.length = 0; // prepare to allocate a bigger buffer - Module['_free'](ensureCache.buffer); + Module['_webidl_free'](ensureCache.buffer); ensureCache.buffer = 0; ensureCache.size += ensureCache.needed; // clean up @@ -90,22 +90,22 @@ var ensureCache = { } if (!ensureCache.buffer) { // happens first time, or when we need to grow ensureCache.size += 128; // heuristic, avoid many small grow events - ensureCache.buffer = Module['_malloc'](ensureCache.size); + ensureCache.buffer = Module['_webidl_malloc'](ensureCache.size); assert(ensureCache.buffer); } ensureCache.pos = 0; }, - alloc: function(array, view) { + alloc(array, view) { assert(ensureCache.buffer); var bytes = view.BYTES_PER_ELEMENT; var len = array.length * bytes; - len = (len + 7) & -8; // keep things aligned to 8 byte boundaries + len = alignMemory(len, 8); // keep things aligned to 8 byte boundaries var ret; if (ensureCache.pos + len >= ensureCache.size) { // we failed to allocate in the buffer, ensureCache time around :( assert(len > 0); // null terminator, at least ensureCache.needed += len; - ret = Module['_malloc'](len); + ret = Module['_webidl_malloc'](len); ensureCache.temps.push(ret); } else { // we can allocate in the buffer @@ -114,14 +114,8 @@ var ensureCache = { } return ret; }, - copy: function(array, view, offset) { - offset >>>= 0; - var bytes = view.BYTES_PER_ELEMENT; - switch (bytes) { - case 2: offset >>>= 1; break; - case 4: offset >>>= 2; break; - case 8: offset >>>= 3; break; - } + copy(array, view, offset) { + offset /= view.BYTES_PER_ELEMENT; for (var i = 0; i < array.length; i++) { view[offset + i] = array[i]; } @@ -138,6 +132,7 @@ function ensureString(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt8(value) { if (typeof value === 'object') { @@ -147,6 +142,7 @@ function ensureInt8(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt16(value) { if (typeof value === 'object') { @@ -156,6 +152,7 @@ function ensureInt16(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt32(value) { if (typeof value === 'object') { @@ -165,6 +162,7 @@ function ensureInt32(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureFloat32(value) { if (typeof value === 'object') { @@ -174,6 +172,7 @@ function ensureFloat32(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureFloat64(value) { if (typeof value === 'object') { @@ -184,772 +183,906 @@ function ensureFloat64(value) { return value; } +// Interface: VoidPtr -// VoidPtr -/** @suppress {undefinedVars, duplicate} @this{Object} */function VoidPtr() { throw "cannot construct a VoidPtr, no constructor in IDL" } +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function VoidPtr() { throw "cannot construct a VoidPtr, no constructor in IDL" } VoidPtr.prototype = Object.create(WrapperObject.prototype); VoidPtr.prototype.constructor = VoidPtr; VoidPtr.prototype.__class__ = VoidPtr; VoidPtr.__cache__ = {}; Module['VoidPtr'] = VoidPtr; - VoidPtr.prototype['__destroy__'] = VoidPtr.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VoidPtr.prototype['__destroy__'] = VoidPtr.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_VoidPtr___destroy___0(self); }; -// DoublePtr -/** @suppress {undefinedVars, duplicate} @this{Object} */function DoublePtr() { throw "cannot construct a DoublePtr, no constructor in IDL" } + +// Interface: DoublePtr + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function DoublePtr() { throw "cannot construct a DoublePtr, no constructor in IDL" } DoublePtr.prototype = Object.create(WrapperObject.prototype); DoublePtr.prototype.constructor = DoublePtr; DoublePtr.prototype.__class__ = DoublePtr; DoublePtr.__cache__ = {}; Module['DoublePtr'] = DoublePtr; - DoublePtr.prototype['__destroy__'] = DoublePtr.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoublePtr.prototype['__destroy__'] = DoublePtr.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_DoublePtr___destroy___0(self); }; -// BoolVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function BoolVector(size) { + +// Interface: BoolVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function BoolVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_BoolVector_BoolVector_0(); getCache(BoolVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_BoolVector_BoolVector_1(size); getCache(BoolVector)[this.ptr] = this; -};; +}; + BoolVector.prototype = Object.create(WrapperObject.prototype); BoolVector.prototype.constructor = BoolVector; BoolVector.prototype.__class__ = BoolVector; BoolVector.__cache__ = {}; Module['BoolVector'] = BoolVector; - -BoolVector.prototype['resize'] = BoolVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['resize'] = BoolVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_BoolVector_resize_1(self, size); -};; +}; -BoolVector.prototype['get'] = BoolVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['get'] = BoolVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return !!(_emscripten_bind_BoolVector_get_1(self, i)); -};; +}; -BoolVector.prototype['set'] = BoolVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['set'] = BoolVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_BoolVector_set_2(self, i, val); -};; +}; -BoolVector.prototype['size'] = BoolVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['size'] = BoolVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_BoolVector_size_0(self); -};; +}; - BoolVector.prototype['__destroy__'] = BoolVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['__destroy__'] = BoolVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_BoolVector___destroy___0(self); }; -// CharVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function CharVector(size) { + +// Interface: CharVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function CharVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_CharVector_CharVector_0(); getCache(CharVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_CharVector_CharVector_1(size); getCache(CharVector)[this.ptr] = this; -};; +}; + CharVector.prototype = Object.create(WrapperObject.prototype); CharVector.prototype.constructor = CharVector; CharVector.prototype.__class__ = CharVector; CharVector.__cache__ = {}; Module['CharVector'] = CharVector; - -CharVector.prototype['resize'] = CharVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['resize'] = CharVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_CharVector_resize_1(self, size); -};; +}; -CharVector.prototype['get'] = CharVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['get'] = CharVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_CharVector_get_1(self, i); -};; +}; -CharVector.prototype['set'] = CharVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['set'] = CharVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_CharVector_set_2(self, i, val); -};; +}; -CharVector.prototype['size'] = CharVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['size'] = CharVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_CharVector_size_0(self); -};; +}; + - CharVector.prototype['__destroy__'] = CharVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['__destroy__'] = CharVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_CharVector___destroy___0(self); }; -// IntVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function IntVector(size) { + +// Interface: IntVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function IntVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_IntVector_IntVector_0(); getCache(IntVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_IntVector_IntVector_1(size); getCache(IntVector)[this.ptr] = this; -};; +}; + IntVector.prototype = Object.create(WrapperObject.prototype); IntVector.prototype.constructor = IntVector; IntVector.prototype.__class__ = IntVector; IntVector.__cache__ = {}; Module['IntVector'] = IntVector; - -IntVector.prototype['resize'] = IntVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['resize'] = IntVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_IntVector_resize_1(self, size); -};; +}; -IntVector.prototype['get'] = IntVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['get'] = IntVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_IntVector_get_1(self, i); -};; +}; -IntVector.prototype['set'] = IntVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['set'] = IntVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_IntVector_set_2(self, i, val); -};; +}; -IntVector.prototype['size'] = IntVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['size'] = IntVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_IntVector_size_0(self); -};; +}; - IntVector.prototype['__destroy__'] = IntVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['__destroy__'] = IntVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_IntVector___destroy___0(self); }; -// DoubleVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function DoubleVector(size) { + +// Interface: DoubleVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function DoubleVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_DoubleVector_DoubleVector_0(); getCache(DoubleVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_DoubleVector_DoubleVector_1(size); getCache(DoubleVector)[this.ptr] = this; -};; +}; + DoubleVector.prototype = Object.create(WrapperObject.prototype); DoubleVector.prototype.constructor = DoubleVector; DoubleVector.prototype.__class__ = DoubleVector; DoubleVector.__cache__ = {}; Module['DoubleVector'] = DoubleVector; - -DoubleVector.prototype['resize'] = DoubleVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['resize'] = DoubleVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_DoubleVector_resize_1(self, size); -};; +}; -DoubleVector.prototype['get'] = DoubleVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['get'] = DoubleVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_DoubleVector_get_1(self, i); -};; +}; -DoubleVector.prototype['set'] = DoubleVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['set'] = DoubleVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_DoubleVector_set_2(self, i, val); -};; +}; -DoubleVector.prototype['size'] = DoubleVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['size'] = DoubleVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_DoubleVector_size_0(self); -};; +}; + - DoubleVector.prototype['__destroy__'] = DoubleVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['__destroy__'] = DoubleVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_DoubleVector___destroy___0(self); }; -// SpeciesMasterTableRecordVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTableRecordVector(size) { + +// Interface: SpeciesMasterTableRecordVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SpeciesMasterTableRecordVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0(); getCache(SpeciesMasterTableRecordVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1(size); getCache(SpeciesMasterTableRecordVector)[this.ptr] = this; -};; +}; + SpeciesMasterTableRecordVector.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTableRecordVector.prototype.constructor = SpeciesMasterTableRecordVector; SpeciesMasterTableRecordVector.prototype.__class__ = SpeciesMasterTableRecordVector; SpeciesMasterTableRecordVector.__cache__ = {}; Module['SpeciesMasterTableRecordVector'] = SpeciesMasterTableRecordVector; - -SpeciesMasterTableRecordVector.prototype['resize'] = SpeciesMasterTableRecordVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['resize'] = SpeciesMasterTableRecordVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_SpeciesMasterTableRecordVector_resize_1(self, size); -};; +}; -SpeciesMasterTableRecordVector.prototype['get'] = SpeciesMasterTableRecordVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['get'] = SpeciesMasterTableRecordVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return wrapPointer(_emscripten_bind_SpeciesMasterTableRecordVector_get_1(self, i), SpeciesMasterTableRecord); -};; +}; -SpeciesMasterTableRecordVector.prototype['set'] = SpeciesMasterTableRecordVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['set'] = SpeciesMasterTableRecordVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_SpeciesMasterTableRecordVector_set_2(self, i, val); -};; +}; -SpeciesMasterTableRecordVector.prototype['size'] = SpeciesMasterTableRecordVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['size'] = SpeciesMasterTableRecordVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_SpeciesMasterTableRecordVector_size_0(self); -};; +}; - SpeciesMasterTableRecordVector.prototype['__destroy__'] = SpeciesMasterTableRecordVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['__destroy__'] = SpeciesMasterTableRecordVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0(self); }; -// AreaUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function AreaUnits() { throw "cannot construct a AreaUnits, no constructor in IDL" } + +// Interface: AreaUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function AreaUnits() { throw "cannot construct a AreaUnits, no constructor in IDL" } AreaUnits.prototype = Object.create(WrapperObject.prototype); AreaUnits.prototype.constructor = AreaUnits; AreaUnits.prototype.__class__ = AreaUnits; AreaUnits.__cache__ = {}; Module['AreaUnits'] = AreaUnits; - -AreaUnits.prototype['toBaseUnits'] = AreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +AreaUnits.prototype['toBaseUnits'] = AreaUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_AreaUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_AreaUnits_toBaseUnits_2(value, units); +}; -AreaUnits.prototype['fromBaseUnits'] = AreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +AreaUnits.prototype['fromBaseUnits'] = AreaUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_AreaUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_AreaUnits_fromBaseUnits_2(value, units); +}; + - AreaUnits.prototype['__destroy__'] = AreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +AreaUnits.prototype['__destroy__'] = AreaUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_AreaUnits___destroy___0(self); }; -// BasalAreaUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function BasalAreaUnits() { throw "cannot construct a BasalAreaUnits, no constructor in IDL" } + +// Interface: BasalAreaUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function BasalAreaUnits() { throw "cannot construct a BasalAreaUnits, no constructor in IDL" } BasalAreaUnits.prototype = Object.create(WrapperObject.prototype); BasalAreaUnits.prototype.constructor = BasalAreaUnits; BasalAreaUnits.prototype.__class__ = BasalAreaUnits; BasalAreaUnits.__cache__ = {}; Module['BasalAreaUnits'] = BasalAreaUnits; - -BasalAreaUnits.prototype['toBaseUnits'] = BasalAreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BasalAreaUnits.prototype['toBaseUnits'] = BasalAreaUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_BasalAreaUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_BasalAreaUnits_toBaseUnits_2(value, units); +}; -BasalAreaUnits.prototype['fromBaseUnits'] = BasalAreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BasalAreaUnits.prototype['fromBaseUnits'] = BasalAreaUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_BasalAreaUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_BasalAreaUnits_fromBaseUnits_2(value, units); +}; + - BasalAreaUnits.prototype['__destroy__'] = BasalAreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BasalAreaUnits.prototype['__destroy__'] = BasalAreaUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_BasalAreaUnits___destroy___0(self); }; -// FractionUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function FractionUnits() { throw "cannot construct a FractionUnits, no constructor in IDL" } + +// Interface: FractionUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function FractionUnits() { throw "cannot construct a FractionUnits, no constructor in IDL" } FractionUnits.prototype = Object.create(WrapperObject.prototype); FractionUnits.prototype.constructor = FractionUnits; FractionUnits.prototype.__class__ = FractionUnits; FractionUnits.__cache__ = {}; Module['FractionUnits'] = FractionUnits; - -FractionUnits.prototype['toBaseUnits'] = FractionUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FractionUnits.prototype['toBaseUnits'] = FractionUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FractionUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_FractionUnits_toBaseUnits_2(value, units); +}; -FractionUnits.prototype['fromBaseUnits'] = FractionUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FractionUnits.prototype['fromBaseUnits'] = FractionUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FractionUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_FractionUnits_fromBaseUnits_2(value, units); +}; + - FractionUnits.prototype['__destroy__'] = FractionUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FractionUnits.prototype['__destroy__'] = FractionUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_FractionUnits___destroy___0(self); }; -// LengthUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function LengthUnits() { throw "cannot construct a LengthUnits, no constructor in IDL" } + +// Interface: LengthUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function LengthUnits() { throw "cannot construct a LengthUnits, no constructor in IDL" } LengthUnits.prototype = Object.create(WrapperObject.prototype); LengthUnits.prototype.constructor = LengthUnits; LengthUnits.prototype.__class__ = LengthUnits; LengthUnits.__cache__ = {}; Module['LengthUnits'] = LengthUnits; - -LengthUnits.prototype['toBaseUnits'] = LengthUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LengthUnits.prototype['toBaseUnits'] = LengthUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LengthUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_LengthUnits_toBaseUnits_2(value, units); +}; -LengthUnits.prototype['fromBaseUnits'] = LengthUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LengthUnits.prototype['fromBaseUnits'] = LengthUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LengthUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_LengthUnits_fromBaseUnits_2(value, units); +}; - LengthUnits.prototype['__destroy__'] = LengthUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LengthUnits.prototype['__destroy__'] = LengthUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_LengthUnits___destroy___0(self); }; -// LoadingUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function LoadingUnits() { throw "cannot construct a LoadingUnits, no constructor in IDL" } + +// Interface: LoadingUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function LoadingUnits() { throw "cannot construct a LoadingUnits, no constructor in IDL" } LoadingUnits.prototype = Object.create(WrapperObject.prototype); LoadingUnits.prototype.constructor = LoadingUnits; LoadingUnits.prototype.__class__ = LoadingUnits; LoadingUnits.__cache__ = {}; Module['LoadingUnits'] = LoadingUnits; - -LoadingUnits.prototype['toBaseUnits'] = LoadingUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LoadingUnits.prototype['toBaseUnits'] = LoadingUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LoadingUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_LoadingUnits_toBaseUnits_2(value, units); +}; -LoadingUnits.prototype['fromBaseUnits'] = LoadingUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LoadingUnits.prototype['fromBaseUnits'] = LoadingUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LoadingUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_LoadingUnits_fromBaseUnits_2(value, units); +}; - LoadingUnits.prototype['__destroy__'] = LoadingUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LoadingUnits.prototype['__destroy__'] = LoadingUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_LoadingUnits___destroy___0(self); }; -// SurfaceAreaToVolumeUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function SurfaceAreaToVolumeUnits() { throw "cannot construct a SurfaceAreaToVolumeUnits, no constructor in IDL" } + +// Interface: SurfaceAreaToVolumeUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SurfaceAreaToVolumeUnits() { throw "cannot construct a SurfaceAreaToVolumeUnits, no constructor in IDL" } SurfaceAreaToVolumeUnits.prototype = Object.create(WrapperObject.prototype); SurfaceAreaToVolumeUnits.prototype.constructor = SurfaceAreaToVolumeUnits; SurfaceAreaToVolumeUnits.prototype.__class__ = SurfaceAreaToVolumeUnits; SurfaceAreaToVolumeUnits.__cache__ = {}; Module['SurfaceAreaToVolumeUnits'] = SurfaceAreaToVolumeUnits; - -SurfaceAreaToVolumeUnits.prototype['toBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SurfaceAreaToVolumeUnits.prototype['toBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(value, units); +}; -SurfaceAreaToVolumeUnits.prototype['fromBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SurfaceAreaToVolumeUnits.prototype['fromBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(value, units); +}; + - SurfaceAreaToVolumeUnits.prototype['__destroy__'] = SurfaceAreaToVolumeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SurfaceAreaToVolumeUnits.prototype['__destroy__'] = SurfaceAreaToVolumeUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0(self); }; -// SpeedUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeedUnits() { throw "cannot construct a SpeedUnits, no constructor in IDL" } + +// Interface: SpeedUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SpeedUnits() { throw "cannot construct a SpeedUnits, no constructor in IDL" } SpeedUnits.prototype = Object.create(WrapperObject.prototype); SpeedUnits.prototype.constructor = SpeedUnits; SpeedUnits.prototype.__class__ = SpeedUnits; SpeedUnits.__cache__ = {}; Module['SpeedUnits'] = SpeedUnits; - -SpeedUnits.prototype['toBaseUnits'] = SpeedUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeedUnits.prototype['toBaseUnits'] = SpeedUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SpeedUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SpeedUnits_toBaseUnits_2(value, units); +}; -SpeedUnits.prototype['fromBaseUnits'] = SpeedUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeedUnits.prototype['fromBaseUnits'] = SpeedUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SpeedUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SpeedUnits_fromBaseUnits_2(value, units); +}; + - SpeedUnits.prototype['__destroy__'] = SpeedUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeedUnits.prototype['__destroy__'] = SpeedUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SpeedUnits___destroy___0(self); }; -// PressureUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function PressureUnits() { throw "cannot construct a PressureUnits, no constructor in IDL" } + +// Interface: PressureUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function PressureUnits() { throw "cannot construct a PressureUnits, no constructor in IDL" } PressureUnits.prototype = Object.create(WrapperObject.prototype); PressureUnits.prototype.constructor = PressureUnits; PressureUnits.prototype.__class__ = PressureUnits; PressureUnits.__cache__ = {}; Module['PressureUnits'] = PressureUnits; - -PressureUnits.prototype['toBaseUnits'] = PressureUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PressureUnits.prototype['toBaseUnits'] = PressureUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_PressureUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_PressureUnits_toBaseUnits_2(value, units); +}; -PressureUnits.prototype['fromBaseUnits'] = PressureUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PressureUnits.prototype['fromBaseUnits'] = PressureUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_PressureUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_PressureUnits_fromBaseUnits_2(value, units); +}; + - PressureUnits.prototype['__destroy__'] = PressureUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PressureUnits.prototype['__destroy__'] = PressureUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_PressureUnits___destroy___0(self); }; -// SlopeUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function SlopeUnits() { throw "cannot construct a SlopeUnits, no constructor in IDL" } + +// Interface: SlopeUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SlopeUnits() { throw "cannot construct a SlopeUnits, no constructor in IDL" } SlopeUnits.prototype = Object.create(WrapperObject.prototype); SlopeUnits.prototype.constructor = SlopeUnits; SlopeUnits.prototype.__class__ = SlopeUnits; SlopeUnits.__cache__ = {}; Module['SlopeUnits'] = SlopeUnits; - -SlopeUnits.prototype['toBaseUnits'] = SlopeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SlopeUnits.prototype['toBaseUnits'] = SlopeUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SlopeUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SlopeUnits_toBaseUnits_2(value, units); +}; -SlopeUnits.prototype['fromBaseUnits'] = SlopeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SlopeUnits.prototype['fromBaseUnits'] = SlopeUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SlopeUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SlopeUnits_fromBaseUnits_2(value, units); +}; - SlopeUnits.prototype['__destroy__'] = SlopeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SlopeUnits.prototype['__destroy__'] = SlopeUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SlopeUnits___destroy___0(self); }; -// DensityUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function DensityUnits() { throw "cannot construct a DensityUnits, no constructor in IDL" } + +// Interface: DensityUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function DensityUnits() { throw "cannot construct a DensityUnits, no constructor in IDL" } DensityUnits.prototype = Object.create(WrapperObject.prototype); DensityUnits.prototype.constructor = DensityUnits; DensityUnits.prototype.__class__ = DensityUnits; DensityUnits.__cache__ = {}; Module['DensityUnits'] = DensityUnits; - -DensityUnits.prototype['toBaseUnits'] = DensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DensityUnits.prototype['toBaseUnits'] = DensityUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_DensityUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_DensityUnits_toBaseUnits_2(value, units); +}; -DensityUnits.prototype['fromBaseUnits'] = DensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DensityUnits.prototype['fromBaseUnits'] = DensityUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_DensityUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_DensityUnits_fromBaseUnits_2(value, units); +}; - DensityUnits.prototype['__destroy__'] = DensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DensityUnits.prototype['__destroy__'] = DensityUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_DensityUnits___destroy___0(self); }; -// HeatOfCombustionUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatOfCombustionUnits() { throw "cannot construct a HeatOfCombustionUnits, no constructor in IDL" } + +// Interface: HeatOfCombustionUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function HeatOfCombustionUnits() { throw "cannot construct a HeatOfCombustionUnits, no constructor in IDL" } HeatOfCombustionUnits.prototype = Object.create(WrapperObject.prototype); HeatOfCombustionUnits.prototype.constructor = HeatOfCombustionUnits; HeatOfCombustionUnits.prototype.__class__ = HeatOfCombustionUnits; HeatOfCombustionUnits.__cache__ = {}; Module['HeatOfCombustionUnits'] = HeatOfCombustionUnits; - -HeatOfCombustionUnits.prototype['toBaseUnits'] = HeatOfCombustionUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatOfCombustionUnits.prototype['toBaseUnits'] = HeatOfCombustionUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(value, units); +}; -HeatOfCombustionUnits.prototype['fromBaseUnits'] = HeatOfCombustionUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatOfCombustionUnits.prototype['fromBaseUnits'] = HeatOfCombustionUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(value, units); +}; + - HeatOfCombustionUnits.prototype['__destroy__'] = HeatOfCombustionUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatOfCombustionUnits.prototype['__destroy__'] = HeatOfCombustionUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_HeatOfCombustionUnits___destroy___0(self); }; -// HeatSinkUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatSinkUnits() { throw "cannot construct a HeatSinkUnits, no constructor in IDL" } + +// Interface: HeatSinkUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function HeatSinkUnits() { throw "cannot construct a HeatSinkUnits, no constructor in IDL" } HeatSinkUnits.prototype = Object.create(WrapperObject.prototype); HeatSinkUnits.prototype.constructor = HeatSinkUnits; HeatSinkUnits.prototype.__class__ = HeatSinkUnits; HeatSinkUnits.__cache__ = {}; Module['HeatSinkUnits'] = HeatSinkUnits; - -HeatSinkUnits.prototype['toBaseUnits'] = HeatSinkUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSinkUnits.prototype['toBaseUnits'] = HeatSinkUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSinkUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatSinkUnits_toBaseUnits_2(value, units); +}; -HeatSinkUnits.prototype['fromBaseUnits'] = HeatSinkUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSinkUnits.prototype['fromBaseUnits'] = HeatSinkUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSinkUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatSinkUnits_fromBaseUnits_2(value, units); +}; + - HeatSinkUnits.prototype['__destroy__'] = HeatSinkUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSinkUnits.prototype['__destroy__'] = HeatSinkUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_HeatSinkUnits___destroy___0(self); }; -// HeatPerUnitAreaUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatPerUnitAreaUnits() { throw "cannot construct a HeatPerUnitAreaUnits, no constructor in IDL" } + +// Interface: HeatPerUnitAreaUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function HeatPerUnitAreaUnits() { throw "cannot construct a HeatPerUnitAreaUnits, no constructor in IDL" } HeatPerUnitAreaUnits.prototype = Object.create(WrapperObject.prototype); HeatPerUnitAreaUnits.prototype.constructor = HeatPerUnitAreaUnits; HeatPerUnitAreaUnits.prototype.__class__ = HeatPerUnitAreaUnits; HeatPerUnitAreaUnits.__cache__ = {}; Module['HeatPerUnitAreaUnits'] = HeatPerUnitAreaUnits; - -HeatPerUnitAreaUnits.prototype['toBaseUnits'] = HeatPerUnitAreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatPerUnitAreaUnits.prototype['toBaseUnits'] = HeatPerUnitAreaUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(value, units); +}; -HeatPerUnitAreaUnits.prototype['fromBaseUnits'] = HeatPerUnitAreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatPerUnitAreaUnits.prototype['fromBaseUnits'] = HeatPerUnitAreaUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(value, units); +}; + - HeatPerUnitAreaUnits.prototype['__destroy__'] = HeatPerUnitAreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatPerUnitAreaUnits.prototype['__destroy__'] = HeatPerUnitAreaUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_HeatPerUnitAreaUnits___destroy___0(self); }; -// HeatSourceAndReactionIntensityUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatSourceAndReactionIntensityUnits() { throw "cannot construct a HeatSourceAndReactionIntensityUnits, no constructor in IDL" } + +// Interface: HeatSourceAndReactionIntensityUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function HeatSourceAndReactionIntensityUnits() { throw "cannot construct a HeatSourceAndReactionIntensityUnits, no constructor in IDL" } HeatSourceAndReactionIntensityUnits.prototype = Object.create(WrapperObject.prototype); HeatSourceAndReactionIntensityUnits.prototype.constructor = HeatSourceAndReactionIntensityUnits; HeatSourceAndReactionIntensityUnits.prototype.__class__ = HeatSourceAndReactionIntensityUnits; HeatSourceAndReactionIntensityUnits.__cache__ = {}; Module['HeatSourceAndReactionIntensityUnits'] = HeatSourceAndReactionIntensityUnits; - -HeatSourceAndReactionIntensityUnits.prototype['toBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSourceAndReactionIntensityUnits.prototype['toBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(value, units); +}; -HeatSourceAndReactionIntensityUnits.prototype['fromBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSourceAndReactionIntensityUnits.prototype['fromBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(value, units); +}; - HeatSourceAndReactionIntensityUnits.prototype['__destroy__'] = HeatSourceAndReactionIntensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSourceAndReactionIntensityUnits.prototype['__destroy__'] = HeatSourceAndReactionIntensityUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0(self); }; -// FirelineIntensityUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function FirelineIntensityUnits() { throw "cannot construct a FirelineIntensityUnits, no constructor in IDL" } + +// Interface: FirelineIntensityUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function FirelineIntensityUnits() { throw "cannot construct a FirelineIntensityUnits, no constructor in IDL" } FirelineIntensityUnits.prototype = Object.create(WrapperObject.prototype); FirelineIntensityUnits.prototype.constructor = FirelineIntensityUnits; FirelineIntensityUnits.prototype.__class__ = FirelineIntensityUnits; FirelineIntensityUnits.__cache__ = {}; Module['FirelineIntensityUnits'] = FirelineIntensityUnits; - -FirelineIntensityUnits.prototype['toBaseUnits'] = FirelineIntensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FirelineIntensityUnits.prototype['toBaseUnits'] = FirelineIntensityUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(value, units); +}; -FirelineIntensityUnits.prototype['fromBaseUnits'] = FirelineIntensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FirelineIntensityUnits.prototype['fromBaseUnits'] = FirelineIntensityUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(value, units); +}; + - FirelineIntensityUnits.prototype['__destroy__'] = FirelineIntensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FirelineIntensityUnits.prototype['__destroy__'] = FirelineIntensityUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_FirelineIntensityUnits___destroy___0(self); }; -// TemperatureUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function TemperatureUnits() { throw "cannot construct a TemperatureUnits, no constructor in IDL" } + +// Interface: TemperatureUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function TemperatureUnits() { throw "cannot construct a TemperatureUnits, no constructor in IDL" } TemperatureUnits.prototype = Object.create(WrapperObject.prototype); TemperatureUnits.prototype.constructor = TemperatureUnits; TemperatureUnits.prototype.__class__ = TemperatureUnits; TemperatureUnits.__cache__ = {}; Module['TemperatureUnits'] = TemperatureUnits; - -TemperatureUnits.prototype['toBaseUnits'] = TemperatureUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TemperatureUnits.prototype['toBaseUnits'] = TemperatureUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TemperatureUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_TemperatureUnits_toBaseUnits_2(value, units); +}; -TemperatureUnits.prototype['fromBaseUnits'] = TemperatureUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TemperatureUnits.prototype['fromBaseUnits'] = TemperatureUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TemperatureUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_TemperatureUnits_fromBaseUnits_2(value, units); +}; + - TemperatureUnits.prototype['__destroy__'] = TemperatureUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TemperatureUnits.prototype['__destroy__'] = TemperatureUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_TemperatureUnits___destroy___0(self); }; -// TimeUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function TimeUnits() { throw "cannot construct a TimeUnits, no constructor in IDL" } + +// Interface: TimeUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function TimeUnits() { throw "cannot construct a TimeUnits, no constructor in IDL" } TimeUnits.prototype = Object.create(WrapperObject.prototype); TimeUnits.prototype.constructor = TimeUnits; TimeUnits.prototype.__class__ = TimeUnits; TimeUnits.__cache__ = {}; Module['TimeUnits'] = TimeUnits; - -TimeUnits.prototype['toBaseUnits'] = TimeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TimeUnits.prototype['toBaseUnits'] = TimeUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TimeUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_TimeUnits_toBaseUnits_2(value, units); +}; -TimeUnits.prototype['fromBaseUnits'] = TimeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TimeUnits.prototype['fromBaseUnits'] = TimeUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TimeUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_TimeUnits_fromBaseUnits_2(value, units); +}; + - TimeUnits.prototype['__destroy__'] = TimeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TimeUnits.prototype['__destroy__'] = TimeUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_TimeUnits___destroy___0(self); }; -// FireSize -/** @suppress {undefinedVars, duplicate} @this{Object} */function FireSize() { throw "cannot construct a FireSize, no constructor in IDL" } + +// Interface: FireSize + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function FireSize() { throw "cannot construct a FireSize, no constructor in IDL" } FireSize.prototype = Object.create(WrapperObject.prototype); FireSize.prototype.constructor = FireSize; FireSize.prototype.__class__ = FireSize; FireSize.__cache__ = {}; Module['FireSize'] = FireSize; - -FireSize.prototype['getBackingSpreadRate'] = FireSize.prototype.getBackingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getBackingSpreadRate'] = FireSize.prototype.getBackingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_FireSize_getBackingSpreadRate_1(self, spreadRateUnits); -};; +}; -FireSize.prototype['getEccentricity'] = FireSize.prototype.getEccentricity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getEccentricity'] = FireSize.prototype.getEccentricity = function() { var self = this.ptr; return _emscripten_bind_FireSize_getEccentricity_0(self); -};; +}; -FireSize.prototype['getEllipticalA'] = FireSize.prototype.getEllipticalA = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getEllipticalA'] = FireSize.prototype.getEllipticalA = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalA_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getEllipticalB'] = FireSize.prototype.getEllipticalB = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getEllipticalB'] = FireSize.prototype.getEllipticalB = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalB_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getEllipticalC'] = FireSize.prototype.getEllipticalC = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getEllipticalC'] = FireSize.prototype.getEllipticalC = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalC_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getFireArea'] = FireSize.prototype.getFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, areaUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFireArea'] = FireSize.prototype.getFireArea = function(isCrown, areaUnits, elapsedTime, timeUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFireArea_4(self, isCrown, areaUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getFireLength'] = FireSize.prototype.getFireLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFireLength'] = FireSize.prototype.getFireLength = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFireLength_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getFireLengthToWidthRatio'] = FireSize.prototype.getFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFireLengthToWidthRatio'] = FireSize.prototype.getFireLengthToWidthRatio = function() { var self = this.ptr; return _emscripten_bind_FireSize_getFireLengthToWidthRatio_0(self); -};; +}; -FireSize.prototype['getFirePerimeter'] = FireSize.prototype.getFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFirePerimeter'] = FireSize.prototype.getFirePerimeter = function(isCrown, lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFirePerimeter_4(self, isCrown, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getFlankingSpreadRate'] = FireSize.prototype.getFlankingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFlankingSpreadRate'] = FireSize.prototype.getFlankingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_FireSize_getFlankingSpreadRate_1(self, spreadRateUnits); -};; +}; -FireSize.prototype['getHeadingToBackingRatio'] = FireSize.prototype.getHeadingToBackingRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getHeadingToBackingRatio'] = FireSize.prototype.getHeadingToBackingRatio = function() { var self = this.ptr; return _emscripten_bind_FireSize_getHeadingToBackingRatio_0(self); -};; +}; -FireSize.prototype['getMaxFireWidth'] = FireSize.prototype.getMaxFireWidth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getMaxFireWidth'] = FireSize.prototype.getMaxFireWidth = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getMaxFireWidth_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculateFireBasicDimensions = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculateFireBasicDimensions = function(isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (effectiveWindSpeed && typeof effectiveWindSpeed === 'object') effectiveWindSpeed = effectiveWindSpeed.ptr; @@ -957,173 +1090,205 @@ FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculat if (forwardSpreadRate && typeof forwardSpreadRate === 'object') forwardSpreadRate = forwardSpreadRate.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; _emscripten_bind_FireSize_calculateFireBasicDimensions_5(self, isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits); -};; +}; + - FireSize.prototype['__destroy__'] = FireSize.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['__destroy__'] = FireSize.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_FireSize___destroy___0(self); }; -// SIGContainAdapter -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGContainAdapter() { + +// Interface: SIGContainAdapter + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGContainAdapter() { this.ptr = _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0(); getCache(SIGContainAdapter)[this.ptr] = this; -};; +}; + SIGContainAdapter.prototype = Object.create(WrapperObject.prototype); SIGContainAdapter.prototype.constructor = SIGContainAdapter; SIGContainAdapter.prototype.__class__ = SIGContainAdapter; SIGContainAdapter.__cache__ = {}; Module['SIGContainAdapter'] = SIGContainAdapter; - -SIGContainAdapter.prototype['getContainmentStatus'] = SIGContainAdapter.prototype.getContainmentStatus = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getContainmentStatus'] = SIGContainAdapter.prototype.getContainmentStatus = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getContainmentStatus_0(self); -};; +}; -SIGContainAdapter.prototype['getFirePerimeterX'] = SIGContainAdapter.prototype.getFirePerimeterX = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFirePerimeterX'] = SIGContainAdapter.prototype.getFirePerimeterX = function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0(self), DoubleVector); -};; +}; -SIGContainAdapter.prototype['getFirePerimeterY'] = SIGContainAdapter.prototype.getFirePerimeterY = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFirePerimeterY'] = SIGContainAdapter.prototype.getFirePerimeterY = function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0(self), DoubleVector); -};; +}; -SIGContainAdapter.prototype['getAttackDistance'] = SIGContainAdapter.prototype.getAttackDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getAttackDistance'] = SIGContainAdapter.prototype.getAttackDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getAttackDistance_1(self, lengthUnits); -};; +}; -SIGContainAdapter.prototype['getFinalContainmentArea'] = SIGContainAdapter.prototype.getFinalContainmentArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalContainmentArea'] = SIGContainAdapter.prototype.getFinalContainmentArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1(self, areaUnits); -};; +}; -SIGContainAdapter.prototype['getFinalCost'] = SIGContainAdapter.prototype.getFinalCost = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalCost'] = SIGContainAdapter.prototype.getFinalCost = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFinalCost_0(self); -};; +}; -SIGContainAdapter.prototype['getFinalFireLineLength'] = SIGContainAdapter.prototype.getFinalFireLineLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalFireLineLength'] = SIGContainAdapter.prototype.getFinalFireLineLength = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1(self, lengthUnits); -};; +}; -SIGContainAdapter.prototype['getFinalFireSize'] = SIGContainAdapter.prototype.getFinalFireSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalFireSize'] = SIGContainAdapter.prototype.getFinalFireSize = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalFireSize_1(self, areaUnits); -};; +}; -SIGContainAdapter.prototype['getFinalTimeSinceReport'] = SIGContainAdapter.prototype.getFinalTimeSinceReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalTimeSinceReport'] = SIGContainAdapter.prototype.getFinalTimeSinceReport = function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1(self, timeUnits); -};; +}; -SIGContainAdapter.prototype['getFinalProductionRate'] = SIGContainAdapter.prototype.getFinalProductionRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalProductionRate'] = SIGContainAdapter.prototype.getFinalProductionRate = function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1(self, speedUnits); -};; +}; -SIGContainAdapter.prototype['getFireBackAtAttack'] = SIGContainAdapter.prototype.getFireBackAtAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireBackAtAttack'] = SIGContainAdapter.prototype.getFireBackAtAttack = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0(self); -};; +}; -SIGContainAdapter.prototype['getFireBackAtReport'] = SIGContainAdapter.prototype.getFireBackAtReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireBackAtReport'] = SIGContainAdapter.prototype.getFireBackAtReport = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0(self); -};; +}; -SIGContainAdapter.prototype['getFireHeadAtAttack'] = SIGContainAdapter.prototype.getFireHeadAtAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireHeadAtAttack'] = SIGContainAdapter.prototype.getFireHeadAtAttack = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0(self); -};; +}; -SIGContainAdapter.prototype['getFireHeadAtReport'] = SIGContainAdapter.prototype.getFireHeadAtReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireHeadAtReport'] = SIGContainAdapter.prototype.getFireHeadAtReport = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0(self); -};; +}; -SIGContainAdapter.prototype['getFireSizeAtInitialAttack'] = SIGContainAdapter.prototype.getFireSizeAtInitialAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireSizeAtInitialAttack'] = SIGContainAdapter.prototype.getFireSizeAtInitialAttack = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1(self, areaUnits); -};; +}; -SIGContainAdapter.prototype['getLengthToWidthRatio'] = SIGContainAdapter.prototype.getLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getLengthToWidthRatio'] = SIGContainAdapter.prototype.getLengthToWidthRatio = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0(self); -};; +}; -SIGContainAdapter.prototype['getPerimeterAtContainment'] = SIGContainAdapter.prototype.getPerimeterAtContainment = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getPerimeterAtContainment'] = SIGContainAdapter.prototype.getPerimeterAtContainment = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1(self, lengthUnits); -};; +}; -SIGContainAdapter.prototype['getPerimeterAtInitialAttack'] = SIGContainAdapter.prototype.getPerimeterAtInitialAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getPerimeterAtInitialAttack'] = SIGContainAdapter.prototype.getPerimeterAtInitialAttack = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1(self, lengthUnits); -};; +}; -SIGContainAdapter.prototype['getReportSize'] = SIGContainAdapter.prototype.getReportSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getReportSize'] = SIGContainAdapter.prototype.getReportSize = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getReportSize_1(self, areaUnits); -};; +}; -SIGContainAdapter.prototype['getReportRate'] = SIGContainAdapter.prototype.getReportRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getReportRate'] = SIGContainAdapter.prototype.getReportRate = function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getReportRate_1(self, speedUnits); -};; +}; -SIGContainAdapter.prototype['getAutoComputedResourceProductionRate'] = SIGContainAdapter.prototype.getAutoComputedResourceProductionRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getAutoComputedResourceProductionRate'] = SIGContainAdapter.prototype.getAutoComputedResourceProductionRate = function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1(self, speedUnits); -};; +}; -SIGContainAdapter.prototype['getTactic'] = SIGContainAdapter.prototype.getTactic = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getTactic'] = SIGContainAdapter.prototype.getTactic = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getTactic_0(self); -};; +}; -SIGContainAdapter.prototype['getFirePerimeterPointCount'] = SIGContainAdapter.prototype.getFirePerimeterPointCount = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFirePerimeterPointCount'] = SIGContainAdapter.prototype.getFirePerimeterPointCount = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0(self); -};; +}; -SIGContainAdapter.prototype['removeAllResourcesWithThisDesc'] = SIGContainAdapter.prototype.removeAllResourcesWithThisDesc = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desc) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['removeAllResourcesWithThisDesc'] = SIGContainAdapter.prototype.removeAllResourcesWithThisDesc = function(desc) { var self = this.ptr; ensureCache.prepare(); if (desc && typeof desc === 'object') desc = desc.ptr; else desc = ensureString(desc); return _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1(self, desc); -};; +}; -SIGContainAdapter.prototype['removeResourceAt'] = SIGContainAdapter.prototype.removeResourceAt = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['removeResourceAt'] = SIGContainAdapter.prototype.removeResourceAt = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGContainAdapter_removeResourceAt_1(self, index); -};; +}; -SIGContainAdapter.prototype['removeResourceWithThisDesc'] = SIGContainAdapter.prototype.removeResourceWithThisDesc = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desc) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['removeResourceWithThisDesc'] = SIGContainAdapter.prototype.removeResourceWithThisDesc = function(desc) { var self = this.ptr; ensureCache.prepare(); if (desc && typeof desc === 'object') desc = desc.ptr; else desc = ensureString(desc); return _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1(self, desc); -};; +}; -SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addResource = /** @suppress {undefinedVars, duplicate} @this{Object} */function(arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addResource = function(arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost) { var self = this.ptr; ensureCache.prepare(); if (arrival && typeof arrival === 'object') arrival = arrival.ptr; @@ -1137,196 +1302,230 @@ SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addReso if (baseCost && typeof baseCost === 'object') baseCost = baseCost.ptr; if (hourCost && typeof hourCost === 'object') hourCost = hourCost.ptr; _emscripten_bind_SIGContainAdapter_addResource_9(self, arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost); -};; +}; -SIGContainAdapter.prototype['doContainRun'] = SIGContainAdapter.prototype.doContainRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['doContainRun'] = SIGContainAdapter.prototype.doContainRun = function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter_doContainRun_0(self); -};; +}; -SIGContainAdapter.prototype['removeAllResources'] = SIGContainAdapter.prototype.removeAllResources = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['removeAllResources'] = SIGContainAdapter.prototype.removeAllResources = function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter_removeAllResources_0(self); -};; +}; -SIGContainAdapter.prototype['setAttackDistance'] = SIGContainAdapter.prototype.setAttackDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(attackDistance, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setAttackDistance'] = SIGContainAdapter.prototype.setAttackDistance = function(attackDistance, lengthUnits) { var self = this.ptr; if (attackDistance && typeof attackDistance === 'object') attackDistance = attackDistance.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGContainAdapter_setAttackDistance_2(self, attackDistance, lengthUnits); -};; +}; -SIGContainAdapter.prototype['setContainMode'] = SIGContainAdapter.prototype.setContainMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(containmode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setContainMode'] = SIGContainAdapter.prototype.setContainMode = function(containmode) { var self = this.ptr; if (containmode && typeof containmode === 'object') containmode = containmode.ptr; _emscripten_bind_SIGContainAdapter_setContainMode_1(self, containmode); -};; +}; -SIGContainAdapter.prototype['setFireStartTime'] = SIGContainAdapter.prototype.setFireStartTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireStartTime) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setFireStartTime'] = SIGContainAdapter.prototype.setFireStartTime = function(fireStartTime) { var self = this.ptr; if (fireStartTime && typeof fireStartTime === 'object') fireStartTime = fireStartTime.ptr; _emscripten_bind_SIGContainAdapter_setFireStartTime_1(self, fireStartTime); -};; +}; -SIGContainAdapter.prototype['setLwRatio'] = SIGContainAdapter.prototype.setLwRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lwRatio) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setLwRatio'] = SIGContainAdapter.prototype.setLwRatio = function(lwRatio) { var self = this.ptr; if (lwRatio && typeof lwRatio === 'object') lwRatio = lwRatio.ptr; _emscripten_bind_SIGContainAdapter_setLwRatio_1(self, lwRatio); -};; +}; -SIGContainAdapter.prototype['setMaxFireSize'] = SIGContainAdapter.prototype.setMaxFireSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxFireSize) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setMaxFireSize'] = SIGContainAdapter.prototype.setMaxFireSize = function(maxFireSize) { var self = this.ptr; if (maxFireSize && typeof maxFireSize === 'object') maxFireSize = maxFireSize.ptr; _emscripten_bind_SIGContainAdapter_setMaxFireSize_1(self, maxFireSize); -};; +}; -SIGContainAdapter.prototype['setMaxFireTime'] = SIGContainAdapter.prototype.setMaxFireTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxFireTime) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setMaxFireTime'] = SIGContainAdapter.prototype.setMaxFireTime = function(maxFireTime) { var self = this.ptr; if (maxFireTime && typeof maxFireTime === 'object') maxFireTime = maxFireTime.ptr; _emscripten_bind_SIGContainAdapter_setMaxFireTime_1(self, maxFireTime); -};; +}; -SIGContainAdapter.prototype['setMaxSteps'] = SIGContainAdapter.prototype.setMaxSteps = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxSteps) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setMaxSteps'] = SIGContainAdapter.prototype.setMaxSteps = function(maxSteps) { var self = this.ptr; if (maxSteps && typeof maxSteps === 'object') maxSteps = maxSteps.ptr; _emscripten_bind_SIGContainAdapter_setMaxSteps_1(self, maxSteps); -};; +}; -SIGContainAdapter.prototype['setMinSteps'] = SIGContainAdapter.prototype.setMinSteps = /** @suppress {undefinedVars, duplicate} @this{Object} */function(minSteps) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setMinSteps'] = SIGContainAdapter.prototype.setMinSteps = function(minSteps) { var self = this.ptr; if (minSteps && typeof minSteps === 'object') minSteps = minSteps.ptr; _emscripten_bind_SIGContainAdapter_setMinSteps_1(self, minSteps); -};; +}; -SIGContainAdapter.prototype['setReportRate'] = SIGContainAdapter.prototype.setReportRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reportRate, speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setReportRate'] = SIGContainAdapter.prototype.setReportRate = function(reportRate, speedUnits) { var self = this.ptr; if (reportRate && typeof reportRate === 'object') reportRate = reportRate.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; _emscripten_bind_SIGContainAdapter_setReportRate_2(self, reportRate, speedUnits); -};; +}; -SIGContainAdapter.prototype['setReportSize'] = SIGContainAdapter.prototype.setReportSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reportSize, areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setReportSize'] = SIGContainAdapter.prototype.setReportSize = function(reportSize, areaUnits) { var self = this.ptr; if (reportSize && typeof reportSize === 'object') reportSize = reportSize.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; _emscripten_bind_SIGContainAdapter_setReportSize_2(self, reportSize, areaUnits); -};; +}; -SIGContainAdapter.prototype['setResourceArrivalTime'] = SIGContainAdapter.prototype.setResourceArrivalTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(arrivalTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setResourceArrivalTime'] = SIGContainAdapter.prototype.setResourceArrivalTime = function(arrivalTime, timeUnits) { var self = this.ptr; if (arrivalTime && typeof arrivalTime === 'object') arrivalTime = arrivalTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2(self, arrivalTime, timeUnits); -};; +}; -SIGContainAdapter.prototype['setResourceDuration'] = SIGContainAdapter.prototype.setResourceDuration = /** @suppress {undefinedVars, duplicate} @this{Object} */function(duration, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setResourceDuration'] = SIGContainAdapter.prototype.setResourceDuration = function(duration, timeUnits) { var self = this.ptr; if (duration && typeof duration === 'object') duration = duration.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGContainAdapter_setResourceDuration_2(self, duration, timeUnits); -};; +}; -SIGContainAdapter.prototype['setRetry'] = SIGContainAdapter.prototype.setRetry = /** @suppress {undefinedVars, duplicate} @this{Object} */function(retry) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setRetry'] = SIGContainAdapter.prototype.setRetry = function(retry) { var self = this.ptr; if (retry && typeof retry === 'object') retry = retry.ptr; _emscripten_bind_SIGContainAdapter_setRetry_1(self, retry); -};; +}; -SIGContainAdapter.prototype['setTactic'] = SIGContainAdapter.prototype.setTactic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(tactic) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setTactic'] = SIGContainAdapter.prototype.setTactic = function(tactic) { var self = this.ptr; if (tactic && typeof tactic === 'object') tactic = tactic.ptr; _emscripten_bind_SIGContainAdapter_setTactic_1(self, tactic); -};; +}; + - SIGContainAdapter.prototype['__destroy__'] = SIGContainAdapter.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['__destroy__'] = SIGContainAdapter.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter___destroy___0(self); }; -// SIGIgnite -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGIgnite() { + +// Interface: SIGIgnite + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGIgnite() { this.ptr = _emscripten_bind_SIGIgnite_SIGIgnite_0(); getCache(SIGIgnite)[this.ptr] = this; -};; +}; + SIGIgnite.prototype = Object.create(WrapperObject.prototype); SIGIgnite.prototype.constructor = SIGIgnite; SIGIgnite.prototype.__class__ = SIGIgnite; SIGIgnite.__cache__ = {}; Module['SIGIgnite'] = SIGIgnite; - -SIGIgnite.prototype['initializeMembers'] = SIGIgnite.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['initializeMembers'] = SIGIgnite.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGIgnite_initializeMembers_0(self); -};; +}; -SIGIgnite.prototype['getFuelBedType'] = SIGIgnite.prototype.getFuelBedType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getFuelBedType'] = SIGIgnite.prototype.getFuelBedType = function() { var self = this.ptr; return _emscripten_bind_SIGIgnite_getFuelBedType_0(self); -};; +}; -SIGIgnite.prototype['getLightningChargeType'] = SIGIgnite.prototype.getLightningChargeType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getLightningChargeType'] = SIGIgnite.prototype.getLightningChargeType = function() { var self = this.ptr; return _emscripten_bind_SIGIgnite_getLightningChargeType_0(self); -};; +}; -SIGIgnite.prototype['calculateFirebrandIgnitionProbability'] = SIGIgnite.prototype.calculateFirebrandIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['calculateFirebrandIgnitionProbability'] = SIGIgnite.prototype.calculateFirebrandIgnitionProbability = function() { var self = this.ptr; _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0(self); -};; +}; -SIGIgnite.prototype['calculateLightningIgnitionProbability'] = SIGIgnite.prototype.calculateLightningIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['calculateLightningIgnitionProbability'] = SIGIgnite.prototype.calculateLightningIgnitionProbability = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['setAirTemperature'] = SIGIgnite.prototype.setAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(airTemperature, temperatureUnites) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setAirTemperature'] = SIGIgnite.prototype.setAirTemperature = function(airTemperature, temperatureUnites) { var self = this.ptr; if (airTemperature && typeof airTemperature === 'object') airTemperature = airTemperature.ptr; if (temperatureUnites && typeof temperatureUnites === 'object') temperatureUnites = temperatureUnites.ptr; _emscripten_bind_SIGIgnite_setAirTemperature_2(self, airTemperature, temperatureUnites); -};; +}; -SIGIgnite.prototype['setDuffDepth'] = SIGIgnite.prototype.setDuffDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(duffDepth, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setDuffDepth'] = SIGIgnite.prototype.setDuffDepth = function(duffDepth, lengthUnits) { var self = this.ptr; if (duffDepth && typeof duffDepth === 'object') duffDepth = duffDepth.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGIgnite_setDuffDepth_2(self, duffDepth, lengthUnits); -};; +}; -SIGIgnite.prototype['setIgnitionFuelBedType'] = SIGIgnite.prototype.setIgnitionFuelBedType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelBedType_) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setIgnitionFuelBedType'] = SIGIgnite.prototype.setIgnitionFuelBedType = function(fuelBedType_) { var self = this.ptr; if (fuelBedType_ && typeof fuelBedType_ === 'object') fuelBedType_ = fuelBedType_.ptr; _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1(self, fuelBedType_); -};; +}; -SIGIgnite.prototype['setLightningChargeType'] = SIGIgnite.prototype.setLightningChargeType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lightningChargeType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setLightningChargeType'] = SIGIgnite.prototype.setLightningChargeType = function(lightningChargeType) { var self = this.ptr; if (lightningChargeType && typeof lightningChargeType === 'object') lightningChargeType = lightningChargeType.ptr; _emscripten_bind_SIGIgnite_setLightningChargeType_1(self, lightningChargeType); -};; +}; -SIGIgnite.prototype['setMoistureHundredHour'] = SIGIgnite.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setMoistureHundredHour'] = SIGIgnite.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGIgnite_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -};; +}; -SIGIgnite.prototype['setMoistureOneHour'] = SIGIgnite.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setMoistureOneHour'] = SIGIgnite.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGIgnite_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -};; +}; -SIGIgnite.prototype['setSunShade'] = SIGIgnite.prototype.setSunShade = /** @suppress {undefinedVars, duplicate} @this{Object} */function(sunShade, sunShadeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setSunShade'] = SIGIgnite.prototype.setSunShade = function(sunShade, sunShadeUnits) { var self = this.ptr; if (sunShade && typeof sunShade === 'object') sunShade = sunShade.ptr; if (sunShadeUnits && typeof sunShadeUnits === 'object') sunShadeUnits = sunShadeUnits.ptr; _emscripten_bind_SIGIgnite_setSunShade_2(self, sunShade, sunShadeUnits); -};; +}; -SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInputs = function(moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; @@ -1340,522 +1539,609 @@ SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInpu if (duffDepthUnits && typeof duffDepthUnits === 'object') duffDepthUnits = duffDepthUnits.ptr; if (lightningChargeType && typeof lightningChargeType === 'object') lightningChargeType = lightningChargeType.ptr; _emscripten_bind_SIGIgnite_updateIgniteInputs_11(self, moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType); -};; +}; -SIGIgnite.prototype['getAirTemperature'] = SIGIgnite.prototype.getAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getAirTemperature'] = SIGIgnite.prototype.getAirTemperature = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getAirTemperature_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getDuffDepth'] = SIGIgnite.prototype.getDuffDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getDuffDepth'] = SIGIgnite.prototype.getDuffDepth = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getDuffDepth_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getFirebrandIgnitionProbability'] = SIGIgnite.prototype.getFirebrandIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getFirebrandIgnitionProbability'] = SIGIgnite.prototype.getFirebrandIgnitionProbability = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getFuelTemperature'] = SIGIgnite.prototype.getFuelTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getFuelTemperature'] = SIGIgnite.prototype.getFuelTemperature = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getFuelTemperature_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getMoistureHundredHour'] = SIGIgnite.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getMoistureHundredHour'] = SIGIgnite.prototype.getMoistureHundredHour = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getMoistureHundredHour_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getMoistureOneHour'] = SIGIgnite.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getMoistureOneHour'] = SIGIgnite.prototype.getMoistureOneHour = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getMoistureOneHour_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getSunShade'] = SIGIgnite.prototype.getSunShade = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getSunShade'] = SIGIgnite.prototype.getSunShade = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getSunShade_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['isFuelDepthNeeded'] = SIGIgnite.prototype.isFuelDepthNeeded = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['isFuelDepthNeeded'] = SIGIgnite.prototype.isFuelDepthNeeded = function() { var self = this.ptr; return !!(_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0(self)); -};; +}; + - SIGIgnite.prototype['__destroy__'] = SIGIgnite.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['__destroy__'] = SIGIgnite.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGIgnite___destroy___0(self); }; -// SIGMoistureScenarios -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGMoistureScenarios() { + +// Interface: SIGMoistureScenarios + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGMoistureScenarios() { this.ptr = _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0(); getCache(SIGMoistureScenarios)[this.ptr] = this; -};; +}; + SIGMoistureScenarios.prototype = Object.create(WrapperObject.prototype); SIGMoistureScenarios.prototype.constructor = SIGMoistureScenarios; SIGMoistureScenarios.prototype.__class__ = SIGMoistureScenarios; SIGMoistureScenarios.__cache__ = {}; Module['SIGMoistureScenarios'] = SIGMoistureScenarios; - -SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1(self, index)); -};; +}; -SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByName'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByName'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1(self, name)); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioIndexByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioIndexByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioIndexByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1(self, name); -};; +}; -SIGMoistureScenarios.prototype['getNumberOfMoistureScenarios'] = SIGMoistureScenarios.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getNumberOfMoistureScenarios'] = SIGMoistureScenarios.prototype.getNumberOfMoistureScenarios = function() { var self = this.ptr; return _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0(self); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1(self, index)); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1(self, name)); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioNameByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioNameByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioNameByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1(self, index)); -};; +}; + - SIGMoistureScenarios.prototype['__destroy__'] = SIGMoistureScenarios.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['__destroy__'] = SIGMoistureScenarios.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGMoistureScenarios___destroy___0(self); }; -// SIGSpot -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSpot() { + +// Interface: SIGSpot + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGSpot() { this.ptr = _emscripten_bind_SIGSpot_SIGSpot_0(); getCache(SIGSpot)[this.ptr] = this; -};; +}; + SIGSpot.prototype = Object.create(WrapperObject.prototype); SIGSpot.prototype.constructor = SIGSpot; SIGSpot.prototype.__class__ = SIGSpot; SIGSpot.__cache__ = {}; Module['SIGSpot'] = SIGSpot; - -SIGSpot.prototype['getDownwindCanopyMode'] = SIGSpot.prototype.getDownwindCanopyMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getDownwindCanopyMode'] = SIGSpot.prototype.getDownwindCanopyMode = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getDownwindCanopyMode_0(self); -};; +}; -SIGSpot.prototype['getLocation'] = SIGSpot.prototype.getLocation = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getLocation'] = SIGSpot.prototype.getLocation = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getLocation_0(self); -};; +}; -SIGSpot.prototype['getTreeSpecies'] = SIGSpot.prototype.getTreeSpecies = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getTreeSpecies'] = SIGSpot.prototype.getTreeSpecies = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getTreeSpecies_0(self); -};; +}; -SIGSpot.prototype['getBurningPileFlameHeight'] = SIGSpot.prototype.getBurningPileFlameHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getBurningPileFlameHeight'] = SIGSpot.prototype.getBurningPileFlameHeight = function(flameHeightUnits) { var self = this.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; return _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1(self, flameHeightUnits); -};; +}; -SIGSpot.prototype['getCoverHeightUsedForBurningPile'] = SIGSpot.prototype.getCoverHeightUsedForBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getCoverHeightUsedForBurningPile'] = SIGSpot.prototype.getCoverHeightUsedForBurningPile = function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1(self, coverHeightUnits); -};; +}; -SIGSpot.prototype['getCoverHeightUsedForSurfaceFire'] = SIGSpot.prototype.getCoverHeightUsedForSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getCoverHeightUsedForSurfaceFire'] = SIGSpot.prototype.getCoverHeightUsedForSurfaceFire = function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1(self, coverHeightUnits); -};; +}; -SIGSpot.prototype['getCoverHeightUsedForTorchingTrees'] = SIGSpot.prototype.getCoverHeightUsedForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getCoverHeightUsedForTorchingTrees'] = SIGSpot.prototype.getCoverHeightUsedForTorchingTrees = function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1(self, coverHeightUnits); -};; +}; -SIGSpot.prototype['getDBH'] = SIGSpot.prototype.getDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(DBHUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getDBH'] = SIGSpot.prototype.getDBH = function(DBHUnits) { var self = this.ptr; if (DBHUnits && typeof DBHUnits === 'object') DBHUnits = DBHUnits.ptr; return _emscripten_bind_SIGSpot_getDBH_1(self, DBHUnits); -};; +}; -SIGSpot.prototype['getDownwindCoverHeight'] = SIGSpot.prototype.getDownwindCoverHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getDownwindCoverHeight'] = SIGSpot.prototype.getDownwindCoverHeight = function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getDownwindCoverHeight_1(self, coverHeightUnits); -};; +}; -SIGSpot.prototype['getFlameDurationForTorchingTrees'] = SIGSpot.prototype.getFlameDurationForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(durationUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getFlameDurationForTorchingTrees'] = SIGSpot.prototype.getFlameDurationForTorchingTrees = function(durationUnits) { var self = this.ptr; if (durationUnits && typeof durationUnits === 'object') durationUnits = durationUnits.ptr; return _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1(self, durationUnits); -};; +}; -SIGSpot.prototype['getFlameHeightForTorchingTrees'] = SIGSpot.prototype.getFlameHeightForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getFlameHeightForTorchingTrees'] = SIGSpot.prototype.getFlameHeightForTorchingTrees = function(flameHeightUnits) { var self = this.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; return _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1(self, flameHeightUnits); -};; +}; -SIGSpot.prototype['getFlameRatioForTorchingTrees'] = SIGSpot.prototype.getFlameRatioForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getFlameRatioForTorchingTrees'] = SIGSpot.prototype.getFlameRatioForTorchingTrees = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0(self); -};; +}; -SIGSpot.prototype['getMaxFirebrandHeightFromBurningPile'] = SIGSpot.prototype.getMaxFirebrandHeightFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFirebrandHeightFromBurningPile'] = SIGSpot.prototype.getMaxFirebrandHeightFromBurningPile = function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1(self, firebrandHeightUnits); -};; +}; -SIGSpot.prototype['getMaxFirebrandHeightFromSurfaceFire'] = SIGSpot.prototype.getMaxFirebrandHeightFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFirebrandHeightFromSurfaceFire'] = SIGSpot.prototype.getMaxFirebrandHeightFromSurfaceFire = function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1(self, firebrandHeightUnits); -};; +}; -SIGSpot.prototype['getMaxFirebrandHeightFromTorchingTrees'] = SIGSpot.prototype.getMaxFirebrandHeightFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFirebrandHeightFromTorchingTrees'] = SIGSpot.prototype.getMaxFirebrandHeightFromTorchingTrees = function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1(self, firebrandHeightUnits); -};; +}; -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromBurningPile = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromSurfaceFire = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromTorchingTrees = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromBurningPile = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromSurfaceFire = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromTorchingTrees = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromActiveCrown'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromActiveCrown = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromActiveCrown'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromActiveCrown = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getRidgeToValleyDistance'] = SIGSpot.prototype.getRidgeToValleyDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getRidgeToValleyDistance'] = SIGSpot.prototype.getRidgeToValleyDistance = function(ridgeToValleyDistanceUnits) { var self = this.ptr; if (ridgeToValleyDistanceUnits && typeof ridgeToValleyDistanceUnits === 'object') ridgeToValleyDistanceUnits = ridgeToValleyDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1(self, ridgeToValleyDistanceUnits); -};; +}; -SIGSpot.prototype['getRidgeToValleyElevation'] = SIGSpot.prototype.getRidgeToValleyElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getRidgeToValleyElevation'] = SIGSpot.prototype.getRidgeToValleyElevation = function(elevationUnits) { var self = this.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; return _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1(self, elevationUnits); -};; +}; -SIGSpot.prototype['getSurfaceFlameLength'] = SIGSpot.prototype.getSurfaceFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(surfaceFlameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getSurfaceFlameLength'] = SIGSpot.prototype.getSurfaceFlameLength = function(surfaceFlameLengthUnits) { var self = this.ptr; if (surfaceFlameLengthUnits && typeof surfaceFlameLengthUnits === 'object') surfaceFlameLengthUnits = surfaceFlameLengthUnits.ptr; return _emscripten_bind_SIGSpot_getSurfaceFlameLength_1(self, surfaceFlameLengthUnits); -};; +}; -SIGSpot.prototype['getTreeHeight'] = SIGSpot.prototype.getTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getTreeHeight'] = SIGSpot.prototype.getTreeHeight = function(treeHeightUnits) { var self = this.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; return _emscripten_bind_SIGSpot_getTreeHeight_1(self, treeHeightUnits); -};; +}; -SIGSpot.prototype['getWindSpeedAtTwentyFeet'] = SIGSpot.prototype.getWindSpeedAtTwentyFeet = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getWindSpeedAtTwentyFeet'] = SIGSpot.prototype.getWindSpeedAtTwentyFeet = function(windSpeedUnits) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; return _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1(self, windSpeedUnits); -};; +}; -SIGSpot.prototype['getTorchingTrees'] = SIGSpot.prototype.getTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getTorchingTrees'] = SIGSpot.prototype.getTorchingTrees = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getTorchingTrees_0(self); -};; +}; -SIGSpot.prototype['calculateAll'] = SIGSpot.prototype.calculateAll = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['calculateAll'] = SIGSpot.prototype.calculateAll = function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateAll_0(self); -};; +}; -SIGSpot.prototype['calculateSpottingDistanceFromBurningPile'] = SIGSpot.prototype.calculateSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['calculateSpottingDistanceFromBurningPile'] = SIGSpot.prototype.calculateSpottingDistanceFromBurningPile = function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0(self); -};; +}; -SIGSpot.prototype['calculateSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.calculateSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['calculateSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.calculateSpottingDistanceFromSurfaceFire = function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0(self); -};; +}; -SIGSpot.prototype['calculateSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.calculateSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['calculateSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.calculateSpottingDistanceFromTorchingTrees = function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0(self); -};; +}; -SIGSpot.prototype['initializeMembers'] = SIGSpot.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['initializeMembers'] = SIGSpot.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGSpot_initializeMembers_0(self); -};; +}; -SIGSpot.prototype['setActiveCrownFlameLength'] = SIGSpot.prototype.setActiveCrownFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setActiveCrownFlameLength'] = SIGSpot.prototype.setActiveCrownFlameLength = function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2(self, flameLength, flameLengthUnits); -};; +}; -SIGSpot.prototype['setBurningPileFlameHeight'] = SIGSpot.prototype.setBurningPileFlameHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(buringPileflameHeight, flameHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setBurningPileFlameHeight'] = SIGSpot.prototype.setBurningPileFlameHeight = function(buringPileflameHeight, flameHeightUnits) { var self = this.ptr; if (buringPileflameHeight && typeof buringPileflameHeight === 'object') buringPileflameHeight = buringPileflameHeight.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2(self, buringPileflameHeight, flameHeightUnits); -};; +}; -SIGSpot.prototype['setDBH'] = SIGSpot.prototype.setDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(DBH, DBHUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setDBH'] = SIGSpot.prototype.setDBH = function(DBH, DBHUnits) { var self = this.ptr; if (DBH && typeof DBH === 'object') DBH = DBH.ptr; if (DBHUnits && typeof DBHUnits === 'object') DBHUnits = DBHUnits.ptr; _emscripten_bind_SIGSpot_setDBH_2(self, DBH, DBHUnits); -};; +}; -SIGSpot.prototype['setDownwindCanopyMode'] = SIGSpot.prototype.setDownwindCanopyMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(downwindCanopyMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setDownwindCanopyMode'] = SIGSpot.prototype.setDownwindCanopyMode = function(downwindCanopyMode) { var self = this.ptr; if (downwindCanopyMode && typeof downwindCanopyMode === 'object') downwindCanopyMode = downwindCanopyMode.ptr; _emscripten_bind_SIGSpot_setDownwindCanopyMode_1(self, downwindCanopyMode); -};; +}; -SIGSpot.prototype['setDownwindCoverHeight'] = SIGSpot.prototype.setDownwindCoverHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(downwindCoverHeight, coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setDownwindCoverHeight'] = SIGSpot.prototype.setDownwindCoverHeight = function(downwindCoverHeight, coverHeightUnits) { var self = this.ptr; if (downwindCoverHeight && typeof downwindCoverHeight === 'object') downwindCoverHeight = downwindCoverHeight.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; _emscripten_bind_SIGSpot_setDownwindCoverHeight_2(self, downwindCoverHeight, coverHeightUnits); -};; +}; -SIGSpot.prototype['setFireType'] = SIGSpot.prototype.setFireType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setFireType'] = SIGSpot.prototype.setFireType = function(fireType) { var self = this.ptr; if (fireType && typeof fireType === 'object') fireType = fireType.ptr; _emscripten_bind_SIGSpot_setFireType_1(self, fireType); -};; +}; -SIGSpot.prototype['setFlameLength'] = SIGSpot.prototype.setFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setFlameLength'] = SIGSpot.prototype.setFlameLength = function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_setFlameLength_2(self, flameLength, flameLengthUnits); -};; +}; -SIGSpot.prototype['setFirelineIntensity'] = SIGSpot.prototype.setFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setFirelineIntensity'] = SIGSpot.prototype.setFirelineIntensity = function(firelineIntensity, firelineIntensityUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGSpot_setFirelineIntensity_2(self, firelineIntensity, firelineIntensityUnits); -};; +}; -SIGSpot.prototype['setLocation'] = SIGSpot.prototype.setLocation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setLocation'] = SIGSpot.prototype.setLocation = function(location) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; _emscripten_bind_SIGSpot_setLocation_1(self, location); -};; +}; -SIGSpot.prototype['setRidgeToValleyDistance'] = SIGSpot.prototype.setRidgeToValleyDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyDistance, ridgeToValleyDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setRidgeToValleyDistance'] = SIGSpot.prototype.setRidgeToValleyDistance = function(ridgeToValleyDistance, ridgeToValleyDistanceUnits) { var self = this.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; if (ridgeToValleyDistanceUnits && typeof ridgeToValleyDistanceUnits === 'object') ridgeToValleyDistanceUnits = ridgeToValleyDistanceUnits.ptr; _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2(self, ridgeToValleyDistance, ridgeToValleyDistanceUnits); -};; +}; -SIGSpot.prototype['setRidgeToValleyElevation'] = SIGSpot.prototype.setRidgeToValleyElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyElevation, elevationUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setRidgeToValleyElevation'] = SIGSpot.prototype.setRidgeToValleyElevation = function(ridgeToValleyElevation, elevationUnits) { var self = this.ptr; if (ridgeToValleyElevation && typeof ridgeToValleyElevation === 'object') ridgeToValleyElevation = ridgeToValleyElevation.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2(self, ridgeToValleyElevation, elevationUnits); -};; +}; -SIGSpot.prototype['setTorchingTrees'] = SIGSpot.prototype.setTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(torchingTrees) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setTorchingTrees'] = SIGSpot.prototype.setTorchingTrees = function(torchingTrees) { var self = this.ptr; if (torchingTrees && typeof torchingTrees === 'object') torchingTrees = torchingTrees.ptr; _emscripten_bind_SIGSpot_setTorchingTrees_1(self, torchingTrees); -};; +}; -SIGSpot.prototype['setTreeHeight'] = SIGSpot.prototype.setTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeight, treeHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setTreeHeight'] = SIGSpot.prototype.setTreeHeight = function(treeHeight, treeHeightUnits) { var self = this.ptr; if (treeHeight && typeof treeHeight === 'object') treeHeight = treeHeight.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; _emscripten_bind_SIGSpot_setTreeHeight_2(self, treeHeight, treeHeightUnits); -};; +}; -SIGSpot.prototype['setTreeSpecies'] = SIGSpot.prototype.setTreeSpecies = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeSpecies) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setTreeSpecies'] = SIGSpot.prototype.setTreeSpecies = function(treeSpecies) { var self = this.ptr; if (treeSpecies && typeof treeSpecies === 'object') treeSpecies = treeSpecies.ptr; _emscripten_bind_SIGSpot_setTreeSpecies_1(self, treeSpecies); -};; +}; -SIGSpot.prototype['setWindSpeedAtTwentyFeet'] = SIGSpot.prototype.setWindSpeedAtTwentyFeet = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTwentyFeet, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setWindSpeedAtTwentyFeet'] = SIGSpot.prototype.setWindSpeedAtTwentyFeet = function(windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2(self, windSpeedAtTwentyFeet, windSpeedUnits); -};; +}; -SIGSpot.prototype['setWindSpeed'] = SIGSpot.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setWindSpeed'] = SIGSpot.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_setWindSpeed_2(self, windSpeed, windSpeedUnits); -};; +}; -SIGSpot.prototype['setWindSpeedAndWindHeightInputMode'] = SIGSpot.prototype.setWindSpeedAndWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits, windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setWindSpeedAndWindHeightInputMode'] = SIGSpot.prototype.setWindSpeedAndWindHeightInputMode = function(windSpeed, windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3(self, windSpeed, windSpeedUnits, windHeightInputMode); -};; +}; -SIGSpot.prototype['setWindHeightInputMode'] = SIGSpot.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setWindHeightInputMode'] = SIGSpot.prototype.setWindHeightInputMode = function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSpot_setWindHeightInputMode_1(self, windHeightInputMode); -};; +}; -SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSpotInputsForBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSpotInputsForBurningPile = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -1870,9 +2156,10 @@ SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSp if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits); -};; +}; -SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSpotInputsForSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSpotInputsForSurfaceFire = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -1887,9 +2174,10 @@ SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSp if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits); -};; +}; -SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.updateSpotInputsForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.updateSpotInputsForTorchingTrees = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -1908,62 +2196,74 @@ SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.update if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits); -};; +}; + - SIGSpot.prototype['__destroy__'] = SIGSpot.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['__destroy__'] = SIGSpot.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGSpot___destroy___0(self); }; -// SIGFuelModels -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGFuelModels(rhs) { + +// Interface: SIGFuelModels + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGFuelModels(rhs) { if (rhs && typeof rhs === 'object') rhs = rhs.ptr; if (rhs === undefined) { this.ptr = _emscripten_bind_SIGFuelModels_SIGFuelModels_0(); getCache(SIGFuelModels)[this.ptr] = this;return } this.ptr = _emscripten_bind_SIGFuelModels_SIGFuelModels_1(rhs); getCache(SIGFuelModels)[this.ptr] = this; -};; +}; + SIGFuelModels.prototype = Object.create(WrapperObject.prototype); SIGFuelModels.prototype.constructor = SIGFuelModels; SIGFuelModels.prototype.__class__ = SIGFuelModels; SIGFuelModels.__cache__ = {}; Module['SIGFuelModels'] = SIGFuelModels; - -SIGFuelModels.prototype['equal'] = SIGFuelModels.prototype.equal = /** @suppress {undefinedVars, duplicate} @this{Object} */function(rhs) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['equal'] = SIGFuelModels.prototype.equal = function(rhs) { var self = this.ptr; if (rhs && typeof rhs === 'object') rhs = rhs.ptr; return wrapPointer(_emscripten_bind_SIGFuelModels_equal_1(self, rhs), SIGFuelModels); -};; +}; -SIGFuelModels.prototype['clearCustomFuelModel'] = SIGFuelModels.prototype.clearCustomFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['clearCustomFuelModel'] = SIGFuelModels.prototype.clearCustomFuelModel = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['getIsDynamic'] = SIGFuelModels.prototype.getIsDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getIsDynamic'] = SIGFuelModels.prototype.getIsDynamic = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_getIsDynamic_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['isAllFuelLoadZero'] = SIGFuelModels.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['isAllFuelLoadZero'] = SIGFuelModels.prototype.isAllFuelLoadZero = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['isFuelModelDefined'] = SIGFuelModels.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['isFuelModelDefined'] = SIGFuelModels.prototype.isFuelModelDefined = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isFuelModelDefined_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['isFuelModelReserved'] = SIGFuelModels.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['isFuelModelReserved'] = SIGFuelModels.prototype.isFuelModelReserved = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isFuelModelReserved_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCustomFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCustomFuelModel = function(fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic) { var self = this.ptr; ensureCache.prepare(); if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; @@ -1990,1433 +2290,1665 @@ SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCusto if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; if (isDynamic && typeof isDynamic === 'object') isDynamic = isDynamic.ptr; return !!(_emscripten_bind_SIGFuelModels_setCustomFuelModel_21(self, fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic)); -};; +}; -SIGFuelModels.prototype['getFuelCode'] = SIGFuelModels.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelCode'] = SIGFuelModels.prototype.getFuelCode = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGFuelModels_getFuelCode_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['getFuelName'] = SIGFuelModels.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelName'] = SIGFuelModels.prototype.getFuelName = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGFuelModels_getFuelName_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['getFuelLoadHundredHour'] = SIGFuelModels.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadHundredHour'] = SIGFuelModels.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelLoadLiveHerbaceous'] = SIGFuelModels.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadLiveHerbaceous'] = SIGFuelModels.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelLoadLiveWoody'] = SIGFuelModels.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadLiveWoody'] = SIGFuelModels.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelLoadOneHour'] = SIGFuelModels.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadOneHour'] = SIGFuelModels.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelLoadTenHour'] = SIGFuelModels.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadTenHour'] = SIGFuelModels.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelbedDepth'] = SIGFuelModels.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelbedDepth'] = SIGFuelModels.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -};; +}; -SIGFuelModels.prototype['getHeatOfCombustionDead'] = SIGFuelModels.prototype.getHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getHeatOfCombustionDead'] = SIGFuelModels.prototype.getHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGFuelModels.prototype['getMoistureOfExtinctionDead'] = SIGFuelModels.prototype.getMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getMoistureOfExtinctionDead'] = SIGFuelModels.prototype.getMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -};; +}; -SIGFuelModels.prototype['getSavrLiveHerbaceous'] = SIGFuelModels.prototype.getSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getSavrLiveHerbaceous'] = SIGFuelModels.prototype.getSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGFuelModels.prototype['getSavrLiveWoody'] = SIGFuelModels.prototype.getSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getSavrLiveWoody'] = SIGFuelModels.prototype.getSavrLiveWoody = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGFuelModels.prototype['getSavrOneHour'] = SIGFuelModels.prototype.getSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getSavrOneHour'] = SIGFuelModels.prototype.getSavrOneHour = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrOneHour_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGFuelModels.prototype['getHeatOfCombustionLive'] = SIGFuelModels.prototype.getHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getHeatOfCombustionLive'] = SIGFuelModels.prototype.getHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; - SIGFuelModels.prototype['__destroy__'] = SIGFuelModels.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['__destroy__'] = SIGFuelModels.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGFuelModels___destroy___0(self); }; -// SIGSurface -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSurface(fuelModels) { + +// Interface: SIGSurface + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGSurface(fuelModels) { if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; this.ptr = _emscripten_bind_SIGSurface_SIGSurface_1(fuelModels); getCache(SIGSurface)[this.ptr] = this; -};; +}; + SIGSurface.prototype = Object.create(WrapperObject.prototype); SIGSurface.prototype.constructor = SIGSurface; SIGSurface.prototype.__class__ = SIGSurface; SIGSurface.__cache__ = {}; Module['SIGSurface'] = SIGSurface; - -SIGSurface.prototype['getAspenFireSeverity'] = SIGSurface.prototype.getAspenFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenFireSeverity'] = SIGSurface.prototype.getAspenFireSeverity = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspenFireSeverity_0(self); -};; +}; -SIGSurface.prototype['getChaparralFuelType'] = SIGSurface.prototype.getChaparralFuelType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralFuelType'] = SIGSurface.prototype.getChaparralFuelType = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelType_0(self); -};; +}; -SIGSurface.prototype['getMoistureInputMode'] = SIGSurface.prototype.getMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureInputMode'] = SIGSurface.prototype.getMoistureInputMode = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getMoistureInputMode_0(self); -};; +}; -SIGSurface.prototype['getWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.getWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.getWindAdjustmentFactorCalculationMethod = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0(self); -};; +}; -SIGSurface.prototype['getWindAndSpreadOrientationMode'] = SIGSurface.prototype.getWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindAndSpreadOrientationMode'] = SIGSurface.prototype.getWindAndSpreadOrientationMode = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0(self); -};; +}; -SIGSurface.prototype['getWindHeightInputMode'] = SIGSurface.prototype.getWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindHeightInputMode'] = SIGSurface.prototype.getWindHeightInputMode = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindHeightInputMode_0(self); -};; +}; -SIGSurface.prototype['getWindUpslopeAlignmentMode'] = SIGSurface.prototype.getWindUpslopeAlignmentMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindUpslopeAlignmentMode'] = SIGSurface.prototype.getWindUpslopeAlignmentMode = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0(self); -};; +}; -SIGSurface.prototype['getSurfaceRunInDirectionOf'] = SIGSurface.prototype.getSurfaceRunInDirectionOf = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSurfaceRunInDirectionOf'] = SIGSurface.prototype.getSurfaceRunInDirectionOf = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0(self); -};; +}; -SIGSurface.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1(self, index)); -};; +}; -SIGSurface.prototype['getIsMoistureScenarioDefinedByName'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsMoistureScenarioDefinedByName'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1(self, name)); -};; +}; -SIGSurface.prototype['getIsUsingChaparral'] = SIGSurface.prototype.getIsUsingChaparral = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsUsingChaparral'] = SIGSurface.prototype.getIsUsingChaparral = function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingChaparral_0(self)); -};; +}; -SIGSurface.prototype['getIsUsingPalmettoGallberry'] = SIGSurface.prototype.getIsUsingPalmettoGallberry = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsUsingPalmettoGallberry'] = SIGSurface.prototype.getIsUsingPalmettoGallberry = function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0(self)); -};; +}; -SIGSurface.prototype['getIsUsingWesternAspen'] = SIGSurface.prototype.getIsUsingWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsUsingWesternAspen'] = SIGSurface.prototype.getIsUsingWesternAspen = function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0(self)); -};; +}; -SIGSurface.prototype['isAllFuelLoadZero'] = SIGSurface.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isAllFuelLoadZero'] = SIGSurface.prototype.isAllFuelLoadZero = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isAllFuelLoadZero_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['isFuelDynamic'] = SIGSurface.prototype.isFuelDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isFuelDynamic'] = SIGSurface.prototype.isFuelDynamic = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelDynamic_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['isFuelModelDefined'] = SIGSurface.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isFuelModelDefined'] = SIGSurface.prototype.isFuelModelDefined = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelModelDefined_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['isFuelModelReserved'] = SIGSurface.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isFuelModelReserved'] = SIGSurface.prototype.isFuelModelReserved = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelModelReserved_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['isMoistureClassInputNeededForCurrentFuelModel'] = SIGSurface.prototype.isMoistureClassInputNeededForCurrentFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureClass) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isMoistureClassInputNeededForCurrentFuelModel'] = SIGSurface.prototype.isMoistureClassInputNeededForCurrentFuelModel = function(moistureClass) { var self = this.ptr; if (moistureClass && typeof moistureClass === 'object') moistureClass = moistureClass.ptr; return !!(_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1(self, moistureClass)); -};; +}; -SIGSurface.prototype['isUsingTwoFuelModels'] = SIGSurface.prototype.isUsingTwoFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isUsingTwoFuelModels'] = SIGSurface.prototype.isUsingTwoFuelModels = function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0(self)); -};; +}; -SIGSurface.prototype['setCurrentMoistureScenarioByIndex'] = SIGSurface.prototype.setCurrentMoistureScenarioByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCurrentMoistureScenarioByIndex'] = SIGSurface.prototype.setCurrentMoistureScenarioByIndex = function(moistureScenarioIndex) { var self = this.ptr; if (moistureScenarioIndex && typeof moistureScenarioIndex === 'object') moistureScenarioIndex = moistureScenarioIndex.ptr; return !!(_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1(self, moistureScenarioIndex)); -};; +}; -SIGSurface.prototype['setCurrentMoistureScenarioByName'] = SIGSurface.prototype.setCurrentMoistureScenarioByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioName) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCurrentMoistureScenarioByName'] = SIGSurface.prototype.setCurrentMoistureScenarioByName = function(moistureScenarioName) { var self = this.ptr; ensureCache.prepare(); if (moistureScenarioName && typeof moistureScenarioName === 'object') moistureScenarioName = moistureScenarioName.ptr; else moistureScenarioName = ensureString(moistureScenarioName); return !!(_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1(self, moistureScenarioName)); -};; +}; -SIGSurface.prototype['calculateFlameLength'] = SIGSurface.prototype.calculateFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['calculateFlameLength'] = SIGSurface.prototype.calculateFlameLength = function(firelineIntensity, firelineIntensityUnits, flameLengthUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_calculateFlameLength_3(self, firelineIntensity, firelineIntensityUnits, flameLengthUnits); -};; +}; -SIGSurface.prototype['getAgeOfRough'] = SIGSurface.prototype.getAgeOfRough = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAgeOfRough'] = SIGSurface.prototype.getAgeOfRough = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAgeOfRough_0(self); -};; +}; -SIGSurface.prototype['getAspect'] = SIGSurface.prototype.getAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspect'] = SIGSurface.prototype.getAspect = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspect_0(self); -};; +}; -SIGSurface.prototype['getAspenCuringLevel'] = SIGSurface.prototype.getAspenCuringLevel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(curingLevelUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenCuringLevel'] = SIGSurface.prototype.getAspenCuringLevel = function(curingLevelUnits) { var self = this.ptr; if (curingLevelUnits && typeof curingLevelUnits === 'object') curingLevelUnits = curingLevelUnits.ptr; return _emscripten_bind_SIGSurface_getAspenCuringLevel_1(self, curingLevelUnits); -};; +}; -SIGSurface.prototype['getAspenDBH'] = SIGSurface.prototype.getAspenDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbhUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenDBH'] = SIGSurface.prototype.getAspenDBH = function(dbhUnits) { var self = this.ptr; if (dbhUnits && typeof dbhUnits === 'object') dbhUnits = dbhUnits.ptr; return _emscripten_bind_SIGSurface_getAspenDBH_1(self, dbhUnits); -};; +}; -SIGSurface.prototype['getAspenLoadDeadOneHour'] = SIGSurface.prototype.getAspenLoadDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenLoadDeadOneHour'] = SIGSurface.prototype.getAspenLoadDeadOneHour = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getAspenLoadDeadTenHour'] = SIGSurface.prototype.getAspenLoadDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenLoadDeadTenHour'] = SIGSurface.prototype.getAspenLoadDeadTenHour = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getAspenLoadLiveHerbaceous'] = SIGSurface.prototype.getAspenLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenLoadLiveHerbaceous'] = SIGSurface.prototype.getAspenLoadLiveHerbaceous = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getAspenLoadLiveWoody'] = SIGSurface.prototype.getAspenLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenLoadLiveWoody'] = SIGSurface.prototype.getAspenLoadLiveWoody = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getAspenSavrDeadOneHour'] = SIGSurface.prototype.getAspenSavrDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenSavrDeadOneHour'] = SIGSurface.prototype.getAspenSavrDeadOneHour = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getAspenSavrDeadTenHour'] = SIGSurface.prototype.getAspenSavrDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenSavrDeadTenHour'] = SIGSurface.prototype.getAspenSavrDeadTenHour = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getAspenSavrLiveHerbaceous'] = SIGSurface.prototype.getAspenSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenSavrLiveHerbaceous'] = SIGSurface.prototype.getAspenSavrLiveHerbaceous = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getAspenSavrLiveWoody'] = SIGSurface.prototype.getAspenSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenSavrLiveWoody'] = SIGSurface.prototype.getAspenSavrLiveWoody = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getBackingFirelineIntensity'] = SIGSurface.prototype.getBackingFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBackingFirelineIntensity'] = SIGSurface.prototype.getBackingFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGSurface.prototype['getBackingFlameLength'] = SIGSurface.prototype.getBackingFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBackingFlameLength'] = SIGSurface.prototype.getBackingFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getBackingFlameLength_1(self, flameLengthUnits); -};; +}; -SIGSurface.prototype['getBackingSpreadDistance'] = SIGSurface.prototype.getBackingSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBackingSpreadDistance'] = SIGSurface.prototype.getBackingSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getBackingSpreadDistance_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getBackingSpreadRate'] = SIGSurface.prototype.getBackingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBackingSpreadRate'] = SIGSurface.prototype.getBackingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getBackingSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getBulkDensity'] = SIGSurface.prototype.getBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(densityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBulkDensity'] = SIGSurface.prototype.getBulkDensity = function(densityUnits) { var self = this.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; return _emscripten_bind_SIGSurface_getBulkDensity_1(self, densityUnits); -};; +}; -SIGSurface.prototype['getCanopyCover'] = SIGSurface.prototype.getCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCanopyCover'] = SIGSurface.prototype.getCanopyCover = function(coverUnits) { var self = this.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; return _emscripten_bind_SIGSurface_getCanopyCover_1(self, coverUnits); -};; +}; -SIGSurface.prototype['getCanopyHeight'] = SIGSurface.prototype.getCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCanopyHeight'] = SIGSurface.prototype.getCanopyHeight = function(canopyHeightUnits) { var self = this.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; return _emscripten_bind_SIGSurface_getCanopyHeight_1(self, canopyHeightUnits); -};; +}; -SIGSurface.prototype['getChaparralAge'] = SIGSurface.prototype.getChaparralAge = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralAge'] = SIGSurface.prototype.getChaparralAge = function(ageUnits) { var self = this.ptr; if (ageUnits && typeof ageUnits === 'object') ageUnits = ageUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralAge_1(self, ageUnits); -};; +}; -SIGSurface.prototype['getChaparralDaysSinceMayFirst'] = SIGSurface.prototype.getChaparralDaysSinceMayFirst = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralDaysSinceMayFirst'] = SIGSurface.prototype.getChaparralDaysSinceMayFirst = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0(self); -};; +}; -SIGSurface.prototype['getChaparralDeadFuelFraction'] = SIGSurface.prototype.getChaparralDeadFuelFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralDeadFuelFraction'] = SIGSurface.prototype.getChaparralDeadFuelFraction = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0(self); -};; +}; -SIGSurface.prototype['getChaparralDeadMoistureOfExtinction'] = SIGSurface.prototype.getChaparralDeadMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralDeadMoistureOfExtinction'] = SIGSurface.prototype.getChaparralDeadMoistureOfExtinction = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getChaparralDensity'] = SIGSurface.prototype.getChaparralDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, densityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralDensity'] = SIGSurface.prototype.getChaparralDensity = function(lifeState, sizeClass, densityUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralDensity_3(self, lifeState, sizeClass, densityUnits); -};; +}; -SIGSurface.prototype['getChaparralFuelBedDepth'] = SIGSurface.prototype.getChaparralFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(depthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralFuelBedDepth'] = SIGSurface.prototype.getChaparralFuelBedDepth = function(depthUnits) { var self = this.ptr; if (depthUnits && typeof depthUnits === 'object') depthUnits = depthUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1(self, depthUnits); -};; +}; -SIGSurface.prototype['getChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.getChaparralFuelDeadLoadFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.getChaparralFuelDeadLoadFraction = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0(self); -};; +}; -SIGSurface.prototype['getChaparralHeatOfCombustion'] = SIGSurface.prototype.getChaparralHeatOfCombustion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralHeatOfCombustion'] = SIGSurface.prototype.getChaparralHeatOfCombustion = function(lifeState, sizeClass, heatOfCombustionUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3(self, lifeState, sizeClass, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getChaparralLiveMoistureOfExtinction'] = SIGSurface.prototype.getChaparralLiveMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLiveMoistureOfExtinction'] = SIGSurface.prototype.getChaparralLiveMoistureOfExtinction = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadDeadHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadDeadHalfInchToLessThanOneInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadDeadHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadDeadHalfInchToLessThanOneInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadDeadLessThanQuarterInch'] = SIGSurface.prototype.getChaparralLoadDeadLessThanQuarterInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadDeadLessThanQuarterInch'] = SIGSurface.prototype.getChaparralLoadDeadLessThanQuarterInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadDeadOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadDeadOneInchToThreeInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadDeadOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadDeadOneInchToThreeInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadDeadQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadDeadQuarterInchToLessThanHalfInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadDeadQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadDeadQuarterInchToLessThanHalfInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadLiveHalfInchToLessThanOneInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadLiveHalfInchToLessThanOneInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveLeaves'] = SIGSurface.prototype.getChaparralLoadLiveLeaves = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveLeaves'] = SIGSurface.prototype.getChaparralLoadLiveLeaves = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadLiveOneInchToThreeInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadLiveOneInchToThreeInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadLiveQuarterInchToLessThanHalfInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadLiveQuarterInchToLessThanHalfInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveStemsLessThanQuaterInch'] = SIGSurface.prototype.getChaparralLoadLiveStemsLessThanQuaterInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveStemsLessThanQuaterInch'] = SIGSurface.prototype.getChaparralLoadLiveStemsLessThanQuaterInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralMoisture'] = SIGSurface.prototype.getChaparralMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralMoisture'] = SIGSurface.prototype.getChaparralMoisture = function(lifeState, sizeClass, moistureUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralMoisture_3(self, lifeState, sizeClass, moistureUnits); -};; +}; -SIGSurface.prototype['getChaparralTotalDeadFuelLoad'] = SIGSurface.prototype.getChaparralTotalDeadFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralTotalDeadFuelLoad'] = SIGSurface.prototype.getChaparralTotalDeadFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralTotalFuelLoad'] = SIGSurface.prototype.getChaparralTotalFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralTotalFuelLoad'] = SIGSurface.prototype.getChaparralTotalFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralTotalLiveFuelLoad'] = SIGSurface.prototype.getChaparralTotalLiveFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralTotalLiveFuelLoad'] = SIGSurface.prototype.getChaparralTotalLiveFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getCharacteristicMoistureByLifeState'] = SIGSurface.prototype.getCharacteristicMoistureByLifeState = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCharacteristicMoistureByLifeState'] = SIGSurface.prototype.getCharacteristicMoistureByLifeState = function(lifeState, moistureUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2(self, lifeState, moistureUnits); -};; +}; -SIGSurface.prototype['getCharacteristicMoistureDead'] = SIGSurface.prototype.getCharacteristicMoistureDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCharacteristicMoistureDead'] = SIGSurface.prototype.getCharacteristicMoistureDead = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getCharacteristicMoistureLive'] = SIGSurface.prototype.getCharacteristicMoistureLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCharacteristicMoistureLive'] = SIGSurface.prototype.getCharacteristicMoistureLive = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getCharacteristicSAVR'] = SIGSurface.prototype.getCharacteristicSAVR = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCharacteristicSAVR'] = SIGSurface.prototype.getCharacteristicSAVR = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicSAVR_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getCrownRatio'] = SIGSurface.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCrownRatio'] = SIGSurface.prototype.getCrownRatio = function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGSurface_getCrownRatio_1(self, crownRatioUnits); -};; +}; -SIGSurface.prototype['getDirectionOfMaxSpread'] = SIGSurface.prototype.getDirectionOfMaxSpread = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getDirectionOfMaxSpread'] = SIGSurface.prototype.getDirectionOfMaxSpread = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0(self); -};; +}; -SIGSurface.prototype['getDirectionOfInterest'] = SIGSurface.prototype.getDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getDirectionOfInterest'] = SIGSurface.prototype.getDirectionOfInterest = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfInterest_0(self); -};; +}; -SIGSurface.prototype['getDirectionOfBacking'] = SIGSurface.prototype.getDirectionOfBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getDirectionOfBacking'] = SIGSurface.prototype.getDirectionOfBacking = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfBacking_0(self); -};; +}; -SIGSurface.prototype['getDirectionOfFlanking'] = SIGSurface.prototype.getDirectionOfFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getDirectionOfFlanking'] = SIGSurface.prototype.getDirectionOfFlanking = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfFlanking_0(self); -};; +}; -SIGSurface.prototype['getElapsedTime'] = SIGSurface.prototype.getElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getElapsedTime'] = SIGSurface.prototype.getElapsedTime = function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGSurface_getElapsedTime_1(self, timeUnits); -};; +}; -SIGSurface.prototype['getEllipticalA'] = SIGSurface.prototype.getEllipticalA = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getEllipticalA'] = SIGSurface.prototype.getEllipticalA = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalA_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getEllipticalB'] = SIGSurface.prototype.getEllipticalB = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getEllipticalB'] = SIGSurface.prototype.getEllipticalB = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalB_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getEllipticalC'] = SIGSurface.prototype.getEllipticalC = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getEllipticalC'] = SIGSurface.prototype.getEllipticalC = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalC_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getFireLength'] = SIGSurface.prototype.getFireLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFireLength'] = SIGSurface.prototype.getFireLength = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFireLength_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getMaxFireWidth'] = SIGSurface.prototype.getMaxFireWidth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMaxFireWidth'] = SIGSurface.prototype.getMaxFireWidth = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getMaxFireWidth_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getFireArea'] = SIGSurface.prototype.getFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFireArea'] = SIGSurface.prototype.getFireArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGSurface_getFireArea_1(self, areaUnits); -};; +}; -SIGSurface.prototype['getFireEccentricity'] = SIGSurface.prototype.getFireEccentricity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFireEccentricity'] = SIGSurface.prototype.getFireEccentricity = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFireEccentricity_0(self); -};; +}; -SIGSurface.prototype['getFireLengthToWidthRatio'] = SIGSurface.prototype.getFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFireLengthToWidthRatio'] = SIGSurface.prototype.getFireLengthToWidthRatio = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0(self); -};; +}; -SIGSurface.prototype['getFirePerimeter'] = SIGSurface.prototype.getFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFirePerimeter'] = SIGSurface.prototype.getFirePerimeter = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFirePerimeter_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getFirelineIntensity'] = SIGSurface.prototype.getFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFirelineIntensity'] = SIGSurface.prototype.getFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGSurface.prototype['getFirelineIntensityInDirectionOfInterest'] = SIGSurface.prototype.getFirelineIntensityInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFirelineIntensityInDirectionOfInterest'] = SIGSurface.prototype.getFirelineIntensityInDirectionOfInterest = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1(self, firelineIntensityUnits); -};; +}; -SIGSurface.prototype['getFlameLength'] = SIGSurface.prototype.getFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlameLength'] = SIGSurface.prototype.getFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlameLength_1(self, flameLengthUnits); -};; +}; -SIGSurface.prototype['getFlameLengthInDirectionOfInterest'] = SIGSurface.prototype.getFlameLengthInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlameLengthInDirectionOfInterest'] = SIGSurface.prototype.getFlameLengthInDirectionOfInterest = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1(self, flameLengthUnits); -};; +}; -SIGSurface.prototype['getFlankingFirelineIntensity'] = SIGSurface.prototype.getFlankingFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlankingFirelineIntensity'] = SIGSurface.prototype.getFlankingFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGSurface.prototype['getFlankingFlameLength'] = SIGSurface.prototype.getFlankingFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlankingFlameLength'] = SIGSurface.prototype.getFlankingFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingFlameLength_1(self, flameLengthUnits); -};; +}; -SIGSurface.prototype['getFlankingSpreadRate'] = SIGSurface.prototype.getFlankingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlankingSpreadRate'] = SIGSurface.prototype.getFlankingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getFlankingSpreadDistance'] = SIGSurface.prototype.getFlankingSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlankingSpreadDistance'] = SIGSurface.prototype.getFlankingSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getFuelHeatOfCombustionDead'] = SIGSurface.prototype.getFuelHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelHeatOfCombustionDead'] = SIGSurface.prototype.getFuelHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getFuelHeatOfCombustionLive'] = SIGSurface.prototype.getFuelHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelHeatOfCombustionLive'] = SIGSurface.prototype.getFuelHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getFuelLoadHundredHour'] = SIGSurface.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadHundredHour'] = SIGSurface.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelLoadLiveHerbaceous'] = SIGSurface.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadLiveHerbaceous'] = SIGSurface.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelLoadLiveWoody'] = SIGSurface.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadLiveWoody'] = SIGSurface.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelLoadOneHour'] = SIGSurface.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadOneHour'] = SIGSurface.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelLoadTenHour'] = SIGSurface.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadTenHour'] = SIGSurface.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelMoistureOfExtinctionDead'] = SIGSurface.prototype.getFuelMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelMoistureOfExtinctionDead'] = SIGSurface.prototype.getFuelMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -};; +}; -SIGSurface.prototype['getFuelSavrLiveHerbaceous'] = SIGSurface.prototype.getFuelSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelSavrLiveHerbaceous'] = SIGSurface.prototype.getFuelSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGSurface.prototype['getFuelSavrLiveWoody'] = SIGSurface.prototype.getFuelSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelSavrLiveWoody'] = SIGSurface.prototype.getFuelSavrLiveWoody = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGSurface.prototype['getFuelSavrOneHour'] = SIGSurface.prototype.getFuelSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelSavrOneHour'] = SIGSurface.prototype.getFuelSavrOneHour = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrOneHour_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGSurface.prototype['getFuelbedDepth'] = SIGSurface.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelbedDepth'] = SIGSurface.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -};; +}; -SIGSurface.prototype['getHeadingSpreadRate'] = SIGSurface.prototype.getHeadingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeadingSpreadRate'] = SIGSurface.prototype.getHeadingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getHeadingSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getHeadingToBackingRatio'] = SIGSurface.prototype.getHeadingToBackingRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeadingToBackingRatio'] = SIGSurface.prototype.getHeadingToBackingRatio = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0(self); -};; +}; -SIGSurface.prototype['getHeatPerUnitArea'] = SIGSurface.prototype.getHeatPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatPerUnitAreaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeatPerUnitArea'] = SIGSurface.prototype.getHeatPerUnitArea = function(heatPerUnitAreaUnits) { var self = this.ptr; if (heatPerUnitAreaUnits && typeof heatPerUnitAreaUnits === 'object') heatPerUnitAreaUnits = heatPerUnitAreaUnits.ptr; return _emscripten_bind_SIGSurface_getHeatPerUnitArea_1(self, heatPerUnitAreaUnits); -};; +}; -SIGSurface.prototype['getHeatSink'] = SIGSurface.prototype.getHeatSink = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatSinkUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeatSink'] = SIGSurface.prototype.getHeatSink = function(heatSinkUnits) { var self = this.ptr; if (heatSinkUnits && typeof heatSinkUnits === 'object') heatSinkUnits = heatSinkUnits.ptr; return _emscripten_bind_SIGSurface_getHeatSink_1(self, heatSinkUnits); -};; +}; -SIGSurface.prototype['getHeatSource'] = SIGSurface.prototype.getHeatSource = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatSourceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeatSource'] = SIGSurface.prototype.getHeatSource = function(heatSourceUnits) { var self = this.ptr; if (heatSourceUnits && typeof heatSourceUnits === 'object') heatSourceUnits = heatSourceUnits.ptr; return _emscripten_bind_SIGSurface_getHeatSource_1(self, heatSourceUnits); -};; +}; -SIGSurface.prototype['getHeightOfUnderstory'] = SIGSurface.prototype.getHeightOfUnderstory = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeightOfUnderstory'] = SIGSurface.prototype.getHeightOfUnderstory = function(heightUnits) { var self = this.ptr; if (heightUnits && typeof heightUnits === 'object') heightUnits = heightUnits.ptr; return _emscripten_bind_SIGSurface_getHeightOfUnderstory_1(self, heightUnits); -};; +}; -SIGSurface.prototype['getLiveFuelMoistureOfExtinction'] = SIGSurface.prototype.getLiveFuelMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getLiveFuelMoistureOfExtinction'] = SIGSurface.prototype.getLiveFuelMoistureOfExtinction = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMidflameWindspeed'] = SIGSurface.prototype.getMidflameWindspeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMidflameWindspeed'] = SIGSurface.prototype.getMidflameWindspeed = function(windSpeedUnits) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; return _emscripten_bind_SIGSurface_getMidflameWindspeed_1(self, windSpeedUnits); -};; +}; -SIGSurface.prototype['getMoistureDeadAggregateValue'] = SIGSurface.prototype.getMoistureDeadAggregateValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureDeadAggregateValue'] = SIGSurface.prototype.getMoistureDeadAggregateValue = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureHundredHour'] = SIGSurface.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureHundredHour'] = SIGSurface.prototype.getMoistureHundredHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureHundredHour_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureLiveAggregateValue'] = SIGSurface.prototype.getMoistureLiveAggregateValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureLiveAggregateValue'] = SIGSurface.prototype.getMoistureLiveAggregateValue = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureLiveHerbaceous'] = SIGSurface.prototype.getMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureLiveHerbaceous'] = SIGSurface.prototype.getMoistureLiveHerbaceous = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureLiveWoody'] = SIGSurface.prototype.getMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureLiveWoody'] = SIGSurface.prototype.getMoistureLiveWoody = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveWoody_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureOneHour'] = SIGSurface.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureOneHour'] = SIGSurface.prototype.getMoistureOneHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureOneHour_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioHundredHourByIndex'] = SIGSurface.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioHundredHourByIndex'] = SIGSurface.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioHundredHourByName'] = SIGSurface.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioHundredHourByName'] = SIGSurface.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioLiveWoodyByName'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioLiveWoodyByName'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioOneHourByIndex'] = SIGSurface.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioOneHourByIndex'] = SIGSurface.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioOneHourByName'] = SIGSurface.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioOneHourByName'] = SIGSurface.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioTenHourByIndex'] = SIGSurface.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioTenHourByIndex'] = SIGSurface.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioTenHourByName'] = SIGSurface.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioTenHourByName'] = SIGSurface.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureTenHour'] = SIGSurface.prototype.getMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureTenHour'] = SIGSurface.prototype.getMoistureTenHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureTenHour_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getOverstoryBasalArea'] = SIGSurface.prototype.getOverstoryBasalArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(basalAreaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getOverstoryBasalArea'] = SIGSurface.prototype.getOverstoryBasalArea = function(basalAreaUnits) { var self = this.ptr; if (basalAreaUnits && typeof basalAreaUnits === 'object') basalAreaUnits = basalAreaUnits.ptr; return _emscripten_bind_SIGSurface_getOverstoryBasalArea_1(self, basalAreaUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberryCoverage'] = SIGSurface.prototype.getPalmettoGallberryCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberryCoverage'] = SIGSurface.prototype.getPalmettoGallberryCoverage = function(coverUnits) { var self = this.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1(self, coverUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionDead'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionDead'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionDead = function(heatOfCombustionUnits) { var self = this.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1(self, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionLive'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionLive'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionLive = function(heatOfCombustionUnits) { var self = this.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1(self, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberryMoistureOfExtinctionDead'] = SIGSurface.prototype.getPalmettoGallberryMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberryMoistureOfExtinctionDead'] = SIGSurface.prototype.getPalmettoGallberryMoistureOfExtinctionDead = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyDeadFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyDeadFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFineFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyDeadFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyDeadFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFoliageLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadMediumFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyFuelBedDepth'] = SIGSurface.prototype.getPalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(depthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyFuelBedDepth'] = SIGSurface.prototype.getPalmettoGallberyFuelBedDepth = function(depthUnits) { var self = this.ptr; if (depthUnits && typeof depthUnits === 'object') depthUnits = depthUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1(self, depthUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyLitterLoad'] = SIGSurface.prototype.getPalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyLitterLoad'] = SIGSurface.prototype.getPalmettoGallberyLitterLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyLiveFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyLiveFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFineFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyLiveFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyLiveFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFoliageLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveMediumFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getReactionIntensity'] = SIGSurface.prototype.getReactionIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reactiontionIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getReactionIntensity'] = SIGSurface.prototype.getReactionIntensity = function(reactiontionIntensityUnits) { var self = this.ptr; if (reactiontionIntensityUnits && typeof reactiontionIntensityUnits === 'object') reactiontionIntensityUnits = reactiontionIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getReactionIntensity_1(self, reactiontionIntensityUnits); -};; +}; -SIGSurface.prototype['getResidenceTime'] = SIGSurface.prototype.getResidenceTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getResidenceTime'] = SIGSurface.prototype.getResidenceTime = function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGSurface_getResidenceTime_1(self, timeUnits); -};; +}; -SIGSurface.prototype['getSlope'] = SIGSurface.prototype.getSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSlope'] = SIGSurface.prototype.getSlope = function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSurface_getSlope_1(self, slopeUnits); -};; +}; -SIGSurface.prototype['getSlopeFactor'] = SIGSurface.prototype.getSlopeFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSlopeFactor'] = SIGSurface.prototype.getSlopeFactor = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getSlopeFactor_0(self); -};; +}; -SIGSurface.prototype['getSpreadDistance'] = SIGSurface.prototype.getSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSpreadDistance'] = SIGSurface.prototype.getSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadDistance_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getSpreadDistanceInDirectionOfInterest'] = SIGSurface.prototype.getSpreadDistanceInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSpreadDistanceInDirectionOfInterest'] = SIGSurface.prototype.getSpreadDistanceInDirectionOfInterest = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getSpreadRate'] = SIGSurface.prototype.getSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSpreadRate'] = SIGSurface.prototype.getSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getSpreadRateInDirectionOfInterest'] = SIGSurface.prototype.getSpreadRateInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSpreadRateInDirectionOfInterest'] = SIGSurface.prototype.getSpreadRateInDirectionOfInterest = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getSurfaceFireReactionIntensityForLifeState'] = SIGSurface.prototype.getSurfaceFireReactionIntensityForLifeState = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSurfaceFireReactionIntensityForLifeState'] = SIGSurface.prototype.getSurfaceFireReactionIntensityForLifeState = function(lifeState) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; return _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1(self, lifeState); -};; +}; -SIGSurface.prototype['getTotalLiveFuelLoad'] = SIGSurface.prototype.getTotalLiveFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getTotalLiveFuelLoad'] = SIGSurface.prototype.getTotalLiveFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getTotalDeadFuelLoad'] = SIGSurface.prototype.getTotalDeadFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getTotalDeadFuelLoad'] = SIGSurface.prototype.getTotalDeadFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getTotalDeadHerbaceousFuelLoad'] = SIGSurface.prototype.getTotalDeadHerbaceousFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getTotalDeadHerbaceousFuelLoad'] = SIGSurface.prototype.getTotalDeadHerbaceousFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getWindDirection'] = SIGSurface.prototype.getWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindDirection'] = SIGSurface.prototype.getWindDirection = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindDirection_0(self); -};; +}; -SIGSurface.prototype['getWindSpeed'] = SIGSurface.prototype.getWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits, windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindSpeed'] = SIGSurface.prototype.getWindSpeed = function(windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; return _emscripten_bind_SIGSurface_getWindSpeed_2(self, windSpeedUnits, windHeightInputMode); -};; +}; -SIGSurface.prototype['getAspenFuelModelNumber'] = SIGSurface.prototype.getAspenFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenFuelModelNumber'] = SIGSurface.prototype.getAspenFuelModelNumber = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0(self); -};; +}; -SIGSurface.prototype['getFuelModelNumber'] = SIGSurface.prototype.getFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelModelNumber'] = SIGSurface.prototype.getFuelModelNumber = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFuelModelNumber_0(self); -};; +}; -SIGSurface.prototype['getMoistureScenarioIndexByName'] = SIGSurface.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioIndexByName'] = SIGSurface.prototype.getMoistureScenarioIndexByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1(self, name); -};; +}; -SIGSurface.prototype['getNumberOfMoistureScenarios'] = SIGSurface.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getNumberOfMoistureScenarios'] = SIGSurface.prototype.getNumberOfMoistureScenarios = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0(self); -};; +}; -SIGSurface.prototype['getFuelCode'] = SIGSurface.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelCode'] = SIGSurface.prototype.getFuelCode = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getFuelCode_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['getFuelName'] = SIGSurface.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelName'] = SIGSurface.prototype.getFuelName = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getFuelName_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['getMoistureScenarioDescriptionByIndex'] = SIGSurface.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioDescriptionByIndex'] = SIGSurface.prototype.getMoistureScenarioDescriptionByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1(self, index)); -};; +}; -SIGSurface.prototype['getMoistureScenarioDescriptionByName'] = SIGSurface.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioDescriptionByName'] = SIGSurface.prototype.getMoistureScenarioDescriptionByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1(self, name)); -};; +}; -SIGSurface.prototype['getMoistureScenarioNameByIndex'] = SIGSurface.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioNameByIndex'] = SIGSurface.prototype.getMoistureScenarioNameByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1(self, index)); -};; +}; -SIGSurface.prototype['doSurfaceRun'] = SIGSurface.prototype.doSurfaceRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['doSurfaceRun'] = SIGSurface.prototype.doSurfaceRun = function() { var self = this.ptr; _emscripten_bind_SIGSurface_doSurfaceRun_0(self); -};; +}; -SIGSurface.prototype['doSurfaceRunInDirectionOfInterest'] = SIGSurface.prototype.doSurfaceRunInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionOfInterest, directionMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['doSurfaceRunInDirectionOfInterest'] = SIGSurface.prototype.doSurfaceRunInDirectionOfInterest = function(directionOfInterest, directionMode) { var self = this.ptr; if (directionOfInterest && typeof directionOfInterest === 'object') directionOfInterest = directionOfInterest.ptr; if (directionMode && typeof directionMode === 'object') directionMode = directionMode.ptr; _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2(self, directionOfInterest, directionMode); -};; +}; -SIGSurface.prototype['doSurfaceRunInDirectionOfMaxSpread'] = SIGSurface.prototype.doSurfaceRunInDirectionOfMaxSpread = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['doSurfaceRunInDirectionOfMaxSpread'] = SIGSurface.prototype.doSurfaceRunInDirectionOfMaxSpread = function() { var self = this.ptr; _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0(self); -};; +}; -SIGSurface.prototype['initializeMembers'] = SIGSurface.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['initializeMembers'] = SIGSurface.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGSurface_initializeMembers_0(self); -};; +}; -SIGSurface.prototype['setAgeOfRough'] = SIGSurface.prototype.setAgeOfRough = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAgeOfRough'] = SIGSurface.prototype.setAgeOfRough = function(ageOfRough) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; _emscripten_bind_SIGSurface_setAgeOfRough_1(self, ageOfRough); -};; +}; -SIGSurface.prototype['setAspect'] = SIGSurface.prototype.setAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspect) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspect'] = SIGSurface.prototype.setAspect = function(aspect) { var self = this.ptr; if (aspect && typeof aspect === 'object') aspect = aspect.ptr; _emscripten_bind_SIGSurface_setAspect_1(self, aspect); -};; +}; -SIGSurface.prototype['setAspenCuringLevel'] = SIGSurface.prototype.setAspenCuringLevel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenCuringLevel, curingLevelUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspenCuringLevel'] = SIGSurface.prototype.setAspenCuringLevel = function(aspenCuringLevel, curingLevelUnits) { var self = this.ptr; if (aspenCuringLevel && typeof aspenCuringLevel === 'object') aspenCuringLevel = aspenCuringLevel.ptr; if (curingLevelUnits && typeof curingLevelUnits === 'object') curingLevelUnits = curingLevelUnits.ptr; _emscripten_bind_SIGSurface_setAspenCuringLevel_2(self, aspenCuringLevel, curingLevelUnits); -};; +}; -SIGSurface.prototype['setAspenDBH'] = SIGSurface.prototype.setAspenDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbh, dbhUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspenDBH'] = SIGSurface.prototype.setAspenDBH = function(dbh, dbhUnits) { var self = this.ptr; if (dbh && typeof dbh === 'object') dbh = dbh.ptr; if (dbhUnits && typeof dbhUnits === 'object') dbhUnits = dbhUnits.ptr; _emscripten_bind_SIGSurface_setAspenDBH_2(self, dbh, dbhUnits); -};; +}; -SIGSurface.prototype['setAspenFireSeverity'] = SIGSurface.prototype.setAspenFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFireSeverity) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspenFireSeverity'] = SIGSurface.prototype.setAspenFireSeverity = function(aspenFireSeverity) { var self = this.ptr; if (aspenFireSeverity && typeof aspenFireSeverity === 'object') aspenFireSeverity = aspenFireSeverity.ptr; _emscripten_bind_SIGSurface_setAspenFireSeverity_1(self, aspenFireSeverity); -};; +}; -SIGSurface.prototype['setAspenFuelModelNumber'] = SIGSurface.prototype.setAspenFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspenFuelModelNumber'] = SIGSurface.prototype.setAspenFuelModelNumber = function(aspenFuelModelNumber) { var self = this.ptr; if (aspenFuelModelNumber && typeof aspenFuelModelNumber === 'object') aspenFuelModelNumber = aspenFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1(self, aspenFuelModelNumber); -};; +}; -SIGSurface.prototype['setCanopyCover'] = SIGSurface.prototype.setCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyCover, coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCanopyCover'] = SIGSurface.prototype.setCanopyCover = function(canopyCover, coverUnits) { var self = this.ptr; if (canopyCover && typeof canopyCover === 'object') canopyCover = canopyCover.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setCanopyCover_2(self, canopyCover, coverUnits); -};; +}; -SIGSurface.prototype['setCanopyHeight'] = SIGSurface.prototype.setCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeight, canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCanopyHeight'] = SIGSurface.prototype.setCanopyHeight = function(canopyHeight, canopyHeightUnits) { var self = this.ptr; if (canopyHeight && typeof canopyHeight === 'object') canopyHeight = canopyHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGSurface_setCanopyHeight_2(self, canopyHeight, canopyHeightUnits); -};; +}; -SIGSurface.prototype['setChaparralFuelBedDepth'] = SIGSurface.prototype.setChaparralFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelBedDepth, depthUnts) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralFuelBedDepth'] = SIGSurface.prototype.setChaparralFuelBedDepth = function(chaparralFuelBedDepth, depthUnts) { var self = this.ptr; if (chaparralFuelBedDepth && typeof chaparralFuelBedDepth === 'object') chaparralFuelBedDepth = chaparralFuelBedDepth.ptr; if (depthUnts && typeof depthUnts === 'object') depthUnts = depthUnts.ptr; _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2(self, chaparralFuelBedDepth, depthUnts); -};; +}; -SIGSurface.prototype['setChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.setChaparralFuelDeadLoadFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelDeadLoadFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.setChaparralFuelDeadLoadFraction = function(chaparralFuelDeadLoadFraction) { var self = this.ptr; if (chaparralFuelDeadLoadFraction && typeof chaparralFuelDeadLoadFraction === 'object') chaparralFuelDeadLoadFraction = chaparralFuelDeadLoadFraction.ptr; _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1(self, chaparralFuelDeadLoadFraction); -};; +}; -SIGSurface.prototype['setChaparralFuelLoadInputMode'] = SIGSurface.prototype.setChaparralFuelLoadInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelLoadInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralFuelLoadInputMode'] = SIGSurface.prototype.setChaparralFuelLoadInputMode = function(fuelLoadInputMode) { var self = this.ptr; if (fuelLoadInputMode && typeof fuelLoadInputMode === 'object') fuelLoadInputMode = fuelLoadInputMode.ptr; _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1(self, fuelLoadInputMode); -};; +}; -SIGSurface.prototype['setChaparralFuelType'] = SIGSurface.prototype.setChaparralFuelType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralFuelType'] = SIGSurface.prototype.setChaparralFuelType = function(chaparralFuelType) { var self = this.ptr; if (chaparralFuelType && typeof chaparralFuelType === 'object') chaparralFuelType = chaparralFuelType.ptr; _emscripten_bind_SIGSurface_setChaparralFuelType_1(self, chaparralFuelType); -};; +}; -SIGSurface.prototype['setChaparralTotalFuelLoad'] = SIGSurface.prototype.setChaparralTotalFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralTotalFuelLoad, fuelLoadUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralTotalFuelLoad'] = SIGSurface.prototype.setChaparralTotalFuelLoad = function(chaparralTotalFuelLoad, fuelLoadUnits) { var self = this.ptr; if (chaparralTotalFuelLoad && typeof chaparralTotalFuelLoad === 'object') chaparralTotalFuelLoad = chaparralTotalFuelLoad.ptr; if (fuelLoadUnits && typeof fuelLoadUnits === 'object') fuelLoadUnits = fuelLoadUnits.ptr; _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2(self, chaparralTotalFuelLoad, fuelLoadUnits); -};; +}; -SIGSurface.prototype['setCrownRatio'] = SIGSurface.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCrownRatio'] = SIGSurface.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_setCrownRatio_2(self, crownRatio, crownRatioUnits); -};; +}; -SIGSurface.prototype['setDirectionOfInterest'] = SIGSurface.prototype.setDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionOfInterest) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setDirectionOfInterest'] = SIGSurface.prototype.setDirectionOfInterest = function(directionOfInterest) { var self = this.ptr; if (directionOfInterest && typeof directionOfInterest === 'object') directionOfInterest = directionOfInterest.ptr; _emscripten_bind_SIGSurface_setDirectionOfInterest_1(self, directionOfInterest); -};; +}; -SIGSurface.prototype['setElapsedTime'] = SIGSurface.prototype.setElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setElapsedTime'] = SIGSurface.prototype.setElapsedTime = function(elapsedTime, timeUnits) { var self = this.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGSurface_setElapsedTime_2(self, elapsedTime, timeUnits); -};; +}; -SIGSurface.prototype['setFirstFuelModelNumber'] = SIGSurface.prototype.setFirstFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setFirstFuelModelNumber'] = SIGSurface.prototype.setFirstFuelModelNumber = function(firstFuelModelNumber) { var self = this.ptr; if (firstFuelModelNumber && typeof firstFuelModelNumber === 'object') firstFuelModelNumber = firstFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1(self, firstFuelModelNumber); -};; +}; -SIGSurface.prototype['setFuelModels'] = SIGSurface.prototype.setFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModels) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setFuelModels'] = SIGSurface.prototype.setFuelModels = function(fuelModels) { var self = this.ptr; if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; _emscripten_bind_SIGSurface_setFuelModels_1(self, fuelModels); -};; +}; -SIGSurface.prototype['setHeightOfUnderstory'] = SIGSurface.prototype.setHeightOfUnderstory = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightOfUnderstory, heightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setHeightOfUnderstory'] = SIGSurface.prototype.setHeightOfUnderstory = function(heightOfUnderstory, heightUnits) { var self = this.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; if (heightUnits && typeof heightUnits === 'object') heightUnits = heightUnits.ptr; _emscripten_bind_SIGSurface_setHeightOfUnderstory_2(self, heightOfUnderstory, heightUnits); -};; +}; -SIGSurface.prototype['setIsUsingChaparral'] = SIGSurface.prototype.setIsUsingChaparral = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingChaparral) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setIsUsingChaparral'] = SIGSurface.prototype.setIsUsingChaparral = function(isUsingChaparral) { var self = this.ptr; if (isUsingChaparral && typeof isUsingChaparral === 'object') isUsingChaparral = isUsingChaparral.ptr; _emscripten_bind_SIGSurface_setIsUsingChaparral_1(self, isUsingChaparral); -};; +}; -SIGSurface.prototype['setIsUsingPalmettoGallberry'] = SIGSurface.prototype.setIsUsingPalmettoGallberry = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingPalmettoGallberry) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setIsUsingPalmettoGallberry'] = SIGSurface.prototype.setIsUsingPalmettoGallberry = function(isUsingPalmettoGallberry) { var self = this.ptr; if (isUsingPalmettoGallberry && typeof isUsingPalmettoGallberry === 'object') isUsingPalmettoGallberry = isUsingPalmettoGallberry.ptr; _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1(self, isUsingPalmettoGallberry); -};; +}; -SIGSurface.prototype['setIsUsingWesternAspen'] = SIGSurface.prototype.setIsUsingWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingWesternAspen) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setIsUsingWesternAspen'] = SIGSurface.prototype.setIsUsingWesternAspen = function(isUsingWesternAspen) { var self = this.ptr; if (isUsingWesternAspen && typeof isUsingWesternAspen === 'object') isUsingWesternAspen = isUsingWesternAspen.ptr; _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1(self, isUsingWesternAspen); -};; +}; -SIGSurface.prototype['setMoistureDeadAggregate'] = SIGSurface.prototype.setMoistureDeadAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureDead, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureDeadAggregate'] = SIGSurface.prototype.setMoistureDeadAggregate = function(moistureDead, moistureUnits) { var self = this.ptr; if (moistureDead && typeof moistureDead === 'object') moistureDead = moistureDead.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2(self, moistureDead, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureHundredHour'] = SIGSurface.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureHundredHour'] = SIGSurface.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureInputMode'] = SIGSurface.prototype.setMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureInputMode'] = SIGSurface.prototype.setMoistureInputMode = function(moistureInputMode) { var self = this.ptr; if (moistureInputMode && typeof moistureInputMode === 'object') moistureInputMode = moistureInputMode.ptr; _emscripten_bind_SIGSurface_setMoistureInputMode_1(self, moistureInputMode); -};; +}; -SIGSurface.prototype['setMoistureLiveAggregate'] = SIGSurface.prototype.setMoistureLiveAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLive, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureLiveAggregate'] = SIGSurface.prototype.setMoistureLiveAggregate = function(moistureLive, moistureUnits) { var self = this.ptr; if (moistureLive && typeof moistureLive === 'object') moistureLive = moistureLive.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2(self, moistureLive, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureLiveHerbaceous'] = SIGSurface.prototype.setMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveHerbaceous, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureLiveHerbaceous'] = SIGSurface.prototype.setMoistureLiveHerbaceous = function(moistureLiveHerbaceous, moistureUnits) { var self = this.ptr; if (moistureLiveHerbaceous && typeof moistureLiveHerbaceous === 'object') moistureLiveHerbaceous = moistureLiveHerbaceous.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2(self, moistureLiveHerbaceous, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureLiveWoody'] = SIGSurface.prototype.setMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveWoody, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureLiveWoody'] = SIGSurface.prototype.setMoistureLiveWoody = function(moistureLiveWoody, moistureUnits) { var self = this.ptr; if (moistureLiveWoody && typeof moistureLiveWoody === 'object') moistureLiveWoody = moistureLiveWoody.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveWoody_2(self, moistureLiveWoody, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureOneHour'] = SIGSurface.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureOneHour'] = SIGSurface.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureScenarios'] = SIGSurface.prototype.setMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarios) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureScenarios'] = SIGSurface.prototype.setMoistureScenarios = function(moistureScenarios) { var self = this.ptr; if (moistureScenarios && typeof moistureScenarios === 'object') moistureScenarios = moistureScenarios.ptr; _emscripten_bind_SIGSurface_setMoistureScenarios_1(self, moistureScenarios); -};; +}; -SIGSurface.prototype['setMoistureTenHour'] = SIGSurface.prototype.setMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureTenHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureTenHour'] = SIGSurface.prototype.setMoistureTenHour = function(moistureTenHour, moistureUnits) { var self = this.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureTenHour_2(self, moistureTenHour, moistureUnits); -};; +}; -SIGSurface.prototype['setOverstoryBasalArea'] = SIGSurface.prototype.setOverstoryBasalArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(overstoryBasalArea, basalAreaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setOverstoryBasalArea'] = SIGSurface.prototype.setOverstoryBasalArea = function(overstoryBasalArea, basalAreaUnits) { var self = this.ptr; if (overstoryBasalArea && typeof overstoryBasalArea === 'object') overstoryBasalArea = overstoryBasalArea.ptr; if (basalAreaUnits && typeof basalAreaUnits === 'object') basalAreaUnits = basalAreaUnits.ptr; _emscripten_bind_SIGSurface_setOverstoryBasalArea_2(self, overstoryBasalArea, basalAreaUnits); -};; +}; -SIGSurface.prototype['setPalmettoCoverage'] = SIGSurface.prototype.setPalmettoCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(palmettoCoverage, coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setPalmettoCoverage'] = SIGSurface.prototype.setPalmettoCoverage = function(palmettoCoverage, coverUnits) { var self = this.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setPalmettoCoverage_2(self, palmettoCoverage, coverUnits); -};; +}; -SIGSurface.prototype['setSecondFuelModelNumber'] = SIGSurface.prototype.setSecondFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(secondFuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setSecondFuelModelNumber'] = SIGSurface.prototype.setSecondFuelModelNumber = function(secondFuelModelNumber) { var self = this.ptr; if (secondFuelModelNumber && typeof secondFuelModelNumber === 'object') secondFuelModelNumber = secondFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1(self, secondFuelModelNumber); -};; +}; -SIGSurface.prototype['setSlope'] = SIGSurface.prototype.setSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope, slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setSlope'] = SIGSurface.prototype.setSlope = function(slope, slopeUnits) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; _emscripten_bind_SIGSurface_setSlope_2(self, slope, slopeUnits); -};; +}; -SIGSurface.prototype['setSurfaceFireSpreadDirectionMode'] = SIGSurface.prototype.setSurfaceFireSpreadDirectionMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setSurfaceFireSpreadDirectionMode'] = SIGSurface.prototype.setSurfaceFireSpreadDirectionMode = function(directionMode) { var self = this.ptr; if (directionMode && typeof directionMode === 'object') directionMode = directionMode.ptr; _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1(self, directionMode); -};; +}; -SIGSurface.prototype['setSurfaceRunInDirectionOf'] = SIGSurface.prototype.setSurfaceRunInDirectionOf = /** @suppress {undefinedVars, duplicate} @this{Object} */function(surfaceRunInDirectionOf) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setSurfaceRunInDirectionOf'] = SIGSurface.prototype.setSurfaceRunInDirectionOf = function(surfaceRunInDirectionOf) { var self = this.ptr; if (surfaceRunInDirectionOf && typeof surfaceRunInDirectionOf === 'object') surfaceRunInDirectionOf = surfaceRunInDirectionOf.ptr; _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1(self, surfaceRunInDirectionOf); -};; +}; -SIGSurface.prototype['setTwoFuelModelsFirstFuelModelCoverage'] = SIGSurface.prototype.setTwoFuelModelsFirstFuelModelCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelCoverage, coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setTwoFuelModelsFirstFuelModelCoverage'] = SIGSurface.prototype.setTwoFuelModelsFirstFuelModelCoverage = function(firstFuelModelCoverage, coverUnits) { var self = this.ptr; if (firstFuelModelCoverage && typeof firstFuelModelCoverage === 'object') firstFuelModelCoverage = firstFuelModelCoverage.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2(self, firstFuelModelCoverage, coverUnits); -};; +}; -SIGSurface.prototype['setTwoFuelModelsMethod'] = SIGSurface.prototype.setTwoFuelModelsMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(twoFuelModelsMethod) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setTwoFuelModelsMethod'] = SIGSurface.prototype.setTwoFuelModelsMethod = function(twoFuelModelsMethod) { var self = this.ptr; if (twoFuelModelsMethod && typeof twoFuelModelsMethod === 'object') twoFuelModelsMethod = twoFuelModelsMethod.ptr; _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1(self, twoFuelModelsMethod); -};; +}; -SIGSurface.prototype['setUserProvidedWindAdjustmentFactor'] = SIGSurface.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setUserProvidedWindAdjustmentFactor'] = SIGSurface.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -};; +}; -SIGSurface.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.setWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAdjustmentFactorCalculationMethod) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.setWindAdjustmentFactorCalculationMethod = function(windAdjustmentFactorCalculationMethod) { var self = this.ptr; if (windAdjustmentFactorCalculationMethod && typeof windAdjustmentFactorCalculationMethod === 'object') windAdjustmentFactorCalculationMethod = windAdjustmentFactorCalculationMethod.ptr; _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1(self, windAdjustmentFactorCalculationMethod); -};; +}; -SIGSurface.prototype['setWindAndSpreadOrientationMode'] = SIGSurface.prototype.setWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAndSpreadOrientationMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindAndSpreadOrientationMode'] = SIGSurface.prototype.setWindAndSpreadOrientationMode = function(windAndSpreadOrientationMode) { var self = this.ptr; if (windAndSpreadOrientationMode && typeof windAndSpreadOrientationMode === 'object') windAndSpreadOrientationMode = windAndSpreadOrientationMode.ptr; _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1(self, windAndSpreadOrientationMode); -};; +}; -SIGSurface.prototype['setWindDirection'] = SIGSurface.prototype.setWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windDirection) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindDirection'] = SIGSurface.prototype.setWindDirection = function(windDirection) { var self = this.ptr; if (windDirection && typeof windDirection === 'object') windDirection = windDirection.ptr; _emscripten_bind_SIGSurface_setWindDirection_1(self, windDirection); -};; +}; -SIGSurface.prototype['setWindHeightInputMode'] = SIGSurface.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindHeightInputMode'] = SIGSurface.prototype.setWindHeightInputMode = function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSurface_setWindHeightInputMode_1(self, windHeightInputMode); -};; +}; -SIGSurface.prototype['setWindSpeed'] = SIGSurface.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindSpeed'] = SIGSurface.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSurface_setWindSpeed_2(self, windSpeed, windSpeedUnits); -};; +}; -SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurfaceInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurfaceInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -3440,9 +3972,10 @@ SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurface if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputs_21(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -};; +}; -SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prototype.updateSurfaceInputsForPalmettoGallbery = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prototype.updateSurfaceInputsForPalmettoGallbery = function(moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; @@ -3470,9 +4003,10 @@ SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prot if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25(self, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -};; +}; -SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototype.updateSurfaceInputsForTwoFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototype.updateSurfaceInputsForTwoFuelModels = function(firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso) { var self = this.ptr; if (firstFuelModelNumber && typeof firstFuelModelNumber === 'object') firstFuelModelNumber = firstFuelModelNumber.ptr; if (secondFuelModelNumber && typeof secondFuelModelNumber === 'object') secondFuelModelNumber = secondFuelModelNumber.ptr; @@ -3500,9 +4034,10 @@ SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototy if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnitso && typeof crownRatioUnitso === 'object') crownRatioUnitso = crownRatioUnitso.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25(self, firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso); -};; +}; -SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototype.updateSurfaceInputsForWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototype.updateSurfaceInputsForWesternAspen = function(aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (aspenFuelModelNumber && typeof aspenFuelModelNumber === 'object') aspenFuelModelNumber = aspenFuelModelNumber.ptr; if (aspenCuringLevel && typeof aspenCuringLevel === 'object') aspenCuringLevel = aspenCuringLevel.ptr; @@ -3531,942 +4066,1101 @@ SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototyp if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26(self, aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -};; +}; -SIGSurface.prototype['setFuelModelNumber'] = SIGSurface.prototype.setFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setFuelModelNumber'] = SIGSurface.prototype.setFuelModelNumber = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; _emscripten_bind_SIGSurface_setFuelModelNumber_1(self, fuelModelNumber); -};; +}; + - SIGSurface.prototype['__destroy__'] = SIGSurface.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['__destroy__'] = SIGSurface.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGSurface___destroy___0(self); }; -// PalmettoGallberry -/** @suppress {undefinedVars, duplicate} @this{Object} */function PalmettoGallberry() { + +// Interface: PalmettoGallberry + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function PalmettoGallberry() { this.ptr = _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0(); getCache(PalmettoGallberry)[this.ptr] = this; -};; +}; + PalmettoGallberry.prototype = Object.create(WrapperObject.prototype); PalmettoGallberry.prototype.constructor = PalmettoGallberry; PalmettoGallberry.prototype.__class__ = PalmettoGallberry; PalmettoGallberry.__cache__ = {}; Module['PalmettoGallberry'] = PalmettoGallberry; - -PalmettoGallberry.prototype['initializeMembers'] = PalmettoGallberry.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['initializeMembers'] = PalmettoGallberry.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_PalmettoGallberry_initializeMembers_0(self); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFineFuelLoad = function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2(self, ageOfRough, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFoliageLoad = function(ageOfRough, palmettoCoverage) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2(self, ageOfRough, palmettoCoverage); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadMediumFuelLoad = function(ageOfRough, palmettoCoverage) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2(self, ageOfRough, palmettoCoverage); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.calculatePalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.calculatePalmettoGallberyFuelBedDepth = function(heightOfUnderstory) { var self = this.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1(self, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, overstoryBasalArea) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLitterLoad = function(ageOfRough, overstoryBasalArea) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (overstoryBasalArea && typeof overstoryBasalArea === 'object') overstoryBasalArea = overstoryBasalArea.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2(self, ageOfRough, overstoryBasalArea); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFineFuelLoad = function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2(self, ageOfRough, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage, heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFoliageLoad = function(ageOfRough, palmettoCoverage, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3(self, ageOfRough, palmettoCoverage, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveMediumFuelLoad = function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2(self, ageOfRough, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['getHeatOfCombustionDead'] = PalmettoGallberry.prototype.getHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getHeatOfCombustionDead'] = PalmettoGallberry.prototype.getHeatOfCombustionDead = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0(self); -};; +}; -PalmettoGallberry.prototype['getHeatOfCombustionLive'] = PalmettoGallberry.prototype.getHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getHeatOfCombustionLive'] = PalmettoGallberry.prototype.getHeatOfCombustionLive = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0(self); -};; +}; -PalmettoGallberry.prototype['getMoistureOfExtinctionDead'] = PalmettoGallberry.prototype.getMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getMoistureOfExtinctionDead'] = PalmettoGallberry.prototype.getMoistureOfExtinctionDead = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFineFuelLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFoliageLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadMediumFuelLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.getPalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.getPalmettoGallberyFuelBedDepth = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLitterLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFineFuelLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFoliageLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveMediumFuelLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0(self); -};; +}; + - PalmettoGallberry.prototype['__destroy__'] = PalmettoGallberry.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['__destroy__'] = PalmettoGallberry.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_PalmettoGallberry___destroy___0(self); }; -// WesternAspen -/** @suppress {undefinedVars, duplicate} @this{Object} */function WesternAspen() { + +// Interface: WesternAspen + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function WesternAspen() { this.ptr = _emscripten_bind_WesternAspen_WesternAspen_0(); getCache(WesternAspen)[this.ptr] = this; -};; +}; + WesternAspen.prototype = Object.create(WrapperObject.prototype); WesternAspen.prototype.constructor = WesternAspen; WesternAspen.prototype.__class__ = WesternAspen; WesternAspen.__cache__ = {}; Module['WesternAspen'] = WesternAspen; - -WesternAspen.prototype['initializeMembers'] = WesternAspen.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['initializeMembers'] = WesternAspen.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_WesternAspen_initializeMembers_0(self); -};; +}; -WesternAspen.prototype['calculateAspenMortality'] = WesternAspen.prototype.calculateAspenMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(severity, flameLength, DBH) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['calculateAspenMortality'] = WesternAspen.prototype.calculateAspenMortality = function(severity, flameLength, DBH) { var self = this.ptr; if (severity && typeof severity === 'object') severity = severity.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (DBH && typeof DBH === 'object') DBH = DBH.ptr; return _emscripten_bind_WesternAspen_calculateAspenMortality_3(self, severity, flameLength, DBH); -};; +}; -WesternAspen.prototype['getAspenFuelBedDepth'] = WesternAspen.prototype.getAspenFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(typeIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenFuelBedDepth'] = WesternAspen.prototype.getAspenFuelBedDepth = function(typeIndex) { var self = this.ptr; if (typeIndex && typeof typeIndex === 'object') typeIndex = typeIndex.ptr; return _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1(self, typeIndex); -};; +}; -WesternAspen.prototype['getAspenHeatOfCombustionDead'] = WesternAspen.prototype.getAspenHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenHeatOfCombustionDead'] = WesternAspen.prototype.getAspenHeatOfCombustionDead = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0(self); -};; +}; -WesternAspen.prototype['getAspenHeatOfCombustionLive'] = WesternAspen.prototype.getAspenHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenHeatOfCombustionLive'] = WesternAspen.prototype.getAspenHeatOfCombustionLive = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0(self); -};; +}; -WesternAspen.prototype['getAspenLoadDeadOneHour'] = WesternAspen.prototype.getAspenLoadDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenLoadDeadOneHour'] = WesternAspen.prototype.getAspenLoadDeadOneHour = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0(self); -};; +}; -WesternAspen.prototype['getAspenLoadDeadTenHour'] = WesternAspen.prototype.getAspenLoadDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenLoadDeadTenHour'] = WesternAspen.prototype.getAspenLoadDeadTenHour = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0(self); -};; +}; -WesternAspen.prototype['getAspenLoadLiveHerbaceous'] = WesternAspen.prototype.getAspenLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenLoadLiveHerbaceous'] = WesternAspen.prototype.getAspenLoadLiveHerbaceous = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0(self); -};; +}; -WesternAspen.prototype['getAspenLoadLiveWoody'] = WesternAspen.prototype.getAspenLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenLoadLiveWoody'] = WesternAspen.prototype.getAspenLoadLiveWoody = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0(self); -};; +}; -WesternAspen.prototype['getAspenMoistureOfExtinctionDead'] = WesternAspen.prototype.getAspenMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenMoistureOfExtinctionDead'] = WesternAspen.prototype.getAspenMoistureOfExtinctionDead = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0(self); -};; +}; -WesternAspen.prototype['getAspenMortality'] = WesternAspen.prototype.getAspenMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenMortality'] = WesternAspen.prototype.getAspenMortality = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenMortality_0(self); -};; +}; -WesternAspen.prototype['getAspenSavrDeadOneHour'] = WesternAspen.prototype.getAspenSavrDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenSavrDeadOneHour'] = WesternAspen.prototype.getAspenSavrDeadOneHour = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0(self); -};; +}; -WesternAspen.prototype['getAspenSavrDeadTenHour'] = WesternAspen.prototype.getAspenSavrDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenSavrDeadTenHour'] = WesternAspen.prototype.getAspenSavrDeadTenHour = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0(self); -};; +}; -WesternAspen.prototype['getAspenSavrLiveHerbaceous'] = WesternAspen.prototype.getAspenSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenSavrLiveHerbaceous'] = WesternAspen.prototype.getAspenSavrLiveHerbaceous = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0(self); -};; +}; -WesternAspen.prototype['getAspenSavrLiveWoody'] = WesternAspen.prototype.getAspenSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenSavrLiveWoody'] = WesternAspen.prototype.getAspenSavrLiveWoody = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0(self); -};; +}; - WesternAspen.prototype['__destroy__'] = WesternAspen.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['__destroy__'] = WesternAspen.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_WesternAspen___destroy___0(self); }; -// SIGCrown -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGCrown(fuelModels) { + +// Interface: SIGCrown + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGCrown(fuelModels) { if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; this.ptr = _emscripten_bind_SIGCrown_SIGCrown_1(fuelModels); getCache(SIGCrown)[this.ptr] = this; -};; +}; + SIGCrown.prototype = Object.create(WrapperObject.prototype); SIGCrown.prototype.constructor = SIGCrown; SIGCrown.prototype.__class__ = SIGCrown; SIGCrown.__cache__ = {}; Module['SIGCrown'] = SIGCrown; - -SIGCrown.prototype['getFireType'] = SIGCrown.prototype.getFireType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFireType'] = SIGCrown.prototype.getFireType = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getFireType_0(self); -};; +}; -SIGCrown.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1(self, index)); -};; +}; -SIGCrown.prototype['getIsMoistureScenarioDefinedByName'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getIsMoistureScenarioDefinedByName'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1(self, name)); -};; +}; -SIGCrown.prototype['isAllFuelLoadZero'] = SIGCrown.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['isAllFuelLoadZero'] = SIGCrown.prototype.isAllFuelLoadZero = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isAllFuelLoadZero_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['isFuelDynamic'] = SIGCrown.prototype.isFuelDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['isFuelDynamic'] = SIGCrown.prototype.isFuelDynamic = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelDynamic_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['isFuelModelDefined'] = SIGCrown.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['isFuelModelDefined'] = SIGCrown.prototype.isFuelModelDefined = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelModelDefined_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['isFuelModelReserved'] = SIGCrown.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['isFuelModelReserved'] = SIGCrown.prototype.isFuelModelReserved = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelModelReserved_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['setCurrentMoistureScenarioByIndex'] = SIGCrown.prototype.setCurrentMoistureScenarioByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCurrentMoistureScenarioByIndex'] = SIGCrown.prototype.setCurrentMoistureScenarioByIndex = function(moistureScenarioIndex) { var self = this.ptr; if (moistureScenarioIndex && typeof moistureScenarioIndex === 'object') moistureScenarioIndex = moistureScenarioIndex.ptr; return !!(_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1(self, moistureScenarioIndex)); -};; +}; -SIGCrown.prototype['setCurrentMoistureScenarioByName'] = SIGCrown.prototype.setCurrentMoistureScenarioByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioName) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCurrentMoistureScenarioByName'] = SIGCrown.prototype.setCurrentMoistureScenarioByName = function(moistureScenarioName) { var self = this.ptr; ensureCache.prepare(); if (moistureScenarioName && typeof moistureScenarioName === 'object') moistureScenarioName = moistureScenarioName.ptr; else moistureScenarioName = ensureString(moistureScenarioName); return !!(_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1(self, moistureScenarioName)); -};; +}; -SIGCrown.prototype['getAspect'] = SIGCrown.prototype.getAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getAspect'] = SIGCrown.prototype.getAspect = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getAspect_0(self); -};; +}; -SIGCrown.prototype['getCanopyBaseHeight'] = SIGCrown.prototype.getCanopyBaseHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCanopyBaseHeight'] = SIGCrown.prototype.getCanopyBaseHeight = function(canopyHeightUnits) { var self = this.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyBaseHeight_1(self, canopyHeightUnits); -};; +}; -SIGCrown.prototype['getCanopyBulkDensity'] = SIGCrown.prototype.getCanopyBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBulkDensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCanopyBulkDensity'] = SIGCrown.prototype.getCanopyBulkDensity = function(canopyBulkDensityUnits) { var self = this.ptr; if (canopyBulkDensityUnits && typeof canopyBulkDensityUnits === 'object') canopyBulkDensityUnits = canopyBulkDensityUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyBulkDensity_1(self, canopyBulkDensityUnits); -};; +}; -SIGCrown.prototype['getCanopyCover'] = SIGCrown.prototype.getCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyFractionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCanopyCover'] = SIGCrown.prototype.getCanopyCover = function(canopyFractionUnits) { var self = this.ptr; if (canopyFractionUnits && typeof canopyFractionUnits === 'object') canopyFractionUnits = canopyFractionUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyCover_1(self, canopyFractionUnits); -};; +}; -SIGCrown.prototype['getCanopyHeight'] = SIGCrown.prototype.getCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeighUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCanopyHeight'] = SIGCrown.prototype.getCanopyHeight = function(canopyHeighUnits) { var self = this.ptr; if (canopyHeighUnits && typeof canopyHeighUnits === 'object') canopyHeighUnits = canopyHeighUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyHeight_1(self, canopyHeighUnits); -};; +}; -SIGCrown.prototype['getCriticalOpenWindSpeed'] = SIGCrown.prototype.getCriticalOpenWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCriticalOpenWindSpeed'] = SIGCrown.prototype.getCriticalOpenWindSpeed = function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1(self, speedUnits); -};; +}; -SIGCrown.prototype['getCrownCriticalFireSpreadRate'] = SIGCrown.prototype.getCrownCriticalFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownCriticalFireSpreadRate'] = SIGCrown.prototype.getCrownCriticalFireSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGCrown.prototype['getCrownCriticalSurfaceFirelineIntensity'] = SIGCrown.prototype.getCrownCriticalSurfaceFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownCriticalSurfaceFirelineIntensity'] = SIGCrown.prototype.getCrownCriticalSurfaceFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGCrown.prototype['getCrownCriticalSurfaceFlameLength'] = SIGCrown.prototype.getCrownCriticalSurfaceFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownCriticalSurfaceFlameLength'] = SIGCrown.prototype.getCrownCriticalSurfaceFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1(self, flameLengthUnits); -};; +}; -SIGCrown.prototype['getCrownFireActiveRatio'] = SIGCrown.prototype.getCrownFireActiveRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireActiveRatio'] = SIGCrown.prototype.getCrownFireActiveRatio = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0(self); -};; +}; -SIGCrown.prototype['getCrownFireArea'] = SIGCrown.prototype.getCrownFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireArea'] = SIGCrown.prototype.getCrownFireArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireArea_1(self, areaUnits); -};; +}; -SIGCrown.prototype['getCrownFirePerimeter'] = SIGCrown.prototype.getCrownFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFirePerimeter'] = SIGCrown.prototype.getCrownFirePerimeter = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFirePerimeter_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getCrownTransitionRatio'] = SIGCrown.prototype.getCrownTransitionRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownTransitionRatio'] = SIGCrown.prototype.getCrownTransitionRatio = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownTransitionRatio_0(self); -};; +}; -SIGCrown.prototype['getCrownFireLengthToWidthRatio'] = SIGCrown.prototype.getCrownFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireLengthToWidthRatio'] = SIGCrown.prototype.getCrownFireLengthToWidthRatio = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0(self); -};; +}; -SIGCrown.prototype['getCrownFireSpreadDistance'] = SIGCrown.prototype.getCrownFireSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireSpreadDistance'] = SIGCrown.prototype.getCrownFireSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getCrownFireSpreadRate'] = SIGCrown.prototype.getCrownFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireSpreadRate'] = SIGCrown.prototype.getCrownFireSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGCrown.prototype['getCrownFirelineIntensity'] = SIGCrown.prototype.getCrownFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFirelineIntensity'] = SIGCrown.prototype.getCrownFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGCrown.prototype['getCrownFlameLength'] = SIGCrown.prototype.getCrownFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFlameLength'] = SIGCrown.prototype.getCrownFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFlameLength_1(self, flameLengthUnits); -};; +}; -SIGCrown.prototype['getCrownFractionBurned'] = SIGCrown.prototype.getCrownFractionBurned = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFractionBurned'] = SIGCrown.prototype.getCrownFractionBurned = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFractionBurned_0(self); -};; +}; -SIGCrown.prototype['getCrownRatio'] = SIGCrown.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownRatio'] = SIGCrown.prototype.getCrownRatio = function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGCrown_getCrownRatio_1(self, crownRatioUnits); -};; +}; -SIGCrown.prototype['getFinalFirelineIntesity'] = SIGCrown.prototype.getFinalFirelineIntesity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalFirelineIntesity'] = SIGCrown.prototype.getFinalFirelineIntesity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1(self, firelineIntensityUnits); -};; +}; -SIGCrown.prototype['getFinalHeatPerUnitArea'] = SIGCrown.prototype.getFinalHeatPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatPerUnitAreaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalHeatPerUnitArea'] = SIGCrown.prototype.getFinalHeatPerUnitArea = function(heatPerUnitAreaUnits) { var self = this.ptr; if (heatPerUnitAreaUnits && typeof heatPerUnitAreaUnits === 'object') heatPerUnitAreaUnits = heatPerUnitAreaUnits.ptr; return _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1(self, heatPerUnitAreaUnits); -};; +}; -SIGCrown.prototype['getFinalSpreadRate'] = SIGCrown.prototype.getFinalSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalSpreadRate'] = SIGCrown.prototype.getFinalSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getFinalSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGCrown.prototype['getFinalSpreadDistance'] = SIGCrown.prototype.getFinalSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalSpreadDistance'] = SIGCrown.prototype.getFinalSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalSpreadDistance_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getFinalFireArea'] = SIGCrown.prototype.getFinalFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalFireArea'] = SIGCrown.prototype.getFinalFireArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFireArea_1(self, areaUnits); -};; +}; -SIGCrown.prototype['getFinalFirePerimeter'] = SIGCrown.prototype.getFinalFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalFirePerimeter'] = SIGCrown.prototype.getFinalFirePerimeter = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFirePerimeter_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getFuelHeatOfCombustionDead'] = SIGCrown.prototype.getFuelHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelHeatOfCombustionDead'] = SIGCrown.prototype.getFuelHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGCrown.prototype['getFuelHeatOfCombustionLive'] = SIGCrown.prototype.getFuelHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelHeatOfCombustionLive'] = SIGCrown.prototype.getFuelHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGCrown.prototype['getFuelLoadHundredHour'] = SIGCrown.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadHundredHour'] = SIGCrown.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelLoadLiveHerbaceous'] = SIGCrown.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadLiveHerbaceous'] = SIGCrown.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelLoadLiveWoody'] = SIGCrown.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadLiveWoody'] = SIGCrown.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelLoadOneHour'] = SIGCrown.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadOneHour'] = SIGCrown.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelLoadTenHour'] = SIGCrown.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadTenHour'] = SIGCrown.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelMoistureOfExtinctionDead'] = SIGCrown.prototype.getFuelMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelMoistureOfExtinctionDead'] = SIGCrown.prototype.getFuelMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -};; +}; -SIGCrown.prototype['getFuelSavrLiveHerbaceous'] = SIGCrown.prototype.getFuelSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelSavrLiveHerbaceous'] = SIGCrown.prototype.getFuelSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGCrown.prototype['getFuelSavrLiveWoody'] = SIGCrown.prototype.getFuelSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelSavrLiveWoody'] = SIGCrown.prototype.getFuelSavrLiveWoody = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGCrown.prototype['getFuelSavrOneHour'] = SIGCrown.prototype.getFuelSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelSavrOneHour'] = SIGCrown.prototype.getFuelSavrOneHour = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrOneHour_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGCrown.prototype['getFuelbedDepth'] = SIGCrown.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelbedDepth'] = SIGCrown.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -};; +}; -SIGCrown.prototype['getMoistureFoliar'] = SIGCrown.prototype.getMoistureFoliar = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureFoliar'] = SIGCrown.prototype.getMoistureFoliar = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureFoliar_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureHundredHour'] = SIGCrown.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureHundredHour'] = SIGCrown.prototype.getMoistureHundredHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureHundredHour_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureLiveHerbaceous'] = SIGCrown.prototype.getMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureLiveHerbaceous'] = SIGCrown.prototype.getMoistureLiveHerbaceous = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureLiveWoody'] = SIGCrown.prototype.getMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureLiveWoody'] = SIGCrown.prototype.getMoistureLiveWoody = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureLiveWoody_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureOneHour'] = SIGCrown.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureOneHour'] = SIGCrown.prototype.getMoistureOneHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureOneHour_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioHundredHourByIndex'] = SIGCrown.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioHundredHourByIndex'] = SIGCrown.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioHundredHourByName'] = SIGCrown.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioHundredHourByName'] = SIGCrown.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioLiveWoodyByName'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioLiveWoodyByName'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioOneHourByIndex'] = SIGCrown.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioOneHourByIndex'] = SIGCrown.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioOneHourByName'] = SIGCrown.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioOneHourByName'] = SIGCrown.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioTenHourByIndex'] = SIGCrown.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioTenHourByIndex'] = SIGCrown.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioTenHourByName'] = SIGCrown.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioTenHourByName'] = SIGCrown.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureTenHour'] = SIGCrown.prototype.getMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureTenHour'] = SIGCrown.prototype.getMoistureTenHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureTenHour_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getSlope'] = SIGCrown.prototype.getSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getSlope'] = SIGCrown.prototype.getSlope = function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGCrown_getSlope_1(self, slopeUnits); -};; +}; -SIGCrown.prototype['getSurfaceFireSpreadDistance'] = SIGCrown.prototype.getSurfaceFireSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getSurfaceFireSpreadDistance'] = SIGCrown.prototype.getSurfaceFireSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getSurfaceFireSpreadRate'] = SIGCrown.prototype.getSurfaceFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getSurfaceFireSpreadRate'] = SIGCrown.prototype.getSurfaceFireSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGCrown.prototype['getWindDirection'] = SIGCrown.prototype.getWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getWindDirection'] = SIGCrown.prototype.getWindDirection = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getWindDirection_0(self); -};; +}; -SIGCrown.prototype['getWindSpeed'] = SIGCrown.prototype.getWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits, windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getWindSpeed'] = SIGCrown.prototype.getWindSpeed = function(windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; return _emscripten_bind_SIGCrown_getWindSpeed_2(self, windSpeedUnits, windHeightInputMode); -};; +}; -SIGCrown.prototype['getFuelModelNumber'] = SIGCrown.prototype.getFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelModelNumber'] = SIGCrown.prototype.getFuelModelNumber = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getFuelModelNumber_0(self); -};; +}; -SIGCrown.prototype['getMoistureScenarioIndexByName'] = SIGCrown.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioIndexByName'] = SIGCrown.prototype.getMoistureScenarioIndexByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1(self, name); -};; +}; -SIGCrown.prototype['getNumberOfMoistureScenarios'] = SIGCrown.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getNumberOfMoistureScenarios'] = SIGCrown.prototype.getNumberOfMoistureScenarios = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0(self); -};; +}; -SIGCrown.prototype['getFuelCode'] = SIGCrown.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelCode'] = SIGCrown.prototype.getFuelCode = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getFuelCode_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['getFuelName'] = SIGCrown.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelName'] = SIGCrown.prototype.getFuelName = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getFuelName_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['getMoistureScenarioDescriptionByIndex'] = SIGCrown.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioDescriptionByIndex'] = SIGCrown.prototype.getMoistureScenarioDescriptionByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1(self, index)); -};; +}; -SIGCrown.prototype['getMoistureScenarioDescriptionByName'] = SIGCrown.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioDescriptionByName'] = SIGCrown.prototype.getMoistureScenarioDescriptionByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1(self, name)); -};; +}; -SIGCrown.prototype['getMoistureScenarioNameByIndex'] = SIGCrown.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioNameByIndex'] = SIGCrown.prototype.getMoistureScenarioNameByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1(self, index)); -};; +}; -SIGCrown.prototype['doCrownRun'] = SIGCrown.prototype.doCrownRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['doCrownRun'] = SIGCrown.prototype.doCrownRun = function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRun_0(self); -};; +}; -SIGCrown.prototype['doCrownRunRothermel'] = SIGCrown.prototype.doCrownRunRothermel = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['doCrownRunRothermel'] = SIGCrown.prototype.doCrownRunRothermel = function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRunRothermel_0(self); -};; +}; -SIGCrown.prototype['doCrownRunScottAndReinhardt'] = SIGCrown.prototype.doCrownRunScottAndReinhardt = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['doCrownRunScottAndReinhardt'] = SIGCrown.prototype.doCrownRunScottAndReinhardt = function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0(self); -};; +}; -SIGCrown.prototype['initializeMembers'] = SIGCrown.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['initializeMembers'] = SIGCrown.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGCrown_initializeMembers_0(self); -};; +}; -SIGCrown.prototype['setAspect'] = SIGCrown.prototype.setAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspect) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setAspect'] = SIGCrown.prototype.setAspect = function(aspect) { var self = this.ptr; if (aspect && typeof aspect === 'object') aspect = aspect.ptr; _emscripten_bind_SIGCrown_setAspect_1(self, aspect); -};; +}; -SIGCrown.prototype['setCanopyBaseHeight'] = SIGCrown.prototype.setCanopyBaseHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBaseHeight, canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCanopyBaseHeight'] = SIGCrown.prototype.setCanopyBaseHeight = function(canopyBaseHeight, canopyHeightUnits) { var self = this.ptr; if (canopyBaseHeight && typeof canopyBaseHeight === 'object') canopyBaseHeight = canopyBaseHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGCrown_setCanopyBaseHeight_2(self, canopyBaseHeight, canopyHeightUnits); -};; +}; -SIGCrown.prototype['setCanopyBulkDensity'] = SIGCrown.prototype.setCanopyBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBulkDensity, densityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCanopyBulkDensity'] = SIGCrown.prototype.setCanopyBulkDensity = function(canopyBulkDensity, densityUnits) { var self = this.ptr; if (canopyBulkDensity && typeof canopyBulkDensity === 'object') canopyBulkDensity = canopyBulkDensity.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; _emscripten_bind_SIGCrown_setCanopyBulkDensity_2(self, canopyBulkDensity, densityUnits); -};; +}; -SIGCrown.prototype['setCanopyCover'] = SIGCrown.prototype.setCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyCover, coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCanopyCover'] = SIGCrown.prototype.setCanopyCover = function(canopyCover, coverUnits) { var self = this.ptr; if (canopyCover && typeof canopyCover === 'object') canopyCover = canopyCover.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGCrown_setCanopyCover_2(self, canopyCover, coverUnits); -};; +}; -SIGCrown.prototype['setCanopyHeight'] = SIGCrown.prototype.setCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeight, canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCanopyHeight'] = SIGCrown.prototype.setCanopyHeight = function(canopyHeight, canopyHeightUnits) { var self = this.ptr; if (canopyHeight && typeof canopyHeight === 'object') canopyHeight = canopyHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGCrown_setCanopyHeight_2(self, canopyHeight, canopyHeightUnits); -};; +}; -SIGCrown.prototype['setCrownRatio'] = SIGCrown.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCrownRatio'] = SIGCrown.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGCrown_setCrownRatio_2(self, crownRatio, crownRatioUnits); -};; +}; -SIGCrown.prototype['setFuelModelNumber'] = SIGCrown.prototype.setFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setFuelModelNumber'] = SIGCrown.prototype.setFuelModelNumber = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; _emscripten_bind_SIGCrown_setFuelModelNumber_1(self, fuelModelNumber); -};; +}; -SIGCrown.prototype['setCrownFireCalculationMethod'] = SIGCrown.prototype.setCrownFireCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(CrownFireCalculationMethod) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCrownFireCalculationMethod'] = SIGCrown.prototype.setCrownFireCalculationMethod = function(CrownFireCalculationMethod) { var self = this.ptr; if (CrownFireCalculationMethod && typeof CrownFireCalculationMethod === 'object') CrownFireCalculationMethod = CrownFireCalculationMethod.ptr; _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1(self, CrownFireCalculationMethod); -};; +}; -SIGCrown.prototype['setElapsedTime'] = SIGCrown.prototype.setElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setElapsedTime'] = SIGCrown.prototype.setElapsedTime = function(elapsedTime, timeUnits) { var self = this.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGCrown_setElapsedTime_2(self, elapsedTime, timeUnits); -};; +}; -SIGCrown.prototype['setFuelModels'] = SIGCrown.prototype.setFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModels) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setFuelModels'] = SIGCrown.prototype.setFuelModels = function(fuelModels) { var self = this.ptr; if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; _emscripten_bind_SIGCrown_setFuelModels_1(self, fuelModels); -};; +}; -SIGCrown.prototype['setMoistureDeadAggregate'] = SIGCrown.prototype.setMoistureDeadAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureDead, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureDeadAggregate'] = SIGCrown.prototype.setMoistureDeadAggregate = function(moistureDead, moistureUnits) { var self = this.ptr; if (moistureDead && typeof moistureDead === 'object') moistureDead = moistureDead.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2(self, moistureDead, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureFoliar'] = SIGCrown.prototype.setMoistureFoliar = /** @suppress {undefinedVars, duplicate} @this{Object} */function(foliarMoisture, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureFoliar'] = SIGCrown.prototype.setMoistureFoliar = function(foliarMoisture, moistureUnits) { var self = this.ptr; if (foliarMoisture && typeof foliarMoisture === 'object') foliarMoisture = foliarMoisture.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureFoliar_2(self, foliarMoisture, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureHundredHour'] = SIGCrown.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureHundredHour'] = SIGCrown.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureInputMode'] = SIGCrown.prototype.setMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureInputMode'] = SIGCrown.prototype.setMoistureInputMode = function(moistureInputMode) { var self = this.ptr; if (moistureInputMode && typeof moistureInputMode === 'object') moistureInputMode = moistureInputMode.ptr; _emscripten_bind_SIGCrown_setMoistureInputMode_1(self, moistureInputMode); -};; +}; -SIGCrown.prototype['setMoistureLiveAggregate'] = SIGCrown.prototype.setMoistureLiveAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLive, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureLiveAggregate'] = SIGCrown.prototype.setMoistureLiveAggregate = function(moistureLive, moistureUnits) { var self = this.ptr; if (moistureLive && typeof moistureLive === 'object') moistureLive = moistureLive.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2(self, moistureLive, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureLiveHerbaceous'] = SIGCrown.prototype.setMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveHerbaceous, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureLiveHerbaceous'] = SIGCrown.prototype.setMoistureLiveHerbaceous = function(moistureLiveHerbaceous, moistureUnits) { var self = this.ptr; if (moistureLiveHerbaceous && typeof moistureLiveHerbaceous === 'object') moistureLiveHerbaceous = moistureLiveHerbaceous.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2(self, moistureLiveHerbaceous, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureLiveWoody'] = SIGCrown.prototype.setMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveWoody, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureLiveWoody'] = SIGCrown.prototype.setMoistureLiveWoody = function(moistureLiveWoody, moistureUnits) { var self = this.ptr; if (moistureLiveWoody && typeof moistureLiveWoody === 'object') moistureLiveWoody = moistureLiveWoody.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveWoody_2(self, moistureLiveWoody, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureOneHour'] = SIGCrown.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureOneHour'] = SIGCrown.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureScenarios'] = SIGCrown.prototype.setMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarios) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureScenarios'] = SIGCrown.prototype.setMoistureScenarios = function(moistureScenarios) { var self = this.ptr; if (moistureScenarios && typeof moistureScenarios === 'object') moistureScenarios = moistureScenarios.ptr; _emscripten_bind_SIGCrown_setMoistureScenarios_1(self, moistureScenarios); -};; +}; -SIGCrown.prototype['setMoistureTenHour'] = SIGCrown.prototype.setMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureTenHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureTenHour'] = SIGCrown.prototype.setMoistureTenHour = function(moistureTenHour, moistureUnits) { var self = this.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureTenHour_2(self, moistureTenHour, moistureUnits); -};; +}; -SIGCrown.prototype['setSlope'] = SIGCrown.prototype.setSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope, slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setSlope'] = SIGCrown.prototype.setSlope = function(slope, slopeUnits) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; _emscripten_bind_SIGCrown_setSlope_2(self, slope, slopeUnits); -};; +}; -SIGCrown.prototype['setUserProvidedWindAdjustmentFactor'] = SIGCrown.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setUserProvidedWindAdjustmentFactor'] = SIGCrown.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -};; +}; -SIGCrown.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGCrown.prototype.setWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAdjustmentFactorCalculationMethod) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGCrown.prototype.setWindAdjustmentFactorCalculationMethod = function(windAdjustmentFactorCalculationMethod) { var self = this.ptr; if (windAdjustmentFactorCalculationMethod && typeof windAdjustmentFactorCalculationMethod === 'object') windAdjustmentFactorCalculationMethod = windAdjustmentFactorCalculationMethod.ptr; _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1(self, windAdjustmentFactorCalculationMethod); -};; +}; -SIGCrown.prototype['setWindAndSpreadOrientationMode'] = SIGCrown.prototype.setWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAndSpreadAngleMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindAndSpreadOrientationMode'] = SIGCrown.prototype.setWindAndSpreadOrientationMode = function(windAndSpreadAngleMode) { var self = this.ptr; if (windAndSpreadAngleMode && typeof windAndSpreadAngleMode === 'object') windAndSpreadAngleMode = windAndSpreadAngleMode.ptr; _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1(self, windAndSpreadAngleMode); -};; +}; -SIGCrown.prototype['setWindDirection'] = SIGCrown.prototype.setWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windDirection) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindDirection'] = SIGCrown.prototype.setWindDirection = function(windDirection) { var self = this.ptr; if (windDirection && typeof windDirection === 'object') windDirection = windDirection.ptr; _emscripten_bind_SIGCrown_setWindDirection_1(self, windDirection); -};; +}; -SIGCrown.prototype['setWindHeightInputMode'] = SIGCrown.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindHeightInputMode'] = SIGCrown.prototype.setWindHeightInputMode = function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGCrown_setWindHeightInputMode_1(self, windHeightInputMode); -};; +}; -SIGCrown.prototype['setWindSpeed'] = SIGCrown.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindSpeed'] = SIGCrown.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGCrown_setWindSpeed_2(self, windSpeed, windSpeedUnits); -};; +}; -SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -4494,9 +5188,10 @@ SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = if (canopyBulkDensity && typeof canopyBulkDensity === 'object') canopyBulkDensity = canopyBulkDensity.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; _emscripten_bind_SIGCrown_updateCrownInputs_25(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits); -};; +}; -SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrownsSurfaceInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrownsSurfaceInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -4520,69 +5215,84 @@ SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrown if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -};; +}; -SIGCrown.prototype['getFinalFlameLength'] = SIGCrown.prototype.getFinalFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalFlameLength'] = SIGCrown.prototype.getFinalFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFlameLength_1(self, flameLengthUnits); -};; +}; - SIGCrown.prototype['__destroy__'] = SIGCrown.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['__destroy__'] = SIGCrown.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGCrown___destroy___0(self); }; -// SpeciesMasterTableRecord -/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTableRecord(rhs) { + +// Interface: SpeciesMasterTableRecord + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SpeciesMasterTableRecord(rhs) { if (rhs && typeof rhs === 'object') rhs = rhs.ptr; if (rhs === undefined) { this.ptr = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0(); getCache(SpeciesMasterTableRecord)[this.ptr] = this;return } this.ptr = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1(rhs); getCache(SpeciesMasterTableRecord)[this.ptr] = this; -};; +}; + SpeciesMasterTableRecord.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTableRecord.prototype.constructor = SpeciesMasterTableRecord; SpeciesMasterTableRecord.prototype.__class__ = SpeciesMasterTableRecord; SpeciesMasterTableRecord.__cache__ = {}; Module['SpeciesMasterTableRecord'] = SpeciesMasterTableRecord; - SpeciesMasterTableRecord.prototype['__destroy__'] = SpeciesMasterTableRecord.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecord.prototype['__destroy__'] = SpeciesMasterTableRecord.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTableRecord___destroy___0(self); }; -// SpeciesMasterTable -/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTable() { + +// Interface: SpeciesMasterTable + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SpeciesMasterTable() { this.ptr = _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0(); getCache(SpeciesMasterTable)[this.ptr] = this; -};; +}; + SpeciesMasterTable.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTable.prototype.constructor = SpeciesMasterTable; SpeciesMasterTable.prototype.__class__ = SpeciesMasterTable; SpeciesMasterTable.__cache__ = {}; Module['SpeciesMasterTable'] = SpeciesMasterTable; - -SpeciesMasterTable.prototype['initializeMasterTable'] = SpeciesMasterTable.prototype.initializeMasterTable = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['initializeMasterTable'] = SpeciesMasterTable.prototype.initializeMasterTable = function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0(self); -};; +}; -SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCode'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCode'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1(self, speciesCode); -};; +}; -SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = function(speciesCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2(self, speciesCode, equationType); -};; +}; -SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.insertRecord = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.insertRecord = function(speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; @@ -4606,61 +5316,72 @@ SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.inse if (equationType && typeof equationType === 'object') equationType = equationType.ptr; if (crownDamageEquationCode && typeof crownDamageEquationCode === 'object') crownDamageEquationCode = crownDamageEquationCode.ptr; _emscripten_bind_SpeciesMasterTable_insertRecord_17(self, speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode); -};; +}; - SpeciesMasterTable.prototype['__destroy__'] = SpeciesMasterTable.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['__destroy__'] = SpeciesMasterTable.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTable___destroy___0(self); }; -// SIGMortality -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGMortality(speciesMasterTable) { + +// Interface: SIGMortality + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGMortality(speciesMasterTable) { if (speciesMasterTable && typeof speciesMasterTable === 'object') speciesMasterTable = speciesMasterTable.ptr; this.ptr = _emscripten_bind_SIGMortality_SIGMortality_1(speciesMasterTable); getCache(SIGMortality)[this.ptr] = this; -};; +}; + SIGMortality.prototype = Object.create(WrapperObject.prototype); SIGMortality.prototype.constructor = SIGMortality; SIGMortality.prototype.__class__ = SIGMortality; SIGMortality.__cache__ = {}; Module['SIGMortality'] = SIGMortality; - -SIGMortality.prototype['initializeMembers'] = SIGMortality.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['initializeMembers'] = SIGMortality.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGMortality_initializeMembers_0(self); -};; +}; -SIGMortality.prototype['checkIsInGACCRegionAtSpeciesTableIndex'] = SIGMortality.prototype.checkIsInGACCRegionAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, region) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['checkIsInGACCRegionAtSpeciesTableIndex'] = SIGMortality.prototype.checkIsInGACCRegionAtSpeciesTableIndex = function(index, region) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (region && typeof region === 'object') region = region.ptr; return !!(_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2(self, index, region)); -};; +}; -SIGMortality.prototype['checkIsInGACCRegionFromSpeciesCode'] = SIGMortality.prototype.checkIsInGACCRegionFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, region) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['checkIsInGACCRegionFromSpeciesCode'] = SIGMortality.prototype.checkIsInGACCRegionFromSpeciesCode = function(speciesCode, region) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (region && typeof region === 'object') region = region.ptr; return !!(_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2(self, speciesCode, region)); -};; +}; -SIGMortality.prototype['updateInputsForSpeciesCodeAndEquationType'] = SIGMortality.prototype.updateInputsForSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['updateInputsForSpeciesCodeAndEquationType'] = SIGMortality.prototype.updateInputsForSpeciesCodeAndEquationType = function(speciesCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return !!(_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2(self, speciesCode, equationType)); -};; +}; -SIGMortality.prototype['calculateMortality'] = SIGMortality.prototype.calculateMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probablityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['calculateMortality'] = SIGMortality.prototype.calculateMortality = function(probablityUnits) { var self = this.ptr; if (probablityUnits && typeof probablityUnits === 'object') probablityUnits = probablityUnits.ptr; return _emscripten_bind_SIGMortality_calculateMortality_1(self, probablityUnits); -};; +}; -SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calculateScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calculateScorchHeight = function(firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; @@ -4670,718 +5391,839 @@ SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calcula if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_calculateScorchHeight_7(self, firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits); -};; +}; -SIGMortality.prototype['calculateMortalityAllDirections'] = SIGMortality.prototype.calculateMortalityAllDirections = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probablityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['calculateMortalityAllDirections'] = SIGMortality.prototype.calculateMortalityAllDirections = function(probablityUnits) { var self = this.ptr; if (probablityUnits && typeof probablityUnits === 'object') probablityUnits = probablityUnits.ptr; _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1(self, probablityUnits); -};; +}; -SIGMortality.prototype['getRequiredFieldVector'] = SIGMortality.prototype.getRequiredFieldVector = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getRequiredFieldVector'] = SIGMortality.prototype.getRequiredFieldVector = function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getRequiredFieldVector_0(self), BoolVector); -};; +}; -SIGMortality.prototype['getBeetleDamage'] = SIGMortality.prototype.getBeetleDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBeetleDamage'] = SIGMortality.prototype.getBeetleDamage = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBeetleDamage_0(self); -};; +}; -SIGMortality.prototype['getCrownDamageEquationCode'] = SIGMortality.prototype.getCrownDamageEquationCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamageEquationCode'] = SIGMortality.prototype.getCrownDamageEquationCode = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0(self); -};; +}; -SIGMortality.prototype['getCrownDamageEquationCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownDamageEquationCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamageEquationCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownDamageEquationCodeAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getCrownDamageEquationCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownDamageEquationCodeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamageEquationCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownDamageEquationCodeFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getCrownDamageType'] = SIGMortality.prototype.getCrownDamageType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamageType'] = SIGMortality.prototype.getCrownDamageType = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamageType_0(self); -};; +}; -SIGMortality.prototype['getCommonNameAtSpeciesTableIndex'] = SIGMortality.prototype.getCommonNameAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCommonNameAtSpeciesTableIndex'] = SIGMortality.prototype.getCommonNameAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1(self, index)); -};; +}; -SIGMortality.prototype['getCommonNameFromSpeciesCode'] = SIGMortality.prototype.getCommonNameFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCommonNameFromSpeciesCode'] = SIGMortality.prototype.getCommonNameFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return UTF8ToString(_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1(self, speciesCode)); -};; +}; -SIGMortality.prototype['getScientificNameAtSpeciesTableIndex'] = SIGMortality.prototype.getScientificNameAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScientificNameAtSpeciesTableIndex'] = SIGMortality.prototype.getScientificNameAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1(self, index)); -};; +}; -SIGMortality.prototype['getScientificNameFromSpeciesCode'] = SIGMortality.prototype.getScientificNameFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScientificNameFromSpeciesCode'] = SIGMortality.prototype.getScientificNameFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return UTF8ToString(_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1(self, speciesCode)); -};; +}; -SIGMortality.prototype['getSpeciesCode'] = SIGMortality.prototype.getSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesCode'] = SIGMortality.prototype.getSpeciesCode = function() { var self = this.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getSpeciesCode_0(self)); -};; +}; -SIGMortality.prototype['getSpeciesCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getSpeciesCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getSpeciesCodeAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1(self, index)); -};; +}; -SIGMortality.prototype['getEquationType'] = SIGMortality.prototype.getEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getEquationType'] = SIGMortality.prototype.getEquationType = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getEquationType_0(self); -};; +}; -SIGMortality.prototype['getEquationTypeAtSpeciesTableIndex'] = SIGMortality.prototype.getEquationTypeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getEquationTypeAtSpeciesTableIndex'] = SIGMortality.prototype.getEquationTypeAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getEquationTypeFromSpeciesCode'] = SIGMortality.prototype.getEquationTypeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getEquationTypeFromSpeciesCode'] = SIGMortality.prototype.getEquationTypeFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getFireSeverity'] = SIGMortality.prototype.getFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getFireSeverity'] = SIGMortality.prototype.getFireSeverity = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getFireSeverity_0(self); -};; +}; -SIGMortality.prototype['getFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.getFlameLengthOrScorchHeightSwitch = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.getFlameLengthOrScorchHeightSwitch = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0(self); -};; +}; -SIGMortality.prototype['getGACCRegion'] = SIGMortality.prototype.getGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getGACCRegion'] = SIGMortality.prototype.getGACCRegion = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getGACCRegion_0(self); -};; +}; -SIGMortality.prototype['getSpeciesRecordVectorForGACCRegion'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesRecordVectorForGACCRegion'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegion = function(region) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1(self, region), SpeciesMasterTableRecordVector); -};; +}; -SIGMortality.prototype['getSpeciesRecordVectorForGACCRegionAndEquationType'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegionAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region, equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesRecordVectorForGACCRegionAndEquationType'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegionAndEquationType = function(region, equationType) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2(self, region, equationType), SpeciesMasterTableRecordVector); -};; +}; -SIGMortality.prototype['getBarkThickness'] = SIGMortality.prototype.getBarkThickness = /** @suppress {undefinedVars, duplicate} @this{Object} */function(barkThicknessUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBarkThickness'] = SIGMortality.prototype.getBarkThickness = function(barkThicknessUnits) { var self = this.ptr; if (barkThicknessUnits && typeof barkThicknessUnits === 'object') barkThicknessUnits = barkThicknessUnits.ptr; return _emscripten_bind_SIGMortality_getBarkThickness_1(self, barkThicknessUnits); -};; +}; -SIGMortality.prototype['getBasalAreaKillled'] = SIGMortality.prototype.getBasalAreaKillled = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBasalAreaKillled'] = SIGMortality.prototype.getBasalAreaKillled = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaKillled_0(self); -};; +}; -SIGMortality.prototype['getBasalAreaPostfire'] = SIGMortality.prototype.getBasalAreaPostfire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBasalAreaPostfire'] = SIGMortality.prototype.getBasalAreaPostfire = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaPostfire_0(self); -};; +}; -SIGMortality.prototype['getBasalAreaPrefire'] = SIGMortality.prototype.getBasalAreaPrefire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBasalAreaPrefire'] = SIGMortality.prototype.getBasalAreaPrefire = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaPrefire_0(self); -};; +}; -SIGMortality.prototype['getBoleCharHeight'] = SIGMortality.prototype.getBoleCharHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBoleCharHeight'] = SIGMortality.prototype.getBoleCharHeight = function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeight_1(self, boleCharHeightUnits); -};; +}; -SIGMortality.prototype['getBoleCharHeightBacking'] = SIGMortality.prototype.getBoleCharHeightBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBoleCharHeightBacking'] = SIGMortality.prototype.getBoleCharHeightBacking = function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1(self, boleCharHeightUnits); -};; +}; -SIGMortality.prototype['getBoleCharHeightFlanking'] = SIGMortality.prototype.getBoleCharHeightFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBoleCharHeightFlanking'] = SIGMortality.prototype.getBoleCharHeightFlanking = function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1(self, boleCharHeightUnits); -};; +}; -SIGMortality.prototype['getCambiumKillRating'] = SIGMortality.prototype.getCambiumKillRating = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCambiumKillRating'] = SIGMortality.prototype.getCambiumKillRating = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCambiumKillRating_0(self); -};; +}; -SIGMortality.prototype['getCrownDamage'] = SIGMortality.prototype.getCrownDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamage'] = SIGMortality.prototype.getCrownDamage = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamage_0(self); -};; +}; -SIGMortality.prototype['getCrownRatio'] = SIGMortality.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownRatio'] = SIGMortality.prototype.getCrownRatio = function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGMortality_getCrownRatio_1(self, crownRatioUnits); -};; +}; -SIGMortality.prototype['getCVSorCLS'] = SIGMortality.prototype.getCVSorCLS = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCVSorCLS'] = SIGMortality.prototype.getCVSorCLS = function() { var self = this.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getCVSorCLS_0(self)); -};; +}; -SIGMortality.prototype['getDBH'] = SIGMortality.prototype.getDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(diameterUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getDBH'] = SIGMortality.prototype.getDBH = function(diameterUnits) { var self = this.ptr; if (diameterUnits && typeof diameterUnits === 'object') diameterUnits = diameterUnits.ptr; return _emscripten_bind_SIGMortality_getDBH_1(self, diameterUnits); -};; +}; -SIGMortality.prototype['getFlameLength'] = SIGMortality.prototype.getFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getFlameLength'] = SIGMortality.prototype.getFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGMortality_getFlameLength_1(self, flameLengthUnits); -};; +}; -SIGMortality.prototype['getFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.getFlameLengthOrScorchHeightValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.getFlameLengthOrScorchHeightValue = function(flameLengthOrScorchHeightUnits) { var self = this.ptr; if (flameLengthOrScorchHeightUnits && typeof flameLengthOrScorchHeightUnits === 'object') flameLengthOrScorchHeightUnits = flameLengthOrScorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1(self, flameLengthOrScorchHeightUnits); -};; +}; -SIGMortality.prototype['getKilledTrees'] = SIGMortality.prototype.getKilledTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getKilledTrees'] = SIGMortality.prototype.getKilledTrees = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getKilledTrees_0(self); -};; +}; -SIGMortality.prototype['getProbabilityOfMortality'] = SIGMortality.prototype.getProbabilityOfMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getProbabilityOfMortality'] = SIGMortality.prototype.getProbabilityOfMortality = function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortality_1(self, probabilityUnits); -};; +}; -SIGMortality.prototype['getProbabilityOfMortalityBacking'] = SIGMortality.prototype.getProbabilityOfMortalityBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getProbabilityOfMortalityBacking'] = SIGMortality.prototype.getProbabilityOfMortalityBacking = function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1(self, probabilityUnits); -};; +}; -SIGMortality.prototype['getProbabilityOfMortalityFlanking'] = SIGMortality.prototype.getProbabilityOfMortalityFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getProbabilityOfMortalityFlanking'] = SIGMortality.prototype.getProbabilityOfMortalityFlanking = function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1(self, probabilityUnits); -};; +}; -SIGMortality.prototype['getScorchHeight'] = SIGMortality.prototype.getScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScorchHeight'] = SIGMortality.prototype.getScorchHeight = function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeight_1(self, scorchHeightUnits); -};; +}; -SIGMortality.prototype['getScorchHeightBacking'] = SIGMortality.prototype.getScorchHeightBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScorchHeightBacking'] = SIGMortality.prototype.getScorchHeightBacking = function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeightBacking_1(self, scorchHeightUnits); -};; +}; -SIGMortality.prototype['getScorchHeightFlanking'] = SIGMortality.prototype.getScorchHeightFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScorchHeightFlanking'] = SIGMortality.prototype.getScorchHeightFlanking = function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeightFlanking_1(self, scorchHeightUnits); -};; +}; -SIGMortality.prototype['getTotalPrefireTrees'] = SIGMortality.prototype.getTotalPrefireTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTotalPrefireTrees'] = SIGMortality.prototype.getTotalPrefireTrees = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getTotalPrefireTrees_0(self); -};; +}; -SIGMortality.prototype['getTreeCrownLengthScorched'] = SIGMortality.prototype.getTreeCrownLengthScorched = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownLengthScorched'] = SIGMortality.prototype.getTreeCrownLengthScorched = function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1(self, treeCrownLengthScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownLengthScorchedBacking'] = SIGMortality.prototype.getTreeCrownLengthScorchedBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownLengthScorchedBacking'] = SIGMortality.prototype.getTreeCrownLengthScorchedBacking = function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1(self, treeCrownLengthScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownLengthScorchedFlanking'] = SIGMortality.prototype.getTreeCrownLengthScorchedFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownLengthScorchedFlanking'] = SIGMortality.prototype.getTreeCrownLengthScorchedFlanking = function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1(self, treeCrownLengthScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownVolumeScorched'] = SIGMortality.prototype.getTreeCrownVolumeScorched = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownVolumeScorched'] = SIGMortality.prototype.getTreeCrownVolumeScorched = function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1(self, getTreeCrownVolumeScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownVolumeScorchedBacking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownVolumeScorchedBacking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedBacking = function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1(self, getTreeCrownVolumeScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownVolumeScorchedFlanking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownVolumeScorchedFlanking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedFlanking = function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1(self, getTreeCrownVolumeScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeDensityPerUnitArea'] = SIGMortality.prototype.getTreeDensityPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeDensityPerUnitArea'] = SIGMortality.prototype.getTreeDensityPerUnitArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1(self, areaUnits); -};; +}; -SIGMortality.prototype['getTreeHeight'] = SIGMortality.prototype.getTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeHeight'] = SIGMortality.prototype.getTreeHeight = function(treeHeightUnits) { var self = this.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; return _emscripten_bind_SIGMortality_getTreeHeight_1(self, treeHeightUnits); -};; +}; -SIGMortality.prototype['postfireCanopyCover'] = SIGMortality.prototype.postfireCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['postfireCanopyCover'] = SIGMortality.prototype.postfireCanopyCover = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_postfireCanopyCover_0(self); -};; +}; -SIGMortality.prototype['prefireCanopyCover'] = SIGMortality.prototype.prefireCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['prefireCanopyCover'] = SIGMortality.prototype.prefireCanopyCover = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_prefireCanopyCover_0(self); -};; +}; -SIGMortality.prototype['getBarkEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getBarkEquationNumberAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBarkEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getBarkEquationNumberAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getBarkEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getBarkEquationNumberFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBarkEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getBarkEquationNumberFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getCrownCoefficientCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownCoefficientCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownCoefficientCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownCoefficientCodeAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getCrownCoefficientCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownCoefficientCodeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownCoefficientCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownCoefficientCodeFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getCrownScorchOrBoleCharEquationNumber'] = SIGMortality.prototype.getCrownScorchOrBoleCharEquationNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownScorchOrBoleCharEquationNumber'] = SIGMortality.prototype.getCrownScorchOrBoleCharEquationNumber = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0(self); -};; +}; -SIGMortality.prototype['getMortalityEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getMortalityEquationNumberAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getMortalityEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getMortalityEquationNumberAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getMortalityEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getMortalityEquationNumberFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getMortalityEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getMortalityEquationNumberFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getNumberOfRecordsInSpeciesTable'] = SIGMortality.prototype.getNumberOfRecordsInSpeciesTable = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getNumberOfRecordsInSpeciesTable'] = SIGMortality.prototype.getNumberOfRecordsInSpeciesTable = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0(self); -};; +}; -SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCode'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesNameCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCode'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCode = function(speciesNameCode) { var self = this.ptr; ensureCache.prepare(); if (speciesNameCode && typeof speciesNameCode === 'object') speciesNameCode = speciesNameCode.ptr; else speciesNameCode = ensureString(speciesNameCode); return _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1(self, speciesNameCode); -};; +}; -SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesNameCode, equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = function(speciesNameCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesNameCode && typeof speciesNameCode === 'object') speciesNameCode = speciesNameCode.ptr; else speciesNameCode = ensureString(speciesNameCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2(self, speciesNameCode, equationType); -};; +}; -SIGMortality.prototype['setAirTemperature'] = SIGMortality.prototype.setAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(airTemperature, temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setAirTemperature'] = SIGMortality.prototype.setAirTemperature = function(airTemperature, temperatureUnits) { var self = this.ptr; if (airTemperature && typeof airTemperature === 'object') airTemperature = airTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_SIGMortality_setAirTemperature_2(self, airTemperature, temperatureUnits); -};; +}; -SIGMortality.prototype['setBeetleDamage'] = SIGMortality.prototype.setBeetleDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(beetleDamage) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setBeetleDamage'] = SIGMortality.prototype.setBeetleDamage = function(beetleDamage) { var self = this.ptr; if (beetleDamage && typeof beetleDamage === 'object') beetleDamage = beetleDamage.ptr; _emscripten_bind_SIGMortality_setBeetleDamage_1(self, beetleDamage); -};; +}; -SIGMortality.prototype['setBoleCharHeight'] = SIGMortality.prototype.setBoleCharHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeight, boleCharHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setBoleCharHeight'] = SIGMortality.prototype.setBoleCharHeight = function(boleCharHeight, boleCharHeightUnits) { var self = this.ptr; if (boleCharHeight && typeof boleCharHeight === 'object') boleCharHeight = boleCharHeight.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; _emscripten_bind_SIGMortality_setBoleCharHeight_2(self, boleCharHeight, boleCharHeightUnits); -};; +}; -SIGMortality.prototype['setCambiumKillRating'] = SIGMortality.prototype.setCambiumKillRating = /** @suppress {undefinedVars, duplicate} @this{Object} */function(cambiumKillRating) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setCambiumKillRating'] = SIGMortality.prototype.setCambiumKillRating = function(cambiumKillRating) { var self = this.ptr; if (cambiumKillRating && typeof cambiumKillRating === 'object') cambiumKillRating = cambiumKillRating.ptr; _emscripten_bind_SIGMortality_setCambiumKillRating_1(self, cambiumKillRating); -};; +}; -SIGMortality.prototype['setCrownDamage'] = SIGMortality.prototype.setCrownDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownDamage) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setCrownDamage'] = SIGMortality.prototype.setCrownDamage = function(crownDamage) { var self = this.ptr; if (crownDamage && typeof crownDamage === 'object') crownDamage = crownDamage.ptr; _emscripten_bind_SIGMortality_setCrownDamage_1(self, crownDamage); -};; +}; -SIGMortality.prototype['setCrownRatio'] = SIGMortality.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setCrownRatio'] = SIGMortality.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGMortality_setCrownRatio_2(self, crownRatio, crownRatioUnits); -};; +}; -SIGMortality.prototype['setDBH'] = SIGMortality.prototype.setDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbh, diameterUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setDBH'] = SIGMortality.prototype.setDBH = function(dbh, diameterUnits) { var self = this.ptr; if (dbh && typeof dbh === 'object') dbh = dbh.ptr; if (diameterUnits && typeof diameterUnits === 'object') diameterUnits = diameterUnits.ptr; _emscripten_bind_SIGMortality_setDBH_2(self, dbh, diameterUnits); -};; +}; -SIGMortality.prototype['setEquationType'] = SIGMortality.prototype.setEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setEquationType'] = SIGMortality.prototype.setEquationType = function(equationType) { var self = this.ptr; if (equationType && typeof equationType === 'object') equationType = equationType.ptr; _emscripten_bind_SIGMortality_setEquationType_1(self, equationType); -};; +}; -SIGMortality.prototype['setFireSeverity'] = SIGMortality.prototype.setFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireSeverity) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFireSeverity'] = SIGMortality.prototype.setFireSeverity = function(fireSeverity) { var self = this.ptr; if (fireSeverity && typeof fireSeverity === 'object') fireSeverity = fireSeverity.ptr; _emscripten_bind_SIGMortality_setFireSeverity_1(self, fireSeverity); -};; +}; -SIGMortality.prototype['setFirelineIntensity'] = SIGMortality.prototype.setFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFirelineIntensity'] = SIGMortality.prototype.setFirelineIntensity = function(firelineIntensity, firelineIntensityUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setFirelineIntensity_2(self, firelineIntensity, firelineIntensityUnits); -};; +}; -SIGMortality.prototype['setFlameLength'] = SIGMortality.prototype.setFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFlameLength'] = SIGMortality.prototype.setFlameLength = function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGMortality_setFlameLength_2(self, flameLength, flameLengthUnits); -};; +}; -SIGMortality.prototype['setFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.setFlameLengthOrScorchHeightSwitch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightSwitch) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.setFlameLengthOrScorchHeightSwitch = function(flameLengthOrScorchHeightSwitch) { var self = this.ptr; if (flameLengthOrScorchHeightSwitch && typeof flameLengthOrScorchHeightSwitch === 'object') flameLengthOrScorchHeightSwitch = flameLengthOrScorchHeightSwitch.ptr; _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1(self, flameLengthOrScorchHeightSwitch); -};; +}; -SIGMortality.prototype['setFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.setFlameLengthOrScorchHeightValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.setFlameLengthOrScorchHeightValue = function(flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits) { var self = this.ptr; if (flameLengthOrScorchHeightValue && typeof flameLengthOrScorchHeightValue === 'object') flameLengthOrScorchHeightValue = flameLengthOrScorchHeightValue.ptr; if (flameLengthOrScorchHeightUnits && typeof flameLengthOrScorchHeightUnits === 'object') flameLengthOrScorchHeightUnits = flameLengthOrScorchHeightUnits.ptr; _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2(self, flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits); -};; +}; -SIGMortality.prototype['setMidFlameWindSpeed'] = SIGMortality.prototype.setMidFlameWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(midFlameWindSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setMidFlameWindSpeed'] = SIGMortality.prototype.setMidFlameWindSpeed = function(midFlameWindSpeed, windSpeedUnits) { var self = this.ptr; if (midFlameWindSpeed && typeof midFlameWindSpeed === 'object') midFlameWindSpeed = midFlameWindSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2(self, midFlameWindSpeed, windSpeedUnits); -};; +}; -SIGMortality.prototype['setGACCRegion'] = SIGMortality.prototype.setGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setGACCRegion'] = SIGMortality.prototype.setGACCRegion = function(region) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; _emscripten_bind_SIGMortality_setGACCRegion_1(self, region); -};; +}; -SIGMortality.prototype['setScorchHeight'] = SIGMortality.prototype.setScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeight, scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setScorchHeight'] = SIGMortality.prototype.setScorchHeight = function(scorchHeight, scorchHeightUnits) { var self = this.ptr; if (scorchHeight && typeof scorchHeight === 'object') scorchHeight = scorchHeight.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; _emscripten_bind_SIGMortality_setScorchHeight_2(self, scorchHeight, scorchHeightUnits); -};; +}; -SIGMortality.prototype['setSpeciesCode'] = SIGMortality.prototype.setSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSpeciesCode'] = SIGMortality.prototype.setSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); _emscripten_bind_SIGMortality_setSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['setSurfaceFireFirelineIntensity'] = SIGMortality.prototype.setSurfaceFireFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFirelineIntensity'] = SIGMortality.prototype.setSurfaceFireFirelineIntensity = function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2(self, value, firelineIntensityUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFirelineIntensityBacking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFirelineIntensityBacking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityBacking = function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2(self, value, firelineIntensityUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFirelineIntensityFlanking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFirelineIntensityFlanking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityFlanking = function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2(self, value, firelineIntensityUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFlameLength'] = SIGMortality.prototype.setSurfaceFireFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFlameLength'] = SIGMortality.prototype.setSurfaceFireFlameLength = function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2(self, value, lengthUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFlameLengthBacking'] = SIGMortality.prototype.setSurfaceFireFlameLengthBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFlameLengthBacking'] = SIGMortality.prototype.setSurfaceFireFlameLengthBacking = function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2(self, value, lengthUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFlameLengthFlanking'] = SIGMortality.prototype.setSurfaceFireFlameLengthFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFlameLengthFlanking'] = SIGMortality.prototype.setSurfaceFireFlameLengthFlanking = function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2(self, value, lengthUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireScorchHeight'] = SIGMortality.prototype.setSurfaceFireScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireScorchHeight'] = SIGMortality.prototype.setSurfaceFireScorchHeight = function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2(self, value, lengthUnits); -};; +}; -SIGMortality.prototype['setTreeDensityPerUnitArea'] = SIGMortality.prototype.setTreeDensityPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(numberOfTrees, areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setTreeDensityPerUnitArea'] = SIGMortality.prototype.setTreeDensityPerUnitArea = function(numberOfTrees, areaUnits) { var self = this.ptr; if (numberOfTrees && typeof numberOfTrees === 'object') numberOfTrees = numberOfTrees.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2(self, numberOfTrees, areaUnits); -};; +}; -SIGMortality.prototype['setTreeHeight'] = SIGMortality.prototype.setTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeight, treeHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setTreeHeight'] = SIGMortality.prototype.setTreeHeight = function(treeHeight, treeHeightUnits) { var self = this.ptr; if (treeHeight && typeof treeHeight === 'object') treeHeight = treeHeight.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; _emscripten_bind_SIGMortality_setTreeHeight_2(self, treeHeight, treeHeightUnits); -};; +}; -SIGMortality.prototype['setUserProvidedWindAdjustmentFactor'] = SIGMortality.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setUserProvidedWindAdjustmentFactor'] = SIGMortality.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -};; +}; -SIGMortality.prototype['setWindHeightInputMode'] = SIGMortality.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setWindHeightInputMode'] = SIGMortality.prototype.setWindHeightInputMode = function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGMortality_setWindHeightInputMode_1(self, windHeightInputMode); -};; +}; -SIGMortality.prototype['setWindSpeed'] = SIGMortality.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setWindSpeed'] = SIGMortality.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGMortality_setWindSpeed_2(self, windSpeed, windSpeedUnits); -};; +}; -SIGMortality.prototype['setWindSpeedAndWindHeightInputMode'] = SIGMortality.prototype.setWindSpeedAndWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setWindSpeedAndWindHeightInputMode'] = SIGMortality.prototype.setWindSpeedAndWindHeightInputMode = function(windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor) { var self = this.ptr; if (windwindSpeed && typeof windwindSpeed === 'object') windwindSpeed = windwindSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4(self, windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor); -};; +}; + - SIGMortality.prototype['__destroy__'] = SIGMortality.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['__destroy__'] = SIGMortality.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGMortality___destroy___0(self); }; -// WindSpeedUtility -/** @suppress {undefinedVars, duplicate} @this{Object} */function WindSpeedUtility() { + +// Interface: WindSpeedUtility + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function WindSpeedUtility() { this.ptr = _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0(); getCache(WindSpeedUtility)[this.ptr] = this; -};; +}; + WindSpeedUtility.prototype = Object.create(WrapperObject.prototype); WindSpeedUtility.prototype.constructor = WindSpeedUtility; WindSpeedUtility.prototype.__class__ = WindSpeedUtility; WindSpeedUtility.__cache__ = {}; Module['WindSpeedUtility'] = WindSpeedUtility; - -WindSpeedUtility.prototype['windSpeedAtMidflame'] = WindSpeedUtility.prototype.windSpeedAtMidflame = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTwentyFeet, windAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WindSpeedUtility.prototype['windSpeedAtMidflame'] = WindSpeedUtility.prototype.windSpeedAtMidflame = function(windSpeedAtTwentyFeet, windAdjustmentFactor) { var self = this.ptr; if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windAdjustmentFactor && typeof windAdjustmentFactor === 'object') windAdjustmentFactor = windAdjustmentFactor.ptr; return _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2(self, windSpeedAtTwentyFeet, windAdjustmentFactor); -};; +}; -WindSpeedUtility.prototype['windSpeedAtTwentyFeetFromTenMeter'] = WindSpeedUtility.prototype.windSpeedAtTwentyFeetFromTenMeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTenMeters) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WindSpeedUtility.prototype['windSpeedAtTwentyFeetFromTenMeter'] = WindSpeedUtility.prototype.windSpeedAtTwentyFeetFromTenMeter = function(windSpeedAtTenMeters) { var self = this.ptr; if (windSpeedAtTenMeters && typeof windSpeedAtTenMeters === 'object') windSpeedAtTenMeters = windSpeedAtTenMeters.ptr; return _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1(self, windSpeedAtTenMeters); -};; +}; + - WindSpeedUtility.prototype['__destroy__'] = WindSpeedUtility.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WindSpeedUtility.prototype['__destroy__'] = WindSpeedUtility.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_WindSpeedUtility___destroy___0(self); }; -// SIGFineDeadFuelMoistureTool -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGFineDeadFuelMoistureTool() { + +// Interface: SIGFineDeadFuelMoistureTool + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGFineDeadFuelMoistureTool() { this.ptr = _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0(); getCache(SIGFineDeadFuelMoistureTool)[this.ptr] = this; -};; +}; + SIGFineDeadFuelMoistureTool.prototype = Object.create(WrapperObject.prototype); SIGFineDeadFuelMoistureTool.prototype.constructor = SIGFineDeadFuelMoistureTool; SIGFineDeadFuelMoistureTool.prototype.__class__ = SIGFineDeadFuelMoistureTool; SIGFineDeadFuelMoistureTool.__cache__ = {}; Module['SIGFineDeadFuelMoistureTool'] = SIGFineDeadFuelMoistureTool; - -SIGFineDeadFuelMoistureTool.prototype['calculate'] = SIGFineDeadFuelMoistureTool.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['calculate'] = SIGFineDeadFuelMoistureTool.prototype.calculate = function() { var self = this.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setTimeOfDayIndex'] = SIGFineDeadFuelMoistureTool.prototype.setTimeOfDayIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeOfDayIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setTimeOfDayIndex'] = SIGFineDeadFuelMoistureTool.prototype.setTimeOfDayIndex = function(timeOfDayIndex) { var self = this.ptr; if (timeOfDayIndex && typeof timeOfDayIndex === 'object') timeOfDayIndex = timeOfDayIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1(self, timeOfDayIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setSlopeIndex'] = SIGFineDeadFuelMoistureTool.prototype.setSlopeIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setSlopeIndex'] = SIGFineDeadFuelMoistureTool.prototype.setSlopeIndex = function(slopeIndex) { var self = this.ptr; if (slopeIndex && typeof slopeIndex === 'object') slopeIndex = slopeIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1(self, slopeIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setShadingIndex'] = SIGFineDeadFuelMoistureTool.prototype.setShadingIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(shadingIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setShadingIndex'] = SIGFineDeadFuelMoistureTool.prototype.setShadingIndex = function(shadingIndex) { var self = this.ptr; if (shadingIndex && typeof shadingIndex === 'object') shadingIndex = shadingIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1(self, shadingIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setAspectIndex'] = SIGFineDeadFuelMoistureTool.prototype.setAspectIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspectIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setAspectIndex'] = SIGFineDeadFuelMoistureTool.prototype.setAspectIndex = function(aspectIndex) { var self = this.ptr; if (aspectIndex && typeof aspectIndex === 'object') aspectIndex = aspectIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1(self, aspectIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setRHIndex'] = SIGFineDeadFuelMoistureTool.prototype.setRHIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(relativeHumidityIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setRHIndex'] = SIGFineDeadFuelMoistureTool.prototype.setRHIndex = function(relativeHumidityIndex) { var self = this.ptr; if (relativeHumidityIndex && typeof relativeHumidityIndex === 'object') relativeHumidityIndex = relativeHumidityIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1(self, relativeHumidityIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setElevationIndex'] = SIGFineDeadFuelMoistureTool.prototype.setElevationIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setElevationIndex'] = SIGFineDeadFuelMoistureTool.prototype.setElevationIndex = function(elevationIndex) { var self = this.ptr; if (elevationIndex && typeof elevationIndex === 'object') elevationIndex = elevationIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1(self, elevationIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setDryBulbIndex'] = SIGFineDeadFuelMoistureTool.prototype.setDryBulbIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dryBulbIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setDryBulbIndex'] = SIGFineDeadFuelMoistureTool.prototype.setDryBulbIndex = function(dryBulbIndex) { var self = this.ptr; if (dryBulbIndex && typeof dryBulbIndex === 'object') dryBulbIndex = dryBulbIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1(self, dryBulbIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setMonthIndex'] = SIGFineDeadFuelMoistureTool.prototype.setMonthIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(monthIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setMonthIndex'] = SIGFineDeadFuelMoistureTool.prototype.setMonthIndex = function(monthIndex) { var self = this.ptr; if (monthIndex && typeof monthIndex === 'object') monthIndex = monthIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1(self, monthIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getFineDeadFuelMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getFineDeadFuelMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getFineDeadFuelMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getFineDeadFuelMoisture = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1(self, desiredUnits); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getSlopeIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getSlopeIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getSlopeIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getSlopeIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getElevationIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getElevationIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getElevationIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getElevationIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getMonthIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getMonthIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getMonthIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getMonthIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getDryBulbTemperatureIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getDryBulbTemperatureIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getDryBulbTemperatureIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getDryBulbTemperatureIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getReferenceMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getReferenceMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getReferenceMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getReferenceMoisture = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1(self, desiredUnits); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoistureTool.prototype.calculateByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoistureTool.prototype.calculateByIndex = function(aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex) { var self = this.ptr; if (aspectIndex && typeof aspectIndex === 'object') aspectIndex = aspectIndex.ptr; if (dryBulbIndex && typeof dryBulbIndex === 'object') dryBulbIndex = dryBulbIndex.ptr; @@ -5392,384 +6234,555 @@ SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoist if (slopeIndex && typeof slopeIndex === 'object') slopeIndex = slopeIndex.ptr; if (timeOfDayIndex && typeof timeOfDayIndex === 'object') timeOfDayIndex = timeOfDayIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8(self, aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getTimeOfDayIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getTimeOfDayIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getTimeOfDayIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getTimeOfDayIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getCorrectionMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getCorrectionMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getCorrectionMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getCorrectionMoisture = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1(self, desiredUnits); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getAspectIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getAspectIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getAspectIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getAspectIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getShadingIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getShadingIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getShadingIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getShadingIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getRelativeHumidityIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getRelativeHumidityIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getRelativeHumidityIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getRelativeHumidityIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0(self); -};; +}; - SIGFineDeadFuelMoistureTool.prototype['__destroy__'] = SIGFineDeadFuelMoistureTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['__destroy__'] = SIGFineDeadFuelMoistureTool.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0(self); }; -// SIGSlopeTool -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSlopeTool() { + +// Interface: SIGSlopeTool + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGSlopeTool() { this.ptr = _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0(); getCache(SIGSlopeTool)[this.ptr] = this; -};; +}; + SIGSlopeTool.prototype = Object.create(WrapperObject.prototype); SIGSlopeTool.prototype.constructor = SIGSlopeTool; SIGSlopeTool.prototype.__class__ = SIGSlopeTool; SIGSlopeTool.__cache__ = {}; Module['SIGSlopeTool'] = SIGSlopeTool; - -SIGSlopeTool.prototype['getCentimetersPerKilometerAtIndex'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getCentimetersPerKilometerAtIndex'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getCentimetersPerKilometerAtRepresentativeFraction'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getCentimetersPerKilometerAtRepresentativeFraction'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistance'] = SIGSlopeTool.prototype.getHorizontalDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(horizontalDistanceIndex, mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistance'] = SIGSlopeTool.prototype.getHorizontalDistance = function(horizontalDistanceIndex, mapDistanceUnits) { var self = this.ptr; if (horizontalDistanceIndex && typeof horizontalDistanceIndex === 'object') horizontalDistanceIndex = horizontalDistanceIndex.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2(self, horizontalDistanceIndex, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceAtIndex'] = SIGSlopeTool.prototype.getHorizontalDistanceAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceAtIndex'] = SIGSlopeTool.prototype.getHorizontalDistanceAtIndex = function(index, mapDistanceUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2(self, index, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceFifteen'] = SIGSlopeTool.prototype.getHorizontalDistanceFifteen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceFifteen'] = SIGSlopeTool.prototype.getHorizontalDistanceFifteen = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceFourtyFive'] = SIGSlopeTool.prototype.getHorizontalDistanceFourtyFive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceFourtyFive'] = SIGSlopeTool.prototype.getHorizontalDistanceFourtyFive = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceMaxSlope'] = SIGSlopeTool.prototype.getHorizontalDistanceMaxSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceMaxSlope'] = SIGSlopeTool.prototype.getHorizontalDistanceMaxSlope = function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1(self, slopeUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceNinety'] = SIGSlopeTool.prototype.getHorizontalDistanceNinety = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceNinety'] = SIGSlopeTool.prototype.getHorizontalDistanceNinety = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceSeventy'] = SIGSlopeTool.prototype.getHorizontalDistanceSeventy = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceSeventy'] = SIGSlopeTool.prototype.getHorizontalDistanceSeventy = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceSixty'] = SIGSlopeTool.prototype.getHorizontalDistanceSixty = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceSixty'] = SIGSlopeTool.prototype.getHorizontalDistanceSixty = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceThirty'] = SIGSlopeTool.prototype.getHorizontalDistanceThirty = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceThirty'] = SIGSlopeTool.prototype.getHorizontalDistanceThirty = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceZero'] = SIGSlopeTool.prototype.getHorizontalDistanceZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceZero'] = SIGSlopeTool.prototype.getHorizontalDistanceZero = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getInchesPerMileAtIndex'] = SIGSlopeTool.prototype.getInchesPerMileAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getInchesPerMileAtIndex'] = SIGSlopeTool.prototype.getInchesPerMileAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getInchesPerMileAtRepresentativeFraction'] = SIGSlopeTool.prototype.getInchesPerMileAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getInchesPerMileAtRepresentativeFraction'] = SIGSlopeTool.prototype.getInchesPerMileAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['getKilometersPerCentimeterAtIndex'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getKilometersPerCentimeterAtIndex'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getKilometersPerCentimeterAtRepresentativeFraction'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getKilometersPerCentimeterAtRepresentativeFraction'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['getMilesPerInchAtIndex'] = SIGSlopeTool.prototype.getMilesPerInchAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getMilesPerInchAtIndex'] = SIGSlopeTool.prototype.getMilesPerInchAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getMilesPerInchAtRepresentativeFraction'] = SIGSlopeTool.prototype.getMilesPerInchAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getMilesPerInchAtRepresentativeFraction'] = SIGSlopeTool.prototype.getMilesPerInchAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['getSlopeElevationChangeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeElevationChangeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeElevationChangeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeElevationChangeFromMapMeasurements = function(elevationUnits) { var self = this.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1(self, elevationUnits); -};; +}; -SIGSlopeTool.prototype['getSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurements = function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1(self, slopeUnits); -};; +}; -SIGSlopeTool.prototype['getSlopeHorizontalDistanceFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeHorizontalDistanceFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(distanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeHorizontalDistanceFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeHorizontalDistanceFromMapMeasurements = function(distanceUnits) { var self = this.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1(self, distanceUnits); -};; +}; -SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInDegrees'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInDegrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInDegrees'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInDegrees = function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0(self); -};; +}; -SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInPercent'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInPercent = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInPercent'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInPercent = function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0(self); -};; +}; -SIGSlopeTool.prototype['getNumberOfHorizontalDistances'] = SIGSlopeTool.prototype.getNumberOfHorizontalDistances = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getNumberOfHorizontalDistances'] = SIGSlopeTool.prototype.getNumberOfHorizontalDistances = function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0(self); -};; +}; -SIGSlopeTool.prototype['getNumberOfRepresentativeFractions'] = SIGSlopeTool.prototype.getNumberOfRepresentativeFractions = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getNumberOfRepresentativeFractions'] = SIGSlopeTool.prototype.getNumberOfRepresentativeFractions = function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0(self); -};; +}; -SIGSlopeTool.prototype['getRepresentativeFractionAtIndex'] = SIGSlopeTool.prototype.getRepresentativeFractionAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getRepresentativeFractionAtIndex'] = SIGSlopeTool.prototype.getRepresentativeFractionAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getRepresentativeFractionAtRepresentativeFraction'] = SIGSlopeTool.prototype.getRepresentativeFractionAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getRepresentativeFractionAtRepresentativeFraction'] = SIGSlopeTool.prototype.getRepresentativeFractionAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['calculateHorizontalDistance'] = SIGSlopeTool.prototype.calculateHorizontalDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['calculateHorizontalDistance'] = SIGSlopeTool.prototype.calculateHorizontalDistance = function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0(self); -};; +}; -SIGSlopeTool.prototype['calculateSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.calculateSlopeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['calculateSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.calculateSlopeFromMapMeasurements = function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0(self); -};; +}; -SIGSlopeTool.prototype['setCalculatedMapDistance'] = SIGSlopeTool.prototype.setCalculatedMapDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(calculatedMapDistance, distanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setCalculatedMapDistance'] = SIGSlopeTool.prototype.setCalculatedMapDistance = function(calculatedMapDistance, distanceUnits) { var self = this.ptr; if (calculatedMapDistance && typeof calculatedMapDistance === 'object') calculatedMapDistance = calculatedMapDistance.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2(self, calculatedMapDistance, distanceUnits); -};; +}; -SIGSlopeTool.prototype['setContourInterval'] = SIGSlopeTool.prototype.setContourInterval = /** @suppress {undefinedVars, duplicate} @this{Object} */function(contourInterval, contourUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setContourInterval'] = SIGSlopeTool.prototype.setContourInterval = function(contourInterval, contourUnits) { var self = this.ptr; if (contourInterval && typeof contourInterval === 'object') contourInterval = contourInterval.ptr; if (contourUnits && typeof contourUnits === 'object') contourUnits = contourUnits.ptr; _emscripten_bind_SIGSlopeTool_setContourInterval_2(self, contourInterval, contourUnits); -};; +}; -SIGSlopeTool.prototype['setMapDistance'] = SIGSlopeTool.prototype.setMapDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistance, distanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setMapDistance'] = SIGSlopeTool.prototype.setMapDistance = function(mapDistance, distanceUnits) { var self = this.ptr; if (mapDistance && typeof mapDistance === 'object') mapDistance = mapDistance.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; _emscripten_bind_SIGSlopeTool_setMapDistance_2(self, mapDistance, distanceUnits); -};; +}; -SIGSlopeTool.prototype['setMapRepresentativeFraction'] = SIGSlopeTool.prototype.setMapRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapRepresentativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setMapRepresentativeFraction'] = SIGSlopeTool.prototype.setMapRepresentativeFraction = function(mapRepresentativeFraction) { var self = this.ptr; if (mapRepresentativeFraction && typeof mapRepresentativeFraction === 'object') mapRepresentativeFraction = mapRepresentativeFraction.ptr; _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1(self, mapRepresentativeFraction); -};; +}; -SIGSlopeTool.prototype['setMaxSlopeSteepness'] = SIGSlopeTool.prototype.setMaxSlopeSteepness = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxSlopeSteepness) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setMaxSlopeSteepness'] = SIGSlopeTool.prototype.setMaxSlopeSteepness = function(maxSlopeSteepness) { var self = this.ptr; if (maxSlopeSteepness && typeof maxSlopeSteepness === 'object') maxSlopeSteepness = maxSlopeSteepness.ptr; _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1(self, maxSlopeSteepness); -};; +}; -SIGSlopeTool.prototype['setNumberOfContours'] = SIGSlopeTool.prototype.setNumberOfContours = /** @suppress {undefinedVars, duplicate} @this{Object} */function(numberOfContours) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setNumberOfContours'] = SIGSlopeTool.prototype.setNumberOfContours = function(numberOfContours) { var self = this.ptr; if (numberOfContours && typeof numberOfContours === 'object') numberOfContours = numberOfContours.ptr; _emscripten_bind_SIGSlopeTool_setNumberOfContours_1(self, numberOfContours); -};; +}; + - SIGSlopeTool.prototype['__destroy__'] = SIGSlopeTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['__destroy__'] = SIGSlopeTool.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool___destroy___0(self); }; -// VaporPressureDeficitCalculator -/** @suppress {undefinedVars, duplicate} @this{Object} */function VaporPressureDeficitCalculator() { + +// Interface: VaporPressureDeficitCalculator + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function VaporPressureDeficitCalculator() { this.ptr = _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0(); getCache(VaporPressureDeficitCalculator)[this.ptr] = this; -};; +}; + VaporPressureDeficitCalculator.prototype = Object.create(WrapperObject.prototype); VaporPressureDeficitCalculator.prototype.constructor = VaporPressureDeficitCalculator; VaporPressureDeficitCalculator.prototype.__class__ = VaporPressureDeficitCalculator; VaporPressureDeficitCalculator.__cache__ = {}; Module['VaporPressureDeficitCalculator'] = VaporPressureDeficitCalculator; - -VaporPressureDeficitCalculator.prototype['runCalculation'] = VaporPressureDeficitCalculator.prototype.runCalculation = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['runCalculation'] = VaporPressureDeficitCalculator.prototype.runCalculation = function() { var self = this.ptr; _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0(self); -};; +}; -VaporPressureDeficitCalculator.prototype['setTemperature'] = VaporPressureDeficitCalculator.prototype.setTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperature, units) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['setTemperature'] = VaporPressureDeficitCalculator.prototype.setTemperature = function(temperature, units) { var self = this.ptr; if (temperature && typeof temperature === 'object') temperature = temperature.ptr; if (units && typeof units === 'object') units = units.ptr; _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2(self, temperature, units); -};; +}; -VaporPressureDeficitCalculator.prototype['setRelativeHumidity'] = VaporPressureDeficitCalculator.prototype.setRelativeHumidity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(relativeHumidity, units) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['setRelativeHumidity'] = VaporPressureDeficitCalculator.prototype.setRelativeHumidity = function(relativeHumidity, units) { var self = this.ptr; if (relativeHumidity && typeof relativeHumidity === 'object') relativeHumidity = relativeHumidity.ptr; if (units && typeof units === 'object') units = units.ptr; _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2(self, relativeHumidity, units); -};; +}; -VaporPressureDeficitCalculator.prototype['getVaporPressureDeficit'] = VaporPressureDeficitCalculator.prototype.getVaporPressureDeficit = /** @suppress {undefinedVars, duplicate} @this{Object} */function(units) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['getVaporPressureDeficit'] = VaporPressureDeficitCalculator.prototype.getVaporPressureDeficit = function(units) { var self = this.ptr; if (units && typeof units === 'object') units = units.ptr; return _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1(self, units); -};; +}; + - VaporPressureDeficitCalculator.prototype['__destroy__'] = VaporPressureDeficitCalculator.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['__destroy__'] = VaporPressureDeficitCalculator.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_VaporPressureDeficitCalculator___destroy___0(self); }; -// RelativeHumidityTool -/** @suppress {undefinedVars, duplicate} @this{Object} */function RelativeHumidityTool() { + +// Interface: RelativeHumidityTool + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function RelativeHumidityTool() { this.ptr = _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0(); getCache(RelativeHumidityTool)[this.ptr] = this; -};; +}; + RelativeHumidityTool.prototype = Object.create(WrapperObject.prototype); RelativeHumidityTool.prototype.constructor = RelativeHumidityTool; RelativeHumidityTool.prototype.__class__ = RelativeHumidityTool; RelativeHumidityTool.__cache__ = {}; Module['RelativeHumidityTool'] = RelativeHumidityTool; - -RelativeHumidityTool.prototype['calculate'] = RelativeHumidityTool.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['calculate'] = RelativeHumidityTool.prototype.calculate = function() { var self = this.ptr; _emscripten_bind_RelativeHumidityTool_calculate_0(self); -};; +}; -RelativeHumidityTool.prototype['getDryBulbTemperature'] = RelativeHumidityTool.prototype.getDryBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getDryBulbTemperature'] = RelativeHumidityTool.prototype.getDryBulbTemperature = function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1(self, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['getSiteElevation'] = RelativeHumidityTool.prototype.getSiteElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getSiteElevation'] = RelativeHumidityTool.prototype.getSiteElevation = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getSiteElevation_1(self, lengthUnits); -};; +}; -RelativeHumidityTool.prototype['getWetBulbTemperature'] = RelativeHumidityTool.prototype.getWetBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getWetBulbTemperature'] = RelativeHumidityTool.prototype.getWetBulbTemperature = function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1(self, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['getDewPointTemperature'] = RelativeHumidityTool.prototype.getDewPointTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getDewPointTemperature'] = RelativeHumidityTool.prototype.getDewPointTemperature = function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1(self, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['getRelativeHumidity'] = RelativeHumidityTool.prototype.getRelativeHumidity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fractionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getRelativeHumidity'] = RelativeHumidityTool.prototype.getRelativeHumidity = function(fractionUnits) { var self = this.ptr; if (fractionUnits && typeof fractionUnits === 'object') fractionUnits = fractionUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1(self, fractionUnits); -};; +}; -RelativeHumidityTool.prototype['getWetBulbDepression'] = RelativeHumidityTool.prototype.getWetBulbDepression = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getWetBulbDepression'] = RelativeHumidityTool.prototype.getWetBulbDepression = function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1(self, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['setDryBulbTemperature'] = RelativeHumidityTool.prototype.setDryBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dryBulbTemperature, temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['setDryBulbTemperature'] = RelativeHumidityTool.prototype.setDryBulbTemperature = function(dryBulbTemperature, temperatureUnits) { var self = this.ptr; if (dryBulbTemperature && typeof dryBulbTemperature === 'object') dryBulbTemperature = dryBulbTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2(self, dryBulbTemperature, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['setSiteElevation'] = RelativeHumidityTool.prototype.setSiteElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(siteElevation, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['setSiteElevation'] = RelativeHumidityTool.prototype.setSiteElevation = function(siteElevation, lengthUnits) { var self = this.ptr; if (siteElevation && typeof siteElevation === 'object') siteElevation = siteElevation.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_RelativeHumidityTool_setSiteElevation_2(self, siteElevation, lengthUnits); -};; +}; -RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.prototype.setWetBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(wetBulbTemperature, temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.prototype.setWetBulbTemperature = function(wetBulbTemperature, temperatureUnits) { var self = this.ptr; if (wetBulbTemperature && typeof wetBulbTemperature === 'object') wetBulbTemperature = wetBulbTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2(self, wetBulbTemperature, temperatureUnits); -};; +}; + - RelativeHumidityTool.prototype['__destroy__'] = RelativeHumidityTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['__destroy__'] = RelativeHumidityTool.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_RelativeHumidityTool___destroy___0(self); }; + +// Interface: SafeSeparationDistanceCalculator + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SafeSeparationDistanceCalculator() { + this.ptr = _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0(); + getCache(SafeSeparationDistanceCalculator)[this.ptr] = this; +}; + +SafeSeparationDistanceCalculator.prototype = Object.create(WrapperObject.prototype); +SafeSeparationDistanceCalculator.prototype.constructor = SafeSeparationDistanceCalculator; +SafeSeparationDistanceCalculator.prototype.__class__ = SafeSeparationDistanceCalculator; +SafeSeparationDistanceCalculator.__cache__ = {}; +Module['SafeSeparationDistanceCalculator'] = SafeSeparationDistanceCalculator; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['calculate'] = SafeSeparationDistanceCalculator.prototype.calculate = function() { + var self = this.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getBurningCondition'] = SafeSeparationDistanceCalculator.prototype.getBurningCondition = function() { + var self = this.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSlopeClass'] = SafeSeparationDistanceCalculator.prototype.getSlopeClass = function() { + var self = this.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSpeedClass'] = SafeSeparationDistanceCalculator.prototype.getSpeedClass = function() { + var self = this.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSafeSeparationDistance'] = SafeSeparationDistanceCalculator.prototype.getSafeSeparationDistance = function(lengthUnits) { + var self = this.ptr; + if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1(self, lengthUnits); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSafetyZoneSize'] = SafeSeparationDistanceCalculator.prototype.getSafetyZoneSize = function(areaUnits) { + var self = this.ptr; + if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1(self, areaUnits); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.getVegetationHeight = function(lengthUnits) { + var self = this.ptr; + if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1(self, lengthUnits); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSafetyCondition'] = SafeSeparationDistanceCalculator.prototype.getSafetyCondition = function() { + var self = this.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['setBurningCondition'] = SafeSeparationDistanceCalculator.prototype.setBurningCondition = function(condition) { + var self = this.ptr; + if (condition && typeof condition === 'object') condition = condition.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1(self, condition); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['setSlopeClass'] = SafeSeparationDistanceCalculator.prototype.setSlopeClass = function(slope) { + var self = this.ptr; + if (slope && typeof slope === 'object') slope = slope.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1(self, slope); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['setSpeedClass'] = SafeSeparationDistanceCalculator.prototype.setSpeedClass = function(speed) { + var self = this.ptr; + if (speed && typeof speed === 'object') speed = speed.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1(self, speed); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['setVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.setVegetationHeight = function(height, lengthUnits) { + var self = this.ptr; + if (height && typeof height === 'object') height = height.ptr; + if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2(self, height, lengthUnits); +}; + + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistanceCalculator.prototype.__destroy__ = function() { + var self = this.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0(self); +}; + (function() { function setupEnums() { - - // AreaUnits_AreaUnitsEnum +// $AreaUnits_AreaUnitsEnum Module['AreaUnits']['SquareFeet'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet(); @@ -5784,24 +6797,21 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['AreaUnits']['SquareKilometers'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers(); - - // BasalAreaUnits_BasalAreaUnitsEnum +// $BasalAreaUnits_BasalAreaUnitsEnum Module['BasalAreaUnits']['SquareFeetPerAcre'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre(); Module['BasalAreaUnits']['SquareMetersPerHectare'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare(); - - // FractionUnits_FractionUnitsEnum +// $FractionUnits_FractionUnitsEnum Module['FractionUnits']['Fraction'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction(); Module['FractionUnits']['Percent'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent(); - - // LengthUnits_LengthUnitsEnum +// $LengthUnits_LengthUnitsEnum Module['LengthUnits']['Feet'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet(); @@ -5820,8 +6830,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['LengthUnits']['Kilometers'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers(); - - // LoadingUnits_LoadingUnitsEnum +// $LoadingUnits_LoadingUnitsEnum Module['LoadingUnits']['PoundsPerSquareFoot'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot(); @@ -5832,8 +6841,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['LoadingUnits']['KilogramsPerSquareMeter'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter(); - - // SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum +// $SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum Module['SurfaceAreaToVolumeUnits']['SquareFeetOverCubicFeet'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet(); @@ -5844,8 +6852,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['SurfaceAreaToVolumeUnits']['SquareCentimetersOverCubicCentimeters'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters(); - - // SpeedUnits_SpeedUnitsEnum +// $SpeedUnits_SpeedUnitsEnum Module['SpeedUnits']['FeetPerMinute'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute(); @@ -5860,8 +6867,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['SpeedUnits']['KilometersPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour(); - - // PressureUnits_PressureUnitsEnum +// $PressureUnits_PressureUnitsEnum Module['PressureUnits']['Pascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal(); @@ -5882,40 +6888,35 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['PressureUnits']['PoundPerSquareInch'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch(); - - // SlopeUnits_SlopeUnitsEnum +// $SlopeUnits_SlopeUnitsEnum Module['SlopeUnits']['Degrees'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees(); Module['SlopeUnits']['Percent'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent(); - - // DensityUnits_DensityUnitsEnum +// $DensityUnits_DensityUnitsEnum Module['DensityUnits']['PoundsPerCubicFoot'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot(); Module['DensityUnits']['KilogramsPerCubicMeter'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter(); - - // HeatOfCombustionUnits_HeatOfCombustionUnitsEnum +// $HeatOfCombustionUnits_HeatOfCombustionUnitsEnum Module['HeatOfCombustionUnits']['BtusPerPound'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound(); Module['HeatOfCombustionUnits']['KilojoulesPerKilogram'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram(); - - // HeatSinkUnits_HeatSinkUnitsEnum +// $HeatSinkUnits_HeatSinkUnitsEnum Module['HeatSinkUnits']['BtusPerCubicFoot'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot(); Module['HeatSinkUnits']['KilojoulesPerCubicMeter'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter(); - - // HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum +// $HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum Module['HeatPerUnitAreaUnits']['BtusPerSquareFoot'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot(); @@ -5924,8 +6925,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['HeatPerUnitAreaUnits']['KilowattSecondsPerSquareMeter'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter(); - - // HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum +// $HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum Module['HeatSourceAndReactionIntensityUnits']['BtusPerSquareFootPerMinute'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute(); @@ -5938,8 +6938,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['HeatSourceAndReactionIntensityUnits']['KilowattsPerSquareMeter'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter(); - - // FirelineIntensityUnits_FirelineIntensityUnitsEnum +// $FirelineIntensityUnits_FirelineIntensityUnitsEnum Module['FirelineIntensityUnits']['BtusPerFootPerSecond'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond(); @@ -5952,8 +6951,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['FirelineIntensityUnits']['KilowattsPerMeter'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter(); - - // TemperatureUnits_TemperatureUnitsEnum +// $TemperatureUnits_TemperatureUnitsEnum Module['TemperatureUnits']['Fahrenheit'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit(); @@ -5962,8 +6960,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TemperatureUnits']['Kelvin'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin(); - - // TimeUnits_TimeUnitsEnum +// $TimeUnits_TimeUnitsEnum Module['TimeUnits']['Minutes'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes(); @@ -5972,16 +6969,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TimeUnits']['Hours'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours(); - - // ContainTactic_ContainTacticEnum +// $ContainTactic_ContainTacticEnum Module['HeadAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack(); Module['RearAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack(); - - // ContainStatus_ContainStatusEnum +// $ContainStatus_ContainStatusEnum Module['Unreported'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported(); @@ -6002,8 +6997,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TimeLimitExceeded'] = _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded(); - - // ContainFlank_ContainFlankEnum +// $ContainFlank_ContainFlankEnum Module['LeftFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank(); @@ -6014,16 +7008,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['NeitherFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank(); - - // ContainMode +// $ContainMode Module['Default'] = _emscripten_enum_ContainMode_Default(); Module['ComputeWithOptimalResource'] = _emscripten_enum_ContainMode_ComputeWithOptimalResource(); - - // IgnitionFuelBedType_IgnitionFuelBedTypeEnum +// $IgnitionFuelBedType_IgnitionFuelBedTypeEnum Module['PonderosaPineLitter'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter(); @@ -6042,8 +7034,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['PeatMoss'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss(); - - // LightningCharge_LightningChargeEnum +// $LightningCharge_LightningChargeEnum Module['Negative'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Negative(); @@ -6052,16 +7043,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['Unknown'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown(); - - // SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum +// $SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum Module['CLOSED'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED(); Module['OPEN'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN(); - - // SpotTreeSpecies_SpotTreeSpeciesEnum +// $SpotTreeSpecies_SpotTreeSpeciesEnum Module['ENGELMANN_SPRUCE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE(); @@ -6092,8 +7081,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['LOBLOLLY_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE(); - - // SpotFireLocation_SpotFireLocationEnum +// $SpotFireLocation_SpotFireLocationEnum Module['MIDSLOPE_WINDWARD'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD(); @@ -6104,16 +7092,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['RIDGE_TOP'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP(); - - // FuelLifeState_FuelLifeStateEnum +// $FuelLifeState_FuelLifeStateEnum Module['Dead'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead(); Module['Live'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live(); - - // FuelConstantsEnum_FuelConstantsEnum +// $FuelConstantsEnum_FuelConstantsEnum Module['MaxLifeStates'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates(); @@ -6128,16 +7114,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['MaxFuelModels'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels(); - - // AspenFireSeverity_AspenFireSeverityEnum +// $AspenFireSeverity_AspenFireSeverityEnum Module['Low'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low(); Module['Moderate'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate(); - - // ChaparralFuelType_ChaparralFuelTypeEnum +// $ChaparralFuelType_ChaparralFuelTypeEnum Module['NotSet'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet(); @@ -6146,16 +7130,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['MixedBrush'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush(); - - // ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum +// $ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum Module['DirectFuelLoad'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad(); Module['FuelLoadFromDepthAndChaparralType'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType(); - - // MoistureInputMode_MoistureInputModeEnum +// $MoistureInputMode_MoistureInputModeEnum Module['BySizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass(); @@ -6168,8 +7150,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['MoistureScenario'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario(); - - // MoistureClassInput_MoistureClassInputEnum +// $MoistureClassInput_MoistureClassInputEnum Module['OneHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour(); @@ -6186,16 +7167,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['LiveAggregate'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate(); - - // SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum +// $SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum Module['FromIgnitionPoint'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint(); Module['FromPerimeter'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter(); - - // TwoFuelModelsMethod_TwoFuelModelsMethodEnum +// $TwoFuelModelsMethod_TwoFuelModelsMethodEnum Module['NoMethod'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod(); @@ -6206,16 +7185,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TwoDimensional'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional(); - - // WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum +// $WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum Module['Unsheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered(); Module['Sheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered(); - - // WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum +// $WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum Module['UserInput'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput(); @@ -6224,16 +7201,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['DontUseCrownRatio'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio(); - - // WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum +// $WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum Module['RelativeToUpslope'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope(); Module['RelativeToNorth'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth(); - - // WindHeightInputMode_WindHeightInputModeEnum +// $WindHeightInputMode_WindHeightInputModeEnum Module['DirectMidflame'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame(); @@ -6242,16 +7217,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TenMeter'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter(); - - // WindUpslopeAlignmentMode +// $WindUpslopeAlignmentMode Module['NotAligned'] = _emscripten_enum_WindUpslopeAlignmentMode_NotAligned(); Module['Aligned'] = _emscripten_enum_WindUpslopeAlignmentMode_Aligned(); - - // SurfaceRunInDirectionOf +// $SurfaceRunInDirectionOf Module['MaxSpread'] = _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread(); @@ -6260,8 +7233,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['HeadingBackingFlanking'] = _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking(); - - // FireType_FireTypeEnum +// $FireType_FireTypeEnum Module['Surface'] = _emscripten_enum_FireType_FireTypeEnum_Surface(); @@ -6272,8 +7244,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['Crowning'] = _emscripten_enum_FireType_FireTypeEnum_Crowning(); - - // BeetleDamage +// $BeetleDamage Module['not_set'] = _emscripten_enum_BeetleDamage_not_set(); @@ -6282,16 +7253,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['yes'] = _emscripten_enum_BeetleDamage_yes(); - - // CrownFireCalculationMethod +// $CrownFireCalculationMethod Module['rothermel'] = _emscripten_enum_CrownFireCalculationMethod_rothermel(); Module['scott_and_reinhardt'] = _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt(); - - // CrownDamageEquationCode +// $CrownDamageEquationCode Module['not_set'] = _emscripten_enum_CrownDamageEquationCode_not_set(); @@ -6318,8 +7287,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['douglas_fir'] = _emscripten_enum_CrownDamageEquationCode_douglas_fir(); - - // CrownDamageType +// $CrownDamageType Module['not_set'] = _emscripten_enum_CrownDamageType_not_set(); @@ -6330,8 +7298,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['crown_kill'] = _emscripten_enum_CrownDamageType_crown_kill(); - - // EquationType +// $EquationType Module['not_set'] = _emscripten_enum_EquationType_not_set(); @@ -6342,8 +7309,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['crown_damage'] = _emscripten_enum_EquationType_crown_damage(); - - // FireSeverity +// $FireSeverity Module['not_set'] = _emscripten_enum_FireSeverity_not_set(); @@ -6352,16 +7318,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['low'] = _emscripten_enum_FireSeverity_low(); - - // FlameLengthOrScorchHeightSwitch +// $FlameLengthOrScorchHeightSwitch Module['flame_length'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length(); Module['scorch_height'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height(); - - // GACC +// $GACC Module['NotSet'] = _emscripten_enum_GACC_NotSet(); @@ -6384,8 +7348,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['Southwest'] = _emscripten_enum_GACC_Southwest(); - - // RequiredFieldNames +// $RequiredFieldNames Module['region'] = _emscripten_enum_RequiredFieldNames_region(); @@ -6416,8 +7379,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['num_inputs'] = _emscripten_enum_RequiredFieldNames_num_inputs(); - - // FDFMToolAspectIndex_AspectIndexEnum +// $FDFMToolAspectIndex_AspectIndexEnum Module['NORTH'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH(); @@ -6428,8 +7390,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['WEST'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST(); - - // FDFMToolDryBulbIndex_DryBulbIndexEnum +// $FDFMToolDryBulbIndex_DryBulbIndexEnum Module['TEN_TO_TWENTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F(); @@ -6444,8 +7405,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F(); - - // FDFMToolElevationIndex_ElevationIndexEnum +// $FDFMToolElevationIndex_ElevationIndexEnum Module['BELOW_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT(); @@ -6454,8 +7414,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['ABOVE_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT(); - - // FDFMToolMonthIndex_MonthIndexEnum +// $FDFMToolMonthIndex_MonthIndexEnum Module['MAY_JUNE_JULY'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY(); @@ -6464,8 +7423,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['NOV_DEC_JAN'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN(); - - // FDFMToolRHIndex_RHIndexEnum +// $FDFMToolRHIndex_RHIndexEnum Module['ZERO_TO_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT(); @@ -6510,24 +7468,21 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['ONE_HUNDRED_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT(); - - // FDFMToolShadingIndex_ShadingIndexEnum +// $FDFMToolShadingIndex_ShadingIndexEnum Module['EXPOSED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED(); Module['SHADED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED(); - - // FDFMToolSlopeIndex_SlopeIndexEnum +// $FDFMToolSlopeIndex_SlopeIndexEnum Module['ZERO_TO_THIRTY_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT(); Module['GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT(); - - // FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum +// $FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum Module['EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE(); @@ -6542,8 +7497,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET(); - - // RepresentativeFraction_RepresentativeFractionEnum +// $RepresentativeFraction_RepresentativeFractionEnum Module['NINTEEN_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY(); @@ -6582,8 +7536,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY(); - - // HorizontalDistanceIndex_HorizontalDistanceIndexEnum +// $HorizontalDistanceIndex_HorizontalDistanceIndexEnum Module['UPSLOPE_ZERO_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES(); @@ -6599,6 +7552,42 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['CROSS_SLOPE_NINETY_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES(); + +// $BurningCondition_BurningConditionEnum + + Module['Low'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Low(); + + Module['Moderate'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Moderate(); + + Module['Extreme'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme(); + + +// $SlopeClass_SlopeClassEnum + + Module['Flat'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Flat(); + + Module['Moderate'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Moderate(); + + Module['Steep'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Steep(); + + +// $SpeedClass_SpeedClassEnum + + Module['Light'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Light(); + + Module['Moderate'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Moderate(); + + Module['High'] = _emscripten_enum_SpeedClass_SpeedClassEnum_High(); + + +// $SafetyCondition_SafetyConditionEnum + + Module['Low'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low(); + + Module['Moderate'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate(); + + Module['Extreme'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme(); + } if (runtimeInitialized) setupEnums(); else addOnInit(setupEnums); diff --git a/cms-exports/safeSeparationDistanceCalculator.edn b/cms-exports/safeSeparationDistanceCalculator.edn new file mode 100644 index 00000000..210c029c --- /dev/null +++ b/cms-exports/safeSeparationDistanceCalculator.edn @@ -0,0 +1,51 @@ +{:global + {:SafeSeparationDistanceCalculator + {:setBurningCondition + {:type "void" + :id "setBurningCondition" + :parameters + [{:id "condition" :type "BurningCondition::BurningConditionEnum"}]} + :getSpeedClass + {:type "SpeedClass::SpeedClassEnum" + :id "getSpeedClass" + :parameters []} + :getConditions + {:type "SafetyCondition::SafetyConditionEnum" + :id "getSafetyCondition" + :parameters + []} + :getSlopeClass + {:type "SlopeClass::SlopeClassEnum" + :id "getSlopeClass" + :parameters + []} + :setSpeedClass + {:type "void" + :id "setSpeedClass" + :parameters + [{:id "speed" :type "SpeedClass::SpeedClassEnum"}]} + :getBurningCondition + {:type "BurningCondition::BurningConditionEnum" + :id "getBurningCondition" + :parameters []} + :setVegetationHeight + {:type "void" + :id "setVegetationHeight" + :parameters + [{:id "height" :type "double"} + {:id "lengthUnits" :type "LengthUnits::LengthUnitsEnum"}]} + :calculate + {:type "void" :id "calculate" :parameters + []} + :getSafeSeparationDistance + {:type "double" :id "getSafeSeparationDistance" :parameters + [{:id "lengthUnits" :type "LengthUnits::LengthUnitsEnum"}]} + :getSafetyZoneSize + {:type "double" :id "getSafetyZoneSize" :parameters + [{:id "areaUnits" :type "AreaUnits::AreaUnitsEnum"}]} + :setSlopeClass + {:type "void" :id "setSlopeClass" :parameters + [{:id "slope" :type "SlopeClass::SlopeClassEnum"}]} + :getVegetationHeight + {:type "double" :id "getVegetationHeight" :parameters + [{:id "lengthUnits" :type "LengthUnits::LengthUnitsEnum"}]}}}} diff --git a/components/schema_migrate/src/schema_migrate/core.clj b/components/schema_migrate/src/schema_migrate/core.clj index ffacba3c..ad967e95 100644 --- a/components/schema_migrate/src/schema_migrate/core.clj +++ b/components/schema_migrate/src/schema_migrate/core.clj @@ -156,6 +156,8 @@ [?e :submodule/translation-key ?k] [?e :group/translation-key ?k] [?e :subtool-variable/translation-key ?k] + [?e :tag/translation-key ?k] + [?e :tag-set/translation-key ?k] [?e :group-variable/translation-key ?k])] (d/db conn) eid)) (defn t-key->uuid @@ -166,6 +168,8 @@ (d/entity (ds/unwrap-db conn) [:subtool-variable/translation-key t]) (d/entity (ds/unwrap-db conn) [:group/translation-key t]) (d/entity (ds/unwrap-db conn) [:module/translation-key t]) + (d/entity (ds/unwrap-db conn) [:tag-set/translation-key t]) + (d/entity (ds/unwrap-db conn) [:tag/translation-key t]) (d/entity (ds/unwrap-db conn) [:color-tag/translation-key t]) (d/entity (ds/unwrap-db conn) [:search-table/translation-key t]) (submodule conn t))] diff --git a/development/migrations/2025_08_03_add_safe_separation_distance_calculator.clj b/development/migrations/2025_08_03_add_safe_separation_distance_calculator.clj new file mode 100644 index 00000000..58d5d7cf --- /dev/null +++ b/development/migrations/2025_08_03_add_safe_separation_distance_calculator.clj @@ -0,0 +1,346 @@ +(ns migrations.2025-08-03-add-safe-separation-distance-calculator + (:require [schema-migrate.interface :as sm] + [datomic.api :as d] + [behave-cms.store :refer [default-conn]] + [behave-cms.server :as cms] + [cms-import :refer [add-export-file-to-conn]] + [string-utils.interface :refer [->kebab]])) + +;; =========================================================================================================== +;; Overview +;; =========================================================================================================== + +;; 1. Add Missing Variables +;; 2. Import CPP Functions +;; 3. Create Relative Humidity Tool + + +;; =========================================================================================================== +;; Initialize +;; =========================================================================================================== + +(cms/init-db!) + +#_{:clj-kondo/ignore [:missing-docstring]} +(def conn (default-conn)) + +;; =========================================================================================================== +;; 1. Add Missing Variables +;; =========================================================================================================== + +(def length-dim-uuid (d/q '[:find ?uuid . + :where + [?e :dimension/name "Length"] + [?e :bp/uuid ?uuid]] (d/db conn))) + +(def feet-uuid (sm/name->uuid conn :unit/name "Feet (ft)")) +(def meters-uuid (sm/name->uuid conn :unit/name "Meters (m)")) + +(def area-dim-uuid (d/q '[:find ?uuid . + :where + [?e :dimension/name "Area"] + [?e :bp/uuid ?uuid]] (d/db conn))) + +(def acres-uuid (sm/name->uuid conn :unit/name "Acres (ac)")) +(def hectares-uuid (sm/name->uuid conn :unit/name "Hectares (ha)")) + +(def safety-condition-color-tag-payload + [{:db/id -100 + :tag-set/name "Safety Conditions" + :tag-set/translation-key "behaveplus:tags:safety-conditions" + :tag-set/color? true + :tag-set/tags + [{:db/id -101 + :tag/name "Low" + :tag/color "#FFFFFF" + :tag/translation-key "behaveplus:tags:safety-conditions:low" + :tag/order 0} + {:db/id -102 + :tag/name "Moderate" + :tag/color "#FFFF00" + :tag/translation-key "behaveplus:tags:safety-conditions:moderate" + :tag/order 1} + {:db/id -103 + :tag/name "Extreme" + :tag/color "#FF0000" + :tag/translation-key "behaveplus:tags:safety-conditions:extreme" + :tag/order 2}]}]) + +(def missing-vars-payload + [{:variable/name "Burning Condition" + :variable/bp6-label "Burning Condition" + :variable/bp6-code "vBurningCondition" + :variable/kind :discrete + :variable/list + {:list/name "Burning Condition" + :list/options [{:list-option/name "Low" + :list-option/value "0" + :list-option/translation-key "behaveplus:list-option:burning-condition:low"} + {:list-option/name "Moderate" + :list-option/value "1" + :list-option/translation-key "behaveplus:list-option:burning-condition:moderate"} + {:list-option/name "Extreme" + :list-option/value "2" + :list-option/translation-key "behaveplus:list-option:burning-condition:extreme"}]}} + + {:variable/name "Safety Condition" + :variable/bp6-label "Safety Condition" + :variable/bp6-code "vSafetyCondition" + :variable/kind :discrete + :variable/list + {:list/name "Safety Condition" + :list/color-tag-set (sm/t-key->eid conn "behaveplus:tags:safety-conditions") + :list/options [{:list-option/name "Low" + :list-option/value "0" + :list-option/translation-key "behaveplus:list-option:safety-condition:low" + :list-option/color-tag-ref (sm/t-key->eid conn "behaveplus:tags:safety-conditions:low")} + {:list-option/name "Moderate" + :list-option/value "1" + :list-option/translation-key "behaveplus:list-option:safety-condition:moderate" + :list-option/color-tag-ref (sm/t-key->eid conn "behaveplus:tags:safety-conditions:moderate")} + {:list-option/name "Extreme" + :list-option/value "2" + :list-option/translation-key "behaveplus:list-option:safety-condition:extreme" + :list-option/color-tag-ref (sm/t-key->eid conn "behaveplus:tags:safety-conditions:extreme")}]}} + + {:variable/name "Slope Class" + :variable/bp6-label "Slope Class" + :variable/bp6-code "vSlopeClass" + :variable/kind :discrete + :variable/list + {:list/name "Slope Class" + :list/options [{:list-option/name "Flat" + :list-option/value "0" + :list-option/translation-key "behaveplus:list-option:slope-class:low"} + {:list-option/name "Moderate" + :list-option/value "1" + :list-option/translation-key "behaveplus:list-option:slope-class:moderate"} + {:list-option/name "Steep" + :list-option/value "2" + :list-option/translation-key "behaveplus:list-option:slope-class:steep"}]}} + + {:variable/name "Wind Speed Class" + :variable/bp6-label "Wind Speed Class" + :variable/bp6-code "vWindSpeedClass" + :variable/kind :discrete + :variable/list + {:list/name "Wind Speed Class" + :list/options [{:list-option/name "Light" + :list-option/value "0" + :list-option/translation-key "behaveplus:list-option:wind-speed-class:light"} + {:list-option/name "Moderate" + :list-option/value "1" + :list-option/translation-key "behaveplus:list-option:wind-speed-class:moderate"} + {:list-option/name "High" + :list-option/value "2" + :list-option/translation-key "behaveplus:list-option:wind-speed-class:high"}]}} + + {:variable/name "Vegetation Height" + :variable/bp6-label "Vegetation Height" + :variable/bp6-code "vVegetationHeight" + :variable/kind :continuous + :variable/dimension-uuid length-dim-uuid + :variable/native-unit-uuid feet-uuid + :variable/native-decimals 1 + :variable/english-unit-uuid feet-uuid + :variable/english-decimals 1 + :variable/metric-unit-uuid meters-uuid + :variable/metric-decimals 1} + + {:variable/name "Safe Separation Distance" + :variable/bp6-label "Safe Separation Distance" + :variable/bp6-code "vSafeSeparationDistance" + :variable/kind :continuous + :variable/dimension-uuid length-dim-uuid + :variable/native-unit-uuid feet-uuid + :variable/native-decimals 1 + :variable/english-unit-uuid feet-uuid + :variable/english-decimals 1 + :variable/metric-unit-uuid meters-uuid + :variable/metric-decimals 1} + + {:variable/name "Safety Zone Size" + :variable/bp6-label "Safety Zone Size" + :variable/bp6-code "vSafetyZoneSize" + :variable/kind :continuous + :variable/dimension-uuid area-dim-uuid + :variable/native-unit-uuid acres-uuid + :variable/native-decimals 1 + :variable/english-unit-uuid acres-uuid + :variable/english-decimals 1 + :variable/metric-unit-uuid hectares-uuid + :variable/metric-decimals 1}]) + +;; =========================================================================================================== +;; 2. Import CPP Functions +;; =========================================================================================================== + +(add-export-file-to-conn "./cms-exports/safeSeparationDistanceCalculator.edn" conn) + +;; =========================================================================================================== +;; 3. Create Relative Humidity Tool +;; =========================================================================================================== + +(def bp-app + (d/q '[:find ?e . + :where [?e :application/name "BehavePlus"]] + (d/db conn))) + +(def global-namespace (sm/cpp-ns->uuid conn "global")) +(def ssd-calc-class (sm/cpp-class->uuid conn "global" "SafeSeparationDistanceCalculator")) + +(defn ssd-fn-uuid [fn-name] + (sm/cpp-fn->uuid conn "global" "SafeSeparationDistanceCalculator" fn-name)) + +(defn ssd-param-uuid [fn-name p-name] + (sm/cpp-param->uuid conn "global" "SafeSeparationDistanceCalculator" fn-name p-name)) + +(defn ssd-t-key [v-name] + (str "behaveplus:safe-separation-distance-calculator:" (->kebab v-name))) + +(defn ssd-h-key [v-name] + (str (ssd-t-key v-name) ":help")) + +(def ssd-calc-payload + [{:db/id -100 + :application/_tools bp-app + :tool/name "Safe Separation Distance" + :tool/lib-ns "behave.lib.safe-separation-distance-calculator" + :tool/translation-key "behaveplus:safe-separation-distance-calculator" + :tool/help-key "behaveplus:safe-separation-distance-calculator:help" + :tool/subtools + [{:db/id -101 + :subtool/name "Safe Separation Distance" + :subtool/cpp-namespace-uuid global-namespace + :subtool/cpp-class-uuid ssd-calc-class + :subtool/cpp-function-uuid (ssd-fn-uuid "calculate") + :subtool/translation-key "behaveplus:safe-separation-distance-calculator:safe-separation-distance-calculator" + :subtool/help-key "behaveplus:safe-separation-distance-calculator:safe-separation-distance-calculator:help" + :subtool/variables + [{:db/id -1 + :subtool-variable/io :input + :subtool-variable/order 0 + :subtool-variable/cpp-namespace-uuid global-namespace + :subtool-variable/cpp-class-uuid ssd-calc-class + :subtool-variable/cpp-function-uuid (ssd-fn-uuid "setBurningCondition") + :subtool-variable/translation-key (ssd-t-key "Burning Condition") + :subtool-variable/help-key (ssd-h-key "Burning Condition")} + + {:db/id -2 + :subtool-variable/io :input + :subtool-variable/order 0 + :subtool-variable/cpp-namespace-uuid global-namespace + :subtool-variable/cpp-class-uuid ssd-calc-class + :subtool-variable/cpp-function-uuid (ssd-fn-uuid "setSlopeClass") + :subtool-variable/translation-key (ssd-t-key "Slope Class") + :subtool-variable/help-key (ssd-h-key "Slope Class")} + + {:db/id -3 + :subtool-variable/io :input + :subtool-variable/order 0 + :subtool-variable/cpp-namespace-uuid global-namespace + :subtool-variable/cpp-class-uuid ssd-calc-class + :subtool-variable/cpp-function-uuid (ssd-fn-uuid "setSpeedClass") + :subtool-variable/translation-key (ssd-t-key "Wind Speed Class") + :subtool-variable/help-key (ssd-h-key "Wind Speed Class")} + + {:db/id -4 + :subtool-variable/io :input + :subtool-variable/order 3 + :subtool-variable/cpp-namespace-uuid global-namespace + :subtool-variable/cpp-class-uuid ssd-calc-class + :subtool-variable/cpp-function-uuid (ssd-fn-uuid "setVegetationHeight") + :subtool-variable/cpp-parameter-uuid (ssd-param-uuid "setVegetationHeight" "height") + :subtool-variable/translation-key (ssd-t-key "Vegetation Height") + :subtool-variable/help-key (ssd-h-key "Vegetation Height")} + + {:db/id -5 + :subtool-variable/io :output + :subtool-variable/order 4 + :subtool-variable/cpp-namespace-uuid global-namespace + :subtool-variable/cpp-class-uuid ssd-calc-class + :subtool-variable/cpp-function-uuid (ssd-fn-uuid "getSafeSeparationDistance") + :subtool-variable/translation-key (ssd-t-key "Safe Separation Distance") + :subtool-variable/help-key (ssd-h-key "Safe Separation Distance")} + + {:db/id -6 + :subtool-variable/io :output + :subtool-variable/order 5 + :subtool-variable/cpp-namespace-uuid global-namespace + :subtool-variable/cpp-class-uuid ssd-calc-class + :subtool-variable/cpp-function-uuid (ssd-fn-uuid "getSafetyZoneSize") + :subtool-variable/translation-key (ssd-t-key "Safety Zone Size") + :subtool-variable/help-key (ssd-t-key "Safety Zone Size")} + + {:db/id -7 + :subtool-variable/io :output + :subtool-variable/order 6 + :subtool-variable/cpp-namespace-uuid global-namespace + :subtool-variable/cpp-class-uuid ssd-calc-class + :subtool-variable/cpp-function-uuid (ssd-fn-uuid "getSafetyCondition") + :subtool-variable/translation-key (ssd-t-key "Safety Condition") + :subtool-variable/help-key (ssd-t-key "Safety Condition")}]}]}]) + +(def subtool-variables-payload + [{:db/id (sm/bp6-code->variable-eid conn "vBurningCondition") + :variable/subtool-variables (sm/t-key->eid conn (ssd-t-key "Burning Condition"))} + {:db/id (sm/bp6-code->variable-eid conn "vSlopeClass") + :variable/subtool-variables (sm/t-key->eid conn (ssd-t-key "Slope Class"))} + {:db/id (sm/bp6-code->variable-eid conn "vWindSpeedClass") + :variable/subtool-variables (sm/t-key->eid conn (ssd-t-key "Wind Speed Class"))} + {:db/id (sm/bp6-code->variable-eid conn "vVegetationHeight") + :variable/subtool-variables (sm/t-key->eid conn (ssd-t-key "Vegetation Height"))} + {:db/id (sm/bp6-code->variable-eid conn "vSafeSeparationDistance") + :variable/subtool-variables (sm/t-key->eid conn (ssd-t-key "Safe Separation Distance"))} + {:db/id (sm/bp6-code->variable-eid conn "vSafetyZoneSize") + :variable/subtool-variables (sm/t-key->eid conn (ssd-t-key "Safety Zone Size"))} + {:db/id (sm/bp6-code->variable-eid conn "vSafetyCondition") + :variable/subtool-variables (sm/t-key->eid conn (ssd-t-key "Safety Condition"))}]) + +(def translations-payload + (sm/build-translations-payload + conn + {"behaveplus:tags:safety-conditions" "Safety Conditions" + "behaveplus:tags:safety-conditions:low" "Low" + "behaveplus:tags:safety-conditions:moderate" "Moderate" + "behaveplus:tags:safety-conditions:extreme" "Extreme" + "behaveplus:list-option:burning-condition:low" "Low" + "behaveplus:list-option:burning-condition:moderate" "Moderate" + "behaveplus:list-option:burning-condition:extreme" "Extreme" + "behaveplus:list-option:safety-condition:low" "Low" + "behaveplus:list-option:safety-condition:moderate" "Moderate" + "behaveplus:list-option:safety-condition:extreme" "Extreme" + "behaveplus:list-option:slope-class:low" "Low" + "behaveplus:list-option:slope-class:moderate" "Moderate" + "behaveplus:list-option:slope-class:steep" "Steep" + "behaveplus:list-option:wind-speed-class:light" "Light" + "behaveplus:list-option:wind-speed-class:moderate" "Moderate" + "behaveplus:list-option:wind-speed-class:high" "High" + "behaveplus:safe-separation-distance-calculator" "Safe Separation Distance Calculator" + "behaveplus:safe-separation-distance-calculator:safe-separation-distance-calculator" "Safe Separation Distance Calculator" + (ssd-t-key "Burning Condition") "Burning Condition" + (ssd-t-key "Slope Class") "Slope Class" + (ssd-t-key "Wind Speed Class") "Wind Speed Class" + (ssd-t-key "Vegetation Height") "Vegetation Height" + (ssd-t-key "Safe Separation Distance") "Safe Separation Distance" + (ssd-t-key "Safety Zone Size") "Safety Zone Size" + (ssd-t-key "Safety Condition") "Safety Condition"})) + +;; =========================================================================================================== +;; Payload +;; =========================================================================================================== + +(comment + (def tx-data-1 (d/transact conn (sm/postwalk-insert safety-condition-color-tag-payload))) + (def tx-data-2 (d/transact conn (sm/postwalk-insert missing-vars-payload))) + (def tx-data-3 (d/transact conn (sm/postwalk-insert ssd-calc-payload))) + (def tx-data-4 (d/transact conn subtool-variables-payload)) + (def tx-data-5 (d/transact conn translations-payload))) + +tx-data-5 +(comment + (do (sm/rollback-tx! conn @tx-data-5) + (sm/rollback-tx! conn @tx-data-4) + (sm/rollback-tx! conn @tx-data-3) + (sm/rollback-tx! conn @tx-data-2) + (sm/rollback-tx! conn @tx-data-1))) diff --git a/projects/behave/resources/public/css/app-style.css b/projects/behave/resources/public/css/app-style.css index fa2a43e4..14f33206 100644 --- a/projects/behave/resources/public/css/app-style.css +++ b/projects/behave/resources/public/css/app-style.css @@ -1235,6 +1235,7 @@ body { display: flex; flex-direction: row; } + .tool-output .input-text__label, .tool-input .input-radio-group__label, .tool-input > .input-dropdown > .input-dropdown__label, @@ -1242,10 +1243,18 @@ body { min-width: 250px; padding: 0px; } + .tool-input .input-dropdown__select-wrapper { margin-top: 0px; } +.tool-input .input-dropdown__label { + font-family: var(--font-family-roboto); + font-size: var(--font-size-16); + font-weight: var(--font-weight-500); + color: var(--black); +} + .tool-input .input-radio-group__label { padding: 0px 10px 0px 0px; font-size: var(--font-size-14); diff --git a/projects/behave/resources/public/js/behave-min.js b/projects/behave/resources/public/js/behave-min.js index fdc78160..349aa584 100644 --- a/projects/behave/resources/public/js/behave-min.js +++ b/projects/behave/resources/public/js/behave-min.js @@ -2,7 +2,7 @@ // The Module object: Our interface to the outside world. We import // and export values on it. There are various ways Module can be used: // 1. Not defined. We create it here -// 2. A function parameter, function(Module) { ..generated code.. } +// 2. A function parameter, function(moduleArg) => Promise // 3. pre-run appended it, var Module = {}; ..generated code.. // 4. External script tag defines var Module. // We need to check if Module already exists (e.g. case 3 above). @@ -14,38 +14,39 @@ // can continue to use Module afterwards as well. var Module = typeof Module != 'undefined' ? Module : {}; +// Determine the runtime environment we are in. You can customize this by +// setting the ENVIRONMENT setting at compile time (see settings.js). + +// Attempt to auto-detect the environment +var ENVIRONMENT_IS_WEB = typeof window == 'object'; +var ENVIRONMENT_IS_WORKER = typeof WorkerGlobalScope != 'undefined'; +// N.b. Electron.js environment is simultaneously a NODE-environment, but +// also a web environment. +var ENVIRONMENT_IS_NODE = typeof process == 'object' && process.versions?.node && process.type != 'renderer'; +var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + // --pre-jses are emitted after the Module integration code, so that they can // refer to Module (if they choose; they can also define Module) +// include: /Users/rsheperd/code/sig/behave-app/behave-lib/include/js/pre.js Module["onRuntimeInitialized"] = window.onWASMModuleLoaded; +// end include: /Users/rsheperd/code/sig/behave-app/behave-lib/include/js/pre.js - -// Sometimes an existing Module object exists with properties -// meant to overwrite the default module functionality. Here -// we collect those properties and reapply _after_ we configure -// the current environment's defaults to avoid having to be so -// defensive during initialization. -var moduleOverrides = Object.assign({}, Module); - var arguments_ = []; var thisProgram = './this.program'; var quit_ = (status, toThrow) => { throw toThrow; }; -// Determine the runtime environment we are in. You can customize this by -// setting the ENVIRONMENT setting at compile time (see settings.js). - -// Attempt to auto-detect the environment -var ENVIRONMENT_IS_WEB = typeof window == 'object'; -var ENVIRONMENT_IS_WORKER = typeof importScripts == 'function'; -// N.b. Electron.js environment is simultaneously a NODE-environment, but -// also a web environment. -var ENVIRONMENT_IS_NODE = typeof process == 'object' && typeof process.versions == 'object' && typeof process.versions.node == 'string'; -var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; +// In MODULARIZE mode _scriptName needs to be captured already at the very top of the page immediately when the page is parsed, so it is generated there +// before the page load. In non-MODULARIZE modes generate it here. +var _scriptName = typeof document != 'undefined' ? document.currentScript?.src : undefined; -if (Module['ENVIRONMENT']) { - throw new Error('Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -sENVIRONMENT=web or -sENVIRONMENT=node)'); +if (typeof __filename != 'undefined') { // Node + _scriptName = __filename; +} else +if (ENVIRONMENT_IS_WORKER) { + _scriptName = self.location.href; } // `/` should be present at the end if `scriptDirectory` is not empty @@ -58,63 +59,41 @@ function locateFile(path) { } // Hooks that are implemented differently in different runtime environments. -var read_, - readAsync, - readBinary, - setWindowTitle; +var readAsync, readBinary; if (ENVIRONMENT_IS_NODE) { - if (typeof process == 'undefined' || !process.release || process.release.name !== 'node') throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); + const isNode = typeof process == 'object' && process.versions?.node && process.type != 'renderer'; + if (!isNode) throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); var nodeVersion = process.versions.node; var numericVersion = nodeVersion.split('.').slice(0, 3); - numericVersion = (numericVersion[0] * 10000) + (numericVersion[1] * 100) + numericVersion[2] * 1; - var minVersion = 101900; - if (numericVersion < 101900) { - throw new Error('This emscripten-generated code requires node v10.19.19.0 (detected v' + nodeVersion + ')'); + numericVersion = (numericVersion[0] * 10000) + (numericVersion[1] * 100) + (numericVersion[2].split('-')[0] * 1); + if (numericVersion < 160000) { + throw new Error('This emscripten-generated code requires node v16.0.0 (detected v' + nodeVersion + ')'); } - // `require()` is no-op in an ESM module, use `createRequire()` to construct - // the require()` function. This is only necessary for multi-environment - // builds, `-sENVIRONMENT=node` emits a static import declaration instead. - // TODO: Swap all `require()`'s with `import()`'s? // These modules will usually be used on Node.js. Load them eagerly to avoid // the complexity of lazy-loading. var fs = require('fs'); - var nodePath = require('path'); - if (ENVIRONMENT_IS_WORKER) { - scriptDirectory = nodePath.dirname(scriptDirectory) + '/'; - } else { - scriptDirectory = __dirname + '/'; - } + scriptDirectory = __dirname + '/'; // include: node_shell_read.js -read_ = (filename, binary) => { - // We need to re-wrap `file://` strings to URLs. Normalizing isn't - // necessary in that case, the path should already be absolute. - filename = isFileURI(filename) ? new URL(filename) : nodePath.normalize(filename); - return fs.readFileSync(filename, binary ? undefined : 'utf8'); -}; - readBinary = (filename) => { - var ret = read_(filename, true); - if (!ret.buffer) { - ret = new Uint8Array(ret); - } - assert(ret.buffer); + // We need to re-wrap `file://` strings to URLs. + filename = isFileURI(filename) ? new URL(filename) : filename; + var ret = fs.readFileSync(filename); + assert(Buffer.isBuffer(ret)); return ret; }; -readAsync = (filename, onload, onerror) => { - // See the comment in the `read_` function. - filename = isFileURI(filename) ? new URL(filename) : nodePath.normalize(filename); - fs.readFile(filename, function(err, data) { - if (err) onerror(err); - else onload(data.buffer); - }); +readAsync = async (filename, binary = true) => { + // See the comment in the `readBinary` function. + filename = isFileURI(filename) ? new URL(filename) : filename; + var ret = fs.readFileSync(filename, binary ? undefined : 'utf8'); + assert(binary ? Buffer.isBuffer(ret) : typeof ret == 'string'); + return ret; }; - // end include: node_shell_read.js if (process.argv.length > 1) { thisProgram = process.argv[1].replace(/\\/g, '/'); @@ -122,100 +101,21 @@ readAsync = (filename, onload, onerror) => { arguments_ = process.argv.slice(2); + // MODULARIZE will export the module in the proper place outside, we don't need to export here if (typeof module != 'undefined') { module['exports'] = Module; } - process.on('uncaughtException', function(ex) { - // suppress ExitStatus exceptions from showing an error - if (ex !== 'unwind' && !(ex instanceof ExitStatus) && !(ex.context instanceof ExitStatus)) { - throw ex; - } - }); - - // Without this older versions of node (< v15) will log unhandled rejections - // but return 0, which is not normally the desired behaviour. This is - // not be needed with node v15 and about because it is now the default - // behaviour: - // See https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode - var nodeMajor = process.versions.node.split(".")[0]; - if (nodeMajor < 15) { - process.on('unhandledRejection', function(reason) { throw reason; }); - } - quit_ = (status, toThrow) => { process.exitCode = status; throw toThrow; }; - Module['inspect'] = function () { return '[Emscripten Module object]'; }; - } else if (ENVIRONMENT_IS_SHELL) { - if ((typeof process == 'object' && typeof require === 'function') || typeof window == 'object' || typeof importScripts == 'function') throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); - - if (typeof read != 'undefined') { - read_ = function shell_read(f) { - return read(f); - }; - } - - readBinary = function readBinary(f) { - let data; - if (typeof readbuffer == 'function') { - return new Uint8Array(readbuffer(f)); - } - data = read(f, 'binary'); - assert(typeof data == 'object'); - return data; - }; - - readAsync = function readAsync(f, onload, onerror) { - setTimeout(() => onload(readBinary(f)), 0); - }; - - if (typeof clearTimeout == 'undefined') { - globalThis.clearTimeout = (id) => {}; - } - - if (typeof scriptArgs != 'undefined') { - arguments_ = scriptArgs; - } else if (typeof arguments != 'undefined') { - arguments_ = arguments; - } - - if (typeof quit == 'function') { - quit_ = (status, toThrow) => { - // Unlike node which has process.exitCode, d8 has no such mechanism. So we - // have no way to set the exit code and then let the program exit with - // that code when it naturally stops running (say, when all setTimeouts - // have completed). For that reason, we must call `quit` - the only way to - // set the exit code - but quit also halts immediately. To increase - // consistency with node (and the web) we schedule the actual quit call - // using a setTimeout to give the current stack and any exception handlers - // a chance to run. This enables features such as addOnPostRun (which - // expected to be able to run code after main returns). - setTimeout(() => { - if (!(toThrow instanceof ExitStatus)) { - let toLog = toThrow; - if (toThrow && typeof toThrow == 'object' && toThrow.stack) { - toLog = [toThrow, toThrow.stack]; - } - err('exiting due to exception: ' + toLog); - } - quit(status); - }); - throw toThrow; - }; - } - - if (typeof print != 'undefined') { - // Prefer to use print/printErr where they exist, as they usually work better. - if (typeof console == 'undefined') console = /** @type{!Console} */({}); - console.log = /** @type{!function(this:Console, ...*): undefined} */ (print); - console.warn = console.error = /** @type{!function(this:Console, ...*): undefined} */ (typeof printErr != 'undefined' ? printErr : print); - } + const isNode = typeof process == 'object' && process.versions?.node && process.type != 'renderer'; + if (isNode || typeof window == 'object' || typeof WorkerGlobalScope != 'undefined') throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); } else @@ -223,115 +123,81 @@ if (ENVIRONMENT_IS_SHELL) { // Node.js workers are detected as a combination of ENVIRONMENT_IS_WORKER and // ENVIRONMENT_IS_NODE. if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { - if (ENVIRONMENT_IS_WORKER) { // Check worker, not web, since window could be polyfilled - scriptDirectory = self.location.href; - } else if (typeof document != 'undefined' && document.currentScript) { // web - scriptDirectory = document.currentScript.src; - } - // blob urls look like blob:http://site.com/etc/etc and we cannot infer anything from them. - // otherwise, slice off the final part of the url to find the script directory. - // if scriptDirectory does not contain a slash, lastIndexOf will return -1, - // and scriptDirectory will correctly be replaced with an empty string. - // If scriptDirectory contains a query (starting with ?) or a fragment (starting with #), - // they are removed because they could contain a slash. - if (scriptDirectory.indexOf('blob:') !== 0) { - scriptDirectory = scriptDirectory.substr(0, scriptDirectory.replace(/[?#].*/, "").lastIndexOf('/')+1); - } else { - scriptDirectory = ''; + try { + scriptDirectory = new URL('.', _scriptName).href; // includes trailing slash + } catch { + // Must be a `blob:` or `data:` URL (e.g. `blob:http://site.com/etc/etc`), we cannot + // infer anything from them. } - if (!(typeof window == 'object' || typeof importScripts == 'function')) throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); + if (!(typeof window == 'object' || typeof WorkerGlobalScope != 'undefined')) throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); - // Differentiate the Web Worker from the Node Worker case, as reading must - // be done differently. { // include: web_or_worker_shell_read.js -read_ = (url) => { +if (ENVIRONMENT_IS_WORKER) { + readBinary = (url) => { var xhr = new XMLHttpRequest(); xhr.open('GET', url, false); + xhr.responseType = 'arraybuffer'; xhr.send(null); - return xhr.responseText; + return new Uint8Array(/** @type{!ArrayBuffer} */(xhr.response)); + }; } - if (ENVIRONMENT_IS_WORKER) { - readBinary = (url) => { + readAsync = async (url) => { + // Fetch has some additional restrictions over XHR, like it can't be used on a file:// url. + // See https://github.com/github/fetch/pull/92#issuecomment-140665932 + // Cordova or Electron apps are typically loaded from a file:// url. + // So use XHR on webview if URL is a file URL. + if (isFileURI(url)) { + return new Promise((resolve, reject) => { var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); + xhr.open('GET', url, true); xhr.responseType = 'arraybuffer'; + xhr.onload = () => { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 + resolve(xhr.response); + return; + } + reject(xhr.status); + }; + xhr.onerror = reject; xhr.send(null); - return new Uint8Array(/** @type{!ArrayBuffer} */(xhr.response)); - }; - } - - readAsync = (url, onload, onerror) => { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); - xhr.responseType = 'arraybuffer'; - xhr.onload = () => { - if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 - onload(xhr.response); - return; - } - onerror(); - }; - xhr.onerror = onerror; - xhr.send(null); - } - + }); + } + var response = await fetch(url, { credentials: 'same-origin' }); + if (response.ok) { + return response.arrayBuffer(); + } + throw new Error(response.status + ' : ' + response.url); + }; // end include: web_or_worker_shell_read.js } - - setWindowTitle = (title) => document.title = title; } else { throw new Error('environment detection error'); } -var out = Module['print'] || console.log.bind(console); -var err = Module['printErr'] || console.warn.bind(console); - -// Merge back in the overrides -Object.assign(Module, moduleOverrides); -// Free the object hierarchy contained in the overrides, this lets the GC -// reclaim data used e.g. in memoryInitializerRequest, which is a large typed array. -moduleOverrides = null; -checkIncomingModuleAPI(); - -// Emit code to handle expected values on the Module object. This applies Module.x -// to the proper local x. This has two benefits: first, we only emit it if it is -// expected to arrive, and second, by using a local everywhere else that can be -// minified. - -if (Module['arguments']) arguments_ = Module['arguments'];legacyModuleProp('arguments', 'arguments_'); - -if (Module['thisProgram']) thisProgram = Module['thisProgram'];legacyModuleProp('thisProgram', 'thisProgram'); - -if (Module['quit']) quit_ = Module['quit'];legacyModuleProp('quit', 'quit_'); - -// perform assertions in shell.js after we set up out() and err(), as otherwise if an assertion fails it cannot print the message -// Assertions on removed incoming Module JS APIs. -assert(typeof Module['memoryInitializerPrefixURL'] == 'undefined', 'Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead'); -assert(typeof Module['pthreadMainPrefixURL'] == 'undefined', 'Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead'); -assert(typeof Module['cdInitializerPrefixURL'] == 'undefined', 'Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead'); -assert(typeof Module['filePackagePrefixURL'] == 'undefined', 'Module.filePackagePrefixURL option was removed, use Module.locateFile instead'); -assert(typeof Module['read'] == 'undefined', 'Module.read option was removed (modify read_ in JS)'); -assert(typeof Module['readAsync'] == 'undefined', 'Module.readAsync option was removed (modify readAsync in JS)'); -assert(typeof Module['readBinary'] == 'undefined', 'Module.readBinary option was removed (modify readBinary in JS)'); -assert(typeof Module['setWindowTitle'] == 'undefined', 'Module.setWindowTitle option was removed (modify setWindowTitle in JS)'); -assert(typeof Module['TOTAL_MEMORY'] == 'undefined', 'Module.TOTAL_MEMORY has been renamed Module.INITIAL_MEMORY'); -legacyModuleProp('read', 'read_'); -legacyModuleProp('readAsync', 'readAsync'); -legacyModuleProp('readBinary', 'readBinary'); -legacyModuleProp('setWindowTitle', 'setWindowTitle'); +var out = console.log.bind(console); +var err = console.error.bind(console); + var IDBFS = 'IDBFS is no longer included by default; build with -lidbfs.js'; var PROXYFS = 'PROXYFS is no longer included by default; build with -lproxyfs.js'; var WORKERFS = 'WORKERFS is no longer included by default; build with -lworkerfs.js'; +var FETCHFS = 'FETCHFS is no longer included by default; build with -lfetchfs.js'; +var ICASEFS = 'ICASEFS is no longer included by default; build with -licasefs.js'; +var JSFILEFS = 'JSFILEFS is no longer included by default; build with -ljsfilefs.js'; +var OPFS = 'OPFS is no longer included by default; build with -lopfs.js'; + var NODEFS = 'NODEFS is no longer included by default; build with -lnodefs.js'; -assert(!ENVIRONMENT_IS_SHELL, "shell environment detected but not enabled at build time. Add 'shell' to `-sENVIRONMENT` to enable."); +// perform assertions in shell.js after we set up out() and err(), as otherwise +// if an assertion fails it cannot print the message +assert(!ENVIRONMENT_IS_SHELL, 'shell environment detected but not enabled at build time. Add `shell` to `-sENVIRONMENT` to enable.'); // end include: shell.js + // include: preamble.js // === Preamble library stuff === @@ -344,17 +210,13 @@ assert(!ENVIRONMENT_IS_SHELL, "shell environment detected but not enabled at bui // is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html var wasmBinary; -if (Module['wasmBinary']) wasmBinary = Module['wasmBinary'];legacyModuleProp('wasmBinary', 'wasmBinary'); -var noExitRuntime = Module['noExitRuntime'] || true;legacyModuleProp('noExitRuntime', 'noExitRuntime'); if (typeof WebAssembly != 'object') { - abort('no native wasm support detected'); + err('no native wasm support detected'); } // Wasm globals -var wasmMemory; - //======================================== // Runtime essentials //======================================== @@ -368,6 +230,10 @@ var ABORT = false; // but only when noExitRuntime is false. var EXITSTATUS; +// In STRICT mode, we only define assert() when ASSERTIONS is set. i.e. we +// don't define it at all in release modes. This matches the behaviour of +// MINIMAL_RUNTIME. +// TODO(sbc): Make this the default even without STRICT enabled. /** @type {function(*, string=)} */ function assert(condition, text) { if (!condition) { @@ -378,252 +244,21 @@ function assert(condition, text) { // We used to include malloc/free by default in the past. Show a helpful error in // builds with assertions. -// include: runtime_strings.js -// runtime_strings.js: String related runtime functions that are part of both -// MINIMAL_RUNTIME and regular runtime. - -var UTF8Decoder = typeof TextDecoder != 'undefined' ? new TextDecoder('utf8') : undefined; - -/** - * Given a pointer 'idx' to a null-terminated UTF8-encoded string in the given - * array that contains uint8 values, returns a copy of that string as a - * Javascript String object. - * heapOrArray is either a regular array, or a JavaScript typed array view. - * @param {number} idx - * @param {number=} maxBytesToRead - * @return {string} - */ -function UTF8ArrayToString(heapOrArray, idx, maxBytesToRead) { - var endIdx = idx + maxBytesToRead; - var endPtr = idx; - // TextDecoder needs to know the byte length in advance, it doesn't stop on - // null terminator by itself. Also, use the length info to avoid running tiny - // strings through TextDecoder, since .subarray() allocates garbage. - // (As a tiny code save trick, compare endPtr against endIdx using a negation, - // so that undefined means Infinity) - while (heapOrArray[endPtr] && !(endPtr >= endIdx)) ++endPtr; - - if (endPtr - idx > 16 && heapOrArray.buffer && UTF8Decoder) { - return UTF8Decoder.decode(heapOrArray.subarray(idx, endPtr)); - } - var str = ''; - // If building with TextDecoder, we have already computed the string length - // above, so test loop end condition against that - while (idx < endPtr) { - // For UTF8 byte structure, see: - // http://en.wikipedia.org/wiki/UTF-8#Description - // https://www.ietf.org/rfc/rfc2279.txt - // https://tools.ietf.org/html/rfc3629 - var u0 = heapOrArray[idx++]; - if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } - var u1 = heapOrArray[idx++] & 63; - if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } - var u2 = heapOrArray[idx++] & 63; - if ((u0 & 0xF0) == 0xE0) { - u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; - } else { - if ((u0 & 0xF8) != 0xF0) warnOnce('Invalid UTF-8 leading byte ' + ptrToString(u0) + ' encountered when deserializing a UTF-8 string in wasm memory to a JS string!'); - u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (heapOrArray[idx++] & 63); - } - - if (u0 < 0x10000) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); - } - } - return str; -} - -/** - * Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the - * emscripten HEAP, returns a copy of that string as a Javascript String object. - * - * @param {number} ptr - * @param {number=} maxBytesToRead - An optional length that specifies the - * maximum number of bytes to read. You can omit this parameter to scan the - * string until the first \0 byte. If maxBytesToRead is passed, and the string - * at [ptr, ptr+maxBytesToReadr[ contains a null byte in the middle, then the - * string will cut short at that byte index (i.e. maxBytesToRead will not - * produce a string of exact length [ptr, ptr+maxBytesToRead[) N.B. mixing - * frequent uses of UTF8ToString() with and without maxBytesToRead may throw - * JS JIT optimizations off, so it is worth to consider consistently using one - * @return {string} - */ -function UTF8ToString(ptr, maxBytesToRead) { - assert(typeof ptr == 'number'); - return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : ''; -} - -/** - * Copies the given Javascript String object 'str' to the given byte array at - * address 'outIdx', encoded in UTF8 form and null-terminated. The copy will - * require at most str.length*4+1 bytes of space in the HEAP. Use the function - * lengthBytesUTF8 to compute the exact number of bytes (excluding null - * terminator) that this function will write. - * - * @param {string} str - The Javascript string to copy. - * @param {ArrayBufferView|Array} heap - The array to copy to. Each - * index in this array is assumed - * to be one 8-byte element. - * @param {number} outIdx - The starting offset in the array to begin the copying. - * @param {number} maxBytesToWrite - The maximum number of bytes this function - * can write to the array. This count should - * include the null terminator, i.e. if - * maxBytesToWrite=1, only the null terminator - * will be written and nothing else. - * maxBytesToWrite=0 does not write any bytes - * to the output, not even the null - * terminator. - * @return {number} The number of bytes written, EXCLUDING the null terminator. - */ -function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) { - // Parameter maxBytesToWrite is not optional. Negative values, 0, null, - // undefined and false each don't write out any bytes. - if (!(maxBytesToWrite > 0)) - return 0; - - var startIdx = outIdx; - var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator. - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code - // unit, not a Unicode code point of the character! So decode - // UTF16->UTF32->UTF8. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description - // and https://www.ietf.org/rfc/rfc2279.txt - // and https://tools.ietf.org/html/rfc3629 - var u = str.charCodeAt(i); // possibly a lead surrogate - if (u >= 0xD800 && u <= 0xDFFF) { - var u1 = str.charCodeAt(++i); - u = 0x10000 + ((u & 0x3FF) << 10) | (u1 & 0x3FF); - } - if (u <= 0x7F) { - if (outIdx >= endIdx) break; - heap[outIdx++] = u; - } else if (u <= 0x7FF) { - if (outIdx + 1 >= endIdx) break; - heap[outIdx++] = 0xC0 | (u >> 6); - heap[outIdx++] = 0x80 | (u & 63); - } else if (u <= 0xFFFF) { - if (outIdx + 2 >= endIdx) break; - heap[outIdx++] = 0xE0 | (u >> 12); - heap[outIdx++] = 0x80 | ((u >> 6) & 63); - heap[outIdx++] = 0x80 | (u & 63); - } else { - if (outIdx + 3 >= endIdx) break; - if (u > 0x10FFFF) warnOnce('Invalid Unicode code point ' + ptrToString(u) + ' encountered when serializing a JS string to a UTF-8 string in wasm memory! (Valid unicode code points should be in range 0-0x10FFFF).'); - heap[outIdx++] = 0xF0 | (u >> 18); - heap[outIdx++] = 0x80 | ((u >> 12) & 63); - heap[outIdx++] = 0x80 | ((u >> 6) & 63); - heap[outIdx++] = 0x80 | (u & 63); - } - } - // Null-terminate the pointer to the buffer. - heap[outIdx] = 0; - return outIdx - startIdx; -} - -/** - * Copies the given Javascript String object 'str' to the emscripten HEAP at - * address 'outPtr', null-terminated and encoded in UTF8 form. The copy will - * require at most str.length*4+1 bytes of space in the HEAP. - * Use the function lengthBytesUTF8 to compute the exact number of bytes - * (excluding null terminator) that this function will write. - * - * @return {number} The number of bytes written, EXCLUDING the null terminator. - */ -function stringToUTF8(str, outPtr, maxBytesToWrite) { - assert(typeof maxBytesToWrite == 'number', 'stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!'); - return stringToUTF8Array(str, HEAPU8,outPtr, maxBytesToWrite); -} - /** - * Returns the number of bytes the given Javascript string takes if encoded as a - * UTF8 byte array, EXCLUDING the null terminator byte. - * - * @param {string} str - JavaScript string to operator on - * @return {number} Length, in bytes, of the UTF8 encoded string. + * Indicates whether filename is delivered via file protocol (as opposed to http/https) + * @noinline */ -function lengthBytesUTF8(str) { - var len = 0; - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code - // unit, not a Unicode code point of the character! So decode - // UTF16->UTF32->UTF8. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - var c = str.charCodeAt(i); // possibly a lead surrogate - if (c <= 0x7F) { - len++; - } else if (c <= 0x7FF) { - len += 2; - } else if (c >= 0xD800 && c <= 0xDFFF) { - len += 4; ++i; - } else { - len += 3; - } - } - return len; -} - -// end include: runtime_strings.js -// Memory management - -var HEAP, -/** @type {!Int8Array} */ - HEAP8, -/** @type {!Uint8Array} */ - HEAPU8, -/** @type {!Int16Array} */ - HEAP16, -/** @type {!Uint16Array} */ - HEAPU16, -/** @type {!Int32Array} */ - HEAP32, -/** @type {!Uint32Array} */ - HEAPU32, -/** @type {!Float32Array} */ - HEAPF32, -/** @type {!Float64Array} */ - HEAPF64; - -function updateMemoryViews() { - var b = wasmMemory.buffer; - Module['HEAP8'] = HEAP8 = new Int8Array(b); - Module['HEAP16'] = HEAP16 = new Int16Array(b); - Module['HEAP32'] = HEAP32 = new Int32Array(b); - Module['HEAPU8'] = HEAPU8 = new Uint8Array(b); - Module['HEAPU16'] = HEAPU16 = new Uint16Array(b); - Module['HEAPU32'] = HEAPU32 = new Uint32Array(b); - Module['HEAPF32'] = HEAPF32 = new Float32Array(b); - Module['HEAPF64'] = HEAPF64 = new Float64Array(b); -} +var isFileURI = (filename) => filename.startsWith('file://'); -assert(!Module['STACK_SIZE'], 'STACK_SIZE can no longer be set at runtime. Use -sSTACK_SIZE at link time') - -assert(typeof Int32Array != 'undefined' && typeof Float64Array !== 'undefined' && Int32Array.prototype.subarray != undefined && Int32Array.prototype.set != undefined, - 'JS engine does not provide full typed array support'); - -// If memory is defined in wasm, the user can't provide it, or set INITIAL_MEMORY -assert(!Module['wasmMemory'], 'Use of `wasmMemory` detected. Use -sIMPORTED_MEMORY to define wasmMemory externally'); -assert(!Module['INITIAL_MEMORY'], 'Detected runtime INITIAL_MEMORY setting. Use -sIMPORTED_MEMORY to define wasmMemory dynamically'); - -// include: runtime_init_table.js -// In regular non-RELOCATABLE mode the table is exported -// from the wasm module and this will be assigned once -// the exports are available. -var wasmTable; - -// end include: runtime_init_table.js +// include: runtime_common.js // include: runtime_stack_check.js // Initializes the stack cookie. Called at the startup of main and at the startup of each thread in pthreads mode. function writeStackCookie() { var max = _emscripten_stack_get_end(); assert((max & 3) == 0); // If the stack ends at address zero we write our cookies 4 bytes into the - // stack. This prevents interference with the (separate) address-zero check - // below. + // stack. This prevents interference with SAFE_HEAP and ASAN which also + // monitor writes to address zero. if (max == 0) { max += 4; } @@ -633,7 +268,7 @@ function writeStackCookie() { HEAPU32[((max)>>2)] = 0x02135467; HEAPU32[(((max)+(4))>>2)] = 0x89BACDFE; // Also test the global address 0 for integrity. - HEAPU32[0] = 0x63736d65; /* 'emsc' */ + HEAPU32[((0)>>2)] = 1668509029; } function checkStackCookie() { @@ -646,139 +281,277 @@ function checkStackCookie() { var cookie1 = HEAPU32[((max)>>2)]; var cookie2 = HEAPU32[(((max)+(4))>>2)]; if (cookie1 != 0x02135467 || cookie2 != 0x89BACDFE) { - abort('Stack overflow! Stack cookie has been overwritten at ' + ptrToString(max) + ', expected hex dwords 0x89BACDFE and 0x2135467, but received ' + ptrToString(cookie2) + ' ' + ptrToString(cookie1)); + abort(`Stack overflow! Stack cookie has been overwritten at ${ptrToString(max)}, expected hex dwords 0x89BACDFE and 0x2135467, but received ${ptrToString(cookie2)} ${ptrToString(cookie1)}`); } // Also test the global address 0 for integrity. - if (HEAPU32[0] !== 0x63736d65 /* 'emsc' */) { + if (HEAPU32[((0)>>2)] != 0x63736d65 /* 'emsc' */) { abort('Runtime error: The application has corrupted its heap memory area (address zero)!'); } } - // end include: runtime_stack_check.js -// include: runtime_assertions.js +// include: runtime_exceptions.js +// Base Emscripten EH error class +class EmscriptenEH extends Error {} + +class EmscriptenSjLj extends EmscriptenEH {} + +class CppException extends EmscriptenEH { + constructor(excPtr) { + super(excPtr); + this.excPtr = excPtr; + const excInfo = getExceptionMessage(excPtr); + this.name = excInfo[0]; + this.message = excInfo[1]; + } +} +// end include: runtime_exceptions.js +// include: runtime_debug.js +var runtimeDebug = true; // Switch to false at runtime to disable logging at the right times + +// Used by XXXXX_DEBUG settings to output debug messages. +function dbg(...args) { + if (!runtimeDebug && typeof runtimeDebug != 'undefined') return; + // TODO(sbc): Make this configurable somehow. Its not always convenient for + // logging to show up as warnings. + console.warn(...args); +} + // Endianness check -(function() { +(() => { var h16 = new Int16Array(1); var h8 = new Int8Array(h16.buffer); h16[0] = 0x6373; if (h8[0] !== 0x73 || h8[1] !== 0x63) throw 'Runtime error: expected the system to be little-endian! (Run with -sSUPPORT_BIG_ENDIAN to bypass)'; })(); -// end include: runtime_assertions.js -var __ATPRERUN__ = []; // functions called before the runtime is initialized -var __ATINIT__ = []; // functions called during startup -var __ATEXIT__ = []; // functions called during shutdown -var __ATPOSTRUN__ = []; // functions called after the main() is called - -var runtimeInitialized = false; - -var runtimeKeepaliveCounter = 0; - -function keepRuntimeAlive() { - return noExitRuntime || runtimeKeepaliveCounter > 0; -} +function consumedModuleProp(prop) { + if (!Object.getOwnPropertyDescriptor(Module, prop)) { + Object.defineProperty(Module, prop, { + configurable: true, + set() { + abort(`Attempt to set \`Module.${prop}\` after it has already been processed. This can happen, for example, when code is injected via '--post-js' rather than '--pre-js'`); -function preRun() { - if (Module['preRun']) { - if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; - while (Module['preRun'].length) { - addOnPreRun(Module['preRun'].shift()); - } + } + }); } - callRuntimeCallbacks(__ATPRERUN__); } -function initRuntime() { - assert(!runtimeInitialized); - runtimeInitialized = true; - - checkStackCookie(); - - -if (!Module["noFSInit"] && !FS.init.initialized) - FS.init(); -FS.ignorePermissions = false; +function makeInvalidEarlyAccess(name) { + return () => assert(false, `call to '${name}' via reference taken before Wasm module initialization`); -TTY.init(); - callRuntimeCallbacks(__ATINIT__); } -function postRun() { - checkStackCookie(); - - if (Module['postRun']) { - if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; - while (Module['postRun'].length) { - addOnPostRun(Module['postRun'].shift()); - } +function ignoredModuleProp(prop) { + if (Object.getOwnPropertyDescriptor(Module, prop)) { + abort(`\`Module.${prop}\` was supplied but \`${prop}\` not included in INCOMING_MODULE_JS_API`); } - - callRuntimeCallbacks(__ATPOSTRUN__); } -function addOnPreRun(cb) { - __ATPRERUN__.unshift(cb); -} - -function addOnInit(cb) { - __ATINIT__.unshift(cb); +// forcing the filesystem exports a few things by default +function isExportedByForceFilesystem(name) { + return name === 'FS_createPath' || + name === 'FS_createDataFile' || + name === 'FS_createPreloadedFile' || + name === 'FS_unlink' || + name === 'addRunDependency' || + // The old FS has some functionality that WasmFS lacks. + name === 'FS_createLazyFile' || + name === 'FS_createDevice' || + name === 'removeRunDependency'; } -function addOnExit(cb) { +/** + * Intercept access to a global symbol. This enables us to give informative + * warnings/errors when folks attempt to use symbols they did not include in + * their build, or no symbols that no longer exist. + */ +function hookGlobalSymbolAccess(sym, func) { + if (typeof globalThis != 'undefined' && !Object.getOwnPropertyDescriptor(globalThis, sym)) { + Object.defineProperty(globalThis, sym, { + configurable: true, + get() { + func(); + return undefined; + } + }); + } } -function addOnPostRun(cb) { - __ATPOSTRUN__.unshift(cb); +function missingGlobal(sym, msg) { + hookGlobalSymbolAccess(sym, () => { + warnOnce(`\`${sym}\` is not longer defined by emscripten. ${msg}`); + }); } -// include: runtime_math.js -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/fround - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/clz32 - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/trunc +missingGlobal('buffer', 'Please use HEAP8.buffer or wasmMemory.buffer'); +missingGlobal('asm', 'Please use wasmExports instead'); -assert(Math.imul, 'This browser does not support Math.imul(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill'); -assert(Math.fround, 'This browser does not support Math.fround(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill'); -assert(Math.clz32, 'This browser does not support Math.clz32(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill'); -assert(Math.trunc, 'This browser does not support Math.trunc(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill'); +function missingLibrarySymbol(sym) { + hookGlobalSymbolAccess(sym, () => { + // Can't `abort()` here because it would break code that does runtime + // checks. e.g. `if (typeof SDL === 'undefined')`. + var msg = `\`${sym}\` is a library symbol and not included by default; add it to your library.js __deps or to DEFAULT_LIBRARY_FUNCS_TO_INCLUDE on the command line`; + // DEFAULT_LIBRARY_FUNCS_TO_INCLUDE requires the name as it appears in + // library.js, which means $name for a JS name with no prefix, or name + // for a JS name like _name. + var librarySymbol = sym; + if (!librarySymbol.startsWith('_')) { + librarySymbol = '$' + sym; + } + msg += ` (e.g. -sDEFAULT_LIBRARY_FUNCS_TO_INCLUDE='${librarySymbol}')`; + if (isExportedByForceFilesystem(sym)) { + msg += '. Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you'; + } + warnOnce(msg); + }); -// end include: runtime_math.js -// A counter of dependencies for calling run(). If we need to -// do asynchronous work before running, increment this and -// decrement it. Incrementing must happen in a place like -// Module.preRun (used by emcc to add file preloading). -// Note that you can add dependencies in preRun, even though -// it happens right before run - run will be postponed until -// the dependencies are met. -var runDependencies = 0; -var runDependencyWatcher = null; -var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled -var runDependencyTracking = {}; + // Any symbol that is not included from the JS library is also (by definition) + // not exported on the Module object. + unexportedRuntimeSymbol(sym); +} -function getUniqueRunDependency(id) { - var orig = id; - while (1) { - if (!runDependencyTracking[id]) return id; - id = orig + Math.random(); +function unexportedRuntimeSymbol(sym) { + if (!Object.getOwnPropertyDescriptor(Module, sym)) { + Object.defineProperty(Module, sym, { + configurable: true, + get() { + var msg = `'${sym}' was not exported. add it to EXPORTED_RUNTIME_METHODS (see the Emscripten FAQ)`; + if (isExportedByForceFilesystem(sym)) { + msg += '. Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you'; + } + abort(msg); + } + }); } } -function addRunDependency(id) { - runDependencies++; +// end include: runtime_debug.js +// Memory management + +var wasmMemory; + +var +/** @type {!Int8Array} */ + HEAP8, +/** @type {!Uint8Array} */ + HEAPU8, +/** @type {!Int16Array} */ + HEAP16, +/** @type {!Uint16Array} */ + HEAPU16, +/** @type {!Int32Array} */ + HEAP32, +/** @type {!Uint32Array} */ + HEAPU32, +/** @type {!Float32Array} */ + HEAPF32, +/** @type {!Float64Array} */ + HEAPF64; + +// BigInt64Array type is not correctly defined in closure +var +/** not-@type {!BigInt64Array} */ + HEAP64, +/* BigUint64Array type is not correctly defined in closure +/** not-@type {!BigUint64Array} */ + HEAPU64; + +var runtimeInitialized = false; + + + +function updateMemoryViews() { + var b = wasmMemory.buffer; + HEAP8 = new Int8Array(b); + HEAP16 = new Int16Array(b); + HEAPU8 = new Uint8Array(b); + HEAPU16 = new Uint16Array(b); + HEAP32 = new Int32Array(b); + HEAPU32 = new Uint32Array(b); + HEAPF32 = new Float32Array(b); + HEAPF64 = new Float64Array(b); + HEAP64 = new BigInt64Array(b); + HEAPU64 = new BigUint64Array(b); +} + +// include: memoryprofiler.js +// end include: memoryprofiler.js +// end include: runtime_common.js +assert(typeof Int32Array != 'undefined' && typeof Float64Array !== 'undefined' && Int32Array.prototype.subarray != undefined && Int32Array.prototype.set != undefined, + 'JS engine does not provide full typed array support'); + +function preRun() { + if (Module['preRun']) { + if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; + while (Module['preRun'].length) { + addOnPreRun(Module['preRun'].shift()); + } + } + consumedModuleProp('preRun'); + // Begin ATPRERUNS hooks + callRuntimeCallbacks(onPreRuns); + // End ATPRERUNS hooks +} + +function initRuntime() { + assert(!runtimeInitialized); + runtimeInitialized = true; + + checkStackCookie(); + + // Begin ATINITS hooks + callRuntimeCallbacks(onInits); +if (!Module['noFSInit'] && !FS.initialized) FS.init(); +TTY.init(); + // End ATINITS hooks + + wasmExports['__wasm_call_ctors'](); + + // Begin ATPOSTCTORS hooks + FS.ignorePermissions = false; + // End ATPOSTCTORS hooks +} - if (Module['monitorRunDependencies']) { - Module['monitorRunDependencies'](runDependencies); +function postRun() { + checkStackCookie(); + // PThreads reuse the runtime from the main thread. + + if (Module['postRun']) { + if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; + while (Module['postRun'].length) { + addOnPostRun(Module['postRun'].shift()); + } } + consumedModuleProp('postRun'); + + // Begin ATPOSTRUNS hooks + callRuntimeCallbacks(onPostRuns); + // End ATPOSTRUNS hooks +} + +// A counter of dependencies for calling run(). If we need to +// do asynchronous work before running, increment this and +// decrement it. Incrementing must happen in a place like +// Module.preRun (used by emcc to add file preloading). +// Note that you can add dependencies in preRun, even though +// it happens right before run - run will be postponed until +// the dependencies are met. +var runDependencies = 0; +var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled +var runDependencyTracking = {}; +var runDependencyWatcher = null; + +function addRunDependency(id) { + runDependencies++; + + Module['monitorRunDependencies']?.(runDependencies); if (id) { assert(!runDependencyTracking[id]); runDependencyTracking[id] = 1; if (runDependencyWatcher === null && typeof setInterval != 'undefined') { // Check for missing dependencies every few seconds - runDependencyWatcher = setInterval(function() { + runDependencyWatcher = setInterval(() => { if (ABORT) { clearInterval(runDependencyWatcher); runDependencyWatcher = null; @@ -790,7 +563,7 @@ function addRunDependency(id) { shown = true; err('still waiting on run dependencies:'); } - err('dependency: ' + dep); + err(`dependency: ${dep}`); } if (shown) { err('(end of list)'); @@ -805,9 +578,7 @@ function addRunDependency(id) { function removeRunDependency(id) { runDependencies--; - if (Module['monitorRunDependencies']) { - Module['monitorRunDependencies'](runDependencies); - } + Module['monitorRunDependencies']?.(runDependencies); if (id) { assert(runDependencyTracking[id]); @@ -830,9 +601,7 @@ function removeRunDependency(id) { /** @param {string|number=} what */ function abort(what) { - if (Module['onAbort']) { - Module['onAbort'](what); - } + Module['onAbort']?.(what); what = 'Aborted(' + what + ')'; // TODO(sbc): Should we remove printing and leave it up to whoever @@ -840,7 +609,6 @@ function abort(what) { err(what); ABORT = true; - EXITSTATUS = 1; // Use a wasm runtime error, because a JS error might be seen as a foreign // exception, which means we'd run destructors on it. We need the error to @@ -852,7 +620,7 @@ function abort(what) { // allows this in the wasm spec. // Suppress closure compiler warning here. Closure compiler's builtin extern - // defintion for WebAssembly.RuntimeError claims it takes no arguments even + // definition for WebAssembly.RuntimeError claims it takes no arguments even // though it can. // TODO(https://github.com/google/closure-compiler/pull/3913): Remove if/when upstream closure gets fixed. /** @suppress {checkTypes} */ @@ -864,196 +632,124 @@ function abort(what) { throw e; } -// include: memoryprofiler.js -// end include: memoryprofiler.js -// include: URIUtils.js -// Prefix of data URIs emitted by SINGLE_FILE and related options. -var dataURIPrefix = 'data:application/octet-stream;base64,'; - -// Indicates whether filename is a base64 data URI. -function isDataURI(filename) { - // Prefix of data URIs emitted by SINGLE_FILE and related options. - return filename.startsWith(dataURIPrefix); -} - -// Indicates whether filename is delivered via file protocol (as opposed to http/https) -function isFileURI(filename) { - return filename.startsWith('file://'); -} - -// end include: URIUtils.js -/** @param {boolean=} fixedasm */ -function createExportWrapper(name, fixedasm) { - return function() { - var displayName = name; - var asm = fixedasm; - if (!fixedasm) { - asm = Module['asm']; - } - assert(runtimeInitialized, 'native function `' + displayName + '` called before runtime initialization'); - if (!asm[name]) { - assert(asm[name], 'exported native function `' + displayName + '` not found'); - } - return asm[name].apply(null, arguments); +function createExportWrapper(name, nargs) { + return (...args) => { + assert(runtimeInitialized, `native function \`${name}\` called before runtime initialization`); + var f = wasmExports[name]; + assert(f, `exported native function \`${name}\` not found`); + // Only assert for too many arguments. Too few can be valid since the missing arguments will be zero filled. + assert(args.length <= nargs, `native function \`${name}\` called with ${args.length} args but expects ${nargs}`); + return f(...args); }; } -// include: runtime_exceptions.js -// Base Emscripten EH error class -class EmscriptenEH extends Error {} - -class EmscriptenSjLj extends EmscriptenEH {} +var wasmBinaryFile; -class CppException extends EmscriptenEH { - constructor(excPtr) { - super(excPtr); - const excInfo = getExceptionMessage(excPtr); - this.name = excInfo[0]; - this.message = excInfo[1]; - } +function findWasmBinary() { + return locateFile('behave-min.wasm'); } -// end include: runtime_exceptions.js -var wasmBinaryFile; - wasmBinaryFile = 'behave-min.wasm'; - if (!isDataURI(wasmBinaryFile)) { - wasmBinaryFile = locateFile(wasmBinaryFile); - } - -function getBinary(file) { - try { - if (file == wasmBinaryFile && wasmBinary) { - return new Uint8Array(wasmBinary); - } - if (readBinary) { - return readBinary(file); - } - throw "both async and sync fetching of the wasm failed"; +function getBinarySync(file) { + if (file == wasmBinaryFile && wasmBinary) { + return new Uint8Array(wasmBinary); } - catch (err) { - abort(err); + if (readBinary) { + return readBinary(file); } + throw 'both async and sync fetching of the wasm failed'; } -function getBinaryPromise(binaryFile) { - // If we don't have the binary yet, try to to load it asynchronously. - // Fetch has some additional restrictions over XHR, like it can't be used on a file:// url. - // See https://github.com/github/fetch/pull/92#issuecomment-140665932 - // Cordova or Electron apps are typically loaded from a file:// url. - // So use fetch if it is available and the url is not a file, otherwise fall back to XHR. - if (!wasmBinary && (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER)) { - if (typeof fetch == 'function' - && !isFileURI(binaryFile) - ) { - return fetch(binaryFile, { credentials: 'same-origin' }).then(function(response) { - if (!response['ok']) { - throw "failed to load wasm binary file at '" + binaryFile + "'"; - } - return response['arrayBuffer'](); - }).catch(function () { - return getBinary(binaryFile); - }); - } - else { - if (readAsync) { - // fetch is not available or url is file => try XHR (readAsync uses XHR internally) - return new Promise(function(resolve, reject) { - readAsync(binaryFile, function(response) { resolve(new Uint8Array(/** @type{!ArrayBuffer} */(response))) }, reject) - }); - } +async function getWasmBinary(binaryFile) { + // If we don't have the binary yet, load it asynchronously using readAsync. + if (!wasmBinary) { + // Fetch the binary using readAsync + try { + var response = await readAsync(binaryFile); + return new Uint8Array(response); + } catch { + // Fall back to getBinarySync below; } } - // Otherwise, getBinary should be able to get it synchronously - return Promise.resolve().then(function() { return getBinary(binaryFile); }); + // Otherwise, getBinarySync should be able to get it synchronously + return getBinarySync(binaryFile); } -function instantiateArrayBuffer(binaryFile, imports, receiver) { - return getBinaryPromise(binaryFile).then(function(binary) { - return WebAssembly.instantiate(binary, imports); - }).then(function (instance) { +async function instantiateArrayBuffer(binaryFile, imports) { + try { + var binary = await getWasmBinary(binaryFile); + var instance = await WebAssembly.instantiate(binary, imports); return instance; - }).then(receiver, function(reason) { - err('failed to asynchronously prepare wasm: ' + reason); + } catch (reason) { + err(`failed to asynchronously prepare wasm: ${reason}`); // Warn on some common problems. if (isFileURI(wasmBinaryFile)) { - err('warning: Loading from a file URI (' + wasmBinaryFile + ') is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing'); + err(`warning: Loading from a file URI (${wasmBinaryFile}) is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing`); } abort(reason); - }); + } } -function instantiateAsync(binary, binaryFile, imports, callback) { - if (!binary && - typeof WebAssembly.instantiateStreaming == 'function' && - !isDataURI(binaryFile) && +async function instantiateAsync(binary, binaryFile, imports) { + if (!binary && typeof WebAssembly.instantiateStreaming == 'function' // Don't use streaming for file:// delivered objects in a webview, fetch them synchronously. - !isFileURI(binaryFile) && + && !isFileURI(binaryFile) // Avoid instantiateStreaming() on Node.js environment for now, as while // Node.js v18.1.0 implements it, it does not have a full fetch() // implementation yet. // // Reference: // https://github.com/emscripten-core/emscripten/pull/16917 - !ENVIRONMENT_IS_NODE && - typeof fetch == 'function') { - return fetch(binaryFile, { credentials: 'same-origin' }).then(function(response) { - // Suppress closure warning here since the upstream definition for - // instantiateStreaming only allows Promise rather than - // an actual Response. - // TODO(https://github.com/google/closure-compiler/pull/3913): Remove if/when upstream closure is fixed. - /** @suppress {checkTypes} */ - var result = WebAssembly.instantiateStreaming(response, imports); - - return result.then( - callback, - function(reason) { - // We expect the most common failure cause to be a bad MIME type for the binary, - // in which case falling back to ArrayBuffer instantiation should work. - err('wasm streaming compile failed: ' + reason); - err('falling back to ArrayBuffer instantiation'); - return instantiateArrayBuffer(binaryFile, imports, callback); - }); - }); - } else { - return instantiateArrayBuffer(binaryFile, imports, callback); + && !ENVIRONMENT_IS_NODE + ) { + try { + var response = fetch(binaryFile, { credentials: 'same-origin' }); + var instantiationResult = await WebAssembly.instantiateStreaming(response, imports); + return instantiationResult; + } catch (reason) { + // We expect the most common failure cause to be a bad MIME type for the binary, + // in which case falling back to ArrayBuffer instantiation should work. + err(`wasm streaming compile failed: ${reason}`); + err('falling back to ArrayBuffer instantiation'); + // fall back of instantiateArrayBuffer below + }; } + return instantiateArrayBuffer(binaryFile, imports); } -// Create the wasm instance. -// Receives the wasm imports, returns the exports. -function createWasm() { +function getWasmImports() { // prepare imports - var info = { + return { 'env': wasmImports, 'wasi_snapshot_preview1': wasmImports, - }; + } +} + +// Create the wasm instance. +// Receives the wasm imports, returns the exports. +async function createWasm() { // Load the wasm module and create an instance of using native support in the JS engine. // handle a generated wasm instance, receiving its exports and // performing other necessary setup /** @param {WebAssembly.Module=} module*/ function receiveInstance(instance, module) { - var exports = instance.exports; + wasmExports = instance.exports; - Module['asm'] = exports; + - wasmMemory = Module['asm']['memory']; - assert(wasmMemory, "memory not found in wasm exports"); - // This assertion doesn't hold when emscripten is run in --post-link - // mode. - // TODO(sbc): Read INITIAL_MEMORY out of the wasm file in post-link mode. - //assert(wasmMemory.buffer.byteLength === 16777216); + wasmMemory = wasmExports['memory']; + + assert(wasmMemory, 'memory not found in wasm exports'); updateMemoryViews(); - wasmTable = Module['asm']['__indirect_function_table']; - assert(wasmTable, "table not found in wasm exports"); - - addOnInit(Module['asm']['__wasm_call_ctors']); + wasmTable = wasmExports['__indirect_function_table']; + + assert(wasmTable, 'table not found in wasm exports'); + assignWasmExports(wasmExports); removeRunDependency('wasm-instantiate'); - - return exports; + return wasmExports; } // wait for the pthread pool (if any) addRunDependency('wasm-instantiate'); @@ -1070,414 +766,283 @@ function createWasm() { trueModule = null; // TODO: Due to Closure regression https://github.com/google/closure-compiler/issues/3193, the above line no longer optimizes out down to the following line. // When the regression is fixed, can restore the above PTHREADS-enabled path. - receiveInstance(result['instance']); + return receiveInstance(result['instance']); } + var info = getWasmImports(); + // User shell pages can write their own Module.instantiateWasm = function(imports, successCallback) callback - // to manually instantiate the Wasm module themselves. This allows pages to run the instantiation parallel - // to any other async startup actions they are performing. - // Also pthreads and wasm workers initialize the wasm instance through this path. + // to manually instantiate the Wasm module themselves. This allows pages to + // run the instantiation parallel to any other async startup actions they are + // performing. + // Also pthreads and wasm workers initialize the wasm instance through this + // path. if (Module['instantiateWasm']) { - try { - return Module['instantiateWasm'](info, receiveInstance); - } catch(e) { - err('Module.instantiateWasm callback failed with error: ' + e); - return false; - } - } - - instantiateAsync(wasmBinary, wasmBinaryFile, info, receiveInstantiationResult); - return {}; // no exports yet; we'll fill them in later -} - -// Globals used by JS i64 conversions (see makeSetValue) -var tempDouble; -var tempI64; - -// include: runtime_debug.js -function legacyModuleProp(prop, newName) { - if (!Object.getOwnPropertyDescriptor(Module, prop)) { - Object.defineProperty(Module, prop, { - configurable: true, - get: function() { - abort('Module.' + prop + ' has been replaced with plain ' + newName + ' (the initial value can be provided on Module, but after startup the value is only looked for on a local variable of that name)'); + return new Promise((resolve, reject) => { + try { + Module['instantiateWasm'](info, (mod, inst) => { + resolve(receiveInstance(mod, inst)); + }); + } catch(e) { + err(`Module.instantiateWasm callback failed with error: ${e}`); + reject(e); } }); } -} -function ignoredModuleProp(prop) { - if (Object.getOwnPropertyDescriptor(Module, prop)) { - abort('`Module.' + prop + '` was supplied but `' + prop + '` not included in INCOMING_MODULE_JS_API'); - } + wasmBinaryFile ??= findWasmBinary(); + var result = await instantiateAsync(wasmBinary, wasmBinaryFile, info); + var exports = receiveInstantiationResult(result); + return exports; } -// forcing the filesystem exports a few things by default -function isExportedByForceFilesystem(name) { - return name === 'FS_createPath' || - name === 'FS_createDataFile' || - name === 'FS_createPreloadedFile' || - name === 'FS_unlink' || - name === 'addRunDependency' || - // The old FS has some functionality that WasmFS lacks. - name === 'FS_createLazyFile' || - name === 'FS_createDevice' || - name === 'removeRunDependency'; -} +// end include: preamble.js -function missingGlobal(sym, msg) { - if (typeof globalThis !== 'undefined') { - Object.defineProperty(globalThis, sym, { - configurable: true, - get: function() { - warnOnce('`' + sym + '` is not longer defined by emscripten. ' + msg); - return undefined; - } - }); - } -} +// Begin JS library code -missingGlobal('buffer', 'Please use HEAP8.buffer or wasmMemory.buffer'); -function missingLibrarySymbol(sym) { - if (typeof globalThis !== 'undefined' && !Object.getOwnPropertyDescriptor(globalThis, sym)) { - Object.defineProperty(globalThis, sym, { - configurable: true, - get: function() { - // Can't `abort()` here because it would break code that does runtime - // checks. e.g. `if (typeof SDL === 'undefined')`. - var msg = '`' + sym + '` is a library symbol and not included by default; add it to your library.js __deps or to DEFAULT_LIBRARY_FUNCS_TO_INCLUDE on the command line'; - // DEFAULT_LIBRARY_FUNCS_TO_INCLUDE requires the name as it appears in - // library.js, which means $name for a JS name with no prefix, or name - // for a JS name like _name. - var librarySymbol = sym; - if (!librarySymbol.startsWith('_')) { - librarySymbol = '$' + sym; - } - msg += " (e.g. -sDEFAULT_LIBRARY_FUNCS_TO_INCLUDE=" + librarySymbol + ")"; - if (isExportedByForceFilesystem(sym)) { - msg += '. Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you'; - } - warnOnce(msg); - return undefined; + class ExitStatus { + name = 'ExitStatus'; + constructor(status) { + this.message = `Program terminated with exit(${status})`; + this.status = status; } - }); - } - // Any symbol that is not included from the JS libary is also (by definition) - // not exported on the Module object. - unexportedRuntimeSymbol(sym); -} + } -function unexportedRuntimeSymbol(sym) { - if (!Object.getOwnPropertyDescriptor(Module, sym)) { - Object.defineProperty(Module, sym, { - configurable: true, - get: function() { - var msg = "'" + sym + "' was not exported. add it to EXPORTED_RUNTIME_METHODS (see the FAQ)"; - if (isExportedByForceFilesystem(sym)) { - msg += '. Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you'; - } - abort(msg); + var callRuntimeCallbacks = (callbacks) => { + while (callbacks.length > 0) { + // Pass the module as the first argument. + callbacks.shift()(Module); } - }); - } -} - -// Used by XXXXX_DEBUG settings to output debug messages. -function dbg(text) { - // TODO(sbc): Make this configurable somehow. Its not always convenient for - // logging to show up as errors. - console.error(text); -} + }; + var onPostRuns = []; + var addOnPostRun = (cb) => onPostRuns.push(cb); -// end include: runtime_debug.js -// === Body === + var onPreRuns = []; + var addOnPreRun = (cb) => onPreRuns.push(cb); -function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out of bounds: [0,' + size + ')'; } + + /** + * @param {number} ptr + * @param {string} type + */ + function getValue(ptr, type = 'i8') { + if (type.endsWith('*')) type = '*'; + switch (type) { + case 'i1': return HEAP8[ptr]; + case 'i8': return HEAP8[ptr]; + case 'i16': return HEAP16[((ptr)>>1)]; + case 'i32': return HEAP32[((ptr)>>2)]; + case 'i64': return HEAP64[((ptr)>>3)]; + case 'float': return HEAPF32[((ptr)>>2)]; + case 'double': return HEAPF64[((ptr)>>3)]; + case '*': return HEAPU32[((ptr)>>2)]; + default: abort(`invalid type for getValue: ${type}`); + } + } + var noExitRuntime = true; -// end include: preamble.js + var ptrToString = (ptr) => { + assert(typeof ptr === 'number'); + // With CAN_ADDRESS_2GB or MEMORY64, pointers are already unsigned. + ptr >>>= 0; + return '0x' + ptr.toString(16).padStart(8, '0'); + }; - /** @constructor */ - function ExitStatus(status) { - this.name = 'ExitStatus'; - this.message = 'Program terminated with exit(' + status + ')'; - this.status = status; + + /** + * @param {number} ptr + * @param {number} value + * @param {string} type + */ + function setValue(ptr, value, type = 'i8') { + if (type.endsWith('*')) type = '*'; + switch (type) { + case 'i1': HEAP8[ptr] = value; break; + case 'i8': HEAP8[ptr] = value; break; + case 'i16': HEAP16[((ptr)>>1)] = value; break; + case 'i32': HEAP32[((ptr)>>2)] = value; break; + case 'i64': HEAP64[((ptr)>>3)] = BigInt(value); break; + case 'float': HEAPF32[((ptr)>>2)] = value; break; + case 'double': HEAPF64[((ptr)>>3)] = value; break; + case '*': HEAPU32[((ptr)>>2)] = value; break; + default: abort(`invalid type for setValue: ${type}`); } + } - function callRuntimeCallbacks(callbacks) { - while (callbacks.length > 0) { - // Pass the module as the first argument. - callbacks.shift()(Module); - } - } + var stackRestore = (val) => __emscripten_stack_restore(val); + var stackSave = () => _emscripten_stack_get_current(); + + var warnOnce = (text) => { + warnOnce.shown ||= {}; + if (!warnOnce.shown[text]) { + warnOnce.shown[text] = 1; + if (ENVIRONMENT_IS_NODE) text = 'warning: ' + text; + err(text); + } + }; + + var UTF8Decoder = typeof TextDecoder != 'undefined' ? new TextDecoder() : undefined; - var wasmTableMirror = []; - - function getWasmTableEntry(funcPtr) { - var func = wasmTableMirror[funcPtr]; - if (!func) { - if (funcPtr >= wasmTableMirror.length) wasmTableMirror.length = funcPtr + 1; - wasmTableMirror[funcPtr] = func = wasmTable.get(funcPtr); + /** + * Given a pointer 'idx' to a null-terminated UTF8-encoded string in the given + * array that contains uint8 values, returns a copy of that string as a + * Javascript String object. + * heapOrArray is either a regular array, or a JavaScript typed array view. + * @param {number=} idx + * @param {number=} maxBytesToRead + * @return {string} + */ + var UTF8ArrayToString = (heapOrArray, idx = 0, maxBytesToRead = NaN) => { + var endIdx = idx + maxBytesToRead; + var endPtr = idx; + // TextDecoder needs to know the byte length in advance, it doesn't stop on + // null terminator by itself. Also, use the length info to avoid running tiny + // strings through TextDecoder, since .subarray() allocates garbage. + // (As a tiny code save trick, compare endPtr against endIdx using a negation, + // so that undefined/NaN means Infinity) + while (heapOrArray[endPtr] && !(endPtr >= endIdx)) ++endPtr; + + // When using conditional TextDecoder, skip it for short strings as the overhead of the native call is not worth it. + if (endPtr - idx > 16 && heapOrArray.buffer && UTF8Decoder) { + return UTF8Decoder.decode(heapOrArray.subarray(idx, endPtr)); } - assert(wasmTable.get(funcPtr) == func, "JavaScript-side Wasm function table mirror is out of date!"); - return func; - } - function exception_decRef(info) { - // A rethrown exception can reach refcount 0; it must not be discarded - // Its next handler will clear the rethrown flag and addRef it, prior to - // final decRef and destruction here - if (info.release_ref() && !info.get_rethrown()) { - var destructor = info.get_destructor(); - if (destructor) { - // In Wasm, destructors return 'this' as in ARM - getWasmTableEntry(destructor)(info.excPtr); - } - ___cxa_free_exception(info.excPtr); + var str = ''; + // If building with TextDecoder, we have already computed the string length + // above, so test loop end condition against that + while (idx < endPtr) { + // For UTF8 byte structure, see: + // http://en.wikipedia.org/wiki/UTF-8#Description + // https://www.ietf.org/rfc/rfc2279.txt + // https://tools.ietf.org/html/rfc3629 + var u0 = heapOrArray[idx++]; + if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } + var u1 = heapOrArray[idx++] & 63; + if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } + var u2 = heapOrArray[idx++] & 63; + if ((u0 & 0xF0) == 0xE0) { + u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; + } else { + if ((u0 & 0xF8) != 0xF0) warnOnce('Invalid UTF-8 leading byte ' + ptrToString(u0) + ' encountered when deserializing a UTF-8 string in wasm memory to a JS string!'); + u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (heapOrArray[idx++] & 63); + } + + if (u0 < 0x10000) { + str += String.fromCharCode(u0); + } else { + var ch = u0 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } } - } + return str; + }; + + /** + * Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the + * emscripten HEAP, returns a copy of that string as a Javascript String object. + * + * @param {number} ptr + * @param {number=} maxBytesToRead - An optional length that specifies the + * maximum number of bytes to read. You can omit this parameter to scan the + * string until the first 0 byte. If maxBytesToRead is passed, and the string + * at [ptr, ptr+maxBytesToReadr[ contains a null byte in the middle, then the + * string will cut short at that byte index (i.e. maxBytesToRead will not + * produce a string of exact length [ptr, ptr+maxBytesToRead[) N.B. mixing + * frequent uses of UTF8ToString() with and without maxBytesToRead may throw + * JS JIT optimizations off, so it is worth to consider consistently using one + * @return {string} + */ + var UTF8ToString = (ptr, maxBytesToRead) => { + assert(typeof ptr == 'number', `UTF8ToString expects a number (got ${typeof ptr})`); + return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : ''; + }; + var ___assert_fail = (condition, filename, line, func) => + abort(`Assertion failed: ${UTF8ToString(condition)}, at: ` + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']); + + var exceptionCaught = []; + + - /** @constructor */ - function ExceptionInfo(excPtr) { - this.excPtr = excPtr; - this.ptr = excPtr - 24; + var uncaughtExceptionCount = 0; + var ___cxa_begin_catch = (ptr) => { + var info = new ExceptionInfo(ptr); + if (!info.get_caught()) { + info.set_caught(true); + uncaughtExceptionCount--; + } + info.set_rethrown(false); + exceptionCaught.push(info); + ___cxa_increment_exception_refcount(ptr); + return ___cxa_get_exception_ptr(ptr); + }; + + var exceptionLast = 0; - this.set_type = function(type) { + class ExceptionInfo { + // excPtr - Thrown object pointer to wrap. Metadata pointer is calculated from it. + constructor(excPtr) { + this.excPtr = excPtr; + this.ptr = excPtr - 24; + } + + set_type(type) { HEAPU32[(((this.ptr)+(4))>>2)] = type; - }; + } - this.get_type = function() { + get_type() { return HEAPU32[(((this.ptr)+(4))>>2)]; - }; + } - this.set_destructor = function(destructor) { + set_destructor(destructor) { HEAPU32[(((this.ptr)+(8))>>2)] = destructor; - }; + } - this.get_destructor = function() { + get_destructor() { return HEAPU32[(((this.ptr)+(8))>>2)]; - }; - - this.set_refcount = function(refcount) { - HEAP32[((this.ptr)>>2)] = refcount; - }; + } - this.set_caught = function (caught) { + set_caught(caught) { caught = caught ? 1 : 0; - HEAP8[(((this.ptr)+(12))>>0)] = caught; - }; + HEAP8[(this.ptr)+(12)] = caught; + } - this.get_caught = function () { - return HEAP8[(((this.ptr)+(12))>>0)] != 0; - }; + get_caught() { + return HEAP8[(this.ptr)+(12)] != 0; + } - this.set_rethrown = function (rethrown) { + set_rethrown(rethrown) { rethrown = rethrown ? 1 : 0; - HEAP8[(((this.ptr)+(13))>>0)] = rethrown; - }; + HEAP8[(this.ptr)+(13)] = rethrown; + } - this.get_rethrown = function () { - return HEAP8[(((this.ptr)+(13))>>0)] != 0; - }; + get_rethrown() { + return HEAP8[(this.ptr)+(13)] != 0; + } // Initialize native structure fields. Should be called once after allocated. - this.init = function(type, destructor) { + init(type, destructor) { this.set_adjusted_ptr(0); this.set_type(type); this.set_destructor(destructor); - this.set_refcount(0); - this.set_caught(false); - this.set_rethrown(false); } - this.add_ref = function() { - var value = HEAP32[((this.ptr)>>2)]; - HEAP32[((this.ptr)>>2)] = value + 1; - }; - - // Returns true if last reference released. - this.release_ref = function() { - var prev = HEAP32[((this.ptr)>>2)]; - HEAP32[((this.ptr)>>2)] = prev - 1; - assert(prev > 0); - return prev === 1; - }; - - this.set_adjusted_ptr = function(adjustedPtr) { + set_adjusted_ptr(adjustedPtr) { HEAPU32[(((this.ptr)+(16))>>2)] = adjustedPtr; - }; - - this.get_adjusted_ptr = function() { - return HEAPU32[(((this.ptr)+(16))>>2)]; - }; - - // Get pointer which is expected to be received by catch clause in C++ code. It may be adjusted - // when the pointer is casted to some of the exception object base classes (e.g. when virtual - // inheritance is used). When a pointer is thrown this method should return the thrown pointer - // itself. - this.get_exception_ptr = function() { - // Work around a fastcomp bug, this code is still included for some reason in a build without - // exceptions support. - var isPointer = ___cxa_is_pointer_type(this.get_type()); - if (isPointer) { - return HEAPU32[((this.excPtr)>>2)]; - } - var adjusted = this.get_adjusted_ptr(); - if (adjusted !== 0) return adjusted; - return this.excPtr; - }; - } - function ___cxa_decrement_exception_refcount(ptr) { - if (!ptr) return; - exception_decRef(new ExceptionInfo(ptr)); - } - function decrementExceptionRefcount(ptr) { - ___cxa_decrement_exception_refcount(ptr); - } - - - - function withStackSave(f) { - var stack = stackSave(); - var ret = f(); - stackRestore(stack); - return ret; - } - function getExceptionMessageCommon(ptr) { - return withStackSave(function() { - var type_addr_addr = stackAlloc(4); - var message_addr_addr = stackAlloc(4); - ___get_exception_message(ptr, type_addr_addr, message_addr_addr); - var type_addr = HEAPU32[((type_addr_addr)>>2)]; - var message_addr = HEAPU32[((message_addr_addr)>>2)]; - var type = UTF8ToString(type_addr); - _free(type_addr); - var message; - if (message_addr) { - message = UTF8ToString(message_addr); - _free(message_addr); - } - return [type, message]; - }); - } - function getExceptionMessage(ptr) { - return getExceptionMessageCommon(ptr); - } - Module["getExceptionMessage"] = getExceptionMessage; - - - /** - * @param {number} ptr - * @param {string} type - */ - function getValue(ptr, type = 'i8') { - if (type.endsWith('*')) type = '*'; - switch (type) { - case 'i1': return HEAP8[((ptr)>>0)]; - case 'i8': return HEAP8[((ptr)>>0)]; - case 'i16': return HEAP16[((ptr)>>1)]; - case 'i32': return HEAP32[((ptr)>>2)]; - case 'i64': return HEAP32[((ptr)>>2)]; - case 'float': return HEAPF32[((ptr)>>2)]; - case 'double': return HEAPF64[((ptr)>>3)]; - case '*': return HEAPU32[((ptr)>>2)]; - default: abort('invalid type for getValue: ' + type); - } - } - - function exception_addRef(info) { - info.add_ref(); - } - - function ___cxa_increment_exception_refcount(ptr) { - if (!ptr) return; - exception_addRef(new ExceptionInfo(ptr)); - } - function incrementExceptionRefcount(ptr) { - ___cxa_increment_exception_refcount(ptr); - } - - function ptrToString(ptr) { - assert(typeof ptr === 'number'); - return '0x' + ptr.toString(16).padStart(8, '0'); - } - - - /** - * @param {number} ptr - * @param {number} value - * @param {string} type - */ - function setValue(ptr, value, type = 'i8') { - if (type.endsWith('*')) type = '*'; - switch (type) { - case 'i1': HEAP8[((ptr)>>0)] = value; break; - case 'i8': HEAP8[((ptr)>>0)] = value; break; - case 'i16': HEAP16[((ptr)>>1)] = value; break; - case 'i32': HEAP32[((ptr)>>2)] = value; break; - case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)] = tempI64[0],HEAP32[(((ptr)+(4))>>2)] = tempI64[1]); break; - case 'float': HEAPF32[((ptr)>>2)] = value; break; - case 'double': HEAPF64[((ptr)>>3)] = value; break; - case '*': HEAPU32[((ptr)>>2)] = value; break; - default: abort('invalid type for setValue: ' + type); - } - } - - function warnOnce(text) { - if (!warnOnce.shown) warnOnce.shown = {}; - if (!warnOnce.shown[text]) { - warnOnce.shown[text] = 1; - if (ENVIRONMENT_IS_NODE) text = 'warning: ' + text; - err(text); } - } - - function ___assert_fail(condition, filename, line, func) { - abort('Assertion failed: ' + UTF8ToString(condition) + ', at: ' + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']); - } - - var exceptionCaught = []; - - var uncaughtExceptionCount = 0; - function ___cxa_begin_catch(ptr) { - var info = new ExceptionInfo(ptr); - if (!info.get_caught()) { - info.set_caught(true); - uncaughtExceptionCount--; + get_adjusted_ptr() { + return HEAPU32[(((this.ptr)+(16))>>2)]; } - info.set_rethrown(false); - exceptionCaught.push(info); - exception_addRef(info); - return info.get_exception_ptr(); - } - - - var exceptionLast = 0; - - function ___cxa_end_catch() { - // Clear state flag. - _setThrew(0); - assert(exceptionCaught.length > 0); - // Call destructor if one is registered then clear it. - var info = exceptionCaught.pop(); - - exception_decRef(info); - exceptionLast = 0; // XXX in decRef? - } - - - - function ___resumeException(ptr) { - if (!exceptionLast) { exceptionLast = ptr; } - throw new CppException(ptr); } - function ___cxa_find_matching_catch() { - var thrown = exceptionLast; + var setTempRet0 = (val) => __emscripten_tempret_set(val); + var findMatchingCatch = (args) => { + var thrown = + exceptionLast?.excPtr; if (!thrown) { // just pass through the null ptr setTempRet0(0); @@ -1497,8 +1062,7 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // Due to inheritance, those types may not precisely match the // type of the thrown object. Find one which matches, and // return the type of the catch block which should be called. - for (var i = 0; i < arguments.length; i++) { - var caughtType = arguments[i]; + for (var caughtType of args) { if (caughtType === 0 || caughtType === thrownType) { // Catch all clause matched or exactly the same type is caught break; @@ -1511,51 +1075,47 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } setTempRet0(thrownType); return thrown; - } - var ___cxa_find_matching_catch_2 = ___cxa_find_matching_catch; - - var ___cxa_find_matching_catch_3 = ___cxa_find_matching_catch; + }; + var ___cxa_find_matching_catch_2 = () => findMatchingCatch([]); - - - function ___cxa_rethrow() { - var info = exceptionCaught.pop(); - if (!info) { - abort('no exception to throw'); - } - var ptr = info.excPtr; - if (!info.get_rethrown()) { - // Only pop if the corresponding push was through rethrow_primary_exception - exceptionCaught.push(info); - info.set_rethrown(true); - info.set_caught(false); - uncaughtExceptionCount++; - } - exceptionLast = ptr; - throw new CppException(ptr); - } + var ___cxa_find_matching_catch_3 = (arg0) => findMatchingCatch([arg0]); - function ___cxa_throw(ptr, type, destructor) { + var ___cxa_throw = (ptr, type, destructor) => { var info = new ExceptionInfo(ptr); // Initialize ExceptionInfo content after it was allocated in __cxa_allocate_exception. info.init(type, destructor); - exceptionLast = ptr; + exceptionLast = new CppException(ptr); uncaughtExceptionCount++; - throw new CppException(ptr); - } + throw exceptionLast; + }; + var ___resumeException = (ptr) => { + if (!exceptionLast) { + exceptionLast = new CppException(ptr); + } + throw exceptionLast; + }; - function setErrNo(value) { - HEAP32[((___errno_location())>>2)] = value; - return value; - } + /** @suppress {duplicate } */ + var syscallGetVarargI = () => { + assert(SYSCALLS.varargs != undefined); + // the `+` prepended here is necessary to convince the JSCompiler that varargs is indeed a number. + var ret = HEAP32[((+SYSCALLS.varargs)>>2)]; + SYSCALLS.varargs += 4; + return ret; + }; + var syscallGetVarargP = syscallGetVarargI; - var PATH = {isAbs:(path) => path.charAt(0) === '/',splitPath:(filename) => { + + var PATH = { + isAbs:(path) => path.charAt(0) === '/', + splitPath:(filename) => { var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; return splitPathRe.exec(filename).slice(1); - },normalizeArray:(parts, allowAboveRoot) => { + }, + normalizeArray:(parts, allowAboveRoot) => { // if the path tries to go above the root, `up` ends up > 0 var up = 0; for (var i = parts.length - 1; i >= 0; i--) { @@ -1577,9 +1137,10 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } } return parts; - },normalize:(path) => { + }, + normalize:(path) => { var isAbsolute = PATH.isAbs(path), - trailingSlash = path.substr(-1) === '/'; + trailingSlash = path.slice(-1) === '/'; // Normalize the path path = PATH.normalizeArray(path.split('/').filter((p) => !!p), !isAbsolute).join('/'); if (!path && !isAbsolute) { @@ -1589,7 +1150,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out path += '/'; } return (isAbsolute ? '/' : '') + path; - },dirname:(path) => { + }, + dirname:(path) => { var result = PATH.splitPath(path), root = result[0], dir = result[1]; @@ -1599,51 +1161,37 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } if (dir) { // It has a dirname, strip trailing slash - dir = dir.substr(0, dir.length - 1); + dir = dir.slice(0, -1); } return root + dir; - },basename:(path) => { - // EMSCRIPTEN return '/'' for '/', not an empty string - if (path === '/') return '/'; - path = PATH.normalize(path); - path = path.replace(/\/$/, ""); - var lastSlash = path.lastIndexOf('/'); - if (lastSlash === -1) return path; - return path.substr(lastSlash+1); - },join:function() { - var paths = Array.prototype.slice.call(arguments); - return PATH.normalize(paths.join('/')); - },join2:(l, r) => { - return PATH.normalize(l + '/' + r); - }}; - - function getRandomDevice() { - if (typeof crypto == 'object' && typeof crypto['getRandomValues'] == 'function') { - // for modern web browsers - var randomBuffer = new Uint8Array(1); - return () => { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; - } else + }, + basename:(path) => path && path.match(/([^\/]+|\/)\/*$/)[1], + join:(...paths) => PATH.normalize(paths.join('/')), + join2:(l, r) => PATH.normalize(l + '/' + r), + }; + + var initRandomFill = () => { + // This block is not needed on v19+ since crypto.getRandomValues is builtin if (ENVIRONMENT_IS_NODE) { - // for nodejs with or without crypto support included - try { - var crypto_module = require('crypto'); - // nodejs has crypto support - return () => crypto_module['randomBytes'](1)[0]; - } catch (e) { - // nodejs doesn't have crypto support - } + var nodeCrypto = require('crypto'); + return (view) => nodeCrypto.randomFillSync(view); } - // we couldn't find a proper implementation, as Math.random() is not suitable for /dev/random, see emscripten-core/emscripten/pull/7096 - return () => abort("no cryptographic support found for randomDevice. consider polyfilling it if you want to use something insecure like Math.random(), e.g. put this in a --pre-js: var crypto = { getRandomValues: function(array) { for (var i = 0; i < array.length; i++) array[i] = (Math.random()*256)|0 } };"); - } + + return (view) => crypto.getRandomValues(view); + }; + var randomFill = (view) => { + // Lazily init on the first invocation. + (randomFill = initRandomFill())(view); + }; - var PATH_FS = {resolve:function() { + var PATH_FS = { + resolve:(...args) => { var resolvedPath = '', resolvedAbsolute = false; - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? arguments[i] : FS.cwd(); + for (var i = args.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? args[i] : FS.cwd(); // Skip empty and invalid entries if (typeof path != 'string') { throw new TypeError('Arguments to path.resolve must be strings'); @@ -1657,9 +1205,10 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // handle relative paths to be safe (might happen when process.cwd() fails) resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter((p) => !!p), !resolvedAbsolute).join('/'); return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - },relative:(from, to) => { - from = PATH_FS.resolve(from).substr(1); - to = PATH_FS.resolve(to).substr(1); + }, + relative:(from, to) => { + from = PATH_FS.resolve(from).slice(1); + to = PATH_FS.resolve(to).slice(1); function trim(arr) { var start = 0; for (; start < arr.length; start++) { @@ -1688,18 +1237,135 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } outputParts = outputParts.concat(toParts.slice(samePartsLength)); return outputParts.join('/'); - }}; + }, + }; + + var FS_stdin_getChar_buffer = []; + + var lengthBytesUTF8 = (str) => { + var len = 0; + for (var i = 0; i < str.length; ++i) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code + // unit, not a Unicode code point of the character! So decode + // UTF16->UTF32->UTF8. + // See http://unicode.org/faq/utf_bom.html#utf16-3 + var c = str.charCodeAt(i); // possibly a lead surrogate + if (c <= 0x7F) { + len++; + } else if (c <= 0x7FF) { + len += 2; + } else if (c >= 0xD800 && c <= 0xDFFF) { + len += 4; ++i; + } else { + len += 3; + } + } + return len; + }; + + var stringToUTF8Array = (str, heap, outIdx, maxBytesToWrite) => { + assert(typeof str === 'string', `stringToUTF8Array expects a string (got ${typeof str})`); + // Parameter maxBytesToWrite is not optional. Negative values, 0, null, + // undefined and false each don't write out any bytes. + if (!(maxBytesToWrite > 0)) + return 0; + + var startIdx = outIdx; + var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator. + for (var i = 0; i < str.length; ++i) { + // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description + // and https://www.ietf.org/rfc/rfc2279.txt + // and https://tools.ietf.org/html/rfc3629 + var u = str.codePointAt(i); + if (u <= 0x7F) { + if (outIdx >= endIdx) break; + heap[outIdx++] = u; + } else if (u <= 0x7FF) { + if (outIdx + 1 >= endIdx) break; + heap[outIdx++] = 0xC0 | (u >> 6); + heap[outIdx++] = 0x80 | (u & 63); + } else if (u <= 0xFFFF) { + if (outIdx + 2 >= endIdx) break; + heap[outIdx++] = 0xE0 | (u >> 12); + heap[outIdx++] = 0x80 | ((u >> 6) & 63); + heap[outIdx++] = 0x80 | (u & 63); + } else { + if (outIdx + 3 >= endIdx) break; + if (u > 0x10FFFF) warnOnce('Invalid Unicode code point ' + ptrToString(u) + ' encountered when serializing a JS string to a UTF-8 string in wasm memory! (Valid unicode code points should be in range 0-0x10FFFF).'); + heap[outIdx++] = 0xF0 | (u >> 18); + heap[outIdx++] = 0x80 | ((u >> 12) & 63); + heap[outIdx++] = 0x80 | ((u >> 6) & 63); + heap[outIdx++] = 0x80 | (u & 63); + // Gotcha: if codePoint is over 0xFFFF, it is represented as a surrogate pair in UTF-16. + // We need to manually skip over the second code unit for correct iteration. + i++; + } + } + // Null-terminate the pointer to the buffer. + heap[outIdx] = 0; + return outIdx - startIdx; + }; /** @type {function(string, boolean=, number=)} */ - function intArrayFromString(stringy, dontAddNull, length) { - var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; - var u8array = new Array(len); - var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); - if (dontAddNull) u8array.length = numBytesWritten; - return u8array; - } - var TTY = {ttys:[],init:function () { + var intArrayFromString = (stringy, dontAddNull, length) => { + var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; + var u8array = new Array(len); + var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); + if (dontAddNull) u8array.length = numBytesWritten; + return u8array; + }; + var FS_stdin_getChar = () => { + if (!FS_stdin_getChar_buffer.length) { + var result = null; + if (ENVIRONMENT_IS_NODE) { + // we will read data by chunks of BUFSIZE + var BUFSIZE = 256; + var buf = Buffer.alloc(BUFSIZE); + var bytesRead = 0; + + // For some reason we must suppress a closure warning here, even though + // fd definitely exists on process.stdin, and is even the proper way to + // get the fd of stdin, + // https://github.com/nodejs/help/issues/2136#issuecomment-523649904 + // This started to happen after moving this logic out of library_tty.js, + // so it is related to the surrounding code in some unclear manner. + /** @suppress {missingProperties} */ + var fd = process.stdin.fd; + + try { + bytesRead = fs.readSync(fd, buf, 0, BUFSIZE); + } catch(e) { + // Cross-platform differences: on Windows, reading EOF throws an + // exception, but on other OSes, reading EOF returns 0. Uniformize + // behavior by treating the EOF exception to return 0. + if (e.toString().includes('EOF')) bytesRead = 0; + else throw e; + } + + if (bytesRead > 0) { + result = buf.slice(0, bytesRead).toString('utf-8'); + } + } else + if (typeof window != 'undefined' && + typeof window.prompt == 'function') { + // Browser. + result = window.prompt('Input: '); // returns null on cancel + if (result !== null) { + result += '\n'; + } + } else + {} + if (!result) { + return null; + } + FS_stdin_getChar_buffer = intArrayFromString(result, true); + } + return FS_stdin_getChar_buffer.shift(); + }; + var TTY = { + ttys:[], + init() { // https://github.com/emscripten-core/emscripten/pull/1555 // if (ENVIRONMENT_IS_NODE) { // // currently, FS.init does not distinguish if process.stdin is a file or TTY @@ -1708,7 +1374,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // // with text files until FS.init can be refactored. // process.stdin.setEncoding('utf8'); // } - },shutdown:function() { + }, + shutdown() { // https://github.com/emscripten-core/emscripten/pull/1555 // if (ENVIRONMENT_IS_NODE) { // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? @@ -1718,22 +1385,28 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call // process.stdin.pause(); // } - },register:function(dev, ops) { + }, + register(dev, ops) { TTY.ttys[dev] = { input: [], output: [], ops: ops }; FS.registerDevice(dev, TTY.stream_ops); - },stream_ops:{open:function(stream) { + }, + stream_ops:{ + open(stream) { var tty = TTY.ttys[stream.node.rdev]; if (!tty) { throw new FS.ErrnoError(43); } stream.tty = tty; stream.seekable = false; - },close:function(stream) { + }, + close(stream) { // flush any pending line data stream.tty.ops.fsync(stream.tty); - },fsync:function(stream) { + }, + fsync(stream) { stream.tty.ops.fsync(stream.tty); - },read:function(stream, buffer, offset, length, pos /* ignored */) { + }, + read(stream, buffer, offset, length, pos /* ignored */) { if (!stream.tty || !stream.tty.ops.get_char) { throw new FS.ErrnoError(60); } @@ -1753,10 +1426,11 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out buffer[offset+i] = result; } if (bytesRead) { - stream.node.timestamp = Date.now(); + stream.node.atime = Date.now(); } return bytesRead; - },write:function(stream, buffer, offset, length, pos) { + }, + write(stream, buffer, offset, length, pos) { if (!stream.tty || !stream.tty.ops.put_char) { throw new FS.ErrnoError(60); } @@ -1768,148 +1442,129 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out throw new FS.ErrnoError(29); } if (length) { - stream.node.timestamp = Date.now(); + stream.node.mtime = stream.node.ctime = Date.now(); } return i; - }},default_tty_ops:{get_char:function(tty) { - if (!tty.input.length) { - var result = null; - if (ENVIRONMENT_IS_NODE) { - // we will read data by chunks of BUFSIZE - var BUFSIZE = 256; - var buf = Buffer.alloc(BUFSIZE); - var bytesRead = 0; - - try { - bytesRead = fs.readSync(process.stdin.fd, buf, 0, BUFSIZE, -1); - } catch(e) { - // Cross-platform differences: on Windows, reading EOF throws an exception, but on other OSes, - // reading EOF returns 0. Uniformize behavior by treating the EOF exception to return 0. - if (e.toString().includes('EOF')) bytesRead = 0; - else throw e; - } - - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString('utf-8'); - } else { - result = null; - } - } else - if (typeof window != 'undefined' && - typeof window.prompt == 'function') { - // Browser. - result = window.prompt('Input: '); // returns null on cancel - if (result !== null) { - result += '\n'; - } - } else if (typeof readline == 'function') { - // Command line. - result = readline(); - if (result !== null) { - result += '\n'; - } - } - if (!result) { - return null; - } - tty.input = intArrayFromString(result, true); - } - return tty.input.shift(); - },put_char:function(tty, val) { + }, + }, + default_tty_ops:{ + get_char(tty) { + return FS_stdin_getChar(); + }, + put_char(tty, val) { if (val === null || val === 10) { - out(UTF8ArrayToString(tty.output, 0)); + out(UTF8ArrayToString(tty.output)); tty.output = []; } else { if (val != 0) tty.output.push(val); // val == 0 would cut text output off in the middle. } - },fsync:function(tty) { - if (tty.output && tty.output.length > 0) { - out(UTF8ArrayToString(tty.output, 0)); + }, + fsync(tty) { + if (tty.output?.length > 0) { + out(UTF8ArrayToString(tty.output)); tty.output = []; } - }},default_tty1_ops:{put_char:function(tty, val) { + }, + ioctl_tcgets(tty) { + // typical setting + return { + c_iflag: 25856, + c_oflag: 5, + c_cflag: 191, + c_lflag: 35387, + c_cc: [ + 0x03, 0x1c, 0x7f, 0x15, 0x04, 0x00, 0x01, 0x00, 0x11, 0x13, 0x1a, 0x00, + 0x12, 0x0f, 0x17, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + ] + }; + }, + ioctl_tcsets(tty, optional_actions, data) { + // currently just ignore + return 0; + }, + ioctl_tiocgwinsz(tty) { + return [24, 80]; + }, + }, + default_tty1_ops:{ + put_char(tty, val) { if (val === null || val === 10) { - err(UTF8ArrayToString(tty.output, 0)); + err(UTF8ArrayToString(tty.output)); tty.output = []; } else { if (val != 0) tty.output.push(val); } - },fsync:function(tty) { - if (tty.output && tty.output.length > 0) { - err(UTF8ArrayToString(tty.output, 0)); + }, + fsync(tty) { + if (tty.output?.length > 0) { + err(UTF8ArrayToString(tty.output)); tty.output = []; } - }}}; - + }, + }, + }; - function zeroMemory(address, size) { - HEAPU8.fill(0, address, address + size); - return address; - } - function alignMemory(size, alignment) { - assert(alignment, "alignment argument is required"); - return Math.ceil(size / alignment) * alignment; - } - function mmapAlloc(size) { + var mmapAlloc = (size) => { abort('internal error: mmapAlloc called but `emscripten_builtin_memalign` native symbol not exported'); - } - var MEMFS = {ops_table:null,mount:function(mount) { - return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createNode:function(parent, name, mode, dev) { + }; + var MEMFS = { + ops_table:null, + mount(mount) { + return MEMFS.createNode(null, '/', 16895, 0); + }, + createNode(parent, name, mode, dev) { if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { // no supported throw new FS.ErrnoError(63); } - if (!MEMFS.ops_table) { - MEMFS.ops_table = { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: { - llseek: MEMFS.stream_ops.llseek - } - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - allocate: MEMFS.stream_ops.allocate, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink - }, - stream: {} + MEMFS.ops_table ||= { + dir: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + lookup: MEMFS.node_ops.lookup, + mknod: MEMFS.node_ops.mknod, + rename: MEMFS.node_ops.rename, + unlink: MEMFS.node_ops.unlink, + rmdir: MEMFS.node_ops.rmdir, + readdir: MEMFS.node_ops.readdir, + symlink: MEMFS.node_ops.symlink }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: FS.chrdev_stream_ops + stream: { + llseek: MEMFS.stream_ops.llseek } - }; - } + }, + file: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: { + llseek: MEMFS.stream_ops.llseek, + read: MEMFS.stream_ops.read, + write: MEMFS.stream_ops.write, + mmap: MEMFS.stream_ops.mmap, + msync: MEMFS.stream_ops.msync + } + }, + link: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + readlink: MEMFS.node_ops.readlink + }, + stream: {} + }, + chrdev: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: FS.chrdev_stream_ops + } + }; var node = FS.createNode(parent, name, mode, dev); if (FS.isDir(node.mode)) { node.node_ops = MEMFS.ops_table.dir.node; @@ -1930,18 +1585,20 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out node.node_ops = MEMFS.ops_table.chrdev.node; node.stream_ops = MEMFS.ops_table.chrdev.stream; } - node.timestamp = Date.now(); + node.atime = node.mtime = node.ctime = Date.now(); // add the new node to the parent if (parent) { parent.contents[name] = node; - parent.timestamp = node.timestamp; + parent.atime = parent.mtime = parent.ctime = node.atime; } return node; - },getFileDataAsTypedArray:function(node) { + }, + getFileDataAsTypedArray(node) { if (!node.contents) return new Uint8Array(0); if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. return new Uint8Array(node.contents); - },expandFileStorage:function(node, newCapacity) { + }, + expandFileStorage(node, newCapacity) { var prevCapacity = node.contents ? node.contents.length : 0; if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. @@ -1953,7 +1610,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var oldContents = node.contents; node.contents = new Uint8Array(newCapacity); // Allocate new storage. if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. - },resizeFileStorage:function(node, newSize) { + }, + resizeFileStorage(node, newSize) { if (node.usedBytes == newSize) return; if (newSize == 0) { node.contents = null; // Fully decommit when requesting a resize to zero. @@ -1966,7 +1624,9 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } node.usedBytes = newSize; } - },node_ops:{getattr:function(node) { + }, + node_ops:{ + getattr(node) { var attr = {}; // device numbers reuse inode numbers. attr.dev = FS.isChrdev(node.mode) ? node.id : 1; @@ -1985,78 +1645,80 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } else { attr.size = 0; } - attr.atime = new Date(node.timestamp); - attr.mtime = new Date(node.timestamp); - attr.ctime = new Date(node.timestamp); + attr.atime = new Date(node.atime); + attr.mtime = new Date(node.mtime); + attr.ctime = new Date(node.ctime); // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), // but this is not required by the standard. attr.blksize = 4096; attr.blocks = Math.ceil(attr.size / attr.blksize); return attr; - },setattr:function(node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; + }, + setattr(node, attr) { + for (const key of ["mode", "atime", "mtime", "ctime"]) { + if (attr[key] != null) { + node[key] = attr[key]; + } } if (attr.size !== undefined) { MEMFS.resizeFileStorage(node, attr.size); } - },lookup:function(parent, name) { - throw FS.genericErrors[44]; - },mknod:function(parent, name, mode, dev) { + }, + lookup(parent, name) { + throw new FS.ErrnoError(44); + }, + mknod(parent, name, mode, dev) { return MEMFS.createNode(parent, name, mode, dev); - },rename:function(old_node, new_dir, new_name) { - // if we're overwriting a directory at new_name, make sure it's empty. - if (FS.isDir(old_node.mode)) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (new_node) { + }, + rename(old_node, new_dir, new_name) { + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) {} + if (new_node) { + if (FS.isDir(old_node.mode)) { + // if we're overwriting a directory at new_name, make sure it's empty. for (var i in new_node.contents) { throw new FS.ErrnoError(55); } } + FS.hashRemoveNode(new_node); } // do the internal rewiring delete old_node.parent.contents[old_node.name]; - old_node.parent.timestamp = Date.now() - old_node.name = new_name; new_dir.contents[new_name] = old_node; - new_dir.timestamp = old_node.parent.timestamp; - old_node.parent = new_dir; - },unlink:function(parent, name) { + old_node.name = new_name; + new_dir.ctime = new_dir.mtime = old_node.parent.ctime = old_node.parent.mtime = Date.now(); + }, + unlink(parent, name) { delete parent.contents[name]; - parent.timestamp = Date.now(); - },rmdir:function(parent, name) { + parent.ctime = parent.mtime = Date.now(); + }, + rmdir(parent, name) { var node = FS.lookupNode(parent, name); for (var i in node.contents) { throw new FS.ErrnoError(55); } delete parent.contents[name]; - parent.timestamp = Date.now(); - },readdir:function(node) { - var entries = ['.', '..']; - for (var key in node.contents) { - if (!node.contents.hasOwnProperty(key)) { - continue; - } - entries.push(key); - } - return entries; - },symlink:function(parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); + parent.ctime = parent.mtime = Date.now(); + }, + readdir(node) { + return ['.', '..', ...Object.keys(node.contents)]; + }, + symlink(parent, newname, oldpath) { + var node = MEMFS.createNode(parent, newname, 0o777 | 40960, 0); node.link = oldpath; return node; - },readlink:function(node) { + }, + readlink(node) { if (!FS.isLink(node.mode)) { throw new FS.ErrnoError(28); } return node.link; - }},stream_ops:{read:function(stream, buffer, offset, length, position) { + }, + }, + stream_ops:{ + read(stream, buffer, offset, length, position) { var contents = stream.node.contents; if (position >= stream.node.usedBytes) return 0; var size = Math.min(stream.node.usedBytes - position, length); @@ -2067,7 +1729,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; } return size; - },write:function(stream, buffer, offset, length, position, canOwn) { + }, + write(stream, buffer, offset, length, position, canOwn) { // The data buffer should be a typed array view assert(!(buffer instanceof ArrayBuffer)); // If the buffer is located in main memory (HEAP), and if @@ -2080,7 +1743,7 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out if (!length) return 0; var node = stream.node; - node.timestamp = Date.now(); + node.mtime = node.ctime = Date.now(); if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? if (canOwn) { @@ -2110,7 +1773,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } node.usedBytes = Math.max(node.usedBytes, position + length); return length; - },llseek:function(stream, offset, whence) { + }, + llseek(stream, offset, whence) { var position = offset; if (whence === 1) { position += stream.position; @@ -2123,10 +1787,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out throw new FS.ErrnoError(28); } return position; - },allocate:function(stream, offset, length) { - MEMFS.expandFileStorage(stream.node, offset + length); - stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); - },mmap:function(stream, length, position, prot, flags) { + }, + mmap(stream, length, position, prot, flags) { if (!FS.isFile(stream.node.mode)) { throw new FS.ErrnoError(43); } @@ -2134,150 +1796,456 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var allocated; var contents = stream.node.contents; // Only make a new copy when MAP_PRIVATE is specified. - if (!(flags & 2) && contents.buffer === HEAP8.buffer) { + if (!(flags & 2) && contents && contents.buffer === HEAP8.buffer) { // We can't emulate MAP_SHARED when the file is not backed by the // buffer we're mapping to (e.g. the HEAP buffer). allocated = false; ptr = contents.byteOffset; } else { - // Try to avoid unnecessary slices. - if (position > 0 || position + length < contents.length) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } allocated = true; ptr = mmapAlloc(length); if (!ptr) { throw new FS.ErrnoError(48); } - HEAP8.set(contents, ptr); + if (contents) { + // Try to avoid unnecessary slices. + if (position > 0 || position + length < contents.length) { + if (contents.subarray) { + contents = contents.subarray(position, position + length); + } else { + contents = Array.prototype.slice.call(contents, position, position + length); + } + } + HEAP8.set(contents, ptr); + } } - return { ptr: ptr, allocated: allocated }; - },msync:function(stream, buffer, offset, length, mmapFlags) { + return { ptr, allocated }; + }, + msync(stream, buffer, offset, length, mmapFlags) { MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); // should we check if bytesWritten and length are the same? return 0; - }}}; - - /** @param {boolean=} noRunDep */ - function asyncLoad(url, onload, onerror, noRunDep) { - var dep = !noRunDep ? getUniqueRunDependency('al ' + url) : ''; - readAsync(url, (arrayBuffer) => { - assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); - onload(new Uint8Array(arrayBuffer)); - if (dep) removeRunDependency(dep); - }, (event) => { - if (onerror) { - onerror(); - } else { - throw 'Loading data file "' + url + '" failed.'; + }, + }, + }; + + var asyncLoad = async (url) => { + var arrayBuffer = await readAsync(url); + assert(arrayBuffer, `Loading data file "${url}" failed (no arrayBuffer).`); + return new Uint8Array(arrayBuffer); + }; + + + var FS_createDataFile = (...args) => FS.createDataFile(...args); + + var getUniqueRunDependency = (id) => { + var orig = id; + while (1) { + if (!runDependencyTracking[id]) return id; + id = orig + Math.random(); + } + }; + + var preloadPlugins = []; + var FS_handledByPreloadPlugin = (byteArray, fullname, finish, onerror) => { + // Ensure plugins are ready. + if (typeof Browser != 'undefined') Browser.init(); + + var handled = false; + preloadPlugins.forEach((plugin) => { + if (handled) return; + if (plugin['canHandle'](fullname)) { + plugin['handle'](byteArray, fullname, finish, onerror); + handled = true; } }); - if (dep) addRunDependency(dep); - } + return handled; + }; + var FS_createPreloadedFile = (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) => { + // TODO we should allow people to just pass in a complete filename instead + // of parent and name being that we just join them anyways + var fullname = name ? PATH_FS.resolve(PATH.join2(parent, name)) : parent; + var dep = getUniqueRunDependency(`cp ${fullname}`); // might have several active requests for the same fullname + function processData(byteArray) { + function finish(byteArray) { + preFinish?.(); + if (!dontCreateFile) { + FS_createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); + } + onload?.(); + removeRunDependency(dep); + } + if (FS_handledByPreloadPlugin(byteArray, fullname, finish, () => { + onerror?.(); + removeRunDependency(dep); + })) { + return; + } + finish(byteArray); + } + addRunDependency(dep); + if (typeof url == 'string') { + asyncLoad(url).then(processData, onerror); + } else { + processData(url); + } + }; + + var FS_modeStringToFlags = (str) => { + var flagModes = { + 'r': 0, + 'r+': 2, + 'w': 512 | 64 | 1, + 'w+': 512 | 64 | 2, + 'a': 1024 | 64 | 1, + 'a+': 1024 | 64 | 2, + }; + var flags = flagModes[str]; + if (typeof flags == 'undefined') { + throw new Error(`Unknown file open mode: ${str}`); + } + return flags; + }; + var FS_getMode = (canRead, canWrite) => { + var mode = 0; + if (canRead) mode |= 292 | 73; + if (canWrite) mode |= 146; + return mode; + }; - var ERRNO_MESSAGES = {0:"Success",1:"Arg list too long",2:"Permission denied",3:"Address already in use",4:"Address not available",5:"Address family not supported by protocol family",6:"No more processes",7:"Socket already connected",8:"Bad file number",9:"Trying to read unreadable message",10:"Mount device busy",11:"Operation canceled",12:"No children",13:"Connection aborted",14:"Connection refused",15:"Connection reset by peer",16:"File locking deadlock error",17:"Destination address required",18:"Math arg out of domain of func",19:"Quota exceeded",20:"File exists",21:"Bad address",22:"File too large",23:"Host is unreachable",24:"Identifier removed",25:"Illegal byte sequence",26:"Connection already in progress",27:"Interrupted system call",28:"Invalid argument",29:"I/O error",30:"Socket is already connected",31:"Is a directory",32:"Too many symbolic links",33:"Too many open files",34:"Too many links",35:"Message too long",36:"Multihop attempted",37:"File or path name too long",38:"Network interface is not configured",39:"Connection reset by network",40:"Network is unreachable",41:"Too many open files in system",42:"No buffer space available",43:"No such device",44:"No such file or directory",45:"Exec format error",46:"No record locks available",47:"The link has been severed",48:"Not enough core",49:"No message of desired type",50:"Protocol not available",51:"No space left on device",52:"Function not implemented",53:"Socket is not connected",54:"Not a directory",55:"Directory not empty",56:"State not recoverable",57:"Socket operation on non-socket",59:"Not a typewriter",60:"No such device or address",61:"Value too large for defined data type",62:"Previous owner died",63:"Not super-user",64:"Broken pipe",65:"Protocol error",66:"Unknown protocol",67:"Protocol wrong type for socket",68:"Math result not representable",69:"Read only file system",70:"Illegal seek",71:"No such process",72:"Stale file handle",73:"Connection timed out",74:"Text file busy",75:"Cross-device link",100:"Device not a stream",101:"Bad font file fmt",102:"Invalid slot",103:"Invalid request code",104:"No anode",105:"Block device required",106:"Channel number out of range",107:"Level 3 halted",108:"Level 3 reset",109:"Link number out of range",110:"Protocol driver not attached",111:"No CSI structure available",112:"Level 2 halted",113:"Invalid exchange",114:"Invalid request descriptor",115:"Exchange full",116:"No data (for no delay io)",117:"Timer expired",118:"Out of streams resources",119:"Machine is not on the network",120:"Package not installed",121:"The object is remote",122:"Advertise error",123:"Srmount error",124:"Communication error on send",125:"Cross mount point (not really error)",126:"Given log. name not unique",127:"f.d. invalid for this operation",128:"Remote address changed",129:"Can access a needed shared lib",130:"Accessing a corrupted shared lib",131:".lib section in a.out corrupted",132:"Attempting to link in too many libs",133:"Attempting to exec a shared library",135:"Streams pipe error",136:"Too many users",137:"Socket type not supported",138:"Not supported",139:"Protocol family not supported",140:"Can't send after socket shutdown",141:"Too many references",142:"Host is down",148:"No medium (in tape drive)",156:"Level 2 not synchronized"}; - var ERRNO_CODES = {}; - function demangle(func) { - warnOnce('warning: build with -sDEMANGLE_SUPPORT to link in libcxxabi demangling'); - return func; - } - function demangleAll(text) { - var regex = - /\b_Z[\w\d_]+/g; - return text.replace(regex, - function(x) { - var y = demangle(x); - return x === y ? x : (y + ' [' + x + ']'); - }); - } - var FS = {root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,lookupPath:(path, opts = {}) => { - path = PATH_FS.resolve(path); - if (!path) return { path: '', node: null }; + var strError = (errno) => UTF8ToString(_strerror(errno)); - var defaults = { - follow_mount: true, - recurse_count: 0 - }; - opts = Object.assign(defaults, opts) + var ERRNO_CODES = { + 'EPERM': 63, + 'ENOENT': 44, + 'ESRCH': 71, + 'EINTR': 27, + 'EIO': 29, + 'ENXIO': 60, + 'E2BIG': 1, + 'ENOEXEC': 45, + 'EBADF': 8, + 'ECHILD': 12, + 'EAGAIN': 6, + 'EWOULDBLOCK': 6, + 'ENOMEM': 48, + 'EACCES': 2, + 'EFAULT': 21, + 'ENOTBLK': 105, + 'EBUSY': 10, + 'EEXIST': 20, + 'EXDEV': 75, + 'ENODEV': 43, + 'ENOTDIR': 54, + 'EISDIR': 31, + 'EINVAL': 28, + 'ENFILE': 41, + 'EMFILE': 33, + 'ENOTTY': 59, + 'ETXTBSY': 74, + 'EFBIG': 22, + 'ENOSPC': 51, + 'ESPIPE': 70, + 'EROFS': 69, + 'EMLINK': 34, + 'EPIPE': 64, + 'EDOM': 18, + 'ERANGE': 68, + 'ENOMSG': 49, + 'EIDRM': 24, + 'ECHRNG': 106, + 'EL2NSYNC': 156, + 'EL3HLT': 107, + 'EL3RST': 108, + 'ELNRNG': 109, + 'EUNATCH': 110, + 'ENOCSI': 111, + 'EL2HLT': 112, + 'EDEADLK': 16, + 'ENOLCK': 46, + 'EBADE': 113, + 'EBADR': 114, + 'EXFULL': 115, + 'ENOANO': 104, + 'EBADRQC': 103, + 'EBADSLT': 102, + 'EDEADLOCK': 16, + 'EBFONT': 101, + 'ENOSTR': 100, + 'ENODATA': 116, + 'ETIME': 117, + 'ENOSR': 118, + 'ENONET': 119, + 'ENOPKG': 120, + 'EREMOTE': 121, + 'ENOLINK': 47, + 'EADV': 122, + 'ESRMNT': 123, + 'ECOMM': 124, + 'EPROTO': 65, + 'EMULTIHOP': 36, + 'EDOTDOT': 125, + 'EBADMSG': 9, + 'ENOTUNIQ': 126, + 'EBADFD': 127, + 'EREMCHG': 128, + 'ELIBACC': 129, + 'ELIBBAD': 130, + 'ELIBSCN': 131, + 'ELIBMAX': 132, + 'ELIBEXEC': 133, + 'ENOSYS': 52, + 'ENOTEMPTY': 55, + 'ENAMETOOLONG': 37, + 'ELOOP': 32, + 'EOPNOTSUPP': 138, + 'EPFNOSUPPORT': 139, + 'ECONNRESET': 15, + 'ENOBUFS': 42, + 'EAFNOSUPPORT': 5, + 'EPROTOTYPE': 67, + 'ENOTSOCK': 57, + 'ENOPROTOOPT': 50, + 'ESHUTDOWN': 140, + 'ECONNREFUSED': 14, + 'EADDRINUSE': 3, + 'ECONNABORTED': 13, + 'ENETUNREACH': 40, + 'ENETDOWN': 38, + 'ETIMEDOUT': 73, + 'EHOSTDOWN': 142, + 'EHOSTUNREACH': 23, + 'EINPROGRESS': 26, + 'EALREADY': 7, + 'EDESTADDRREQ': 17, + 'EMSGSIZE': 35, + 'EPROTONOSUPPORT': 66, + 'ESOCKTNOSUPPORT': 137, + 'EADDRNOTAVAIL': 4, + 'ENETRESET': 39, + 'EISCONN': 30, + 'ENOTCONN': 53, + 'ETOOMANYREFS': 141, + 'EUSERS': 136, + 'EDQUOT': 19, + 'ESTALE': 72, + 'ENOTSUP': 138, + 'ENOMEDIUM': 148, + 'EILSEQ': 25, + 'EOVERFLOW': 61, + 'ECANCELED': 11, + 'ENOTRECOVERABLE': 56, + 'EOWNERDEAD': 62, + 'ESTRPIPE': 135, + }; + var FS = { + root:null, + mounts:[], + devices:{ + }, + streams:[], + nextInode:1, + nameTable:null, + currentPath:"/", + initialized:false, + ignorePermissions:true, + filesystems:null, + syncFSRequests:0, + readFiles:{ + }, + ErrnoError:class extends Error { + name = 'ErrnoError'; + // We set the `name` property to be able to identify `FS.ErrnoError` + // - the `name` is a standard ECMA-262 property of error objects. Kind of good to have it anyway. + // - when using PROXYFS, an error can come from an underlying FS + // as different FS objects have their own FS.ErrnoError each, + // the test `err instanceof FS.ErrnoError` won't detect an error coming from another filesystem, causing bugs. + // we'll use the reliable test `err.name == "ErrnoError"` instead + constructor(errno) { + super(runtimeInitialized ? strError(errno) : ''); + this.errno = errno; + for (var key in ERRNO_CODES) { + if (ERRNO_CODES[key] === errno) { + this.code = key; + break; + } + } + } + }, + FSStream:class { + shared = {}; + get object() { + return this.node; + } + set object(val) { + this.node = val; + } + get isRead() { + return (this.flags & 2097155) !== 1; + } + get isWrite() { + return (this.flags & 2097155) !== 0; + } + get isAppend() { + return (this.flags & 1024); + } + get flags() { + return this.shared.flags; + } + set flags(val) { + this.shared.flags = val; + } + get position() { + return this.shared.position; + } + set position(val) { + this.shared.position = val; + } + }, + FSNode:class { + node_ops = {}; + stream_ops = {}; + readMode = 292 | 73; + writeMode = 146; + mounted = null; + constructor(parent, name, mode, rdev) { + if (!parent) { + parent = this; // root node sets parent to itself + } + this.parent = parent; + this.mount = parent.mount; + this.id = FS.nextInode++; + this.name = name; + this.mode = mode; + this.rdev = rdev; + this.atime = this.mtime = this.ctime = Date.now(); + } + get read() { + return (this.mode & this.readMode) === this.readMode; + } + set read(val) { + val ? this.mode |= this.readMode : this.mode &= ~this.readMode; + } + get write() { + return (this.mode & this.writeMode) === this.writeMode; + } + set write(val) { + val ? this.mode |= this.writeMode : this.mode &= ~this.writeMode; + } + get isFolder() { + return FS.isDir(this.mode); + } + get isDevice() { + return FS.isChrdev(this.mode); + } + }, + lookupPath(path, opts = {}) { + if (!path) { + throw new FS.ErrnoError(44); + } + opts.follow_mount ??= true - if (opts.recurse_count > 8) { // max recursive lookup of 8 - throw new FS.ErrnoError(32); + if (!PATH.isAbs(path)) { + path = FS.cwd() + '/' + path; } - // split the absolute path - var parts = path.split('/').filter((p) => !!p); + // limit max consecutive symlinks to 40 (SYMLOOP_MAX). + linkloop: for (var nlinks = 0; nlinks < 40; nlinks++) { + // split the absolute path + var parts = path.split('/').filter((p) => !!p); - // start at the root - var current = FS.root; - var current_path = '/'; + // start at the root + var current = FS.root; + var current_path = '/'; - for (var i = 0; i < parts.length; i++) { - var islast = (i === parts.length-1); - if (islast && opts.parent) { - // stop resolving - break; - } + for (var i = 0; i < parts.length; i++) { + var islast = (i === parts.length-1); + if (islast && opts.parent) { + // stop resolving + break; + } - current = FS.lookupNode(current, parts[i]); - current_path = PATH.join2(current_path, parts[i]); + if (parts[i] === '.') { + continue; + } - // jump to the mount's root node if this is a mountpoint - if (FS.isMountpoint(current)) { - if (!islast || (islast && opts.follow_mount)) { - current = current.mounted.root; + if (parts[i] === '..') { + current_path = PATH.dirname(current_path); + if (FS.isRoot(current)) { + path = current_path + '/' + parts.slice(i + 1).join('/'); + continue linkloop; + } else { + current = current.parent; + } + continue; } - } - // by default, lookupPath will not follow a symlink if it is the final path component. - // setting opts.follow = true will override this behavior. - if (!islast || opts.follow) { - var count = 0; - while (FS.isLink(current.mode)) { - var link = FS.readlink(current_path); - current_path = PATH_FS.resolve(PATH.dirname(current_path), link); + current_path = PATH.join2(current_path, parts[i]); + try { + current = FS.lookupNode(current, parts[i]); + } catch (e) { + // if noent_okay is true, suppress a ENOENT in the last component + // and return an object with an undefined node. This is needed for + // resolving symlinks in the path when creating a file. + if ((e?.errno === 44) && islast && opts.noent_okay) { + return { path: current_path }; + } + throw e; + } - var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count + 1 }); - current = lookup.node; + // jump to the mount's root node if this is a mountpoint + if (FS.isMountpoint(current) && (!islast || opts.follow_mount)) { + current = current.mounted.root; + } - if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). - throw new FS.ErrnoError(32); + // by default, lookupPath will not follow a symlink if it is the final path component. + // setting opts.follow = true will override this behavior. + if (FS.isLink(current.mode) && (!islast || opts.follow)) { + if (!current.node_ops.readlink) { + throw new FS.ErrnoError(52); } + var link = current.node_ops.readlink(current); + if (!PATH.isAbs(link)) { + link = PATH.dirname(current_path) + '/' + link; + } + path = link + '/' + parts.slice(i + 1).join('/'); + continue linkloop; } } + return { path: current_path, node: current }; } - - return { path: current_path, node: current }; - },getPath:(node) => { + throw new FS.ErrnoError(32); + }, + getPath(node) { var path; while (true) { if (FS.isRoot(node)) { var mount = node.mount.mountpoint; if (!path) return mount; - return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; + return mount[mount.length-1] !== '/' ? `${mount}/${path}` : mount + path; } - path = path ? node.name + '/' + path : node.name; + path = path ? `${node.name}/${path}` : node.name; node = node.parent; } - },hashName:(parentid, name) => { + }, + hashName(parentid, name) { var hash = 0; for (var i = 0; i < name.length; i++) { hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; } return ((parentid + hash) >>> 0) % FS.nameTable.length; - },hashAddNode:(node) => { + }, + hashAddNode(node) { var hash = FS.hashName(node.parent.id, node.name); node.name_next = FS.nameTable[hash]; FS.nameTable[hash] = node; - },hashRemoveNode:(node) => { + }, + hashRemoveNode(node) { var hash = FS.hashName(node.parent.id, node.name); if (FS.nameTable[hash] === node) { FS.nameTable[hash] = node.name_next; @@ -2291,10 +2259,11 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out current = current.name_next; } } - },lookupNode:(parent, name) => { + }, + lookupNode(parent, name) { var errCode = FS.mayLookup(parent); if (errCode) { - throw new FS.ErrnoError(errCode, parent); + throw new FS.ErrnoError(errCode); } var hash = FS.hashName(parent.id, name); for (var node = FS.nameTable[hash]; node; node = node.name_next) { @@ -2305,46 +2274,53 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } // if we failed to find it in the cache, call into the VFS return FS.lookup(parent, name); - },createNode:(parent, name, mode, rdev) => { + }, + createNode(parent, name, mode, rdev) { assert(typeof parent == 'object') var node = new FS.FSNode(parent, name, mode, rdev); FS.hashAddNode(node); return node; - },destroyNode:(node) => { + }, + destroyNode(node) { FS.hashRemoveNode(node); - },isRoot:(node) => { + }, + isRoot(node) { return node === node.parent; - },isMountpoint:(node) => { + }, + isMountpoint(node) { return !!node.mounted; - },isFile:(mode) => { + }, + isFile(mode) { return (mode & 61440) === 32768; - },isDir:(mode) => { + }, + isDir(mode) { return (mode & 61440) === 16384; - },isLink:(mode) => { + }, + isLink(mode) { return (mode & 61440) === 40960; - },isChrdev:(mode) => { + }, + isChrdev(mode) { return (mode & 61440) === 8192; - },isBlkdev:(mode) => { + }, + isBlkdev(mode) { return (mode & 61440) === 24576; - },isFIFO:(mode) => { + }, + isFIFO(mode) { return (mode & 61440) === 4096; - },isSocket:(mode) => { + }, + isSocket(mode) { return (mode & 49152) === 49152; - },flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:(str) => { - var flags = FS.flagModes[str]; - if (typeof flags == 'undefined') { - throw new Error('Unknown file open mode: ' + str); - } - return flags; - },flagsToPermissionString:(flag) => { + }, + flagsToPermissionString(flag) { var perms = ['r', 'w', 'rw'][flag & 3]; if ((flag & 512)) { perms += 'w'; } return perms; - },nodePermissions:(node, perms) => { + }, + nodePermissions(node, perms) { if (FS.ignorePermissions) { return 0; } @@ -2357,19 +2333,26 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out return 2; } return 0; - },mayLookup:(dir) => { + }, + mayLookup(dir) { + if (!FS.isDir(dir.mode)) return 54; var errCode = FS.nodePermissions(dir, 'x'); if (errCode) return errCode; if (!dir.node_ops.lookup) return 2; return 0; - },mayCreate:(dir, name) => { + }, + mayCreate(dir, name) { + if (!FS.isDir(dir.mode)) { + return 54; + } try { var node = FS.lookupNode(dir, name); return 20; } catch (e) { } return FS.nodePermissions(dir, 'wx'); - },mayDelete:(dir, name, isdir) => { + }, + mayDelete(dir, name, isdir) { var node; try { node = FS.lookupNode(dir, name); @@ -2393,86 +2376,91 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } } return 0; - },mayOpen:(node, flags) => { + }, + mayOpen(node, flags) { if (!node) { return 44; } if (FS.isLink(node.mode)) { return 32; } else if (FS.isDir(node.mode)) { - if (FS.flagsToPermissionString(flags) !== 'r' || // opening for write - (flags & 512)) { // TODO: check for O_SEARCH? (== search for dir only) + if (FS.flagsToPermissionString(flags) !== 'r' // opening for write + || (flags & (512 | 64))) { // TODO: check for O_SEARCH? (== search for dir only) return 31; } } return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - },MAX_OPEN_FDS:4096,nextfd:(fd_start = 0, fd_end = FS.MAX_OPEN_FDS) => { - for (var fd = fd_start; fd <= fd_end; fd++) { + }, + checkOpExists(op, err) { + if (!op) { + throw new FS.ErrnoError(err); + } + return op; + }, + MAX_OPEN_FDS:4096, + nextfd() { + for (var fd = 0; fd <= FS.MAX_OPEN_FDS; fd++) { if (!FS.streams[fd]) { return fd; } } throw new FS.ErrnoError(33); - },getStream:(fd) => FS.streams[fd],createStream:(stream, fd_start, fd_end) => { - if (!FS.FSStream) { - FS.FSStream = /** @constructor */ function() { - this.shared = { }; - }; - FS.FSStream.prototype = {}; - Object.defineProperties(FS.FSStream.prototype, { - object: { - /** @this {FS.FSStream} */ - get: function() { return this.node; }, - /** @this {FS.FSStream} */ - set: function(val) { this.node = val; } - }, - isRead: { - /** @this {FS.FSStream} */ - get: function() { return (this.flags & 2097155) !== 1; } - }, - isWrite: { - /** @this {FS.FSStream} */ - get: function() { return (this.flags & 2097155) !== 0; } - }, - isAppend: { - /** @this {FS.FSStream} */ - get: function() { return (this.flags & 1024); } - }, - flags: { - /** @this {FS.FSStream} */ - get: function() { return this.shared.flags; }, - /** @this {FS.FSStream} */ - set: function(val) { this.shared.flags = val; }, - }, - position : { - /** @this {FS.FSStream} */ - get: function() { return this.shared.position; }, - /** @this {FS.FSStream} */ - set: function(val) { this.shared.position = val; }, - }, - }); - } + }, + getStreamChecked(fd) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(8); + } + return stream; + }, + getStream:(fd) => FS.streams[fd], + createStream(stream, fd = -1) { + assert(fd >= -1); + // clone it, so we can return an instance of FSStream stream = Object.assign(new FS.FSStream(), stream); - var fd = FS.nextfd(fd_start, fd_end); + if (fd == -1) { + fd = FS.nextfd(); + } stream.fd = fd; FS.streams[fd] = stream; return stream; - },closeStream:(fd) => { + }, + closeStream(fd) { FS.streams[fd] = null; - },chrdev_stream_ops:{open:(stream) => { + }, + dupStream(origStream, fd = -1) { + var stream = FS.createStream(origStream, fd); + stream.stream_ops?.dup?.(stream); + return stream; + }, + doSetAttr(stream, node, attr) { + var setattr = stream?.stream_ops.setattr; + var arg = setattr ? stream : node; + setattr ??= node.node_ops.setattr; + FS.checkOpExists(setattr, 63) + setattr(arg, attr); + }, + chrdev_stream_ops:{ + open(stream) { var device = FS.getDevice(stream.node.rdev); // override node's stream ops with the device's stream.stream_ops = device.stream_ops; // forward the open call - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - },llseek:() => { + stream.stream_ops.open?.(stream); + }, + llseek() { throw new FS.ErrnoError(70); - }},major:(dev) => ((dev) >> 8),minor:(dev) => ((dev) & 0xff),makedev:(ma, mi) => ((ma) << 8 | (mi)),registerDevice:(dev, ops) => { + }, + }, + major:(dev) => ((dev) >> 8), + minor:(dev) => ((dev) & 0xff), + makedev:(ma, mi) => ((ma) << 8 | (mi)), + registerDevice(dev, ops) { FS.devices[dev] = { stream_ops: ops }; - },getDevice:(dev) => FS.devices[dev],getMounts:(mount) => { + }, + getDevice:(dev) => FS.devices[dev], + getMounts(mount) { var mounts = []; var check = [mount]; @@ -2481,11 +2469,12 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out mounts.push(m); - check.push.apply(check, m.mounts); + check.push(...m.mounts); } return mounts; - },syncfs:(populate, callback) => { + }, + syncfs(populate, callback) { if (typeof populate == 'function') { callback = populate; populate = false; @@ -2494,7 +2483,7 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out FS.syncFSRequests++; if (FS.syncFSRequests > 1) { - err('warning: ' + FS.syncFSRequests + ' FS.syncfs operations in flight at once, probably just doing extra work'); + err(`warning: ${FS.syncFSRequests} FS.syncfs operations in flight at once, probably just doing extra work`); } var mounts = FS.getMounts(FS.root.mount); @@ -2526,7 +2515,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } mount.type.syncfs(mount, populate, done); }); - },mount:(type, opts, mountpoint) => { + }, + mount(type, opts, mountpoint) { if (typeof type == 'string') { // The filesystem was not included, and instead we have an error // message stored in the variable. @@ -2554,9 +2544,9 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } var mount = { - type: type, - opts: opts, - mountpoint: mountpoint, + type, + opts, + mountpoint, mounts: [] }; @@ -2578,7 +2568,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } return mountRoot; - },unmount:(mountpoint) => { + }, + unmount(mountpoint) { var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); if (!FS.isMountpoint(lookup.node)) { @@ -2611,15 +2602,20 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var idx = node.mount.mounts.indexOf(mount); assert(idx !== -1); node.mount.mounts.splice(idx, 1); - },lookup:(parent, name) => { + }, + lookup(parent, name) { return parent.node_ops.lookup(parent, name); - },mknod:(path, mode, dev) => { + }, + mknod(path, mode, dev) { var lookup = FS.lookupPath(path, { parent: true }); var parent = lookup.node; var name = PATH.basename(path); - if (!name || name === '.' || name === '..') { + if (!name) { throw new FS.ErrnoError(28); } + if (name === '.' || name === '..') { + throw new FS.ErrnoError(20); + } var errCode = FS.mayCreate(parent, name); if (errCode) { throw new FS.ErrnoError(errCode); @@ -2628,36 +2624,71 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out throw new FS.ErrnoError(63); } return parent.node_ops.mknod(parent, name, mode, dev); - },create:(path, mode) => { - mode = mode !== undefined ? mode : 438 /* 0666 */; + }, + statfs(path) { + return FS.statfsNode(FS.lookupPath(path, {follow: true}).node); + }, + statfsStream(stream) { + // We keep a separate statfsStream function because noderawfs overrides + // it. In noderawfs, stream.node is sometimes null. Instead, we need to + // look at stream.path. + return FS.statfsNode(stream.node); + }, + statfsNode(node) { + // NOTE: None of the defaults here are true. We're just returning safe and + // sane values. Currently nodefs and rawfs replace these defaults, + // other file systems leave them alone. + var rtn = { + bsize: 4096, + frsize: 4096, + blocks: 1e6, + bfree: 5e5, + bavail: 5e5, + files: FS.nextInode, + ffree: FS.nextInode - 1, + fsid: 42, + flags: 2, + namelen: 255, + }; + + if (node.node_ops.statfs) { + Object.assign(rtn, node.node_ops.statfs(node.mount.opts.root)); + } + return rtn; + }, + create(path, mode = 0o666) { mode &= 4095; mode |= 32768; return FS.mknod(path, mode, 0); - },mkdir:(path, mode) => { - mode = mode !== undefined ? mode : 511 /* 0777 */; + }, + mkdir(path, mode = 0o777) { mode &= 511 | 512; mode |= 16384; return FS.mknod(path, mode, 0); - },mkdirTree:(path, mode) => { + }, + mkdirTree(path, mode) { var dirs = path.split('/'); var d = ''; - for (var i = 0; i < dirs.length; ++i) { - if (!dirs[i]) continue; - d += '/' + dirs[i]; + for (var dir of dirs) { + if (!dir) continue; + if (d || PATH.isAbs(path)) d += '/'; + d += dir; try { FS.mkdir(d, mode); } catch(e) { if (e.errno != 20) throw e; } } - },mkdev:(path, mode, dev) => { + }, + mkdev(path, mode, dev) { if (typeof dev == 'undefined') { dev = mode; - mode = 438 /* 0666 */; + mode = 0o666; } mode |= 8192; return FS.mknod(path, mode, dev); - },symlink:(oldpath, newpath) => { + }, + symlink(oldpath, newpath) { if (!PATH_FS.resolve(oldpath)) { throw new FS.ErrnoError(44); } @@ -2675,7 +2706,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out throw new FS.ErrnoError(63); } return parent.node_ops.symlink(parent, newname, oldpath); - },rename:(old_path, new_path) => { + }, + rename(old_path, new_path) { var old_dirname = PATH.dirname(old_path); var new_dirname = PATH.dirname(new_path); var old_name = PATH.basename(old_path); @@ -2683,7 +2715,7 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // parents must exist var lookup, old_dir, new_dir; - // let the errors from non existant directories percolate up + // let the errors from non existent directories percolate up lookup = FS.lookupPath(old_path, { parent: true }); old_dir = lookup.node; lookup = FS.lookupPath(new_path, { parent: true }); @@ -2749,6 +2781,9 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // do the underlying fs rename try { old_dir.node_ops.rename(old_node, new_dir, new_name); + // update old node (we do this here to avoid each backend + // needing to) + old_node.parent = new_dir; } catch (e) { throw e; } finally { @@ -2756,7 +2791,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // changed its name) FS.hashAddNode(old_node); } - },rmdir:(path) => { + }, + rmdir(path) { var lookup = FS.lookupPath(path, { parent: true }); var parent = lookup.node; var name = PATH.basename(path); @@ -2773,14 +2809,14 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } parent.node_ops.rmdir(parent, name); FS.destroyNode(node); - },readdir:(path) => { + }, + readdir(path) { var lookup = FS.lookupPath(path, { follow: true }); var node = lookup.node; - if (!node.node_ops.readdir) { - throw new FS.ErrnoError(54); - } - return node.node_ops.readdir(node); - },unlink:(path) => { + var readdir = FS.checkOpExists(node.node_ops.readdir, 54); + return readdir(node); + }, + unlink(path) { var lookup = FS.lookupPath(path, { parent: true }); var parent = lookup.node; if (!parent) { @@ -2803,7 +2839,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } parent.node_ops.unlink(parent, name); FS.destroyNode(node); - },readlink:(path) => { + }, + readlink(path) { var lookup = FS.lookupPath(path); var link = lookup.node; if (!link) { @@ -2812,43 +2849,34 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out if (!link.node_ops.readlink) { throw new FS.ErrnoError(28); } - return PATH_FS.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); - },stat:(path, dontFollow) => { + return link.node_ops.readlink(link); + }, + stat(path, dontFollow) { var lookup = FS.lookupPath(path, { follow: !dontFollow }); var node = lookup.node; - if (!node) { - throw new FS.ErrnoError(44); - } - if (!node.node_ops.getattr) { - throw new FS.ErrnoError(63); - } - return node.node_ops.getattr(node); - },lstat:(path) => { + var getattr = FS.checkOpExists(node.node_ops.getattr, 63); + return getattr(node); + }, + fstat(fd) { + var stream = FS.getStreamChecked(fd); + var node = stream.node; + var getattr = stream.stream_ops.getattr; + var arg = getattr ? stream : node; + getattr ??= node.node_ops.getattr; + FS.checkOpExists(getattr, 63) + return getattr(arg); + }, + lstat(path) { return FS.stat(path, true); - },chmod:(path, mode, dontFollow) => { - var node; - if (typeof path == 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - node.node_ops.setattr(node, { + }, + doChmod(stream, node, mode, dontFollow) { + FS.doSetAttr(stream, node, { mode: (mode & 4095) | (node.mode & ~4095), - timestamp: Date.now() + ctime: Date.now(), + dontFollow }); - },lchmod:(path, mode) => { - FS.chmod(path, mode, true); - },fchmod:(fd, mode) => { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - FS.chmod(stream.node, mode); - },chown:(path, uid, gid, dontFollow) => { + }, + chmod(path, mode, dontFollow) { var node; if (typeof path == 'string') { var lookup = FS.lookupPath(path, { follow: !dontFollow }); @@ -2856,35 +2884,40 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } else { node = path; } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - node.node_ops.setattr(node, { - timestamp: Date.now() + FS.doChmod(null, node, mode, dontFollow); + }, + lchmod(path, mode) { + FS.chmod(path, mode, true); + }, + fchmod(fd, mode) { + var stream = FS.getStreamChecked(fd); + FS.doChmod(stream, stream.node, mode, false); + }, + doChown(stream, node, dontFollow) { + FS.doSetAttr(stream, node, { + timestamp: Date.now(), + dontFollow // we ignore the uid / gid for now }); - },lchown:(path, uid, gid) => { - FS.chown(path, uid, gid, true); - },fchown:(fd, uid, gid) => { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - FS.chown(stream.node, uid, gid); - },truncate:(path, len) => { - if (len < 0) { - throw new FS.ErrnoError(28); - } + }, + chown(path, uid, gid, dontFollow) { var node; if (typeof path == 'string') { - var lookup = FS.lookupPath(path, { follow: true }); + var lookup = FS.lookupPath(path, { follow: !dontFollow }); node = lookup.node; } else { node = path; } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } + FS.doChown(null, node, dontFollow); + }, + lchown(path, uid, gid) { + FS.chown(path, uid, gid, true); + }, + fchown(fd, uid, gid) { + var stream = FS.getStreamChecked(fd); + FS.doChown(stream, stream.node, false); + }, + doTruncate(stream, node, len) { if (FS.isDir(node.mode)) { throw new FS.ErrnoError(31); } @@ -2895,49 +2928,65 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out if (errCode) { throw new FS.ErrnoError(errCode); } - node.node_ops.setattr(node, { + FS.doSetAttr(stream, node, { size: len, timestamp: Date.now() }); - },ftruncate:(fd, len) => { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); + }, + truncate(path, len) { + if (len < 0) { + throw new FS.ErrnoError(28); } - if ((stream.flags & 2097155) === 0) { + var node; + if (typeof path == 'string') { + var lookup = FS.lookupPath(path, { follow: true }); + node = lookup.node; + } else { + node = path; + } + FS.doTruncate(null, node, len); + }, + ftruncate(fd, len) { + var stream = FS.getStreamChecked(fd); + if (len < 0 || (stream.flags & 2097155) === 0) { throw new FS.ErrnoError(28); } - FS.truncate(stream.node, len); - },utime:(path, atime, mtime) => { + FS.doTruncate(stream, stream.node, len); + }, + utime(path, atime, mtime) { var lookup = FS.lookupPath(path, { follow: true }); var node = lookup.node; - node.node_ops.setattr(node, { - timestamp: Math.max(atime, mtime) + var setattr = FS.checkOpExists(node.node_ops.setattr, 63); + setattr(node, { + atime: atime, + mtime: mtime }); - },open:(path, flags, mode) => { + }, + open(path, flags, mode = 0o666) { if (path === "") { throw new FS.ErrnoError(44); } - flags = typeof flags == 'string' ? FS.modeStringToFlags(flags) : flags; - mode = typeof mode == 'undefined' ? 438 /* 0666 */ : mode; + flags = typeof flags == 'string' ? FS_modeStringToFlags(flags) : flags; if ((flags & 64)) { mode = (mode & 4095) | 32768; } else { mode = 0; } var node; + var isDirPath; if (typeof path == 'object') { node = path; } else { - path = PATH.normalize(path); - try { - var lookup = FS.lookupPath(path, { - follow: !(flags & 131072) - }); - node = lookup.node; - } catch (e) { - // ignore - } + isDirPath = path.endsWith("/"); + // noent_okay makes it so that if the final component of the path + // doesn't exist, lookupPath returns `node: undefined`. `path` will be + // updated to point to the target of all symlinks. + var lookup = FS.lookupPath(path, { + follow: !(flags & 131072), + noent_okay: true + }); + node = lookup.node; + path = lookup.path; } // perhaps we need to create the node var created = false; @@ -2947,9 +2996,14 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out if ((flags & 128)) { throw new FS.ErrnoError(20); } + } else if (isDirPath) { + throw new FS.ErrnoError(31); } else { // node doesn't exist, try to create it - node = FS.mknod(path, mode, 0); + // Ignore the permission bits here to ensure we can `open` this new + // file below. We use chmod below the apply the permissions once the + // file is open. + node = FS.mknod(path, mode | 0o777, 0); created = true; } } @@ -2982,9 +3036,9 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // register the stream with the filesystem var stream = FS.createStream({ - node: node, + node, path: FS.getPath(node), // we want the absolute path to the node - flags: flags, + flags, seekable: true, position: 0, stream_ops: node.stream_ops, @@ -2996,14 +3050,17 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out if (stream.stream_ops.open) { stream.stream_ops.open(stream); } + if (created) { + FS.chmod(node, mode & 0o777); + } if (Module['logReadFiles'] && !(flags & 1)) { - if (!FS.readFiles) FS.readFiles = {}; if (!(path in FS.readFiles)) { FS.readFiles[path] = 1; } } return stream; - },close:(stream) => { + }, + close(stream) { if (FS.isClosed(stream)) { throw new FS.ErrnoError(8); } @@ -3018,9 +3075,11 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out FS.closeStream(stream.fd); } stream.fd = null; - },isClosed:(stream) => { + }, + isClosed(stream) { return stream.fd === null; - },llseek:(stream, offset, whence) => { + }, + llseek(stream, offset, whence) { if (FS.isClosed(stream)) { throw new FS.ErrnoError(8); } @@ -3033,7 +3092,9 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out stream.position = stream.stream_ops.llseek(stream, offset, whence); stream.ungotten = []; return stream.position; - },read:(stream, buffer, offset, length, position) => { + }, + read(stream, buffer, offset, length, position) { + assert(offset >= 0); if (length < 0 || position < 0) { throw new FS.ErrnoError(28); } @@ -3058,7 +3119,9 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); if (!seeking) stream.position += bytesRead; return bytesRead; - },write:(stream, buffer, offset, length, position, canOwn) => { + }, + write(stream, buffer, offset, length, position, canOwn) { + assert(offset >= 0); if (length < 0 || position < 0) { throw new FS.ErrnoError(28); } @@ -3087,24 +3150,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); if (!seeking) stream.position += bytesWritten; return bytesWritten; - },allocate:(stream, offset, length) => { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (offset < 0 || length <= 0) { - throw new FS.ErrnoError(28); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(8); - } - if (!FS.isFile(stream.node.mode) && !FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - if (!stream.stream_ops.allocate) { - throw new FS.ErrnoError(138); - } - stream.stream_ops.allocate(stream, offset, length); - },mmap:(stream, length, position, prot, flags) => { + }, + mmap(stream, length, position, prot, flags) { // User requests writing to file (prot & PROT_WRITE != 0). // Checking if we have permissions to write to the file unless // MAP_PRIVATE flag is set. According to POSIX spec it is possible @@ -3122,50 +3169,56 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out if (!stream.stream_ops.mmap) { throw new FS.ErrnoError(43); } + if (!length) { + throw new FS.ErrnoError(28); + } return stream.stream_ops.mmap(stream, length, position, prot, flags); - },msync:(stream, buffer, offset, length, mmapFlags) => { + }, + msync(stream, buffer, offset, length, mmapFlags) { + assert(offset >= 0); if (!stream.stream_ops.msync) { return 0; } return stream.stream_ops.msync(stream, buffer, offset, length, mmapFlags); - },munmap:(stream) => 0,ioctl:(stream, cmd, arg) => { + }, + ioctl(stream, cmd, arg) { if (!stream.stream_ops.ioctl) { throw new FS.ErrnoError(59); } return stream.stream_ops.ioctl(stream, cmd, arg); - },readFile:(path, opts = {}) => { + }, + readFile(path, opts = {}) { opts.flags = opts.flags || 0; opts.encoding = opts.encoding || 'binary'; if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); + throw new Error(`Invalid encoding type "${opts.encoding}"`); } - var ret; var stream = FS.open(path, opts.flags); var stat = FS.stat(path); var length = stat.size; var buf = new Uint8Array(length); FS.read(stream, buf, 0, length, 0); if (opts.encoding === 'utf8') { - ret = UTF8ArrayToString(buf, 0); - } else if (opts.encoding === 'binary') { - ret = buf; + buf = UTF8ArrayToString(buf); } FS.close(stream); - return ret; - },writeFile:(path, data, opts = {}) => { + return buf; + }, + writeFile(path, data, opts = {}) { opts.flags = opts.flags || 577; var stream = FS.open(path, opts.flags, opts.mode); if (typeof data == 'string') { - var buf = new Uint8Array(lengthBytesUTF8(data)+1); - var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); - FS.write(stream, buf, 0, actualNumBytes, undefined, opts.canOwn); - } else if (ArrayBuffer.isView(data)) { + data = new Uint8Array(intArrayFromString(data, true)); + } + if (ArrayBuffer.isView(data)) { FS.write(stream, data, 0, data.byteLength, undefined, opts.canOwn); } else { throw new Error('Unsupported data type'); } FS.close(stream); - },cwd:() => FS.currentPath,chdir:(path) => { + }, + cwd:() => FS.currentPath, + chdir(path) { var lookup = FS.lookupPath(path, { follow: true }); if (lookup.node === null) { throw new FS.ErrnoError(44); @@ -3178,17 +3231,20 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out throw new FS.ErrnoError(errCode); } FS.currentPath = lookup.path; - },createDefaultDirectories:() => { + }, + createDefaultDirectories() { FS.mkdir('/tmp'); FS.mkdir('/home'); FS.mkdir('/home/web_user'); - },createDefaultDevices:() => { + }, + createDefaultDevices() { // create /dev FS.mkdir('/dev'); // setup /dev/null FS.registerDevice(FS.makedev(1, 3), { read: () => 0, write: (stream, buffer, offset, length, pos) => length, + llseek: () => 0, }); FS.mkdev('/dev/null', FS.makedev(1, 3)); // setup /dev/tty and /dev/tty1 @@ -3199,40 +3255,58 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out FS.mkdev('/dev/tty', FS.makedev(5, 0)); FS.mkdev('/dev/tty1', FS.makedev(6, 0)); // setup /dev/[u]random - var random_device = getRandomDevice(); - FS.createDevice('/dev', 'random', random_device); - FS.createDevice('/dev', 'urandom', random_device); + // use a buffer to avoid overhead of individual crypto calls per byte + var randomBuffer = new Uint8Array(1024), randomLeft = 0; + var randomByte = () => { + if (randomLeft === 0) { + randomFill(randomBuffer); + randomLeft = randomBuffer.byteLength; + } + return randomBuffer[--randomLeft]; + }; + FS.createDevice('/dev', 'random', randomByte); + FS.createDevice('/dev', 'urandom', randomByte); // we're not going to emulate the actual shm device, // just create the tmp dirs that reside in it commonly FS.mkdir('/dev/shm'); FS.mkdir('/dev/shm/tmp'); - },createSpecialDirectories:() => { + }, + createSpecialDirectories() { // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the // name of the stream for fd 6 (see test_unistd_ttyname) FS.mkdir('/proc'); var proc_self = FS.mkdir('/proc/self'); FS.mkdir('/proc/self/fd'); FS.mount({ - mount: () => { - var node = FS.createNode(proc_self, 'fd', 16384 | 511 /* 0777 */, 73); + mount() { + var node = FS.createNode(proc_self, 'fd', 16895, 73); + node.stream_ops = { + llseek: MEMFS.stream_ops.llseek, + }; node.node_ops = { - lookup: (parent, name) => { + lookup(parent, name) { var fd = +name; - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(8); + var stream = FS.getStreamChecked(fd); var ret = { parent: null, mount: { mountpoint: 'fake' }, node_ops: { readlink: () => stream.path }, + id: fd + 1, }; ret.parent = ret; // make it look like a simple root node return ret; + }, + readdir() { + return Array.from(FS.streams.entries()) + .filter(([k, v]) => v) + .map(([k, v]) => k.toString()); } }; return node; } }, {}, '/proc/self/fd'); - },createStandardStreams:() => { + }, + createStandardStreams(input, output, error) { // TODO deprecate the old functionality of a single // input / output callback and that utilizes FS.createDevice // and instead require a unique set of stream ops @@ -3241,18 +3315,18 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // default tty devices. however, if the standard streams // have been overwritten we create a unique device for // them instead. - if (Module['stdin']) { - FS.createDevice('/dev', 'stdin', Module['stdin']); + if (input) { + FS.createDevice('/dev', 'stdin', input); } else { FS.symlink('/dev/tty', '/dev/stdin'); } - if (Module['stdout']) { - FS.createDevice('/dev', 'stdout', null, Module['stdout']); + if (output) { + FS.createDevice('/dev', 'stdout', null, output); } else { FS.symlink('/dev/tty', '/dev/stdout'); } - if (Module['stderr']) { - FS.createDevice('/dev', 'stderr', null, Module['stderr']); + if (error) { + FS.createDevice('/dev', 'stderr', null, error); } else { FS.symlink('/dev/tty1', '/dev/stderr'); } @@ -3261,50 +3335,11 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var stdin = FS.open('/dev/stdin', 0); var stdout = FS.open('/dev/stdout', 1); var stderr = FS.open('/dev/stderr', 1); - assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); - assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); - assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); - },ensureErrnoError:() => { - if (FS.ErrnoError) return; - FS.ErrnoError = /** @this{Object} */ function ErrnoError(errno, node) { - // We set the `name` property to be able to identify `FS.ErrnoError` - // - the `name` is a standard ECMA-262 property of error objects. Kind of good to have it anyway. - // - when using PROXYFS, an error can come from an underlying FS - // as different FS objects have their own FS.ErrnoError each, - // the test `err instanceof FS.ErrnoError` won't detect an error coming from another filesystem, causing bugs. - // we'll use the reliable test `err.name == "ErrnoError"` instead - this.name = 'ErrnoError'; - this.node = node; - this.setErrno = /** @this{Object} */ function(errno) { - this.errno = errno; - for (var key in ERRNO_CODES) { - if (ERRNO_CODES[key] === errno) { - this.code = key; - break; - } - } - }; - this.setErrno(errno); - this.message = ERRNO_MESSAGES[errno]; - - // Try to get a maximally helpful stack trace. On Node.js, getting Error.stack - // now ensures it shows what we want. - if (this.stack) { - // Define the stack property for Node.js 4, which otherwise errors on the next line. - Object.defineProperty(this, "stack", { value: (new Error).stack, writable: true }); - this.stack = demangleAll(this.stack); - } - }; - FS.ErrnoError.prototype = new Error(); - FS.ErrnoError.prototype.constructor = FS.ErrnoError; - // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) - [44].forEach((code) => { - FS.genericErrors[code] = new FS.ErrnoError(code); - FS.genericErrors[code].stack = ''; - }); - },staticInit:() => { - FS.ensureErrnoError(); - + assert(stdin.fd === 0, `invalid handle for stdin (${stdin.fd})`); + assert(stdout.fd === 1, `invalid handle for stdout (${stdout.fd})`); + assert(stderr.fd === 2, `invalid handle for stderr (${stderr.fd})`); + }, + staticInit() { FS.nameTable = new Array(4096); FS.mount(MEMFS, {}, '/'); @@ -3316,42 +3351,37 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out FS.filesystems = { 'MEMFS': MEMFS, }; - },init:(input, output, error) => { - assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); - FS.init.initialized = true; - - FS.ensureErrnoError(); + }, + init(input, output, error) { + assert(!FS.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); + FS.initialized = true; // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here - Module['stdin'] = input || Module['stdin']; - Module['stdout'] = output || Module['stdout']; - Module['stderr'] = error || Module['stderr']; - - FS.createStandardStreams(); - },quit:() => { - FS.init.initialized = false; + input ??= Module['stdin']; + output ??= Module['stdout']; + error ??= Module['stderr']; + + FS.createStandardStreams(input, output, error); + }, + quit() { + FS.initialized = false; // force-flush all streams, so we get musl std streams printed out _fflush(0); // close all of our streams - for (var i = 0; i < FS.streams.length; i++) { - var stream = FS.streams[i]; - if (!stream) { - continue; + for (var stream of FS.streams) { + if (stream) { + FS.close(stream); } - FS.close(stream); } - },getMode:(canRead, canWrite) => { - var mode = 0; - if (canRead) mode |= 292 | 73; - if (canWrite) mode |= 146; - return mode; - },findObject:(path, dontResolveLastLink) => { + }, + findObject(path, dontResolveLastLink) { var ret = FS.analyzePath(path, dontResolveLastLink); if (!ret.exists) { return null; } return ret.object; - },analyzePath:(path, dontResolveLastLink) => { + }, + analyzePath(path, dontResolveLastLink) { // operate from within the context of the symlink's target try { var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); @@ -3378,7 +3408,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out ret.error = e.errno; }; return ret; - },createPath:(parent, path, canRead, canWrite) => { + }, + createPath(parent, path, canRead, canWrite) { parent = typeof parent == 'string' ? parent : FS.getPath(parent); var parts = path.split('/').reverse(); while (parts.length) { @@ -3388,22 +3419,24 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out try { FS.mkdir(current); } catch (e) { - // ignore EEXIST + if (e.errno != 20) throw e; } parent = current; } return current; - },createFile:(parent, name, properties, canRead, canWrite) => { + }, + createFile(parent, name, properties, canRead, canWrite) { var path = PATH.join2(typeof parent == 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); + var mode = FS_getMode(canRead, canWrite); return FS.create(path, mode); - },createDataFile:(parent, name, data, canRead, canWrite, canOwn) => { + }, + createDataFile(parent, name, data, canRead, canWrite, canOwn) { var path = name; if (parent) { parent = typeof parent == 'string' ? parent : FS.getPath(parent); path = name ? PATH.join2(parent, name) : parent; } - var mode = FS.getMode(canRead, canWrite); + var mode = FS_getMode(canRead, canWrite); var node = FS.create(path, mode); if (data) { if (typeof data == 'string') { @@ -3418,25 +3451,25 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out FS.close(stream); FS.chmod(node, mode); } - return node; - },createDevice:(parent, name, input, output) => { + }, + createDevice(parent, name, input, output) { var path = PATH.join2(typeof parent == 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(!!input, !!output); - if (!FS.createDevice.major) FS.createDevice.major = 64; + var mode = FS_getMode(!!input, !!output); + FS.createDevice.major ??= 64; var dev = FS.makedev(FS.createDevice.major++, 0); // Create a fake device that a set of stream ops to emulate // the old behavior. FS.registerDevice(dev, { - open: (stream) => { + open(stream) { stream.seekable = false; }, - close: (stream) => { + close(stream) { // flush any pending line data - if (output && output.buffer && output.buffer.length) { + if (output?.buffer?.length) { output(10); } }, - read: (stream, buffer, offset, length, pos /* ignored */) => { + read(stream, buffer, offset, length, pos /* ignored */) { var bytesRead = 0; for (var i = 0; i < length; i++) { var result; @@ -3453,11 +3486,11 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out buffer[offset+i] = result; } if (bytesRead) { - stream.node.timestamp = Date.now(); + stream.node.atime = Date.now(); } return bytesRead; }, - write: (stream, buffer, offset, length, pos) => { + write(stream, buffer, offset, length, pos) { for (var i = 0; i < length; i++) { try { output(buffer[offset+i]); @@ -3466,131 +3499,122 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } } if (length) { - stream.node.timestamp = Date.now(); + stream.node.mtime = stream.node.ctime = Date.now(); } return i; } }); return FS.mkdev(path, mode, dev); - },forceLoadFile:(obj) => { + }, + forceLoadFile(obj) { if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; if (typeof XMLHttpRequest != 'undefined') { throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); - } else if (read_) { - // Command-line. + } else { // Command-line. try { - // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as - // read() will try to parse UTF8. - obj.contents = intArrayFromString(read_(obj.url), true); + obj.contents = readBinary(obj.url); obj.usedBytes = obj.contents.length; } catch (e) { throw new FS.ErrnoError(29); } - } else { - throw new Error('Cannot load without read() or XMLHttpRequest.'); - } - },createLazyFile:(parent, name, url, canRead, canWrite) => { - // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. - /** @constructor */ - function LazyUint8Array() { - this.lengthKnown = false; - this.chunks = []; // Loaded chunks. Index is the chunk number - } - LazyUint8Array.prototype.get = /** @this{Object} */ function LazyUint8Array_get(idx) { - if (idx > this.length-1 || idx < 0) { - return undefined; + } + }, + createLazyFile(parent, name, url, canRead, canWrite) { + // Lazy chunked Uint8Array (implements get and length from Uint8Array). + // Actual getting is abstracted away for eventual reuse. + class LazyUint8Array { + lengthKnown = false; + chunks = []; // Loaded chunks. Index is the chunk number + get(idx) { + if (idx > this.length-1 || idx < 0) { + return undefined; + } + var chunkOffset = idx % this.chunkSize; + var chunkNum = (idx / this.chunkSize)|0; + return this.getter(chunkNum)[chunkOffset]; } - var chunkOffset = idx % this.chunkSize; - var chunkNum = (idx / this.chunkSize)|0; - return this.getter(chunkNum)[chunkOffset]; - }; - LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { - this.getter = getter; - }; - LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { - // Find length - var xhr = new XMLHttpRequest(); - xhr.open('HEAD', url, false); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - var datalength = Number(xhr.getResponseHeader("Content-length")); - var header; - var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; - var usesGzip = (header = xhr.getResponseHeader("Content-Encoding")) && header === "gzip"; - - var chunkSize = 1024*1024; // Chunk size in bytes - - if (!hasByteServing) chunkSize = datalength; - - // Function to get a range from the remote URL. - var doXHR = (from, to) => { - if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); - if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); - - // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. + setDataGetter(getter) { + this.getter = getter; + } + cacheLength() { + // Find length var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); + xhr.open('HEAD', url, false); + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + var datalength = Number(xhr.getResponseHeader("Content-length")); + var header; + var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; + var usesGzip = (header = xhr.getResponseHeader("Content-Encoding")) && header === "gzip"; + + var chunkSize = 1024*1024; // Chunk size in bytes + + if (!hasByteServing) chunkSize = datalength; + + // Function to get a range from the remote URL. + var doXHR = (from, to) => { + if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); + if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); + + // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); + + // Some hints to the browser that we want binary data. + xhr.responseType = 'arraybuffer'; + if (xhr.overrideMimeType) { + xhr.overrideMimeType('text/plain; charset=x-user-defined'); + } + + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + if (xhr.response !== undefined) { + return new Uint8Array(/** @type{Array} */(xhr.response || [])); + } + return intArrayFromString(xhr.responseText || '', true); + }; + var lazyArray = this; + lazyArray.setDataGetter((chunkNum) => { + var start = chunkNum * chunkSize; + var end = (chunkNum+1) * chunkSize - 1; // including this byte + end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block + if (typeof lazyArray.chunks[chunkNum] == 'undefined') { + lazyArray.chunks[chunkNum] = doXHR(start, end); + } + if (typeof lazyArray.chunks[chunkNum] == 'undefined') throw new Error('doXHR failed!'); + return lazyArray.chunks[chunkNum]; + }); - // Some hints to the browser that we want binary data. - xhr.responseType = 'arraybuffer'; - if (xhr.overrideMimeType) { - xhr.overrideMimeType('text/plain; charset=x-user-defined'); + if (usesGzip || !datalength) { + // if the server uses gzip or doesn't supply the length, we have to download the whole file to get the (uncompressed) length + chunkSize = datalength = 1; // this will force getter(0)/doXHR do download the whole file + datalength = this.getter(0).length; + chunkSize = datalength; + out("LazyFiles on gzip forces download of the whole file when length is accessed"); } - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - if (xhr.response !== undefined) { - return new Uint8Array(/** @type{Array} */(xhr.response || [])); + this._length = datalength; + this._chunkSize = chunkSize; + this.lengthKnown = true; + } + get length() { + if (!this.lengthKnown) { + this.cacheLength(); } - return intArrayFromString(xhr.responseText || '', true); - }; - var lazyArray = this; - lazyArray.setDataGetter((chunkNum) => { - var start = chunkNum * chunkSize; - var end = (chunkNum+1) * chunkSize - 1; // including this byte - end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block - if (typeof lazyArray.chunks[chunkNum] == 'undefined') { - lazyArray.chunks[chunkNum] = doXHR(start, end); + return this._length; + } + get chunkSize() { + if (!this.lengthKnown) { + this.cacheLength(); } - if (typeof lazyArray.chunks[chunkNum] == 'undefined') throw new Error('doXHR failed!'); - return lazyArray.chunks[chunkNum]; - }); - - if (usesGzip || !datalength) { - // if the server uses gzip or doesn't supply the length, we have to download the whole file to get the (uncompressed) length - chunkSize = datalength = 1; // this will force getter(0)/doXHR do download the whole file - datalength = this.getter(0).length; - chunkSize = datalength; - out("LazyFiles on gzip forces download of the whole file when length is accessed"); + return this._chunkSize; } + } - this._length = datalength; - this._chunkSize = chunkSize; - this.lengthKnown = true; - }; if (typeof XMLHttpRequest != 'undefined') { if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; var lazyArray = new LazyUint8Array(); - Object.defineProperties(lazyArray, { - length: { - get: /** @this{Object} */ function() { - if (!this.lengthKnown) { - this.cacheLength(); - } - return this._length; - } - }, - chunkSize: { - get: /** @this{Object} */ function() { - if (!this.lengthKnown) { - this.cacheLength(); - } - return this._chunkSize; - } - } - }); - var properties = { isDevice: false, contents: lazyArray }; } else { var properties = { isDevice: false, url: url }; @@ -3609,7 +3633,7 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // Add a function that defers querying the file size until it is asked the first time. Object.defineProperties(node, { usedBytes: { - get: /** @this {FSNode} */ function() { return this.contents.length; } + get: function() { return this.contents.length; } } }); // override each stream op with one that tries to force load the lazy file first @@ -3617,9 +3641,9 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var keys = Object.keys(node.stream_ops); keys.forEach((key) => { var fn = node.stream_ops[key]; - stream_ops[key] = function forceLoadLazyFile() { + stream_ops[key] = (...args) => { FS.forceLoadFile(node); - return fn.apply(null, arguments); + return fn(...args); }; }); function writeChunks(stream, buffer, offset, length, position) { @@ -3652,120 +3676,34 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out throw new FS.ErrnoError(48); } writeChunks(stream, HEAP8, ptr, length, position); - return { ptr: ptr, allocated: true }; + return { ptr, allocated: true }; }; node.stream_ops = stream_ops; return node; - },createPreloadedFile:(parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) => { - // TODO we should allow people to just pass in a complete filename instead - // of parent and name being that we just join them anyways - var fullname = name ? PATH_FS.resolve(PATH.join2(parent, name)) : parent; - var dep = getUniqueRunDependency('cp ' + fullname); // might have several active requests for the same fullname - function processData(byteArray) { - function finish(byteArray) { - if (preFinish) preFinish(); - if (!dontCreateFile) { - FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); - } - if (onload) onload(); - removeRunDependency(dep); - } - if (Browser.handledByPreloadPlugin(byteArray, fullname, finish, () => { - if (onerror) onerror(); - removeRunDependency(dep); - })) { - return; - } - finish(byteArray); - } - addRunDependency(dep); - if (typeof url == 'string') { - asyncLoad(url, (byteArray) => processData(byteArray), onerror); - } else { - processData(url); - } - },indexedDB:() => { - return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - },DB_NAME:() => { - return 'EM_FS_' + window.location.pathname; - },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:(paths, onload = (() => {}), onerror = (() => {})) => { - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = () => { - out('creating db'); - var db = openRequest.result; - db.createObjectStore(FS.DB_STORE_NAME); - }; - openRequest.onsuccess = () => { - var db = openRequest.result; - var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach((path) => { - var putRequest = files.put(FS.analyzePath(path).object.contents, path); - putRequest.onsuccess = () => { ok++; if (ok + fail == total) finish() }; - putRequest.onerror = () => { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - },loadFilesFromDB:(paths, onload = (() => {}), onerror = (() => {})) => { - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = onerror; // no database to load from - openRequest.onsuccess = () => { - var db = openRequest.result; - try { - var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); - } catch(e) { - onerror(e); - return; - } - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach((path) => { - var getRequest = files.get(path); - getRequest.onsuccess = () => { - if (FS.analyzePath(path).exists) { - FS.unlink(path); - } - FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); - ok++; - if (ok + fail == total) finish(); - }; - getRequest.onerror = () => { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - },absolutePath:() => { + }, + absolutePath() { abort('FS.absolutePath has been removed; use PATH_FS.resolve instead'); - },createFolder:() => { + }, + createFolder() { abort('FS.createFolder has been removed; use FS.mkdir instead'); - },createLink:() => { + }, + createLink() { abort('FS.createLink has been removed; use FS.symlink instead'); - },joinPath:() => { + }, + joinPath() { abort('FS.joinPath has been removed; use PATH.join instead'); - },mmapAlloc:() => { + }, + mmapAlloc() { abort('FS.mmapAlloc has been replaced by the top level function mmapAlloc'); - },standardizePath:() => { + }, + standardizePath() { abort('FS.standardizePath has been removed; use PATH.normalize instead'); - }}; - var SYSCALLS = {DEFAULT_POLLMASK:5,calculateAt:function(dirfd, path, allowEmpty) { + }, + }; + + var SYSCALLS = { + DEFAULT_POLLMASK:5, + calculateAt(dirfd, path, allowEmpty) { if (PATH.isAbs(path)) { return path; } @@ -3783,39 +3721,43 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } return dir; } - return PATH.join2(dir, path); - },doStat:function(func, path, buf) { - try { - var stat = func(path); - } catch (e) { - if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { - // an error occurred while trying to look up the path; we should just report ENOTDIR - return -54; - } - throw e; - } + return dir + '/' + path; + }, + writeStat(buf, stat) { HEAP32[((buf)>>2)] = stat.dev; - HEAP32[(((buf)+(8))>>2)] = stat.ino; - HEAP32[(((buf)+(12))>>2)] = stat.mode; - HEAPU32[(((buf)+(16))>>2)] = stat.nlink; - HEAP32[(((buf)+(20))>>2)] = stat.uid; - HEAP32[(((buf)+(24))>>2)] = stat.gid; - HEAP32[(((buf)+(28))>>2)] = stat.rdev; - (tempI64 = [stat.size>>>0,(tempDouble=stat.size,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(40))>>2)] = tempI64[0],HEAP32[(((buf)+(44))>>2)] = tempI64[1]); - HEAP32[(((buf)+(48))>>2)] = 4096; - HEAP32[(((buf)+(52))>>2)] = stat.blocks; + HEAP32[(((buf)+(4))>>2)] = stat.mode; + HEAPU32[(((buf)+(8))>>2)] = stat.nlink; + HEAP32[(((buf)+(12))>>2)] = stat.uid; + HEAP32[(((buf)+(16))>>2)] = stat.gid; + HEAP32[(((buf)+(20))>>2)] = stat.rdev; + HEAP64[(((buf)+(24))>>3)] = BigInt(stat.size); + HEAP32[(((buf)+(32))>>2)] = 4096; + HEAP32[(((buf)+(36))>>2)] = stat.blocks; var atime = stat.atime.getTime(); var mtime = stat.mtime.getTime(); var ctime = stat.ctime.getTime(); - (tempI64 = [Math.floor(atime / 1000)>>>0,(tempDouble=Math.floor(atime / 1000),(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(56))>>2)] = tempI64[0],HEAP32[(((buf)+(60))>>2)] = tempI64[1]); - HEAPU32[(((buf)+(64))>>2)] = (atime % 1000) * 1000; - (tempI64 = [Math.floor(mtime / 1000)>>>0,(tempDouble=Math.floor(mtime / 1000),(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(72))>>2)] = tempI64[0],HEAP32[(((buf)+(76))>>2)] = tempI64[1]); - HEAPU32[(((buf)+(80))>>2)] = (mtime % 1000) * 1000; - (tempI64 = [Math.floor(ctime / 1000)>>>0,(tempDouble=Math.floor(ctime / 1000),(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(88))>>2)] = tempI64[0],HEAP32[(((buf)+(92))>>2)] = tempI64[1]); - HEAPU32[(((buf)+(96))>>2)] = (ctime % 1000) * 1000; - (tempI64 = [stat.ino>>>0,(tempDouble=stat.ino,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(104))>>2)] = tempI64[0],HEAP32[(((buf)+(108))>>2)] = tempI64[1]); + HEAP64[(((buf)+(40))>>3)] = BigInt(Math.floor(atime / 1000)); + HEAPU32[(((buf)+(48))>>2)] = (atime % 1000) * 1000 * 1000; + HEAP64[(((buf)+(56))>>3)] = BigInt(Math.floor(mtime / 1000)); + HEAPU32[(((buf)+(64))>>2)] = (mtime % 1000) * 1000 * 1000; + HEAP64[(((buf)+(72))>>3)] = BigInt(Math.floor(ctime / 1000)); + HEAPU32[(((buf)+(80))>>2)] = (ctime % 1000) * 1000 * 1000; + HEAP64[(((buf)+(88))>>3)] = BigInt(stat.ino); return 0; - },doMsync:function(addr, stream, len, flags, offset) { + }, + writeStatFs(buf, stats) { + HEAP32[(((buf)+(4))>>2)] = stats.bsize; + HEAP32[(((buf)+(40))>>2)] = stats.bsize; + HEAP32[(((buf)+(8))>>2)] = stats.blocks; + HEAP32[(((buf)+(12))>>2)] = stats.bfree; + HEAP32[(((buf)+(16))>>2)] = stats.bavail; + HEAP32[(((buf)+(20))>>2)] = stats.files; + HEAP32[(((buf)+(24))>>2)] = stats.ffree; + HEAP32[(((buf)+(28))>>2)] = stats.fsid; + HEAP32[(((buf)+(44))>>2)] = stats.flags; // ST_NOSUID + HEAP32[(((buf)+(36))>>2)] = stats.namelen; + }, + doMsync(addr, stream, len, flags, offset) { if (!FS.isFile(stream.node.mode)) { throw new FS.ErrnoError(43); } @@ -3825,19 +3767,17 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } var buffer = HEAPU8.slice(addr, addr + len); FS.msync(stream, buffer, offset, len, flags); - },varargs:undefined,get:function() { - assert(SYSCALLS.varargs != undefined); - SYSCALLS.varargs += 4; - var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; - return ret; - },getStr:function(ptr) { + }, + getStreamFromFD(fd) { + var stream = FS.getStreamChecked(fd); + return stream; + }, + varargs:undefined, + getStr(ptr) { var ret = UTF8ToString(ptr); return ret; - },getStreamFromFD:function(fd) { - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(8); - return stream; - }}; + }, + }; function ___syscall_fcntl64(fd, cmd, varargs) { SYSCALLS.varargs = varargs; try { @@ -3845,12 +3785,15 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var stream = SYSCALLS.getStreamFromFD(fd); switch (cmd) { case 0: { - var arg = SYSCALLS.get(); + var arg = syscallGetVarargI(); if (arg < 0) { return -28; } + while (FS.streams[arg]) { + arg++; + } var newStream; - newStream = FS.createStream(stream, arg); + newStream = FS.dupStream(stream, arg); return newStream.fd; } case 1: @@ -3859,66 +3802,86 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out case 3: return stream.flags; case 4: { - var arg = SYSCALLS.get(); + var arg = syscallGetVarargI(); stream.flags |= arg; return 0; } - case 5: - /* case 5: Currently in musl F_GETLK64 has same value as F_GETLK, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ { - - var arg = SYSCALLS.get(); + case 12: { + var arg = syscallGetVarargP(); var offset = 0; // We're always unlocked. HEAP16[(((arg)+(offset))>>1)] = 2; return 0; } - case 6: - case 7: - /* case 6: Currently in musl F_SETLK64 has same value as F_SETLK, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ - /* case 7: Currently in musl F_SETLKW64 has same value as F_SETLKW, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ - - - return 0; // Pretend that the locking is successful. - case 16: - case 8: - return -28; // These are for sockets. We don't have them fully implemented yet. - case 9: - // musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fcntl() returns that, and we set errno ourselves. - setErrNo(28); - return -1; - default: { - return -28; - } + case 13: + case 14: + // Pretend that the locking is successful. These are process-level locks, + // and Emscripten programs are a single process. If we supported linking a + // filesystem between programs, we'd need to do more here. + // See https://github.com/emscripten-core/emscripten/issues/23697 + return 0; } + return -28; } catch (e) { if (typeof FS == 'undefined' || !(e.name === 'ErrnoError')) throw e; return -e.errno; } } + function ___syscall_ioctl(fd, op, varargs) { SYSCALLS.varargs = varargs; try { var stream = SYSCALLS.getStreamFromFD(fd); switch (op) { - case 21509: + case 21509: { + if (!stream.tty) return -59; + return 0; + } case 21505: { if (!stream.tty) return -59; + if (stream.tty.ops.ioctl_tcgets) { + var termios = stream.tty.ops.ioctl_tcgets(stream); + var argp = syscallGetVarargP(); + HEAP32[((argp)>>2)] = termios.c_iflag || 0; + HEAP32[(((argp)+(4))>>2)] = termios.c_oflag || 0; + HEAP32[(((argp)+(8))>>2)] = termios.c_cflag || 0; + HEAP32[(((argp)+(12))>>2)] = termios.c_lflag || 0; + for (var i = 0; i < 32; i++) { + HEAP8[(argp + i)+(17)] = termios.c_cc[i] || 0; + } + return 0; + } return 0; } case 21510: case 21511: - case 21512: + case 21512: { + if (!stream.tty) return -59; + return 0; // no-op, not actually adjusting terminal settings + } case 21506: case 21507: case 21508: { if (!stream.tty) return -59; + if (stream.tty.ops.ioctl_tcsets) { + var argp = syscallGetVarargP(); + var c_iflag = HEAP32[((argp)>>2)]; + var c_oflag = HEAP32[(((argp)+(4))>>2)]; + var c_cflag = HEAP32[(((argp)+(8))>>2)]; + var c_lflag = HEAP32[(((argp)+(12))>>2)]; + var c_cc = [] + for (var i = 0; i < 32; i++) { + c_cc.push(HEAP8[(argp + i)+(17)]); + } + return stream.tty.ops.ioctl_tcsets(stream.tty, op, { c_iflag, c_oflag, c_cflag, c_lflag, c_cc }); + } return 0; // no-op, not actually adjusting terminal settings } case 21519: { if (!stream.tty) return -59; - var argp = SYSCALLS.get(); + var argp = syscallGetVarargP(); HEAP32[((argp)>>2)] = 0; return 0; } @@ -3927,13 +3890,19 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out return -28; // not supported } case 21531: { - var argp = SYSCALLS.get(); + var argp = syscallGetVarargP(); return FS.ioctl(stream, op, argp); } case 21523: { // TODO: in theory we should write to the winsize struct that gets // passed in, but for now musl doesn't read anything on it if (!stream.tty) return -59; + if (stream.tty.ops.ioctl_tiocgwinsz) { + var winsize = stream.tty.ops.ioctl_tiocgwinsz(stream.tty); + var argp = syscallGetVarargP(); + HEAP16[((argp)>>1)] = winsize[0]; + HEAP16[(((argp)+(2))>>1)] = winsize[1]; + } return 0; } case 21524: { @@ -3943,6 +3912,10 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out if (!stream.tty) return -59; return 0; } + case 21515: { + if (!stream.tty) return -59; + return 0; + } default: return -28; // not supported } } catch (e) { @@ -3951,13 +3924,14 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } } + function ___syscall_openat(dirfd, path, flags, varargs) { SYSCALLS.varargs = varargs; try { path = SYSCALLS.getStr(path); path = SYSCALLS.calculateAt(dirfd, path); - var mode = varargs ? SYSCALLS.get() : 0; + var mode = varargs ? syscallGetVarargI() : 0; return FS.open(path, flags, mode).fd; } catch (e) { if (typeof FS == 'undefined' || !(e.name === 'ErrnoError')) throw e; @@ -3965,38 +3939,39 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } } - function _abort() { + var __abort_js = () => abort('native code called abort()'); - } - - function _emscripten_memcpy_big(dest, src, num) { - HEAPU8.copyWithin(dest, src, src + num); - } - function getHeapMax() { + var getHeapMax = () => // Stay one Wasm page short of 4GB: while e.g. Chrome is able to allocate // full 4GB Wasm memories, the size will wrap back to 0 bytes in Wasm side // for any code that deals with heap sizes, which would require special // casing all heap size related code to treat 0 specially. - return 2147483648; - } + 2147483648; + + var alignMemory = (size, alignment) => { + assert(alignment, "alignment argument is required"); + return Math.ceil(size / alignment) * alignment; + }; - function emscripten_realloc_buffer(size) { + var growMemory = (size) => { var b = wasmMemory.buffer; + var pages = ((size - b.byteLength + 65535) / 65536) | 0; try { // round size grow request up to wasm page size (fixed 64KB per spec) - wasmMemory.grow((size - b.byteLength + 65535) >>> 16); // .grow() takes a delta compared to the previous size + wasmMemory.grow(pages); // .grow() takes a delta compared to the previous size updateMemoryViews(); return 1 /*success*/; } catch(e) { - err('emscripten_realloc_buffer: Attempted to grow heap from ' + b.byteLength + ' bytes to ' + size + ' bytes, but got error: ' + e); + err(`growMemory: Attempted to grow heap from ${b.byteLength} bytes to ${size} bytes, but got error: ${e}`); } // implicit 0 return to save code size (caller will cast "undefined" into 0 // anyhow) - } - function _emscripten_resize_heap(requestedSize) { + }; + var _emscripten_resize_heap = (requestedSize) => { var oldSize = HEAPU8.length; - requestedSize = requestedSize >>> 0; + // With CAN_ADDRESS_2GB or MEMORY64, pointers are already unsigned. + requestedSize >>>= 0; // With multithreaded builds, races can happen (another thread might increase the size // in between), so return a failure, and let the caller retry. assert(requestedSize > oldSize); @@ -4022,12 +3997,10 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // (the wasm binary specifies it, so if we tried, we'd fail anyhow). var maxHeapSize = getHeapMax(); if (requestedSize > maxHeapSize) { - err('Cannot enlarge memory, asked to go up to ' + requestedSize + ' bytes, but the limit is ' + maxHeapSize + ' bytes!'); + err(`Cannot enlarge memory, requested ${requestedSize} bytes, but the limit is ${maxHeapSize} bytes!`); return false; } - let alignUp = (x, multiple) => x + (multiple - x % multiple) % multiple; - // Loop through potential heap size increases. If we attempt a too eager // reservation that fails, cut down on the attempted size and reserve a // smaller bump instead. (max 3 times, chosen somewhat arbitrarily) @@ -4036,17 +4009,17 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out // but limit overreserving (default to capping at +96MB overgrowth at most) overGrownHeapSize = Math.min(overGrownHeapSize, requestedSize + 100663296 ); - var newSize = Math.min(maxHeapSize, alignUp(Math.max(requestedSize, overGrownHeapSize), 65536)); + var newSize = Math.min(maxHeapSize, alignMemory(Math.max(requestedSize, overGrownHeapSize), 65536)); - var replacement = emscripten_realloc_buffer(newSize); + var replacement = growMemory(newSize); if (replacement) { return true; } } - err('Failed to grow the heap from ' + oldSize + ' bytes to ' + newSize + ' bytes, not enough memory!'); + err(`Failed to grow the heap from ${oldSize} bytes to ${newSize} bytes, not enough memory!`); return false; - } + }; function _fd_close(fd) { try { @@ -4061,22 +4034,22 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } /** @param {number=} offset */ - function doReadv(stream, iov, iovcnt, offset) { + var doReadv = (stream, iov, iovcnt, offset) => { var ret = 0; for (var i = 0; i < iovcnt; i++) { var ptr = HEAPU32[((iov)>>2)]; var len = HEAPU32[(((iov)+(4))>>2)]; iov += 8; - var curr = FS.read(stream, HEAP8,ptr, len, offset); + var curr = FS.read(stream, HEAP8, ptr, len, offset); if (curr < 0) return -1; ret += curr; if (curr < len) break; // nothing more to read - if (typeof offset !== 'undefined') { + if (typeof offset != 'undefined') { offset += curr; } } return ret; - } + }; function _fd_read(fd, iov, iovcnt, pnum) { try { @@ -4091,46 +4064,50 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } } - function convertI32PairToI53Checked(lo, hi) { - assert(lo == (lo >>> 0) || lo == (lo|0)); // lo should either be a i32 or a u32 - assert(hi === (hi|0)); // hi should be a i32 - return ((hi + 0x200000) >>> 0 < 0x400001 - !!lo) ? (lo >>> 0) + hi * 4294967296 : NaN; - } + var INT53_MAX = 9007199254740992; + var INT53_MIN = -9007199254740992; + var bigintToI53Checked = (num) => (num < INT53_MIN || num > INT53_MAX) ? NaN : Number(num); + function _fd_seek(fd, offset, whence, newOffset) { + offset = bigintToI53Checked(offset); - function _fd_seek(fd, offset_low, offset_high, whence, newOffset) { try { - var offset = convertI32PairToI53Checked(offset_low, offset_high); if (isNaN(offset)) return 61; + if (isNaN(offset)) return 61; var stream = SYSCALLS.getStreamFromFD(fd); FS.llseek(stream, offset, whence); - (tempI64 = [stream.position>>>0,(tempDouble=stream.position,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((newOffset)>>2)] = tempI64[0],HEAP32[(((newOffset)+(4))>>2)] = tempI64[1]); + HEAP64[((newOffset)>>3)] = BigInt(stream.position); if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state return 0; } catch (e) { if (typeof FS == 'undefined' || !(e.name === 'ErrnoError')) throw e; return e.errno; } + ; } /** @param {number=} offset */ - function doWritev(stream, iov, iovcnt, offset) { + var doWritev = (stream, iov, iovcnt, offset) => { var ret = 0; for (var i = 0; i < iovcnt; i++) { var ptr = HEAPU32[((iov)>>2)]; var len = HEAPU32[(((iov)+(4))>>2)]; iov += 8; - var curr = FS.write(stream, HEAP8,ptr, len, offset); + var curr = FS.write(stream, HEAP8, ptr, len, offset); if (curr < 0) return -1; ret += curr; - if (typeof offset !== 'undefined') { + if (curr < len) { + // No more space to write. + break; + } + if (typeof offset != 'undefined') { offset += curr; } } return ret; - } + }; function _fd_write(fd, iov, iovcnt, pnum) { try { @@ -4147,29 +4124,58 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out - function allocateUTF8(str) { + + var onInits = []; + var addOnInit = (cb) => onInits.push(cb); + + var wasmTableMirror = []; + + /** @type {WebAssembly.Table} */ + var wasmTable; + var getWasmTableEntry = (funcPtr) => { + var func = wasmTableMirror[funcPtr]; + if (!func) { + /** @suppress {checkTypes} */ + wasmTableMirror[funcPtr] = func = wasmTable.get(funcPtr); + } + /** @suppress {checkTypes} */ + assert(wasmTable.get(funcPtr) == func, 'JavaScript-side Wasm function table mirror is out of date!'); + return func; + }; + + + + + var stringToUTF8 = (str, outPtr, maxBytesToWrite) => { + assert(typeof maxBytesToWrite == 'number', 'stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!'); + return stringToUTF8Array(str, HEAPU8, outPtr, maxBytesToWrite); + }; + + /** @suppress {duplicate } */ + var stringToNewUTF8 = (str) => { var size = lengthBytesUTF8(str) + 1; var ret = _malloc(size); - if (ret) stringToUTF8Array(str, HEAP8, ret, size); + if (ret) stringToUTF8(str, ret, size); return ret; - } + }; + var allocateUTF8 = stringToNewUTF8; - function uleb128Encode(n, target) { + var uleb128Encode = (n, target) => { assert(n < 16384); if (n < 128) { target.push(n); } else { target.push((n % 128) | 128, n >> 7); } - } + }; - function sigToWasmTypes(sig) { + var sigToWasmTypes = (sig) => { var typeNames = { 'i': 'i32', - // i64 values will be split into two i32s. - 'j': 'i32', + 'j': 'i64', 'f': 'f32', 'd': 'f64', + 'e': 'externref', 'p': 'i32', }; var type = { @@ -4179,14 +4185,11 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out for (var i = 1; i < sig.length; ++i) { assert(sig[i] in typeNames, 'invalid signature char: ' + sig[i]); type.parameters.push(typeNames[sig[i]]); - if (sig[i] === 'j') { - type.parameters.push('i32'); - } } return type; - } + }; - function generateFuncType(sig, target){ + var generateFuncType = (sig, target) => { var sigRet = sig.slice(0, 1); var sigParam = sig.slice(1); var typeCodes = { @@ -4195,16 +4198,17 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out 'j': 0x7e, // i64 'f': 0x7d, // f32 'd': 0x7c, // f64 + 'e': 0x6f, // externref }; - + // Parameters, length + signatures target.push(0x60 /* form: func */); uleb128Encode(sigParam.length, target); - for (var i = 0; i < sigParam.length; ++i) { - assert(sigParam[i] in typeCodes, 'invalid signature char: ' + sigParam[i]); - target.push(typeCodes[sigParam[i]]); + for (var paramType of sigParam) { + assert(paramType in typeCodes, `invalid signature char: ${paramType}`); + target.push(typeCodes[paramType]); } - + // Return values, length + signatures // With no multi-return in MVP, either 0 (void) or 1 (anything else) if (sigRet == 'v') { @@ -4212,8 +4216,8 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } else { target.push(0x01, typeCodes[sigRet]); } - } - function convertJsFunctionToWasm(func, sig) { + }; + var convertJsFunctionToWasm = (func, sig) => { // If the type reflection proposal is available, use the new // "WebAssembly.Function" constructor. @@ -4238,7 +4242,7 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out ]; // Write the overall length of the type section followed by the body uleb128Encode(typeSectionBody.length, bytes); - bytes.push.apply(bytes, typeSectionBody); + bytes.push(...typeSectionBody); // The rest of the module is static bytes.push( @@ -4256,10 +4260,10 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out var instance = new WebAssembly.Instance(module, { 'e': { 'f': func } }); var wrappedFunc = instance.exports['f']; return wrappedFunc; - } + }; - function updateTableMap(offset, count) { + var updateTableMap = (offset, count) => { if (functionsInTableMap) { for (var i = offset; i < offset + count; i++) { var item = getWasmTableEntry(i); @@ -4269,27 +4273,30 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } } } - } + }; - var functionsInTableMap = undefined; - function getFunctionAddress(func) { + var functionsInTableMap; + + var getFunctionAddress = (func) => { // First, create the map if this is the first use. if (!functionsInTableMap) { functionsInTableMap = new WeakMap(); updateTableMap(0, wasmTable.length); } return functionsInTableMap.get(func) || 0; - } + }; var freeTableIndexes = []; - function getEmptyTableSlot() { + + var getEmptyTableSlot = () => { // Reuse a free index if there is one, otherwise grow. if (freeTableIndexes.length) { return freeTableIndexes.pop(); } // Grow the table try { + /** @suppress {checkTypes} */ wasmTable.grow(1); } catch (err) { if (!(err instanceof RangeError)) { @@ -4298,18 +4305,20 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out throw 'Unable to grow wasm table. Set ALLOW_TABLE_GROWTH.'; } return wasmTable.length - 1; - } + }; - function setWasmTableEntry(idx, func) { + var setWasmTableEntry = (idx, func) => { + /** @suppress {checkTypes} */ wasmTable.set(idx, func); - // With ABORT_ON_WASM_EXCEPTIONS wasmTable.get is overriden to return wrapped + // With ABORT_ON_WASM_EXCEPTIONS wasmTable.get is overridden to return wrapped // functions so we need to call it here to retrieve the potential wrapper correctly // instead of just storing 'func' directly into wasmTableMirror + /** @suppress {checkTypes} */ wasmTableMirror[idx] = wasmTable.get(idx); - } + }; /** @param {string=} sig */ - function addFunction(func, sig) { + var addFunction = (func, sig) => { assert(typeof func != 'undefined'); // Check if the function is already in the table, to ensure each function // gets a unique index. @@ -4338,19 +4347,32 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out functionsInTableMap.set(func, ret); return ret; - } + }; - function getCFunc(ident) { + var getCFunc = (ident) => { var func = Module['_' + ident]; // closure exported function assert(func, 'Cannot call unknown function ' + ident + ', make sure it is exported'); return func; - } - + }; - function writeArrayToMemory(array, buffer) { + var writeArrayToMemory = (array, buffer) => { assert(array.length >= 0, 'writeArrayToMemory array must have a length (should be an array or typed array)') HEAP8.set(array, buffer); - } + }; + + + + var stackAlloc = (sz) => __emscripten_stack_alloc(sz); + var stringToUTF8OnStack = (str) => { + var size = lengthBytesUTF8(str) + 1; + var ret = stackAlloc(size); + stringToUTF8(str, ret, size); + return ret; + }; + + + + /** * @param {string|null=} returnType @@ -4358,16 +4380,13 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out * @param {Arguments|Array=} args * @param {Object=} opts */ - function ccall(ident, returnType, argTypes, args, opts) { + var ccall = (ident, returnType, argTypes, args, opts) => { // For fast lookup of conversion functions var toC = { 'string': (str) => { var ret = 0; if (str !== null && str !== undefined && str !== 0) { // null string - // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' - var len = (str.length << 2) + 1; - ret = stackAlloc(len); - stringToUTF8(str, ret, len); + ret = stringToUTF8OnStack(str); } return ret; }, @@ -4380,7 +4399,6 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out function convertReturnValue(ret) { if (returnType === 'string') { - return UTF8ToString(ret); } if (returnType === 'boolean') return Boolean(ret); @@ -4402,7 +4420,7 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out } } } - var ret = func.apply(null, cArgs); + var ret = func(...cArgs); function onDone(ret) { if (stack !== 0) stackRestore(stack); return convertReturnValue(ret); @@ -4410,2546 +4428,2947 @@ function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out ret = onDone(ret); return ret; - } + }; /** * @param {string=} returnType * @param {Array=} argTypes * @param {Object=} opts */ - function cwrap(ident, returnType, argTypes, opts) { - return function() { - return ccall(ident, returnType, argTypes, arguments, opts); - } - } + var cwrap = (ident, returnType, argTypes, opts) => { + return (...args) => ccall(ident, returnType, argTypes, args, opts); + }; - var FSNode = /** @constructor */ function(parent, name, mode, rdev) { - if (!parent) { - parent = this; // root node sets parent to itself - } - this.parent = parent; - this.mount = parent.mount; - this.mounted = null; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.node_ops = {}; - this.stream_ops = {}; - this.rdev = rdev; - }; - var readMode = 292/*292*/ | 73/*73*/; - var writeMode = 146/*146*/; - Object.defineProperties(FSNode.prototype, { - read: { - get: /** @this{FSNode} */function() { - return (this.mode & readMode) === readMode; - }, - set: /** @this{FSNode} */function(val) { - val ? this.mode |= readMode : this.mode &= ~readMode; - } - }, - write: { - get: /** @this{FSNode} */function() { - return (this.mode & writeMode) === writeMode; - }, - set: /** @this{FSNode} */function(val) { - val ? this.mode |= writeMode : this.mode &= ~writeMode; - } - }, - isFolder: { - get: /** @this{FSNode} */function() { - return FS.isDir(this.mode); - } - }, - isDevice: { - get: /** @this{FSNode} */function() { - return FS.isChrdev(this.mode); - } - } - }); - FS.FSNode = FSNode; + var incrementExceptionRefcount = (ptr) => ___cxa_increment_exception_refcount(ptr); + + var decrementExceptionRefcount = (ptr) => ___cxa_decrement_exception_refcount(ptr); + + + + + + + var getExceptionMessageCommon = (ptr) => { + var sp = stackSave(); + var type_addr_addr = stackAlloc(4); + var message_addr_addr = stackAlloc(4); + ___get_exception_message(ptr, type_addr_addr, message_addr_addr); + var type_addr = HEAPU32[((type_addr_addr)>>2)]; + var message_addr = HEAPU32[((message_addr_addr)>>2)]; + var type = UTF8ToString(type_addr); + _free(type_addr); + var message; + if (message_addr) { + message = UTF8ToString(message_addr); + _free(message_addr); + } + stackRestore(sp); + return [type, message]; + }; + var getExceptionMessage = (ptr) => getExceptionMessageCommon(ptr); + + FS.createPreloadedFile = FS_createPreloadedFile; FS.staticInit();; -ERRNO_CODES = { - 'EPERM': 63, - 'ENOENT': 44, - 'ESRCH': 71, - 'EINTR': 27, - 'EIO': 29, - 'ENXIO': 60, - 'E2BIG': 1, - 'ENOEXEC': 45, - 'EBADF': 8, - 'ECHILD': 12, - 'EAGAIN': 6, - 'EWOULDBLOCK': 6, - 'ENOMEM': 48, - 'EACCES': 2, - 'EFAULT': 21, - 'ENOTBLK': 105, - 'EBUSY': 10, - 'EEXIST': 20, - 'EXDEV': 75, - 'ENODEV': 43, - 'ENOTDIR': 54, - 'EISDIR': 31, - 'EINVAL': 28, - 'ENFILE': 41, - 'EMFILE': 33, - 'ENOTTY': 59, - 'ETXTBSY': 74, - 'EFBIG': 22, - 'ENOSPC': 51, - 'ESPIPE': 70, - 'EROFS': 69, - 'EMLINK': 34, - 'EPIPE': 64, - 'EDOM': 18, - 'ERANGE': 68, - 'ENOMSG': 49, - 'EIDRM': 24, - 'ECHRNG': 106, - 'EL2NSYNC': 156, - 'EL3HLT': 107, - 'EL3RST': 108, - 'ELNRNG': 109, - 'EUNATCH': 110, - 'ENOCSI': 111, - 'EL2HLT': 112, - 'EDEADLK': 16, - 'ENOLCK': 46, - 'EBADE': 113, - 'EBADR': 114, - 'EXFULL': 115, - 'ENOANO': 104, - 'EBADRQC': 103, - 'EBADSLT': 102, - 'EDEADLOCK': 16, - 'EBFONT': 101, - 'ENOSTR': 100, - 'ENODATA': 116, - 'ETIME': 117, - 'ENOSR': 118, - 'ENONET': 119, - 'ENOPKG': 120, - 'EREMOTE': 121, - 'ENOLINK': 47, - 'EADV': 122, - 'ESRMNT': 123, - 'ECOMM': 124, - 'EPROTO': 65, - 'EMULTIHOP': 36, - 'EDOTDOT': 125, - 'EBADMSG': 9, - 'ENOTUNIQ': 126, - 'EBADFD': 127, - 'EREMCHG': 128, - 'ELIBACC': 129, - 'ELIBBAD': 130, - 'ELIBSCN': 131, - 'ELIBMAX': 132, - 'ELIBEXEC': 133, - 'ENOSYS': 52, - 'ENOTEMPTY': 55, - 'ENAMETOOLONG': 37, - 'ELOOP': 32, - 'EOPNOTSUPP': 138, - 'EPFNOSUPPORT': 139, - 'ECONNRESET': 15, - 'ENOBUFS': 42, - 'EAFNOSUPPORT': 5, - 'EPROTOTYPE': 67, - 'ENOTSOCK': 57, - 'ENOPROTOOPT': 50, - 'ESHUTDOWN': 140, - 'ECONNREFUSED': 14, - 'EADDRINUSE': 3, - 'ECONNABORTED': 13, - 'ENETUNREACH': 40, - 'ENETDOWN': 38, - 'ETIMEDOUT': 73, - 'EHOSTDOWN': 142, - 'EHOSTUNREACH': 23, - 'EINPROGRESS': 26, - 'EALREADY': 7, - 'EDESTADDRREQ': 17, - 'EMSGSIZE': 35, - 'EPROTONOSUPPORT': 66, - 'ESOCKTNOSUPPORT': 137, - 'EADDRNOTAVAIL': 4, - 'ENETRESET': 39, - 'EISCONN': 30, - 'ENOTCONN': 53, - 'ETOOMANYREFS': 141, - 'EUSERS': 136, - 'EDQUOT': 19, - 'ESTALE': 72, - 'ENOTSUP': 138, - 'ENOMEDIUM': 148, - 'EILSEQ': 25, - 'EOVERFLOW': 61, - 'ECANCELED': 11, - 'ENOTRECOVERABLE': 56, - 'EOWNERDEAD': 62, - 'ESTRPIPE': 135, - };; +// End JS library code + +// include: postlibrary.js +// This file is included after the automatically-generated JS library code +// but before the wasm module is created. + +{ + + // Begin ATMODULES hooks + if (Module['noExitRuntime']) noExitRuntime = Module['noExitRuntime']; +if (Module['preloadPlugins']) preloadPlugins = Module['preloadPlugins']; +if (Module['print']) out = Module['print']; +if (Module['printErr']) err = Module['printErr']; +if (Module['wasmBinary']) wasmBinary = Module['wasmBinary']; + // End ATMODULES hooks + + checkIncomingModuleAPI(); + + if (Module['arguments']) arguments_ = Module['arguments']; + if (Module['thisProgram']) thisProgram = Module['thisProgram']; + + // Assertions on removed incoming Module JS APIs. + assert(typeof Module['memoryInitializerPrefixURL'] == 'undefined', 'Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead'); + assert(typeof Module['pthreadMainPrefixURL'] == 'undefined', 'Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead'); + assert(typeof Module['cdInitializerPrefixURL'] == 'undefined', 'Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead'); + assert(typeof Module['filePackagePrefixURL'] == 'undefined', 'Module.filePackagePrefixURL option was removed, use Module.locateFile instead'); + assert(typeof Module['read'] == 'undefined', 'Module.read option was removed'); + assert(typeof Module['readAsync'] == 'undefined', 'Module.readAsync option was removed (modify readAsync in JS)'); + assert(typeof Module['readBinary'] == 'undefined', 'Module.readBinary option was removed (modify readBinary in JS)'); + assert(typeof Module['setWindowTitle'] == 'undefined', 'Module.setWindowTitle option was removed (modify emscripten_set_window_title in JS)'); + assert(typeof Module['TOTAL_MEMORY'] == 'undefined', 'Module.TOTAL_MEMORY has been renamed Module.INITIAL_MEMORY'); + assert(typeof Module['ENVIRONMENT'] == 'undefined', 'Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -sENVIRONMENT=web or -sENVIRONMENT=node)'); + assert(typeof Module['STACK_SIZE'] == 'undefined', 'STACK_SIZE can no longer be set at runtime. Use -sSTACK_SIZE at link time') + // If memory is defined in wasm, the user can't provide it, or set INITIAL_MEMORY + assert(typeof Module['wasmMemory'] == 'undefined', 'Use of `wasmMemory` detected. Use -sIMPORTED_MEMORY to define wasmMemory externally'); + assert(typeof Module['INITIAL_MEMORY'] == 'undefined', 'Detected runtime INITIAL_MEMORY setting. Use -sIMPORTED_MEMORY to define wasmMemory dynamically'); + +} + +// Begin runtime exports + Module['ccall'] = ccall; + Module['cwrap'] = cwrap; + Module['addFunction'] = addFunction; + Module['UTF8ToString'] = UTF8ToString; + Module['allocateUTF8'] = allocateUTF8; + var missingLibrarySymbols = [ + 'writeI53ToI64', + 'writeI53ToI64Clamped', + 'writeI53ToI64Signaling', + 'writeI53ToU64Clamped', + 'writeI53ToU64Signaling', + 'readI53FromI64', + 'readI53FromU64', + 'convertI32PairToI53', + 'convertI32PairToI53Checked', + 'convertU32PairToI53', + 'getTempRet0', + 'zeroMemory', + 'exitJS', + 'withStackSave', + 'inetPton4', + 'inetNtop4', + 'inetPton6', + 'inetNtop6', + 'readSockaddr', + 'writeSockaddr', + 'emscriptenLog', + 'readEmAsmArgs', + 'jstoi_q', + 'getExecutableName', + 'autoResumeAudioContext', + 'getDynCaller', + 'dynCall', + 'handleException', + 'keepRuntimeAlive', + 'runtimeKeepalivePush', + 'runtimeKeepalivePop', + 'callUserCallback', + 'maybeExit', + 'asmjsMangle', + 'HandleAllocator', + 'getNativeTypeSize', + 'addOnPostCtor', + 'addOnPreMain', + 'addOnExit', + 'STACK_SIZE', + 'STACK_ALIGN', + 'POINTER_SIZE', + 'ASSERTIONS', + 'removeFunction', + 'reallyNegative', + 'unSign', + 'strLen', + 'reSign', + 'formatString', + 'intArrayToString', + 'AsciiToString', + 'stringToAscii', + 'UTF16ToString', + 'stringToUTF16', + 'lengthBytesUTF16', + 'UTF32ToString', + 'stringToUTF32', + 'lengthBytesUTF32', + 'registerKeyEventCallback', + 'maybeCStringToJsString', + 'findEventTarget', + 'getBoundingClientRect', + 'fillMouseEventData', + 'registerMouseEventCallback', + 'registerWheelEventCallback', + 'registerUiEventCallback', + 'registerFocusEventCallback', + 'fillDeviceOrientationEventData', + 'registerDeviceOrientationEventCallback', + 'fillDeviceMotionEventData', + 'registerDeviceMotionEventCallback', + 'screenOrientation', + 'fillOrientationChangeEventData', + 'registerOrientationChangeEventCallback', + 'fillFullscreenChangeEventData', + 'registerFullscreenChangeEventCallback', + 'JSEvents_requestFullscreen', + 'JSEvents_resizeCanvasForFullscreen', + 'registerRestoreOldStyle', + 'hideEverythingExceptGivenElement', + 'restoreHiddenElements', + 'setLetterbox', + 'softFullscreenResizeWebGLRenderTarget', + 'doRequestFullscreen', + 'fillPointerlockChangeEventData', + 'registerPointerlockChangeEventCallback', + 'registerPointerlockErrorEventCallback', + 'requestPointerLock', + 'fillVisibilityChangeEventData', + 'registerVisibilityChangeEventCallback', + 'registerTouchEventCallback', + 'fillGamepadEventData', + 'registerGamepadEventCallback', + 'registerBeforeUnloadEventCallback', + 'fillBatteryEventData', + 'battery', + 'registerBatteryEventCallback', + 'setCanvasElementSize', + 'getCanvasElementSize', + 'jsStackTrace', + 'getCallstack', + 'convertPCtoSourceLocation', + 'getEnvStrings', + 'checkWasiClock', + 'wasiRightsToMuslOFlags', + 'wasiOFlagsToMuslOFlags', + 'safeSetTimeout', + 'setImmediateWrapped', + 'safeRequestAnimationFrame', + 'clearImmediateWrapped', + 'registerPostMainLoop', + 'registerPreMainLoop', + 'getPromise', + 'makePromise', + 'idsToPromises', + 'makePromiseCallback', + 'Browser_asyncPrepareDataCounter', + 'isLeapYear', + 'ydayFromDate', + 'arraySum', + 'addDays', + 'getSocketFromFD', + 'getSocketAddress', + 'FS_mkdirTree', + '_setNetworkCallback', + 'heapObjectForWebGLType', + 'toTypedArrayIndex', + 'webgl_enable_ANGLE_instanced_arrays', + 'webgl_enable_OES_vertex_array_object', + 'webgl_enable_WEBGL_draw_buffers', + 'webgl_enable_WEBGL_multi_draw', + 'webgl_enable_EXT_polygon_offset_clamp', + 'webgl_enable_EXT_clip_control', + 'webgl_enable_WEBGL_polygon_mode', + 'emscriptenWebGLGet', + 'computeUnpackAlignedImageSize', + 'colorChannelsInGlTextureFormat', + 'emscriptenWebGLGetTexPixelData', + 'emscriptenWebGLGetUniform', + 'webglGetUniformLocation', + 'webglPrepareUniformLocationsBeforeFirstUse', + 'webglGetLeftBracePos', + 'emscriptenWebGLGetVertexAttrib', + '__glGetActiveAttribOrUniform', + 'writeGLArray', + 'registerWebGlEventCallback', + 'runAndAbortIfError', + 'ALLOC_NORMAL', + 'ALLOC_STACK', + 'allocate', + 'writeStringToMemory', + 'writeAsciiToMemory', + 'demangle', + 'stackTrace', +]; +missingLibrarySymbols.forEach(missingLibrarySymbol) + + var unexportedSymbols = [ + 'run', + 'addRunDependency', + 'removeRunDependency', + 'out', + 'err', + 'callMain', + 'abort', + 'wasmMemory', + 'wasmExports', + 'HEAPF32', + 'HEAPF64', + 'HEAP8', + 'HEAPU8', + 'HEAP16', + 'HEAPU16', + 'HEAP32', + 'HEAPU32', + 'HEAP64', + 'HEAPU64', + 'writeStackCookie', + 'checkStackCookie', + 'INT53_MAX', + 'INT53_MIN', + 'bigintToI53Checked', + 'stackSave', + 'stackRestore', + 'stackAlloc', + 'setTempRet0', + 'ptrToString', + 'getHeapMax', + 'growMemory', + 'ENV', + 'ERRNO_CODES', + 'strError', + 'DNS', + 'Protocols', + 'Sockets', + 'timers', + 'warnOnce', + 'readEmAsmArgsArray', + 'asyncLoad', + 'alignMemory', + 'mmapAlloc', + 'wasmTable', + 'getUniqueRunDependency', + 'noExitRuntime', + 'addOnPreRun', + 'addOnInit', + 'addOnPostRun', + 'uleb128Encode', + 'sigToWasmTypes', + 'generateFuncType', + 'convertJsFunctionToWasm', + 'freeTableIndexes', + 'functionsInTableMap', + 'getEmptyTableSlot', + 'updateTableMap', + 'getFunctionAddress', + 'setValue', + 'getValue', + 'PATH', + 'PATH_FS', + 'UTF8Decoder', + 'UTF8ArrayToString', + 'stringToUTF8Array', + 'stringToUTF8', + 'lengthBytesUTF8', + 'intArrayFromString', + 'UTF16Decoder', + 'stringToNewUTF8', + 'stringToUTF8OnStack', + 'writeArrayToMemory', + 'JSEvents', + 'specialHTMLTargets', + 'findCanvasEventTarget', + 'currentFullscreenStrategy', + 'restoreOldWindowedStyle', + 'UNWIND_CACHE', + 'ExitStatus', + 'doReadv', + 'doWritev', + 'initRandomFill', + 'randomFill', + 'emSetImmediate', + 'emClearImmediate_deps', + 'emClearImmediate', + 'promiseMap', + 'uncaughtExceptionCount', + 'exceptionLast', + 'exceptionCaught', + 'ExceptionInfo', + 'findMatchingCatch', + 'getExceptionMessageCommon', + 'Browser', + 'requestFullscreen', + 'requestFullScreen', + 'setCanvasSize', + 'getUserMedia', + 'createContext', + 'getPreloadedImageData__data', + 'wget', + 'MONTH_DAYS_REGULAR', + 'MONTH_DAYS_LEAP', + 'MONTH_DAYS_REGULAR_CUMULATIVE', + 'MONTH_DAYS_LEAP_CUMULATIVE', + 'SYSCALLS', + 'preloadPlugins', + 'FS_createPreloadedFile', + 'FS_modeStringToFlags', + 'FS_getMode', + 'FS_stdin_getChar_buffer', + 'FS_stdin_getChar', + 'FS_unlink', + 'FS_createPath', + 'FS_createDevice', + 'FS_readFile', + 'FS', + 'FS_root', + 'FS_mounts', + 'FS_devices', + 'FS_streams', + 'FS_nextInode', + 'FS_nameTable', + 'FS_currentPath', + 'FS_initialized', + 'FS_ignorePermissions', + 'FS_filesystems', + 'FS_syncFSRequests', + 'FS_readFiles', + 'FS_lookupPath', + 'FS_getPath', + 'FS_hashName', + 'FS_hashAddNode', + 'FS_hashRemoveNode', + 'FS_lookupNode', + 'FS_createNode', + 'FS_destroyNode', + 'FS_isRoot', + 'FS_isMountpoint', + 'FS_isFile', + 'FS_isDir', + 'FS_isLink', + 'FS_isChrdev', + 'FS_isBlkdev', + 'FS_isFIFO', + 'FS_isSocket', + 'FS_flagsToPermissionString', + 'FS_nodePermissions', + 'FS_mayLookup', + 'FS_mayCreate', + 'FS_mayDelete', + 'FS_mayOpen', + 'FS_checkOpExists', + 'FS_nextfd', + 'FS_getStreamChecked', + 'FS_getStream', + 'FS_createStream', + 'FS_closeStream', + 'FS_dupStream', + 'FS_doSetAttr', + 'FS_chrdev_stream_ops', + 'FS_major', + 'FS_minor', + 'FS_makedev', + 'FS_registerDevice', + 'FS_getDevice', + 'FS_getMounts', + 'FS_syncfs', + 'FS_mount', + 'FS_unmount', + 'FS_lookup', + 'FS_mknod', + 'FS_statfs', + 'FS_statfsStream', + 'FS_statfsNode', + 'FS_create', + 'FS_mkdir', + 'FS_mkdev', + 'FS_symlink', + 'FS_rename', + 'FS_rmdir', + 'FS_readdir', + 'FS_readlink', + 'FS_stat', + 'FS_fstat', + 'FS_lstat', + 'FS_doChmod', + 'FS_chmod', + 'FS_lchmod', + 'FS_fchmod', + 'FS_doChown', + 'FS_chown', + 'FS_lchown', + 'FS_fchown', + 'FS_doTruncate', + 'FS_truncate', + 'FS_ftruncate', + 'FS_utime', + 'FS_open', + 'FS_close', + 'FS_isClosed', + 'FS_llseek', + 'FS_read', + 'FS_write', + 'FS_mmap', + 'FS_msync', + 'FS_ioctl', + 'FS_writeFile', + 'FS_cwd', + 'FS_chdir', + 'FS_createDefaultDirectories', + 'FS_createDefaultDevices', + 'FS_createSpecialDirectories', + 'FS_createStandardStreams', + 'FS_staticInit', + 'FS_init', + 'FS_quit', + 'FS_findObject', + 'FS_analyzePath', + 'FS_createFile', + 'FS_createDataFile', + 'FS_forceLoadFile', + 'FS_createLazyFile', + 'FS_absolutePath', + 'FS_createFolder', + 'FS_createLink', + 'FS_joinPath', + 'FS_mmapAlloc', + 'FS_standardizePath', + 'MEMFS', + 'TTY', + 'PIPEFS', + 'SOCKFS', + 'tempFixedLengthArray', + 'miniTempWebGLFloatBuffers', + 'miniTempWebGLIntBuffers', + 'GL', + 'AL', + 'GLUT', + 'EGL', + 'GLEW', + 'IDBStore', + 'SDL', + 'SDL_gfx', + 'allocateUTF8OnStack', + 'print', + 'printErr', + 'jstoi_s', +]; +unexportedSymbols.forEach(unexportedRuntimeSymbol); + + // End runtime exports + // Begin JS library exports + Module['incrementExceptionRefcount'] = incrementExceptionRefcount; + Module['decrementExceptionRefcount'] = decrementExceptionRefcount; + Module['getExceptionMessage'] = getExceptionMessage; + // End JS library exports + +// end include: postlibrary.js + function checkIncomingModuleAPI() { ignoredModuleProp('fetchSettings'); } + +// Imports from the Wasm binary. +var _fflush = makeInvalidEarlyAccess('_fflush'); +var _webidl_free = Module['_webidl_free'] = makeInvalidEarlyAccess('_webidl_free'); +var _free = Module['_free'] = makeInvalidEarlyAccess('_free'); +var _webidl_malloc = Module['_webidl_malloc'] = makeInvalidEarlyAccess('_webidl_malloc'); +var _malloc = Module['_malloc'] = makeInvalidEarlyAccess('_malloc'); +var _emscripten_bind_VoidPtr___destroy___0 = Module['_emscripten_bind_VoidPtr___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_VoidPtr___destroy___0'); +var _emscripten_bind_DoublePtr___destroy___0 = Module['_emscripten_bind_DoublePtr___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_DoublePtr___destroy___0'); +var _emscripten_bind_BoolVector_BoolVector_0 = Module['_emscripten_bind_BoolVector_BoolVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_BoolVector_0'); +var _emscripten_bind_BoolVector_BoolVector_1 = Module['_emscripten_bind_BoolVector_BoolVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_BoolVector_1'); +var _emscripten_bind_BoolVector_resize_1 = Module['_emscripten_bind_BoolVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_resize_1'); +var _emscripten_bind_BoolVector_get_1 = Module['_emscripten_bind_BoolVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_get_1'); +var _emscripten_bind_BoolVector_set_2 = Module['_emscripten_bind_BoolVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_set_2'); +var _emscripten_bind_BoolVector_size_0 = Module['_emscripten_bind_BoolVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_size_0'); +var _emscripten_bind_BoolVector___destroy___0 = Module['_emscripten_bind_BoolVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector___destroy___0'); +var _emscripten_bind_CharVector_CharVector_0 = Module['_emscripten_bind_CharVector_CharVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_CharVector_0'); +var _emscripten_bind_CharVector_CharVector_1 = Module['_emscripten_bind_CharVector_CharVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_CharVector_1'); +var _emscripten_bind_CharVector_resize_1 = Module['_emscripten_bind_CharVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_resize_1'); +var _emscripten_bind_CharVector_get_1 = Module['_emscripten_bind_CharVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_get_1'); +var _emscripten_bind_CharVector_set_2 = Module['_emscripten_bind_CharVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_set_2'); +var _emscripten_bind_CharVector_size_0 = Module['_emscripten_bind_CharVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_size_0'); +var _emscripten_bind_CharVector___destroy___0 = Module['_emscripten_bind_CharVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector___destroy___0'); +var _emscripten_bind_IntVector_IntVector_0 = Module['_emscripten_bind_IntVector_IntVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_IntVector_0'); +var _emscripten_bind_IntVector_IntVector_1 = Module['_emscripten_bind_IntVector_IntVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_IntVector_1'); +var _emscripten_bind_IntVector_resize_1 = Module['_emscripten_bind_IntVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_resize_1'); +var _emscripten_bind_IntVector_get_1 = Module['_emscripten_bind_IntVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_get_1'); +var _emscripten_bind_IntVector_set_2 = Module['_emscripten_bind_IntVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_set_2'); +var _emscripten_bind_IntVector_size_0 = Module['_emscripten_bind_IntVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_size_0'); +var _emscripten_bind_IntVector___destroy___0 = Module['_emscripten_bind_IntVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector___destroy___0'); +var _emscripten_bind_DoubleVector_DoubleVector_0 = Module['_emscripten_bind_DoubleVector_DoubleVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_DoubleVector_0'); +var _emscripten_bind_DoubleVector_DoubleVector_1 = Module['_emscripten_bind_DoubleVector_DoubleVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_DoubleVector_1'); +var _emscripten_bind_DoubleVector_resize_1 = Module['_emscripten_bind_DoubleVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_resize_1'); +var _emscripten_bind_DoubleVector_get_1 = Module['_emscripten_bind_DoubleVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_get_1'); +var _emscripten_bind_DoubleVector_set_2 = Module['_emscripten_bind_DoubleVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_set_2'); +var _emscripten_bind_DoubleVector_size_0 = Module['_emscripten_bind_DoubleVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_size_0'); +var _emscripten_bind_DoubleVector___destroy___0 = Module['_emscripten_bind_DoubleVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector___destroy___0'); +var _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0'); +var _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1'); +var _emscripten_bind_SpeciesMasterTableRecordVector_resize_1 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_resize_1'); +var _emscripten_bind_SpeciesMasterTableRecordVector_get_1 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_get_1'); +var _emscripten_bind_SpeciesMasterTableRecordVector_set_2 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_set_2'); +var _emscripten_bind_SpeciesMasterTableRecordVector_size_0 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_size_0'); +var _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0 = Module['_emscripten_bind_SpeciesMasterTableRecordVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector___destroy___0'); +var _emscripten_bind_AreaUnits_toBaseUnits_2 = Module['_emscripten_bind_AreaUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_AreaUnits_toBaseUnits_2'); +var _emscripten_bind_AreaUnits_fromBaseUnits_2 = Module['_emscripten_bind_AreaUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_AreaUnits_fromBaseUnits_2'); +var _emscripten_bind_AreaUnits___destroy___0 = Module['_emscripten_bind_AreaUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_AreaUnits___destroy___0'); +var _emscripten_bind_BasalAreaUnits_toBaseUnits_2 = Module['_emscripten_bind_BasalAreaUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_BasalAreaUnits_toBaseUnits_2'); +var _emscripten_bind_BasalAreaUnits_fromBaseUnits_2 = Module['_emscripten_bind_BasalAreaUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_BasalAreaUnits_fromBaseUnits_2'); +var _emscripten_bind_BasalAreaUnits___destroy___0 = Module['_emscripten_bind_BasalAreaUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_BasalAreaUnits___destroy___0'); +var _emscripten_bind_FractionUnits_toBaseUnits_2 = Module['_emscripten_bind_FractionUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_FractionUnits_toBaseUnits_2'); +var _emscripten_bind_FractionUnits_fromBaseUnits_2 = Module['_emscripten_bind_FractionUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_FractionUnits_fromBaseUnits_2'); +var _emscripten_bind_FractionUnits___destroy___0 = Module['_emscripten_bind_FractionUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_FractionUnits___destroy___0'); +var _emscripten_bind_LengthUnits_toBaseUnits_2 = Module['_emscripten_bind_LengthUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_LengthUnits_toBaseUnits_2'); +var _emscripten_bind_LengthUnits_fromBaseUnits_2 = Module['_emscripten_bind_LengthUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_LengthUnits_fromBaseUnits_2'); +var _emscripten_bind_LengthUnits___destroy___0 = Module['_emscripten_bind_LengthUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_LengthUnits___destroy___0'); +var _emscripten_bind_LoadingUnits_toBaseUnits_2 = Module['_emscripten_bind_LoadingUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_LoadingUnits_toBaseUnits_2'); +var _emscripten_bind_LoadingUnits_fromBaseUnits_2 = Module['_emscripten_bind_LoadingUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_LoadingUnits_fromBaseUnits_2'); +var _emscripten_bind_LoadingUnits___destroy___0 = Module['_emscripten_bind_LoadingUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_LoadingUnits___destroy___0'); +var _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2 = Module['_emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2'); +var _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2 = Module['_emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2'); +var _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0 = Module['_emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0'); +var _emscripten_bind_SpeedUnits_toBaseUnits_2 = Module['_emscripten_bind_SpeedUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SpeedUnits_toBaseUnits_2'); +var _emscripten_bind_SpeedUnits_fromBaseUnits_2 = Module['_emscripten_bind_SpeedUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SpeedUnits_fromBaseUnits_2'); +var _emscripten_bind_SpeedUnits___destroy___0 = Module['_emscripten_bind_SpeedUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeedUnits___destroy___0'); +var _emscripten_bind_PressureUnits_toBaseUnits_2 = Module['_emscripten_bind_PressureUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_PressureUnits_toBaseUnits_2'); +var _emscripten_bind_PressureUnits_fromBaseUnits_2 = Module['_emscripten_bind_PressureUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_PressureUnits_fromBaseUnits_2'); +var _emscripten_bind_PressureUnits___destroy___0 = Module['_emscripten_bind_PressureUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_PressureUnits___destroy___0'); +var _emscripten_bind_SlopeUnits_toBaseUnits_2 = Module['_emscripten_bind_SlopeUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SlopeUnits_toBaseUnits_2'); +var _emscripten_bind_SlopeUnits_fromBaseUnits_2 = Module['_emscripten_bind_SlopeUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SlopeUnits_fromBaseUnits_2'); +var _emscripten_bind_SlopeUnits___destroy___0 = Module['_emscripten_bind_SlopeUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SlopeUnits___destroy___0'); +var _emscripten_bind_DensityUnits_toBaseUnits_2 = Module['_emscripten_bind_DensityUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_DensityUnits_toBaseUnits_2'); +var _emscripten_bind_DensityUnits_fromBaseUnits_2 = Module['_emscripten_bind_DensityUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_DensityUnits_fromBaseUnits_2'); +var _emscripten_bind_DensityUnits___destroy___0 = Module['_emscripten_bind_DensityUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_DensityUnits___destroy___0'); +var _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2 = Module['_emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2'); +var _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2 = Module['_emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2'); +var _emscripten_bind_HeatOfCombustionUnits___destroy___0 = Module['_emscripten_bind_HeatOfCombustionUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_HeatOfCombustionUnits___destroy___0'); +var _emscripten_bind_HeatSinkUnits_toBaseUnits_2 = Module['_emscripten_bind_HeatSinkUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSinkUnits_toBaseUnits_2'); +var _emscripten_bind_HeatSinkUnits_fromBaseUnits_2 = Module['_emscripten_bind_HeatSinkUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSinkUnits_fromBaseUnits_2'); +var _emscripten_bind_HeatSinkUnits___destroy___0 = Module['_emscripten_bind_HeatSinkUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSinkUnits___destroy___0'); +var _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2 = Module['_emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2'); +var _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2 = Module['_emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2'); +var _emscripten_bind_HeatPerUnitAreaUnits___destroy___0 = Module['_emscripten_bind_HeatPerUnitAreaUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_HeatPerUnitAreaUnits___destroy___0'); +var _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2 = Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2'); +var _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2 = Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2'); +var _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0 = Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0'); +var _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2 = Module['_emscripten_bind_FirelineIntensityUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_FirelineIntensityUnits_toBaseUnits_2'); +var _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2 = Module['_emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2'); +var _emscripten_bind_FirelineIntensityUnits___destroy___0 = Module['_emscripten_bind_FirelineIntensityUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_FirelineIntensityUnits___destroy___0'); +var _emscripten_bind_TemperatureUnits_toBaseUnits_2 = Module['_emscripten_bind_TemperatureUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_TemperatureUnits_toBaseUnits_2'); +var _emscripten_bind_TemperatureUnits_fromBaseUnits_2 = Module['_emscripten_bind_TemperatureUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_TemperatureUnits_fromBaseUnits_2'); +var _emscripten_bind_TemperatureUnits___destroy___0 = Module['_emscripten_bind_TemperatureUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_TemperatureUnits___destroy___0'); +var _emscripten_bind_TimeUnits_toBaseUnits_2 = Module['_emscripten_bind_TimeUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_TimeUnits_toBaseUnits_2'); +var _emscripten_bind_TimeUnits_fromBaseUnits_2 = Module['_emscripten_bind_TimeUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_TimeUnits_fromBaseUnits_2'); +var _emscripten_bind_TimeUnits___destroy___0 = Module['_emscripten_bind_TimeUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_TimeUnits___destroy___0'); +var _emscripten_bind_FireSize_getBackingSpreadRate_1 = Module['_emscripten_bind_FireSize_getBackingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getBackingSpreadRate_1'); +var _emscripten_bind_FireSize_getEccentricity_0 = Module['_emscripten_bind_FireSize_getEccentricity_0'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getEccentricity_0'); +var _emscripten_bind_FireSize_getEllipticalA_3 = Module['_emscripten_bind_FireSize_getEllipticalA_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getEllipticalA_3'); +var _emscripten_bind_FireSize_getEllipticalB_3 = Module['_emscripten_bind_FireSize_getEllipticalB_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getEllipticalB_3'); +var _emscripten_bind_FireSize_getEllipticalC_3 = Module['_emscripten_bind_FireSize_getEllipticalC_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getEllipticalC_3'); +var _emscripten_bind_FireSize_getFireArea_4 = Module['_emscripten_bind_FireSize_getFireArea_4'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFireArea_4'); +var _emscripten_bind_FireSize_getFireLength_3 = Module['_emscripten_bind_FireSize_getFireLength_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFireLength_3'); +var _emscripten_bind_FireSize_getFireLengthToWidthRatio_0 = Module['_emscripten_bind_FireSize_getFireLengthToWidthRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFireLengthToWidthRatio_0'); +var _emscripten_bind_FireSize_getFirePerimeter_4 = Module['_emscripten_bind_FireSize_getFirePerimeter_4'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFirePerimeter_4'); +var _emscripten_bind_FireSize_getFlankingSpreadRate_1 = Module['_emscripten_bind_FireSize_getFlankingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFlankingSpreadRate_1'); +var _emscripten_bind_FireSize_getHeadingToBackingRatio_0 = Module['_emscripten_bind_FireSize_getHeadingToBackingRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getHeadingToBackingRatio_0'); +var _emscripten_bind_FireSize_getMaxFireWidth_3 = Module['_emscripten_bind_FireSize_getMaxFireWidth_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getMaxFireWidth_3'); +var _emscripten_bind_FireSize_calculateFireBasicDimensions_5 = Module['_emscripten_bind_FireSize_calculateFireBasicDimensions_5'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_calculateFireBasicDimensions_5'); +var _emscripten_bind_FireSize___destroy___0 = Module['_emscripten_bind_FireSize___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize___destroy___0'); +var _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0 = Module['_emscripten_bind_SIGContainAdapter_SIGContainAdapter_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_SIGContainAdapter_0'); +var _emscripten_bind_SIGContainAdapter_getContainmentStatus_0 = Module['_emscripten_bind_SIGContainAdapter_getContainmentStatus_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getContainmentStatus_0'); +var _emscripten_bind_SIGContainAdapter_getFirePerimeterX_0 = Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0'); +var _emscripten_bind_SIGContainAdapter_getFirePerimeterY_0 = Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0'); +var _emscripten_bind_SIGContainAdapter_getAttackDistance_1 = Module['_emscripten_bind_SIGContainAdapter_getAttackDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getAttackDistance_1'); +var _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1'); +var _emscripten_bind_SIGContainAdapter_getFinalCost_0 = Module['_emscripten_bind_SIGContainAdapter_getFinalCost_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalCost_0'); +var _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1'); +var _emscripten_bind_SIGContainAdapter_getFinalFireSize_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalFireSize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalFireSize_1'); +var _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1'); +var _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalProductionRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalProductionRate_1'); +var _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0 = Module['_emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0'); +var _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0 = Module['_emscripten_bind_SIGContainAdapter_getFireBackAtReport_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireBackAtReport_0'); +var _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0 = Module['_emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0'); +var _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0 = Module['_emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0'); +var _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1 = Module['_emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1'); +var _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0 = Module['_emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0'); +var _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1 = Module['_emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1'); +var _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1 = Module['_emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1'); +var _emscripten_bind_SIGContainAdapter_getReportSize_1 = Module['_emscripten_bind_SIGContainAdapter_getReportSize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getReportSize_1'); +var _emscripten_bind_SIGContainAdapter_getReportRate_1 = Module['_emscripten_bind_SIGContainAdapter_getReportRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getReportRate_1'); +var _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1 = Module['_emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1'); +var _emscripten_bind_SIGContainAdapter_getTactic_0 = Module['_emscripten_bind_SIGContainAdapter_getTactic_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getTactic_0'); +var _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0 = Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0'); +var _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1 = Module['_emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1'); +var _emscripten_bind_SIGContainAdapter_removeResourceAt_1 = Module['_emscripten_bind_SIGContainAdapter_removeResourceAt_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_removeResourceAt_1'); +var _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1 = Module['_emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1'); +var _emscripten_bind_SIGContainAdapter_addResource_9 = Module['_emscripten_bind_SIGContainAdapter_addResource_9'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_addResource_9'); +var _emscripten_bind_SIGContainAdapter_doContainRun_0 = Module['_emscripten_bind_SIGContainAdapter_doContainRun_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_doContainRun_0'); +var _emscripten_bind_SIGContainAdapter_removeAllResources_0 = Module['_emscripten_bind_SIGContainAdapter_removeAllResources_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_removeAllResources_0'); +var _emscripten_bind_SIGContainAdapter_setAttackDistance_2 = Module['_emscripten_bind_SIGContainAdapter_setAttackDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setAttackDistance_2'); +var _emscripten_bind_SIGContainAdapter_setContainMode_1 = Module['_emscripten_bind_SIGContainAdapter_setContainMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setContainMode_1'); +var _emscripten_bind_SIGContainAdapter_setFireStartTime_1 = Module['_emscripten_bind_SIGContainAdapter_setFireStartTime_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setFireStartTime_1'); +var _emscripten_bind_SIGContainAdapter_setLwRatio_1 = Module['_emscripten_bind_SIGContainAdapter_setLwRatio_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setLwRatio_1'); +var _emscripten_bind_SIGContainAdapter_setMaxFireSize_1 = Module['_emscripten_bind_SIGContainAdapter_setMaxFireSize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setMaxFireSize_1'); +var _emscripten_bind_SIGContainAdapter_setMaxFireTime_1 = Module['_emscripten_bind_SIGContainAdapter_setMaxFireTime_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setMaxFireTime_1'); +var _emscripten_bind_SIGContainAdapter_setMaxSteps_1 = Module['_emscripten_bind_SIGContainAdapter_setMaxSteps_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setMaxSteps_1'); +var _emscripten_bind_SIGContainAdapter_setMinSteps_1 = Module['_emscripten_bind_SIGContainAdapter_setMinSteps_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setMinSteps_1'); +var _emscripten_bind_SIGContainAdapter_setReportRate_2 = Module['_emscripten_bind_SIGContainAdapter_setReportRate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setReportRate_2'); +var _emscripten_bind_SIGContainAdapter_setReportSize_2 = Module['_emscripten_bind_SIGContainAdapter_setReportSize_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setReportSize_2'); +var _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2 = Module['_emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2'); +var _emscripten_bind_SIGContainAdapter_setResourceDuration_2 = Module['_emscripten_bind_SIGContainAdapter_setResourceDuration_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setResourceDuration_2'); +var _emscripten_bind_SIGContainAdapter_setRetry_1 = Module['_emscripten_bind_SIGContainAdapter_setRetry_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setRetry_1'); +var _emscripten_bind_SIGContainAdapter_setTactic_1 = Module['_emscripten_bind_SIGContainAdapter_setTactic_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setTactic_1'); +var _emscripten_bind_SIGContainAdapter___destroy___0 = Module['_emscripten_bind_SIGContainAdapter___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter___destroy___0'); +var _emscripten_bind_SIGIgnite_SIGIgnite_0 = Module['_emscripten_bind_SIGIgnite_SIGIgnite_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_SIGIgnite_0'); +var _emscripten_bind_SIGIgnite_initializeMembers_0 = Module['_emscripten_bind_SIGIgnite_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_initializeMembers_0'); +var _emscripten_bind_SIGIgnite_getFuelBedType_0 = Module['_emscripten_bind_SIGIgnite_getFuelBedType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getFuelBedType_0'); +var _emscripten_bind_SIGIgnite_getLightningChargeType_0 = Module['_emscripten_bind_SIGIgnite_getLightningChargeType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getLightningChargeType_0'); +var _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0 = Module['_emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0'); +var _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1 = Module['_emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1'); +var _emscripten_bind_SIGIgnite_setAirTemperature_2 = Module['_emscripten_bind_SIGIgnite_setAirTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setAirTemperature_2'); +var _emscripten_bind_SIGIgnite_setDuffDepth_2 = Module['_emscripten_bind_SIGIgnite_setDuffDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setDuffDepth_2'); +var _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1 = Module['_emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1'); +var _emscripten_bind_SIGIgnite_setLightningChargeType_1 = Module['_emscripten_bind_SIGIgnite_setLightningChargeType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setLightningChargeType_1'); +var _emscripten_bind_SIGIgnite_setMoistureHundredHour_2 = Module['_emscripten_bind_SIGIgnite_setMoistureHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setMoistureHundredHour_2'); +var _emscripten_bind_SIGIgnite_setMoistureOneHour_2 = Module['_emscripten_bind_SIGIgnite_setMoistureOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setMoistureOneHour_2'); +var _emscripten_bind_SIGIgnite_setSunShade_2 = Module['_emscripten_bind_SIGIgnite_setSunShade_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setSunShade_2'); +var _emscripten_bind_SIGIgnite_updateIgniteInputs_11 = Module['_emscripten_bind_SIGIgnite_updateIgniteInputs_11'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_updateIgniteInputs_11'); +var _emscripten_bind_SIGIgnite_getAirTemperature_1 = Module['_emscripten_bind_SIGIgnite_getAirTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getAirTemperature_1'); +var _emscripten_bind_SIGIgnite_getDuffDepth_1 = Module['_emscripten_bind_SIGIgnite_getDuffDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getDuffDepth_1'); +var _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1 = Module['_emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1'); +var _emscripten_bind_SIGIgnite_getFuelTemperature_1 = Module['_emscripten_bind_SIGIgnite_getFuelTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getFuelTemperature_1'); +var _emscripten_bind_SIGIgnite_getMoistureHundredHour_1 = Module['_emscripten_bind_SIGIgnite_getMoistureHundredHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getMoistureHundredHour_1'); +var _emscripten_bind_SIGIgnite_getMoistureOneHour_1 = Module['_emscripten_bind_SIGIgnite_getMoistureOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getMoistureOneHour_1'); +var _emscripten_bind_SIGIgnite_getSunShade_1 = Module['_emscripten_bind_SIGIgnite_getSunShade_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getSunShade_1'); +var _emscripten_bind_SIGIgnite_isFuelDepthNeeded_0 = Module['_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0'); +var _emscripten_bind_SIGIgnite___destroy___0 = Module['_emscripten_bind_SIGIgnite___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite___destroy___0'); +var _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0 = Module['_emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0'); +var _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1 = Module['_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1'); +var _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1 = Module['_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1'); +var _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0 = Module['_emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1'); +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1'); +var _emscripten_bind_SIGMoistureScenarios___destroy___0 = Module['_emscripten_bind_SIGMoistureScenarios___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios___destroy___0'); +var _emscripten_bind_SIGSpot_SIGSpot_0 = Module['_emscripten_bind_SIGSpot_SIGSpot_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_SIGSpot_0'); +var _emscripten_bind_SIGSpot_getDownwindCanopyMode_0 = Module['_emscripten_bind_SIGSpot_getDownwindCanopyMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getDownwindCanopyMode_0'); +var _emscripten_bind_SIGSpot_getLocation_0 = Module['_emscripten_bind_SIGSpot_getLocation_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getLocation_0'); +var _emscripten_bind_SIGSpot_getTreeSpecies_0 = Module['_emscripten_bind_SIGSpot_getTreeSpecies_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getTreeSpecies_0'); +var _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1 = Module['_emscripten_bind_SIGSpot_getBurningPileFlameHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getBurningPileFlameHeight_1'); +var _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1 = Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1'); +var _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1 = Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1'); +var _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1'); +var _emscripten_bind_SIGSpot_getDBH_1 = Module['_emscripten_bind_SIGSpot_getDBH_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getDBH_1'); +var _emscripten_bind_SIGSpot_getDownwindCoverHeight_1 = Module['_emscripten_bind_SIGSpot_getDownwindCoverHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getDownwindCoverHeight_1'); +var _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1'); +var _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1'); +var _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0 = Module['_emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0'); +var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1 = Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1'); +var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1 = Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1'); +var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1'); +var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1 = Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1'); +var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1 = Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1'); +var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1'); +var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1 = Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1'); +var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1 = Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1'); +var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1'); +var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1 = Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1'); +var _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1 = Module['_emscripten_bind_SIGSpot_getRidgeToValleyDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getRidgeToValleyDistance_1'); +var _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1 = Module['_emscripten_bind_SIGSpot_getRidgeToValleyElevation_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getRidgeToValleyElevation_1'); +var _emscripten_bind_SIGSpot_getSurfaceFlameLength_1 = Module['_emscripten_bind_SIGSpot_getSurfaceFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getSurfaceFlameLength_1'); +var _emscripten_bind_SIGSpot_getTreeHeight_1 = Module['_emscripten_bind_SIGSpot_getTreeHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getTreeHeight_1'); +var _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1 = Module['_emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1'); +var _emscripten_bind_SIGSpot_getTorchingTrees_0 = Module['_emscripten_bind_SIGSpot_getTorchingTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getTorchingTrees_0'); +var _emscripten_bind_SIGSpot_calculateAll_0 = Module['_emscripten_bind_SIGSpot_calculateAll_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_calculateAll_0'); +var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0 = Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0'); +var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0 = Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0'); +var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0 = Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0'); +var _emscripten_bind_SIGSpot_initializeMembers_0 = Module['_emscripten_bind_SIGSpot_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_initializeMembers_0'); +var _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2 = Module['_emscripten_bind_SIGSpot_setActiveCrownFlameLength_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setActiveCrownFlameLength_2'); +var _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2 = Module['_emscripten_bind_SIGSpot_setBurningPileFlameHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setBurningPileFlameHeight_2'); +var _emscripten_bind_SIGSpot_setDBH_2 = Module['_emscripten_bind_SIGSpot_setDBH_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setDBH_2'); +var _emscripten_bind_SIGSpot_setDownwindCanopyMode_1 = Module['_emscripten_bind_SIGSpot_setDownwindCanopyMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setDownwindCanopyMode_1'); +var _emscripten_bind_SIGSpot_setDownwindCoverHeight_2 = Module['_emscripten_bind_SIGSpot_setDownwindCoverHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setDownwindCoverHeight_2'); +var _emscripten_bind_SIGSpot_setFireType_1 = Module['_emscripten_bind_SIGSpot_setFireType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setFireType_1'); +var _emscripten_bind_SIGSpot_setFlameLength_2 = Module['_emscripten_bind_SIGSpot_setFlameLength_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setFlameLength_2'); +var _emscripten_bind_SIGSpot_setFirelineIntensity_2 = Module['_emscripten_bind_SIGSpot_setFirelineIntensity_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setFirelineIntensity_2'); +var _emscripten_bind_SIGSpot_setLocation_1 = Module['_emscripten_bind_SIGSpot_setLocation_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setLocation_1'); +var _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2 = Module['_emscripten_bind_SIGSpot_setRidgeToValleyDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setRidgeToValleyDistance_2'); +var _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2 = Module['_emscripten_bind_SIGSpot_setRidgeToValleyElevation_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setRidgeToValleyElevation_2'); +var _emscripten_bind_SIGSpot_setTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_setTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setTorchingTrees_1'); +var _emscripten_bind_SIGSpot_setTreeHeight_2 = Module['_emscripten_bind_SIGSpot_setTreeHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setTreeHeight_2'); +var _emscripten_bind_SIGSpot_setTreeSpecies_1 = Module['_emscripten_bind_SIGSpot_setTreeSpecies_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setTreeSpecies_1'); +var _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2 = Module['_emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2'); +var _emscripten_bind_SIGSpot_setWindSpeed_2 = Module['_emscripten_bind_SIGSpot_setWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setWindSpeed_2'); +var _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3 = Module['_emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3'); +var _emscripten_bind_SIGSpot_setWindHeightInputMode_1 = Module['_emscripten_bind_SIGSpot_setWindHeightInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setWindHeightInputMode_1'); +var _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12 = Module['_emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12'); +var _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12 = Module['_emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12'); +var _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16 = Module['_emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16'); +var _emscripten_bind_SIGSpot___destroy___0 = Module['_emscripten_bind_SIGSpot___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot___destroy___0'); +var _emscripten_bind_SIGFuelModels_SIGFuelModels_0 = Module['_emscripten_bind_SIGFuelModels_SIGFuelModels_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_SIGFuelModels_0'); +var _emscripten_bind_SIGFuelModels_SIGFuelModels_1 = Module['_emscripten_bind_SIGFuelModels_SIGFuelModels_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_SIGFuelModels_1'); +var _emscripten_bind_SIGFuelModels_equal_1 = Module['_emscripten_bind_SIGFuelModels_equal_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_equal_1'); +var _emscripten_bind_SIGFuelModels_clearCustomFuelModel_1 = Module['_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1'); +var _emscripten_bind_SIGFuelModels_getIsDynamic_1 = Module['_emscripten_bind_SIGFuelModels_getIsDynamic_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getIsDynamic_1'); +var _emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1 = Module['_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1'); +var _emscripten_bind_SIGFuelModels_isFuelModelDefined_1 = Module['_emscripten_bind_SIGFuelModels_isFuelModelDefined_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_isFuelModelDefined_1'); +var _emscripten_bind_SIGFuelModels_isFuelModelReserved_1 = Module['_emscripten_bind_SIGFuelModels_isFuelModelReserved_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_isFuelModelReserved_1'); +var _emscripten_bind_SIGFuelModels_setCustomFuelModel_21 = Module['_emscripten_bind_SIGFuelModels_setCustomFuelModel_21'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_setCustomFuelModel_21'); +var _emscripten_bind_SIGFuelModels_getFuelCode_1 = Module['_emscripten_bind_SIGFuelModels_getFuelCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelCode_1'); +var _emscripten_bind_SIGFuelModels_getFuelName_1 = Module['_emscripten_bind_SIGFuelModels_getFuelName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelName_1'); +var _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2'); +var _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2'); +var _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2'); +var _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2'); +var _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2'); +var _emscripten_bind_SIGFuelModels_getFuelbedDepth_2 = Module['_emscripten_bind_SIGFuelModels_getFuelbedDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelbedDepth_2'); +var _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2 = Module['_emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2'); +var _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2 = Module['_emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2'); +var _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2 = Module['_emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2'); +var _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2 = Module['_emscripten_bind_SIGFuelModels_getSavrLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getSavrLiveWoody_2'); +var _emscripten_bind_SIGFuelModels_getSavrOneHour_2 = Module['_emscripten_bind_SIGFuelModels_getSavrOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getSavrOneHour_2'); +var _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2 = Module['_emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2'); +var _emscripten_bind_SIGFuelModels___destroy___0 = Module['_emscripten_bind_SIGFuelModels___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels___destroy___0'); +var _emscripten_bind_SIGSurface_SIGSurface_1 = Module['_emscripten_bind_SIGSurface_SIGSurface_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_SIGSurface_1'); +var _emscripten_bind_SIGSurface_getAspenFireSeverity_0 = Module['_emscripten_bind_SIGSurface_getAspenFireSeverity_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenFireSeverity_0'); +var _emscripten_bind_SIGSurface_getChaparralFuelType_0 = Module['_emscripten_bind_SIGSurface_getChaparralFuelType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralFuelType_0'); +var _emscripten_bind_SIGSurface_getMoistureInputMode_0 = Module['_emscripten_bind_SIGSurface_getMoistureInputMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureInputMode_0'); +var _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0 = Module['_emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0'); +var _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0 = Module['_emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0'); +var _emscripten_bind_SIGSurface_getWindHeightInputMode_0 = Module['_emscripten_bind_SIGSurface_getWindHeightInputMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindHeightInputMode_0'); +var _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0 = Module['_emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0'); +var _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0 = Module['_emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0'); +var _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1 = Module['_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1'); +var _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1 = Module['_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1'); +var _emscripten_bind_SIGSurface_getIsUsingChaparral_0 = Module['_emscripten_bind_SIGSurface_getIsUsingChaparral_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsUsingChaparral_0'); +var _emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0 = Module['_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0'); +var _emscripten_bind_SIGSurface_getIsUsingWesternAspen_0 = Module['_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0'); +var _emscripten_bind_SIGSurface_isAllFuelLoadZero_1 = Module['_emscripten_bind_SIGSurface_isAllFuelLoadZero_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isAllFuelLoadZero_1'); +var _emscripten_bind_SIGSurface_isFuelDynamic_1 = Module['_emscripten_bind_SIGSurface_isFuelDynamic_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isFuelDynamic_1'); +var _emscripten_bind_SIGSurface_isFuelModelDefined_1 = Module['_emscripten_bind_SIGSurface_isFuelModelDefined_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isFuelModelDefined_1'); +var _emscripten_bind_SIGSurface_isFuelModelReserved_1 = Module['_emscripten_bind_SIGSurface_isFuelModelReserved_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isFuelModelReserved_1'); +var _emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1 = Module['_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1'); +var _emscripten_bind_SIGSurface_isUsingTwoFuelModels_0 = Module['_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0'); +var _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1 = Module['_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1'); +var _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1 = Module['_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1'); +var _emscripten_bind_SIGSurface_calculateFlameLength_3 = Module['_emscripten_bind_SIGSurface_calculateFlameLength_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_calculateFlameLength_3'); +var _emscripten_bind_SIGSurface_getAgeOfRough_0 = Module['_emscripten_bind_SIGSurface_getAgeOfRough_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAgeOfRough_0'); +var _emscripten_bind_SIGSurface_getAspect_0 = Module['_emscripten_bind_SIGSurface_getAspect_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspect_0'); +var _emscripten_bind_SIGSurface_getAspenCuringLevel_1 = Module['_emscripten_bind_SIGSurface_getAspenCuringLevel_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenCuringLevel_1'); +var _emscripten_bind_SIGSurface_getAspenDBH_1 = Module['_emscripten_bind_SIGSurface_getAspenDBH_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenDBH_1'); +var _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1 = Module['_emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1'); +var _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1 = Module['_emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1'); +var _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1 = Module['_emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1'); +var _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1 = Module['_emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1'); +var _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1 = Module['_emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1'); +var _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1 = Module['_emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1'); +var _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1 = Module['_emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1'); +var _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1 = Module['_emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1'); +var _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1 = Module['_emscripten_bind_SIGSurface_getBackingFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBackingFirelineIntensity_1'); +var _emscripten_bind_SIGSurface_getBackingFlameLength_1 = Module['_emscripten_bind_SIGSurface_getBackingFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBackingFlameLength_1'); +var _emscripten_bind_SIGSurface_getBackingSpreadDistance_1 = Module['_emscripten_bind_SIGSurface_getBackingSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBackingSpreadDistance_1'); +var _emscripten_bind_SIGSurface_getBackingSpreadRate_1 = Module['_emscripten_bind_SIGSurface_getBackingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBackingSpreadRate_1'); +var _emscripten_bind_SIGSurface_getBulkDensity_1 = Module['_emscripten_bind_SIGSurface_getBulkDensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBulkDensity_1'); +var _emscripten_bind_SIGSurface_getCanopyCover_1 = Module['_emscripten_bind_SIGSurface_getCanopyCover_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCanopyCover_1'); +var _emscripten_bind_SIGSurface_getCanopyHeight_1 = Module['_emscripten_bind_SIGSurface_getCanopyHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCanopyHeight_1'); +var _emscripten_bind_SIGSurface_getChaparralAge_1 = Module['_emscripten_bind_SIGSurface_getChaparralAge_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralAge_1'); +var _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0 = Module['_emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0'); +var _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0 = Module['_emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0'); +var _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1 = Module['_emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1'); +var _emscripten_bind_SIGSurface_getChaparralDensity_3 = Module['_emscripten_bind_SIGSurface_getChaparralDensity_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralDensity_3'); +var _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1 = Module['_emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1'); +var _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0 = Module['_emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0'); +var _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3 = Module['_emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3'); +var _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1 = Module['_emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1'); +var _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1'); +var _emscripten_bind_SIGSurface_getChaparralMoisture_3 = Module['_emscripten_bind_SIGSurface_getChaparralMoisture_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralMoisture_3'); +var _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1'); +var _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1'); +var _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1'); +var _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2 = Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2'); +var _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1 = Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1'); +var _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1 = Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1'); +var _emscripten_bind_SIGSurface_getCharacteristicSAVR_1 = Module['_emscripten_bind_SIGSurface_getCharacteristicSAVR_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCharacteristicSAVR_1'); +var _emscripten_bind_SIGSurface_getCrownRatio_1 = Module['_emscripten_bind_SIGSurface_getCrownRatio_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCrownRatio_1'); +var _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0 = Module['_emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0'); +var _emscripten_bind_SIGSurface_getDirectionOfInterest_0 = Module['_emscripten_bind_SIGSurface_getDirectionOfInterest_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getDirectionOfInterest_0'); +var _emscripten_bind_SIGSurface_getDirectionOfBacking_0 = Module['_emscripten_bind_SIGSurface_getDirectionOfBacking_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getDirectionOfBacking_0'); +var _emscripten_bind_SIGSurface_getDirectionOfFlanking_0 = Module['_emscripten_bind_SIGSurface_getDirectionOfFlanking_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getDirectionOfFlanking_0'); +var _emscripten_bind_SIGSurface_getElapsedTime_1 = Module['_emscripten_bind_SIGSurface_getElapsedTime_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getElapsedTime_1'); +var _emscripten_bind_SIGSurface_getEllipticalA_1 = Module['_emscripten_bind_SIGSurface_getEllipticalA_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getEllipticalA_1'); +var _emscripten_bind_SIGSurface_getEllipticalB_1 = Module['_emscripten_bind_SIGSurface_getEllipticalB_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getEllipticalB_1'); +var _emscripten_bind_SIGSurface_getEllipticalC_1 = Module['_emscripten_bind_SIGSurface_getEllipticalC_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getEllipticalC_1'); +var _emscripten_bind_SIGSurface_getFireLength_1 = Module['_emscripten_bind_SIGSurface_getFireLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFireLength_1'); +var _emscripten_bind_SIGSurface_getMaxFireWidth_1 = Module['_emscripten_bind_SIGSurface_getMaxFireWidth_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMaxFireWidth_1'); +var _emscripten_bind_SIGSurface_getFireArea_1 = Module['_emscripten_bind_SIGSurface_getFireArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFireArea_1'); +var _emscripten_bind_SIGSurface_getFireEccentricity_0 = Module['_emscripten_bind_SIGSurface_getFireEccentricity_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFireEccentricity_0'); +var _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0 = Module['_emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0'); +var _emscripten_bind_SIGSurface_getFirePerimeter_1 = Module['_emscripten_bind_SIGSurface_getFirePerimeter_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFirePerimeter_1'); +var _emscripten_bind_SIGSurface_getFirelineIntensity_1 = Module['_emscripten_bind_SIGSurface_getFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFirelineIntensity_1'); +var _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1'); +var _emscripten_bind_SIGSurface_getFlameLength_1 = Module['_emscripten_bind_SIGSurface_getFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlameLength_1'); +var _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1'); +var _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1 = Module['_emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1'); +var _emscripten_bind_SIGSurface_getFlankingFlameLength_1 = Module['_emscripten_bind_SIGSurface_getFlankingFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlankingFlameLength_1'); +var _emscripten_bind_SIGSurface_getFlankingSpreadRate_1 = Module['_emscripten_bind_SIGSurface_getFlankingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlankingSpreadRate_1'); +var _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1 = Module['_emscripten_bind_SIGSurface_getFlankingSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlankingSpreadDistance_1'); +var _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2 = Module['_emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2'); +var _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2 = Module['_emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2'); +var _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadHundredHour_2'); +var _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2'); +var _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2'); +var _emscripten_bind_SIGSurface_getFuelLoadOneHour_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadOneHour_2'); +var _emscripten_bind_SIGSurface_getFuelLoadTenHour_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadTenHour_2'); +var _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2 = Module['_emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2'); +var _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2 = Module['_emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2'); +var _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2 = Module['_emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2'); +var _emscripten_bind_SIGSurface_getFuelSavrOneHour_2 = Module['_emscripten_bind_SIGSurface_getFuelSavrOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelSavrOneHour_2'); +var _emscripten_bind_SIGSurface_getFuelbedDepth_2 = Module['_emscripten_bind_SIGSurface_getFuelbedDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelbedDepth_2'); +var _emscripten_bind_SIGSurface_getHeadingSpreadRate_1 = Module['_emscripten_bind_SIGSurface_getHeadingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeadingSpreadRate_1'); +var _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0 = Module['_emscripten_bind_SIGSurface_getHeadingToBackingRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeadingToBackingRatio_0'); +var _emscripten_bind_SIGSurface_getHeatPerUnitArea_1 = Module['_emscripten_bind_SIGSurface_getHeatPerUnitArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeatPerUnitArea_1'); +var _emscripten_bind_SIGSurface_getHeatSink_1 = Module['_emscripten_bind_SIGSurface_getHeatSink_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeatSink_1'); +var _emscripten_bind_SIGSurface_getHeatSource_1 = Module['_emscripten_bind_SIGSurface_getHeatSource_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeatSource_1'); +var _emscripten_bind_SIGSurface_getHeightOfUnderstory_1 = Module['_emscripten_bind_SIGSurface_getHeightOfUnderstory_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeightOfUnderstory_1'); +var _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1 = Module['_emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1'); +var _emscripten_bind_SIGSurface_getMidflameWindspeed_1 = Module['_emscripten_bind_SIGSurface_getMidflameWindspeed_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMidflameWindspeed_1'); +var _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1 = Module['_emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1'); +var _emscripten_bind_SIGSurface_getMoistureHundredHour_1 = Module['_emscripten_bind_SIGSurface_getMoistureHundredHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureHundredHour_1'); +var _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1 = Module['_emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1'); +var _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1 = Module['_emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1'); +var _emscripten_bind_SIGSurface_getMoistureLiveWoody_1 = Module['_emscripten_bind_SIGSurface_getMoistureLiveWoody_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureLiveWoody_1'); +var _emscripten_bind_SIGSurface_getMoistureOneHour_1 = Module['_emscripten_bind_SIGSurface_getMoistureOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureOneHour_1'); +var _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2'); +var _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2'); +var _emscripten_bind_SIGSurface_getMoistureTenHour_1 = Module['_emscripten_bind_SIGSurface_getMoistureTenHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureTenHour_1'); +var _emscripten_bind_SIGSurface_getOverstoryBasalArea_1 = Module['_emscripten_bind_SIGSurface_getOverstoryBasalArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getOverstoryBasalArea_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1'); +var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1'); +var _emscripten_bind_SIGSurface_getReactionIntensity_1 = Module['_emscripten_bind_SIGSurface_getReactionIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getReactionIntensity_1'); +var _emscripten_bind_SIGSurface_getResidenceTime_1 = Module['_emscripten_bind_SIGSurface_getResidenceTime_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getResidenceTime_1'); +var _emscripten_bind_SIGSurface_getSlope_1 = Module['_emscripten_bind_SIGSurface_getSlope_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSlope_1'); +var _emscripten_bind_SIGSurface_getSlopeFactor_0 = Module['_emscripten_bind_SIGSurface_getSlopeFactor_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSlopeFactor_0'); +var _emscripten_bind_SIGSurface_getSpreadDistance_1 = Module['_emscripten_bind_SIGSurface_getSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSpreadDistance_1'); +var _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1'); +var _emscripten_bind_SIGSurface_getSpreadRate_1 = Module['_emscripten_bind_SIGSurface_getSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSpreadRate_1'); +var _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1'); +var _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1 = Module['_emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1'); +var _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1'); +var _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1'); +var _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1'); +var _emscripten_bind_SIGSurface_getWindDirection_0 = Module['_emscripten_bind_SIGSurface_getWindDirection_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindDirection_0'); +var _emscripten_bind_SIGSurface_getWindSpeed_2 = Module['_emscripten_bind_SIGSurface_getWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindSpeed_2'); +var _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0 = Module['_emscripten_bind_SIGSurface_getAspenFuelModelNumber_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenFuelModelNumber_0'); +var _emscripten_bind_SIGSurface_getFuelModelNumber_0 = Module['_emscripten_bind_SIGSurface_getFuelModelNumber_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelModelNumber_0'); +var _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1'); +var _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0 = Module['_emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0'); +var _emscripten_bind_SIGSurface_getFuelCode_1 = Module['_emscripten_bind_SIGSurface_getFuelCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelCode_1'); +var _emscripten_bind_SIGSurface_getFuelName_1 = Module['_emscripten_bind_SIGSurface_getFuelName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelName_1'); +var _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1'); +var _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1'); +var _emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1'); +var _emscripten_bind_SIGSurface_doSurfaceRun_0 = Module['_emscripten_bind_SIGSurface_doSurfaceRun_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_doSurfaceRun_0'); +var _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2 = Module['_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2'); +var _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0 = Module['_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0'); +var _emscripten_bind_SIGSurface_initializeMembers_0 = Module['_emscripten_bind_SIGSurface_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_initializeMembers_0'); +var _emscripten_bind_SIGSurface_setAgeOfRough_1 = Module['_emscripten_bind_SIGSurface_setAgeOfRough_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAgeOfRough_1'); +var _emscripten_bind_SIGSurface_setAspect_1 = Module['_emscripten_bind_SIGSurface_setAspect_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspect_1'); +var _emscripten_bind_SIGSurface_setAspenCuringLevel_2 = Module['_emscripten_bind_SIGSurface_setAspenCuringLevel_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspenCuringLevel_2'); +var _emscripten_bind_SIGSurface_setAspenDBH_2 = Module['_emscripten_bind_SIGSurface_setAspenDBH_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspenDBH_2'); +var _emscripten_bind_SIGSurface_setAspenFireSeverity_1 = Module['_emscripten_bind_SIGSurface_setAspenFireSeverity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspenFireSeverity_1'); +var _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1 = Module['_emscripten_bind_SIGSurface_setAspenFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspenFuelModelNumber_1'); +var _emscripten_bind_SIGSurface_setCanopyCover_2 = Module['_emscripten_bind_SIGSurface_setCanopyCover_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCanopyCover_2'); +var _emscripten_bind_SIGSurface_setCanopyHeight_2 = Module['_emscripten_bind_SIGSurface_setCanopyHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCanopyHeight_2'); +var _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2 = Module['_emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2'); +var _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1 = Module['_emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1'); +var _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1 = Module['_emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1'); +var _emscripten_bind_SIGSurface_setChaparralFuelType_1 = Module['_emscripten_bind_SIGSurface_setChaparralFuelType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralFuelType_1'); +var _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2 = Module['_emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2'); +var _emscripten_bind_SIGSurface_setCrownRatio_2 = Module['_emscripten_bind_SIGSurface_setCrownRatio_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCrownRatio_2'); +var _emscripten_bind_SIGSurface_setDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_setDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setDirectionOfInterest_1'); +var _emscripten_bind_SIGSurface_setElapsedTime_2 = Module['_emscripten_bind_SIGSurface_setElapsedTime_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setElapsedTime_2'); +var _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1 = Module['_emscripten_bind_SIGSurface_setFirstFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setFirstFuelModelNumber_1'); +var _emscripten_bind_SIGSurface_setFuelModels_1 = Module['_emscripten_bind_SIGSurface_setFuelModels_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setFuelModels_1'); +var _emscripten_bind_SIGSurface_setHeightOfUnderstory_2 = Module['_emscripten_bind_SIGSurface_setHeightOfUnderstory_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setHeightOfUnderstory_2'); +var _emscripten_bind_SIGSurface_setIsUsingChaparral_1 = Module['_emscripten_bind_SIGSurface_setIsUsingChaparral_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setIsUsingChaparral_1'); +var _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1 = Module['_emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1'); +var _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1 = Module['_emscripten_bind_SIGSurface_setIsUsingWesternAspen_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setIsUsingWesternAspen_1'); +var _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2 = Module['_emscripten_bind_SIGSurface_setMoistureDeadAggregate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureDeadAggregate_2'); +var _emscripten_bind_SIGSurface_setMoistureHundredHour_2 = Module['_emscripten_bind_SIGSurface_setMoistureHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureHundredHour_2'); +var _emscripten_bind_SIGSurface_setMoistureInputMode_1 = Module['_emscripten_bind_SIGSurface_setMoistureInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureInputMode_1'); +var _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2 = Module['_emscripten_bind_SIGSurface_setMoistureLiveAggregate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureLiveAggregate_2'); +var _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2 = Module['_emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2'); +var _emscripten_bind_SIGSurface_setMoistureLiveWoody_2 = Module['_emscripten_bind_SIGSurface_setMoistureLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureLiveWoody_2'); +var _emscripten_bind_SIGSurface_setMoistureOneHour_2 = Module['_emscripten_bind_SIGSurface_setMoistureOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureOneHour_2'); +var _emscripten_bind_SIGSurface_setMoistureScenarios_1 = Module['_emscripten_bind_SIGSurface_setMoistureScenarios_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureScenarios_1'); +var _emscripten_bind_SIGSurface_setMoistureTenHour_2 = Module['_emscripten_bind_SIGSurface_setMoistureTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureTenHour_2'); +var _emscripten_bind_SIGSurface_setOverstoryBasalArea_2 = Module['_emscripten_bind_SIGSurface_setOverstoryBasalArea_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setOverstoryBasalArea_2'); +var _emscripten_bind_SIGSurface_setPalmettoCoverage_2 = Module['_emscripten_bind_SIGSurface_setPalmettoCoverage_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setPalmettoCoverage_2'); +var _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1 = Module['_emscripten_bind_SIGSurface_setSecondFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setSecondFuelModelNumber_1'); +var _emscripten_bind_SIGSurface_setSlope_2 = Module['_emscripten_bind_SIGSurface_setSlope_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setSlope_2'); +var _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1 = Module['_emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1'); +var _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1 = Module['_emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1'); +var _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2 = Module['_emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2'); +var _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1 = Module['_emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1'); +var _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1 = Module['_emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1'); +var _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1 = Module['_emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1'); +var _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1 = Module['_emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1'); +var _emscripten_bind_SIGSurface_setWindDirection_1 = Module['_emscripten_bind_SIGSurface_setWindDirection_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindDirection_1'); +var _emscripten_bind_SIGSurface_setWindHeightInputMode_1 = Module['_emscripten_bind_SIGSurface_setWindHeightInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindHeightInputMode_1'); +var _emscripten_bind_SIGSurface_setWindSpeed_2 = Module['_emscripten_bind_SIGSurface_setWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindSpeed_2'); +var _emscripten_bind_SIGSurface_updateSurfaceInputs_21 = Module['_emscripten_bind_SIGSurface_updateSurfaceInputs_21'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_updateSurfaceInputs_21'); +var _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25 = Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25'); +var _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25 = Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25'); +var _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26 = Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26'); +var _emscripten_bind_SIGSurface_setFuelModelNumber_1 = Module['_emscripten_bind_SIGSurface_setFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setFuelModelNumber_1'); +var _emscripten_bind_SIGSurface___destroy___0 = Module['_emscripten_bind_SIGSurface___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface___destroy___0'); +var _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0 = Module['_emscripten_bind_PalmettoGallberry_PalmettoGallberry_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_PalmettoGallberry_0'); +var _emscripten_bind_PalmettoGallberry_initializeMembers_0 = Module['_emscripten_bind_PalmettoGallberry_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_initializeMembers_0'); +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2'); +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2'); +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2'); +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1'); +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2'); +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2'); +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3'); +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2'); +var _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0 = Module['_emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0'); +var _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0 = Module['_emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0'); +var _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0 = Module['_emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0'); +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0'); +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0'); +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0'); +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0'); +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0'); +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0'); +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0'); +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0'); +var _emscripten_bind_PalmettoGallberry___destroy___0 = Module['_emscripten_bind_PalmettoGallberry___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry___destroy___0'); +var _emscripten_bind_WesternAspen_WesternAspen_0 = Module['_emscripten_bind_WesternAspen_WesternAspen_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_WesternAspen_0'); +var _emscripten_bind_WesternAspen_initializeMembers_0 = Module['_emscripten_bind_WesternAspen_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_initializeMembers_0'); +var _emscripten_bind_WesternAspen_calculateAspenMortality_3 = Module['_emscripten_bind_WesternAspen_calculateAspenMortality_3'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_calculateAspenMortality_3'); +var _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1 = Module['_emscripten_bind_WesternAspen_getAspenFuelBedDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenFuelBedDepth_1'); +var _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0 = Module['_emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0'); +var _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0 = Module['_emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0'); +var _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0 = Module['_emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0'); +var _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0 = Module['_emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0'); +var _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0 = Module['_emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0'); +var _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0 = Module['_emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0'); +var _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0 = Module['_emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0'); +var _emscripten_bind_WesternAspen_getAspenMortality_0 = Module['_emscripten_bind_WesternAspen_getAspenMortality_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenMortality_0'); +var _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0 = Module['_emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0'); +var _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0 = Module['_emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0'); +var _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0 = Module['_emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0'); +var _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0 = Module['_emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0'); +var _emscripten_bind_WesternAspen___destroy___0 = Module['_emscripten_bind_WesternAspen___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen___destroy___0'); +var _emscripten_bind_SIGCrown_SIGCrown_1 = Module['_emscripten_bind_SIGCrown_SIGCrown_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_SIGCrown_1'); +var _emscripten_bind_SIGCrown_getFireType_0 = Module['_emscripten_bind_SIGCrown_getFireType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFireType_0'); +var _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1 = Module['_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1'); +var _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1 = Module['_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1'); +var _emscripten_bind_SIGCrown_isAllFuelLoadZero_1 = Module['_emscripten_bind_SIGCrown_isAllFuelLoadZero_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_isAllFuelLoadZero_1'); +var _emscripten_bind_SIGCrown_isFuelDynamic_1 = Module['_emscripten_bind_SIGCrown_isFuelDynamic_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_isFuelDynamic_1'); +var _emscripten_bind_SIGCrown_isFuelModelDefined_1 = Module['_emscripten_bind_SIGCrown_isFuelModelDefined_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_isFuelModelDefined_1'); +var _emscripten_bind_SIGCrown_isFuelModelReserved_1 = Module['_emscripten_bind_SIGCrown_isFuelModelReserved_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_isFuelModelReserved_1'); +var _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1 = Module['_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1'); +var _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1 = Module['_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1'); +var _emscripten_bind_SIGCrown_getAspect_0 = Module['_emscripten_bind_SIGCrown_getAspect_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getAspect_0'); +var _emscripten_bind_SIGCrown_getCanopyBaseHeight_1 = Module['_emscripten_bind_SIGCrown_getCanopyBaseHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCanopyBaseHeight_1'); +var _emscripten_bind_SIGCrown_getCanopyBulkDensity_1 = Module['_emscripten_bind_SIGCrown_getCanopyBulkDensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCanopyBulkDensity_1'); +var _emscripten_bind_SIGCrown_getCanopyCover_1 = Module['_emscripten_bind_SIGCrown_getCanopyCover_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCanopyCover_1'); +var _emscripten_bind_SIGCrown_getCanopyHeight_1 = Module['_emscripten_bind_SIGCrown_getCanopyHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCanopyHeight_1'); +var _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1 = Module['_emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1'); +var _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1 = Module['_emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1'); +var _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1 = Module['_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1'); +var _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1 = Module['_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1'); +var _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0 = Module['_emscripten_bind_SIGCrown_getCrownFireActiveRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireActiveRatio_0'); +var _emscripten_bind_SIGCrown_getCrownFireArea_1 = Module['_emscripten_bind_SIGCrown_getCrownFireArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireArea_1'); +var _emscripten_bind_SIGCrown_getCrownFirePerimeter_1 = Module['_emscripten_bind_SIGCrown_getCrownFirePerimeter_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFirePerimeter_1'); +var _emscripten_bind_SIGCrown_getCrownTransitionRatio_0 = Module['_emscripten_bind_SIGCrown_getCrownTransitionRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownTransitionRatio_0'); +var _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0 = Module['_emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0'); +var _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1 = Module['_emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1'); +var _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1 = Module['_emscripten_bind_SIGCrown_getCrownFireSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireSpreadRate_1'); +var _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1 = Module['_emscripten_bind_SIGCrown_getCrownFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFirelineIntensity_1'); +var _emscripten_bind_SIGCrown_getCrownFlameLength_1 = Module['_emscripten_bind_SIGCrown_getCrownFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFlameLength_1'); +var _emscripten_bind_SIGCrown_getCrownFractionBurned_0 = Module['_emscripten_bind_SIGCrown_getCrownFractionBurned_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFractionBurned_0'); +var _emscripten_bind_SIGCrown_getCrownRatio_1 = Module['_emscripten_bind_SIGCrown_getCrownRatio_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownRatio_1'); +var _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1 = Module['_emscripten_bind_SIGCrown_getFinalFirelineIntesity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalFirelineIntesity_1'); +var _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1 = Module['_emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1'); +var _emscripten_bind_SIGCrown_getFinalSpreadRate_1 = Module['_emscripten_bind_SIGCrown_getFinalSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalSpreadRate_1'); +var _emscripten_bind_SIGCrown_getFinalSpreadDistance_1 = Module['_emscripten_bind_SIGCrown_getFinalSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalSpreadDistance_1'); +var _emscripten_bind_SIGCrown_getFinalFireArea_1 = Module['_emscripten_bind_SIGCrown_getFinalFireArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalFireArea_1'); +var _emscripten_bind_SIGCrown_getFinalFirePerimeter_1 = Module['_emscripten_bind_SIGCrown_getFinalFirePerimeter_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalFirePerimeter_1'); +var _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2 = Module['_emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2'); +var _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2 = Module['_emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2'); +var _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadHundredHour_2'); +var _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2'); +var _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2'); +var _emscripten_bind_SIGCrown_getFuelLoadOneHour_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadOneHour_2'); +var _emscripten_bind_SIGCrown_getFuelLoadTenHour_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadTenHour_2'); +var _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2 = Module['_emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2'); +var _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2 = Module['_emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2'); +var _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2 = Module['_emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2'); +var _emscripten_bind_SIGCrown_getFuelSavrOneHour_2 = Module['_emscripten_bind_SIGCrown_getFuelSavrOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelSavrOneHour_2'); +var _emscripten_bind_SIGCrown_getFuelbedDepth_2 = Module['_emscripten_bind_SIGCrown_getFuelbedDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelbedDepth_2'); +var _emscripten_bind_SIGCrown_getMoistureFoliar_1 = Module['_emscripten_bind_SIGCrown_getMoistureFoliar_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureFoliar_1'); +var _emscripten_bind_SIGCrown_getMoistureHundredHour_1 = Module['_emscripten_bind_SIGCrown_getMoistureHundredHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureHundredHour_1'); +var _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1 = Module['_emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1'); +var _emscripten_bind_SIGCrown_getMoistureLiveWoody_1 = Module['_emscripten_bind_SIGCrown_getMoistureLiveWoody_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureLiveWoody_1'); +var _emscripten_bind_SIGCrown_getMoistureOneHour_1 = Module['_emscripten_bind_SIGCrown_getMoistureOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureOneHour_1'); +var _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2'); +var _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2'); +var _emscripten_bind_SIGCrown_getMoistureTenHour_1 = Module['_emscripten_bind_SIGCrown_getMoistureTenHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureTenHour_1'); +var _emscripten_bind_SIGCrown_getSlope_1 = Module['_emscripten_bind_SIGCrown_getSlope_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getSlope_1'); +var _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1 = Module['_emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1'); +var _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1 = Module['_emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1'); +var _emscripten_bind_SIGCrown_getWindDirection_0 = Module['_emscripten_bind_SIGCrown_getWindDirection_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getWindDirection_0'); +var _emscripten_bind_SIGCrown_getWindSpeed_2 = Module['_emscripten_bind_SIGCrown_getWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getWindSpeed_2'); +var _emscripten_bind_SIGCrown_getFuelModelNumber_0 = Module['_emscripten_bind_SIGCrown_getFuelModelNumber_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelModelNumber_0'); +var _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1'); +var _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0 = Module['_emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0'); +var _emscripten_bind_SIGCrown_getFuelCode_1 = Module['_emscripten_bind_SIGCrown_getFuelCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelCode_1'); +var _emscripten_bind_SIGCrown_getFuelName_1 = Module['_emscripten_bind_SIGCrown_getFuelName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelName_1'); +var _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1'); +var _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1'); +var _emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1'); +var _emscripten_bind_SIGCrown_doCrownRun_0 = Module['_emscripten_bind_SIGCrown_doCrownRun_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_doCrownRun_0'); +var _emscripten_bind_SIGCrown_doCrownRunRothermel_0 = Module['_emscripten_bind_SIGCrown_doCrownRunRothermel_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_doCrownRunRothermel_0'); +var _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0 = Module['_emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0'); +var _emscripten_bind_SIGCrown_initializeMembers_0 = Module['_emscripten_bind_SIGCrown_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_initializeMembers_0'); +var _emscripten_bind_SIGCrown_setAspect_1 = Module['_emscripten_bind_SIGCrown_setAspect_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setAspect_1'); +var _emscripten_bind_SIGCrown_setCanopyBaseHeight_2 = Module['_emscripten_bind_SIGCrown_setCanopyBaseHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCanopyBaseHeight_2'); +var _emscripten_bind_SIGCrown_setCanopyBulkDensity_2 = Module['_emscripten_bind_SIGCrown_setCanopyBulkDensity_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCanopyBulkDensity_2'); +var _emscripten_bind_SIGCrown_setCanopyCover_2 = Module['_emscripten_bind_SIGCrown_setCanopyCover_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCanopyCover_2'); +var _emscripten_bind_SIGCrown_setCanopyHeight_2 = Module['_emscripten_bind_SIGCrown_setCanopyHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCanopyHeight_2'); +var _emscripten_bind_SIGCrown_setCrownRatio_2 = Module['_emscripten_bind_SIGCrown_setCrownRatio_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCrownRatio_2'); +var _emscripten_bind_SIGCrown_setFuelModelNumber_1 = Module['_emscripten_bind_SIGCrown_setFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setFuelModelNumber_1'); +var _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1 = Module['_emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1'); +var _emscripten_bind_SIGCrown_setElapsedTime_2 = Module['_emscripten_bind_SIGCrown_setElapsedTime_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setElapsedTime_2'); +var _emscripten_bind_SIGCrown_setFuelModels_1 = Module['_emscripten_bind_SIGCrown_setFuelModels_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setFuelModels_1'); +var _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2 = Module['_emscripten_bind_SIGCrown_setMoistureDeadAggregate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureDeadAggregate_2'); +var _emscripten_bind_SIGCrown_setMoistureFoliar_2 = Module['_emscripten_bind_SIGCrown_setMoistureFoliar_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureFoliar_2'); +var _emscripten_bind_SIGCrown_setMoistureHundredHour_2 = Module['_emscripten_bind_SIGCrown_setMoistureHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureHundredHour_2'); +var _emscripten_bind_SIGCrown_setMoistureInputMode_1 = Module['_emscripten_bind_SIGCrown_setMoistureInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureInputMode_1'); +var _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2 = Module['_emscripten_bind_SIGCrown_setMoistureLiveAggregate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureLiveAggregate_2'); +var _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2 = Module['_emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2'); +var _emscripten_bind_SIGCrown_setMoistureLiveWoody_2 = Module['_emscripten_bind_SIGCrown_setMoistureLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureLiveWoody_2'); +var _emscripten_bind_SIGCrown_setMoistureOneHour_2 = Module['_emscripten_bind_SIGCrown_setMoistureOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureOneHour_2'); +var _emscripten_bind_SIGCrown_setMoistureScenarios_1 = Module['_emscripten_bind_SIGCrown_setMoistureScenarios_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureScenarios_1'); +var _emscripten_bind_SIGCrown_setMoistureTenHour_2 = Module['_emscripten_bind_SIGCrown_setMoistureTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureTenHour_2'); +var _emscripten_bind_SIGCrown_setSlope_2 = Module['_emscripten_bind_SIGCrown_setSlope_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setSlope_2'); +var _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1 = Module['_emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1'); +var _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1 = Module['_emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1'); +var _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1 = Module['_emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1'); +var _emscripten_bind_SIGCrown_setWindDirection_1 = Module['_emscripten_bind_SIGCrown_setWindDirection_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindDirection_1'); +var _emscripten_bind_SIGCrown_setWindHeightInputMode_1 = Module['_emscripten_bind_SIGCrown_setWindHeightInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindHeightInputMode_1'); +var _emscripten_bind_SIGCrown_setWindSpeed_2 = Module['_emscripten_bind_SIGCrown_setWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindSpeed_2'); +var _emscripten_bind_SIGCrown_updateCrownInputs_25 = Module['_emscripten_bind_SIGCrown_updateCrownInputs_25'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_updateCrownInputs_25'); +var _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21 = Module['_emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21'); +var _emscripten_bind_SIGCrown_getFinalFlameLength_1 = Module['_emscripten_bind_SIGCrown_getFinalFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalFlameLength_1'); +var _emscripten_bind_SIGCrown___destroy___0 = Module['_emscripten_bind_SIGCrown___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown___destroy___0'); +var _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0 = Module['_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0'); +var _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1 = Module['_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1'); +var _emscripten_bind_SpeciesMasterTableRecord___destroy___0 = Module['_emscripten_bind_SpeciesMasterTableRecord___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecord___destroy___0'); +var _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0 = Module['_emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0'); +var _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0 = Module['_emscripten_bind_SpeciesMasterTable_initializeMasterTable_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_initializeMasterTable_0'); +var _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1 = Module['_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1'); +var _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = Module['_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'); +var _emscripten_bind_SpeciesMasterTable_insertRecord_17 = Module['_emscripten_bind_SpeciesMasterTable_insertRecord_17'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_insertRecord_17'); +var _emscripten_bind_SpeciesMasterTable___destroy___0 = Module['_emscripten_bind_SpeciesMasterTable___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable___destroy___0'); +var _emscripten_bind_SIGMortality_SIGMortality_1 = Module['_emscripten_bind_SIGMortality_SIGMortality_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_SIGMortality_1'); +var _emscripten_bind_SIGMortality_initializeMembers_0 = Module['_emscripten_bind_SIGMortality_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_initializeMembers_0'); +var _emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2 = Module['_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2'); +var _emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2 = Module['_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2'); +var _emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2 = Module['_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2'); +var _emscripten_bind_SIGMortality_calculateMortality_1 = Module['_emscripten_bind_SIGMortality_calculateMortality_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_calculateMortality_1'); +var _emscripten_bind_SIGMortality_calculateScorchHeight_7 = Module['_emscripten_bind_SIGMortality_calculateScorchHeight_7'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_calculateScorchHeight_7'); +var _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1 = Module['_emscripten_bind_SIGMortality_calculateMortalityAllDirections_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_calculateMortalityAllDirections_1'); +var _emscripten_bind_SIGMortality_getRequiredFieldVector_0 = Module['_emscripten_bind_SIGMortality_getRequiredFieldVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getRequiredFieldVector_0'); +var _emscripten_bind_SIGMortality_getBeetleDamage_0 = Module['_emscripten_bind_SIGMortality_getBeetleDamage_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBeetleDamage_0'); +var _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0 = Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamageEquationCode_0'); +var _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1'); +var _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1'); +var _emscripten_bind_SIGMortality_getCrownDamageType_0 = Module['_emscripten_bind_SIGMortality_getCrownDamageType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamageType_0'); +var _emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1'); +var _emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1'); +var _emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1'); +var _emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1'); +var _emscripten_bind_SIGMortality_getSpeciesCode_0 = Module['_emscripten_bind_SIGMortality_getSpeciesCode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesCode_0'); +var _emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1'); +var _emscripten_bind_SIGMortality_getEquationType_0 = Module['_emscripten_bind_SIGMortality_getEquationType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getEquationType_0'); +var _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1'); +var _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1'); +var _emscripten_bind_SIGMortality_getFireSeverity_0 = Module['_emscripten_bind_SIGMortality_getFireSeverity_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getFireSeverity_0'); +var _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0 = Module['_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0'); +var _emscripten_bind_SIGMortality_getGACCRegion_0 = Module['_emscripten_bind_SIGMortality_getGACCRegion_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getGACCRegion_0'); +var _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1 = Module['_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1'); +var _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2 = Module['_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2'); +var _emscripten_bind_SIGMortality_getBarkThickness_1 = Module['_emscripten_bind_SIGMortality_getBarkThickness_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBarkThickness_1'); +var _emscripten_bind_SIGMortality_getBasalAreaKillled_0 = Module['_emscripten_bind_SIGMortality_getBasalAreaKillled_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBasalAreaKillled_0'); +var _emscripten_bind_SIGMortality_getBasalAreaPostfire_0 = Module['_emscripten_bind_SIGMortality_getBasalAreaPostfire_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBasalAreaPostfire_0'); +var _emscripten_bind_SIGMortality_getBasalAreaPrefire_0 = Module['_emscripten_bind_SIGMortality_getBasalAreaPrefire_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBasalAreaPrefire_0'); +var _emscripten_bind_SIGMortality_getBoleCharHeight_1 = Module['_emscripten_bind_SIGMortality_getBoleCharHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBoleCharHeight_1'); +var _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1 = Module['_emscripten_bind_SIGMortality_getBoleCharHeightBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBoleCharHeightBacking_1'); +var _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1 = Module['_emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1'); +var _emscripten_bind_SIGMortality_getCambiumKillRating_0 = Module['_emscripten_bind_SIGMortality_getCambiumKillRating_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCambiumKillRating_0'); +var _emscripten_bind_SIGMortality_getCrownDamage_0 = Module['_emscripten_bind_SIGMortality_getCrownDamage_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamage_0'); +var _emscripten_bind_SIGMortality_getCrownRatio_1 = Module['_emscripten_bind_SIGMortality_getCrownRatio_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownRatio_1'); +var _emscripten_bind_SIGMortality_getCVSorCLS_0 = Module['_emscripten_bind_SIGMortality_getCVSorCLS_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCVSorCLS_0'); +var _emscripten_bind_SIGMortality_getDBH_1 = Module['_emscripten_bind_SIGMortality_getDBH_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getDBH_1'); +var _emscripten_bind_SIGMortality_getFlameLength_1 = Module['_emscripten_bind_SIGMortality_getFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getFlameLength_1'); +var _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1 = Module['_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1'); +var _emscripten_bind_SIGMortality_getKilledTrees_0 = Module['_emscripten_bind_SIGMortality_getKilledTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getKilledTrees_0'); +var _emscripten_bind_SIGMortality_getProbabilityOfMortality_1 = Module['_emscripten_bind_SIGMortality_getProbabilityOfMortality_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getProbabilityOfMortality_1'); +var _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1 = Module['_emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1'); +var _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1 = Module['_emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1'); +var _emscripten_bind_SIGMortality_getScorchHeight_1 = Module['_emscripten_bind_SIGMortality_getScorchHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScorchHeight_1'); +var _emscripten_bind_SIGMortality_getScorchHeightBacking_1 = Module['_emscripten_bind_SIGMortality_getScorchHeightBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScorchHeightBacking_1'); +var _emscripten_bind_SIGMortality_getScorchHeightFlanking_1 = Module['_emscripten_bind_SIGMortality_getScorchHeightFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScorchHeightFlanking_1'); +var _emscripten_bind_SIGMortality_getTotalPrefireTrees_0 = Module['_emscripten_bind_SIGMortality_getTotalPrefireTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTotalPrefireTrees_0'); +var _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1'); +var _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1'); +var _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1'); +var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1'); +var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1'); +var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1'); +var _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1 = Module['_emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1'); +var _emscripten_bind_SIGMortality_getTreeHeight_1 = Module['_emscripten_bind_SIGMortality_getTreeHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeHeight_1'); +var _emscripten_bind_SIGMortality_postfireCanopyCover_0 = Module['_emscripten_bind_SIGMortality_postfireCanopyCover_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_postfireCanopyCover_0'); +var _emscripten_bind_SIGMortality_prefireCanopyCover_0 = Module['_emscripten_bind_SIGMortality_prefireCanopyCover_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_prefireCanopyCover_0'); +var _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1'); +var _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1'); +var _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1'); +var _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1'); +var _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0 = Module['_emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0'); +var _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1'); +var _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1'); +var _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0 = Module['_emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0'); +var _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1'); +var _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = Module['_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'); +var _emscripten_bind_SIGMortality_setAirTemperature_2 = Module['_emscripten_bind_SIGMortality_setAirTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setAirTemperature_2'); +var _emscripten_bind_SIGMortality_setBeetleDamage_1 = Module['_emscripten_bind_SIGMortality_setBeetleDamage_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setBeetleDamage_1'); +var _emscripten_bind_SIGMortality_setBoleCharHeight_2 = Module['_emscripten_bind_SIGMortality_setBoleCharHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setBoleCharHeight_2'); +var _emscripten_bind_SIGMortality_setCambiumKillRating_1 = Module['_emscripten_bind_SIGMortality_setCambiumKillRating_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setCambiumKillRating_1'); +var _emscripten_bind_SIGMortality_setCrownDamage_1 = Module['_emscripten_bind_SIGMortality_setCrownDamage_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setCrownDamage_1'); +var _emscripten_bind_SIGMortality_setCrownRatio_2 = Module['_emscripten_bind_SIGMortality_setCrownRatio_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setCrownRatio_2'); +var _emscripten_bind_SIGMortality_setDBH_2 = Module['_emscripten_bind_SIGMortality_setDBH_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setDBH_2'); +var _emscripten_bind_SIGMortality_setEquationType_1 = Module['_emscripten_bind_SIGMortality_setEquationType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setEquationType_1'); +var _emscripten_bind_SIGMortality_setFireSeverity_1 = Module['_emscripten_bind_SIGMortality_setFireSeverity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFireSeverity_1'); +var _emscripten_bind_SIGMortality_setFirelineIntensity_2 = Module['_emscripten_bind_SIGMortality_setFirelineIntensity_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFirelineIntensity_2'); +var _emscripten_bind_SIGMortality_setFlameLength_2 = Module['_emscripten_bind_SIGMortality_setFlameLength_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFlameLength_2'); +var _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1 = Module['_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1'); +var _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2 = Module['_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2'); +var _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2 = Module['_emscripten_bind_SIGMortality_setMidFlameWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setMidFlameWindSpeed_2'); +var _emscripten_bind_SIGMortality_setGACCRegion_1 = Module['_emscripten_bind_SIGMortality_setGACCRegion_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setGACCRegion_1'); +var _emscripten_bind_SIGMortality_setScorchHeight_2 = Module['_emscripten_bind_SIGMortality_setScorchHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setScorchHeight_2'); +var _emscripten_bind_SIGMortality_setSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_setSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSpeciesCode_1'); +var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2'); +var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2'); +var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2'); +var _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2'); +var _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2'); +var _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2'); +var _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2'); +var _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2 = Module['_emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2'); +var _emscripten_bind_SIGMortality_setTreeHeight_2 = Module['_emscripten_bind_SIGMortality_setTreeHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setTreeHeight_2'); +var _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1 = Module['_emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1'); +var _emscripten_bind_SIGMortality_setWindHeightInputMode_1 = Module['_emscripten_bind_SIGMortality_setWindHeightInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setWindHeightInputMode_1'); +var _emscripten_bind_SIGMortality_setWindSpeed_2 = Module['_emscripten_bind_SIGMortality_setWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setWindSpeed_2'); +var _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4 = Module['_emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4'); +var _emscripten_bind_SIGMortality___destroy___0 = Module['_emscripten_bind_SIGMortality___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality___destroy___0'); +var _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0 = Module['_emscripten_bind_WindSpeedUtility_WindSpeedUtility_0'] = makeInvalidEarlyAccess('_emscripten_bind_WindSpeedUtility_WindSpeedUtility_0'); +var _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2 = Module['_emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2'] = makeInvalidEarlyAccess('_emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2'); +var _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1 = Module['_emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1'] = makeInvalidEarlyAccess('_emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1'); +var _emscripten_bind_WindSpeedUtility___destroy___0 = Module['_emscripten_bind_WindSpeedUtility___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_WindSpeedUtility___destroy___0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0'); +var _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0'); +var _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0 = Module['_emscripten_bind_SIGSlopeTool_SIGSlopeTool_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_SIGSlopeTool_0'); +var _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1'); +var _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistance_2'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1'); +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1'); +var _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1'); +var _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1'); +var _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1'); +var _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1'); +var _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1'); +var _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1'); +var _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1 = Module['_emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1'); +var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1 = Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1'); +var _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1 = Module['_emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1'); +var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0 = Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0'); +var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0 = Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0'); +var _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0 = Module['_emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0'); +var _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0 = Module['_emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0'); +var _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1'); +var _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1'); +var _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0 = Module['_emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0'); +var _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0 = Module['_emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0'); +var _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2 = Module['_emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2'); +var _emscripten_bind_SIGSlopeTool_setContourInterval_2 = Module['_emscripten_bind_SIGSlopeTool_setContourInterval_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setContourInterval_2'); +var _emscripten_bind_SIGSlopeTool_setMapDistance_2 = Module['_emscripten_bind_SIGSlopeTool_setMapDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setMapDistance_2'); +var _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1'); +var _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1 = Module['_emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1'); +var _emscripten_bind_SIGSlopeTool_setNumberOfContours_1 = Module['_emscripten_bind_SIGSlopeTool_setNumberOfContours_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setNumberOfContours_1'); +var _emscripten_bind_SIGSlopeTool___destroy___0 = Module['_emscripten_bind_SIGSlopeTool___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool___destroy___0'); +var _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0 = Module['_emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0'); +var _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0 = Module['_emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0'); +var _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2 = Module['_emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2'); +var _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2 = Module['_emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2'); +var _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1 = Module['_emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1'); +var _emscripten_bind_VaporPressureDeficitCalculator___destroy___0 = Module['_emscripten_bind_VaporPressureDeficitCalculator___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator___destroy___0'); +var _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0 = Module['_emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0'); +var _emscripten_bind_RelativeHumidityTool_calculate_0 = Module['_emscripten_bind_RelativeHumidityTool_calculate_0'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_calculate_0'); +var _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1 = Module['_emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1'); +var _emscripten_bind_RelativeHumidityTool_getSiteElevation_1 = Module['_emscripten_bind_RelativeHumidityTool_getSiteElevation_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getSiteElevation_1'); +var _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1 = Module['_emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1'); +var _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1 = Module['_emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1'); +var _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1 = Module['_emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1'); +var _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1 = Module['_emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1'); +var _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2 = Module['_emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2'); +var _emscripten_bind_RelativeHumidityTool_setSiteElevation_2 = Module['_emscripten_bind_RelativeHumidityTool_setSiteElevation_2'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_setSiteElevation_2'); +var _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2 = Module['_emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2'); +var _emscripten_bind_RelativeHumidityTool___destroy___0 = Module['_emscripten_bind_RelativeHumidityTool___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool___destroy___0'); +var _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0'); +var _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_calculate_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_calculate_0'); +var _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0'); +var _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0'); +var _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0'); +var _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1'); +var _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1'); +var _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1'); +var _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0'); +var _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1'); +var _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1'); +var _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1'); +var _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2'); +var _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator___destroy___0'); +var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet'); +var _emscripten_enum_AreaUnits_AreaUnitsEnum_Acres = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_Acres'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_Acres'); +var _emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares'); +var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters'); +var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles'); +var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers'); +var _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre = Module['_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre'] = makeInvalidEarlyAccess('_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre'); +var _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare = Module['_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare'] = makeInvalidEarlyAccess('_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare'); +var _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction = Module['_emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction'] = makeInvalidEarlyAccess('_emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction'); +var _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent = Module['_emscripten_enum_FractionUnits_FractionUnitsEnum_Percent'] = makeInvalidEarlyAccess('_emscripten_enum_FractionUnits_FractionUnitsEnum_Percent'); +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Feet'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Feet'); +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Inches = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Inches'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Inches'); +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters'); +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters'); +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Meters = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Meters'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Meters'); +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Chains = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Chains'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Chains'); +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Miles = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Miles'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Miles'); +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers'); +var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot = Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot'] = makeInvalidEarlyAccess('_emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot'); +var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre = Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre'] = makeInvalidEarlyAccess('_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre'); +var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare = Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare'] = makeInvalidEarlyAccess('_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare'); +var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter = Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter'] = makeInvalidEarlyAccess('_emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter'); +var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet = Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet'); +var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters = Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters'); +var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches = Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches'); +var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters = Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters'); +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute'); +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour'); +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond'); +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute'); +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour'); +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_Bar = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Bar'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_Bar'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere'); +var _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch'); +var _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees = Module['_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees'); +var _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent = Module['_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent'); +var _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot = Module['_emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot'] = makeInvalidEarlyAccess('_emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot'); +var _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter = Module['_emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter'] = makeInvalidEarlyAccess('_emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter'); +var _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound = Module['_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound'] = makeInvalidEarlyAccess('_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound'); +var _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram = Module['_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram'] = makeInvalidEarlyAccess('_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram'); +var _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot = Module['_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot'); +var _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter = Module['_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter'); +var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot = Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot'] = makeInvalidEarlyAccess('_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot'); +var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter = Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter'] = makeInvalidEarlyAccess('_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter'); +var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter = Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter'] = makeInvalidEarlyAccess('_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter'); +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute'); +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond'); +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond'); +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute'); +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter'); +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond'); +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute'); +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond'); +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute'); +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter'); +var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit = Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit'] = makeInvalidEarlyAccess('_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit'); +var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius = Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius'] = makeInvalidEarlyAccess('_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius'); +var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin = Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin'] = makeInvalidEarlyAccess('_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin'); +var _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes = Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes'] = makeInvalidEarlyAccess('_emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes'); +var _emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds = Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds'] = makeInvalidEarlyAccess('_emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds'); +var _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours = Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Hours'] = makeInvalidEarlyAccess('_emscripten_enum_TimeUnits_TimeUnitsEnum_Hours'); +var _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack = Module['_emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack'] = makeInvalidEarlyAccess('_emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack'); +var _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack = Module['_emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack'] = makeInvalidEarlyAccess('_emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Unreported'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Unreported'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_Reported = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Reported'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Reported'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_Attacked = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Attacked'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Attacked'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_Contained = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Contained'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Contained'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_Overrun = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Overrun'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Overrun'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_Overflow = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Overflow'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Overflow'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded'); +var _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded'); +var _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank = Module['_emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank'] = makeInvalidEarlyAccess('_emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank'); +var _emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank = Module['_emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank'] = makeInvalidEarlyAccess('_emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank'); +var _emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks = Module['_emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks'] = makeInvalidEarlyAccess('_emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks'); +var _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank = Module['_emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank'] = makeInvalidEarlyAccess('_emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank'); +var _emscripten_enum_ContainMode_Default = Module['_emscripten_enum_ContainMode_Default'] = makeInvalidEarlyAccess('_emscripten_enum_ContainMode_Default'); +var _emscripten_enum_ContainMode_ComputeWithOptimalResource = Module['_emscripten_enum_ContainMode_ComputeWithOptimalResource'] = makeInvalidEarlyAccess('_emscripten_enum_ContainMode_ComputeWithOptimalResource'); +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter'); +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky'); +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep'); +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow'); +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff'); +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff'); +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed'); +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss'); +var _emscripten_enum_LightningCharge_LightningChargeEnum_Negative = Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Negative'] = makeInvalidEarlyAccess('_emscripten_enum_LightningCharge_LightningChargeEnum_Negative'); +var _emscripten_enum_LightningCharge_LightningChargeEnum_Positive = Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Positive'] = makeInvalidEarlyAccess('_emscripten_enum_LightningCharge_LightningChargeEnum_Positive'); +var _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown = Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Unknown'] = makeInvalidEarlyAccess('_emscripten_enum_LightningCharge_LightningChargeEnum_Unknown'); +var _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED = Module['_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED'] = makeInvalidEarlyAccess('_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED'); +var _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN = Module['_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN'] = makeInvalidEarlyAccess('_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE'); +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE'); +var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD = Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD'] = makeInvalidEarlyAccess('_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD'); +var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM = Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM'] = makeInvalidEarlyAccess('_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM'); +var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD = Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD'] = makeInvalidEarlyAccess('_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD'); +var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP = Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP'] = makeInvalidEarlyAccess('_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP'); +var _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead = Module['_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead'] = makeInvalidEarlyAccess('_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead'); +var _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live = Module['_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live'] = makeInvalidEarlyAccess('_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live'); +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates'); +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses'); +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses'); +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles'); +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses'); +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels'); +var _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low = Module['_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low'] = makeInvalidEarlyAccess('_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low'); +var _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate = Module['_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate'); +var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet = Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet'); +var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise = Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise'); +var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush = Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush'); +var _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad = Module['_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad'); +var _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType = Module['_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType'); +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass'); +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate'); +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass'); +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass'); +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario'); +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour'); +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour'); +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour'); +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous'); +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody'); +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate'); +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate'); +var _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint = Module['_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint'); +var _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter = Module['_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter'); +var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod = Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod'] = makeInvalidEarlyAccess('_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod'); +var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic = Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic'] = makeInvalidEarlyAccess('_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic'); +var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic = Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic'] = makeInvalidEarlyAccess('_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic'); +var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional = Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional'] = makeInvalidEarlyAccess('_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional'); +var _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered = Module['_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered'); +var _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered = Module['_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered'); +var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput = Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput'); +var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio = Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio'); +var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio = Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio'); +var _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope = Module['_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope'] = makeInvalidEarlyAccess('_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope'); +var _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth = Module['_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth'] = makeInvalidEarlyAccess('_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth'); +var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame = Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame'] = makeInvalidEarlyAccess('_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame'); +var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot = Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot'] = makeInvalidEarlyAccess('_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot'); +var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter = Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter'] = makeInvalidEarlyAccess('_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter'); +var _emscripten_enum_WindUpslopeAlignmentMode_NotAligned = Module['_emscripten_enum_WindUpslopeAlignmentMode_NotAligned'] = makeInvalidEarlyAccess('_emscripten_enum_WindUpslopeAlignmentMode_NotAligned'); +var _emscripten_enum_WindUpslopeAlignmentMode_Aligned = Module['_emscripten_enum_WindUpslopeAlignmentMode_Aligned'] = makeInvalidEarlyAccess('_emscripten_enum_WindUpslopeAlignmentMode_Aligned'); +var _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread = Module['_emscripten_enum_SurfaceRunInDirectionOf_MaxSpread'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceRunInDirectionOf_MaxSpread'); +var _emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest = Module['_emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest'); +var _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking = Module['_emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking'); +var _emscripten_enum_FireType_FireTypeEnum_Surface = Module['_emscripten_enum_FireType_FireTypeEnum_Surface'] = makeInvalidEarlyAccess('_emscripten_enum_FireType_FireTypeEnum_Surface'); +var _emscripten_enum_FireType_FireTypeEnum_Torching = Module['_emscripten_enum_FireType_FireTypeEnum_Torching'] = makeInvalidEarlyAccess('_emscripten_enum_FireType_FireTypeEnum_Torching'); +var _emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire = Module['_emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire'] = makeInvalidEarlyAccess('_emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire'); +var _emscripten_enum_FireType_FireTypeEnum_Crowning = Module['_emscripten_enum_FireType_FireTypeEnum_Crowning'] = makeInvalidEarlyAccess('_emscripten_enum_FireType_FireTypeEnum_Crowning'); +var _emscripten_enum_BeetleDamage_not_set = Module['_emscripten_enum_BeetleDamage_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_BeetleDamage_not_set'); +var _emscripten_enum_BeetleDamage_no = Module['_emscripten_enum_BeetleDamage_no'] = makeInvalidEarlyAccess('_emscripten_enum_BeetleDamage_no'); +var _emscripten_enum_BeetleDamage_yes = Module['_emscripten_enum_BeetleDamage_yes'] = makeInvalidEarlyAccess('_emscripten_enum_BeetleDamage_yes'); +var _emscripten_enum_CrownFireCalculationMethod_rothermel = Module['_emscripten_enum_CrownFireCalculationMethod_rothermel'] = makeInvalidEarlyAccess('_emscripten_enum_CrownFireCalculationMethod_rothermel'); +var _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt = Module['_emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt'] = makeInvalidEarlyAccess('_emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt'); +var _emscripten_enum_CrownDamageEquationCode_not_set = Module['_emscripten_enum_CrownDamageEquationCode_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_not_set'); +var _emscripten_enum_CrownDamageEquationCode_white_fir = Module['_emscripten_enum_CrownDamageEquationCode_white_fir'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_white_fir'); +var _emscripten_enum_CrownDamageEquationCode_subalpine_fir = Module['_emscripten_enum_CrownDamageEquationCode_subalpine_fir'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_subalpine_fir'); +var _emscripten_enum_CrownDamageEquationCode_incense_cedar = Module['_emscripten_enum_CrownDamageEquationCode_incense_cedar'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_incense_cedar'); +var _emscripten_enum_CrownDamageEquationCode_western_larch = Module['_emscripten_enum_CrownDamageEquationCode_western_larch'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_western_larch'); +var _emscripten_enum_CrownDamageEquationCode_whitebark_pine = Module['_emscripten_enum_CrownDamageEquationCode_whitebark_pine'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_whitebark_pine'); +var _emscripten_enum_CrownDamageEquationCode_engelmann_spruce = Module['_emscripten_enum_CrownDamageEquationCode_engelmann_spruce'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_engelmann_spruce'); +var _emscripten_enum_CrownDamageEquationCode_sugar_pine = Module['_emscripten_enum_CrownDamageEquationCode_sugar_pine'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_sugar_pine'); +var _emscripten_enum_CrownDamageEquationCode_red_fir = Module['_emscripten_enum_CrownDamageEquationCode_red_fir'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_red_fir'); +var _emscripten_enum_CrownDamageEquationCode_ponderosa_pine = Module['_emscripten_enum_CrownDamageEquationCode_ponderosa_pine'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_ponderosa_pine'); +var _emscripten_enum_CrownDamageEquationCode_ponderosa_kill = Module['_emscripten_enum_CrownDamageEquationCode_ponderosa_kill'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_ponderosa_kill'); +var _emscripten_enum_CrownDamageEquationCode_douglas_fir = Module['_emscripten_enum_CrownDamageEquationCode_douglas_fir'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_douglas_fir'); +var _emscripten_enum_CrownDamageType_not_set = Module['_emscripten_enum_CrownDamageType_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageType_not_set'); +var _emscripten_enum_CrownDamageType_crown_length = Module['_emscripten_enum_CrownDamageType_crown_length'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageType_crown_length'); +var _emscripten_enum_CrownDamageType_crown_volume = Module['_emscripten_enum_CrownDamageType_crown_volume'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageType_crown_volume'); +var _emscripten_enum_CrownDamageType_crown_kill = Module['_emscripten_enum_CrownDamageType_crown_kill'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageType_crown_kill'); +var _emscripten_enum_EquationType_not_set = Module['_emscripten_enum_EquationType_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_EquationType_not_set'); +var _emscripten_enum_EquationType_crown_scorch = Module['_emscripten_enum_EquationType_crown_scorch'] = makeInvalidEarlyAccess('_emscripten_enum_EquationType_crown_scorch'); +var _emscripten_enum_EquationType_bole_char = Module['_emscripten_enum_EquationType_bole_char'] = makeInvalidEarlyAccess('_emscripten_enum_EquationType_bole_char'); +var _emscripten_enum_EquationType_crown_damage = Module['_emscripten_enum_EquationType_crown_damage'] = makeInvalidEarlyAccess('_emscripten_enum_EquationType_crown_damage'); +var _emscripten_enum_FireSeverity_not_set = Module['_emscripten_enum_FireSeverity_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_FireSeverity_not_set'); +var _emscripten_enum_FireSeverity_empty = Module['_emscripten_enum_FireSeverity_empty'] = makeInvalidEarlyAccess('_emscripten_enum_FireSeverity_empty'); +var _emscripten_enum_FireSeverity_low = Module['_emscripten_enum_FireSeverity_low'] = makeInvalidEarlyAccess('_emscripten_enum_FireSeverity_low'); +var _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length = Module['_emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length'] = makeInvalidEarlyAccess('_emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length'); +var _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height = Module['_emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height'] = makeInvalidEarlyAccess('_emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height'); +var _emscripten_enum_GACC_NotSet = Module['_emscripten_enum_GACC_NotSet'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_NotSet'); +var _emscripten_enum_GACC_Alaska = Module['_emscripten_enum_GACC_Alaska'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_Alaska'); +var _emscripten_enum_GACC_California = Module['_emscripten_enum_GACC_California'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_California'); +var _emscripten_enum_GACC_EasternArea = Module['_emscripten_enum_GACC_EasternArea'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_EasternArea'); +var _emscripten_enum_GACC_GreatBasin = Module['_emscripten_enum_GACC_GreatBasin'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_GreatBasin'); +var _emscripten_enum_GACC_NorthernRockies = Module['_emscripten_enum_GACC_NorthernRockies'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_NorthernRockies'); +var _emscripten_enum_GACC_Northwest = Module['_emscripten_enum_GACC_Northwest'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_Northwest'); +var _emscripten_enum_GACC_RockeyMountain = Module['_emscripten_enum_GACC_RockeyMountain'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_RockeyMountain'); +var _emscripten_enum_GACC_SouthernArea = Module['_emscripten_enum_GACC_SouthernArea'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_SouthernArea'); +var _emscripten_enum_GACC_Southwest = Module['_emscripten_enum_GACC_Southwest'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_Southwest'); +var _emscripten_enum_RequiredFieldNames_region = Module['_emscripten_enum_RequiredFieldNames_region'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_region'); +var _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch = Module['_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch'); +var _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value = Module['_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value'); +var _emscripten_enum_RequiredFieldNames_equation_type = Module['_emscripten_enum_RequiredFieldNames_equation_type'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_equation_type'); +var _emscripten_enum_RequiredFieldNames_dbh = Module['_emscripten_enum_RequiredFieldNames_dbh'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_dbh'); +var _emscripten_enum_RequiredFieldNames_tree_height = Module['_emscripten_enum_RequiredFieldNames_tree_height'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_tree_height'); +var _emscripten_enum_RequiredFieldNames_crown_ratio = Module['_emscripten_enum_RequiredFieldNames_crown_ratio'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_crown_ratio'); +var _emscripten_enum_RequiredFieldNames_crown_damage = Module['_emscripten_enum_RequiredFieldNames_crown_damage'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_crown_damage'); +var _emscripten_enum_RequiredFieldNames_cambium_kill_rating = Module['_emscripten_enum_RequiredFieldNames_cambium_kill_rating'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_cambium_kill_rating'); +var _emscripten_enum_RequiredFieldNames_beetle_damage = Module['_emscripten_enum_RequiredFieldNames_beetle_damage'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_beetle_damage'); +var _emscripten_enum_RequiredFieldNames_bole_char_height = Module['_emscripten_enum_RequiredFieldNames_bole_char_height'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_bole_char_height'); +var _emscripten_enum_RequiredFieldNames_bark_thickness = Module['_emscripten_enum_RequiredFieldNames_bark_thickness'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_bark_thickness'); +var _emscripten_enum_RequiredFieldNames_fire_severity = Module['_emscripten_enum_RequiredFieldNames_fire_severity'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_fire_severity'); +var _emscripten_enum_RequiredFieldNames_num_inputs = Module['_emscripten_enum_RequiredFieldNames_num_inputs'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_num_inputs'); +var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH = Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH'); +var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST = Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST'); +var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH = Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH'); +var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST = Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST'); +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F'); +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F'); +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F'); +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F'); +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F'); +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'); +var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT = Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT'); +var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT = Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT'); +var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT = Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT'); +var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY = Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY'); +var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT = Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT'); +var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN = Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT'); +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT'); +var _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED = Module['_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED'); +var _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED = Module['_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED'); +var _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT = Module['_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT'); +var _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT = Module['_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'); +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'); +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE'); +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE'); +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE'); +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE'); +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION'); +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'); +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES'); +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE'); +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE'); +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE'); +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE'); +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE'); +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES'); +var _emscripten_enum_BurningCondition_BurningConditionEnum_Low = Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Low'] = makeInvalidEarlyAccess('_emscripten_enum_BurningCondition_BurningConditionEnum_Low'); +var _emscripten_enum_BurningCondition_BurningConditionEnum_Moderate = Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_BurningCondition_BurningConditionEnum_Moderate'); +var _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme = Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Extreme'] = makeInvalidEarlyAccess('_emscripten_enum_BurningCondition_BurningConditionEnum_Extreme'); +var _emscripten_enum_SlopeClass_SlopeClassEnum_Flat = Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Flat'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeClass_SlopeClassEnum_Flat'); +var _emscripten_enum_SlopeClass_SlopeClassEnum_Moderate = Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeClass_SlopeClassEnum_Moderate'); +var _emscripten_enum_SlopeClass_SlopeClassEnum_Steep = Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Steep'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeClass_SlopeClassEnum_Steep'); +var _emscripten_enum_SpeedClass_SpeedClassEnum_Light = Module['_emscripten_enum_SpeedClass_SpeedClassEnum_Light'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedClass_SpeedClassEnum_Light'); +var _emscripten_enum_SpeedClass_SpeedClassEnum_Moderate = Module['_emscripten_enum_SpeedClass_SpeedClassEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedClass_SpeedClassEnum_Moderate'); +var _emscripten_enum_SpeedClass_SpeedClassEnum_High = Module['_emscripten_enum_SpeedClass_SpeedClassEnum_High'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedClass_SpeedClassEnum_High'); +var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low = Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Low'] = makeInvalidEarlyAccess('_emscripten_enum_SafetyCondition_SafetyConditionEnum_Low'); +var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate = Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate'); +var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme = Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme'] = makeInvalidEarlyAccess('_emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme'); +var ___cxa_free_exception = makeInvalidEarlyAccess('___cxa_free_exception'); +var _strerror = makeInvalidEarlyAccess('_strerror'); +var _emscripten_stack_get_end = makeInvalidEarlyAccess('_emscripten_stack_get_end'); +var _emscripten_stack_get_base = makeInvalidEarlyAccess('_emscripten_stack_get_base'); +var _setThrew = makeInvalidEarlyAccess('_setThrew'); +var __emscripten_tempret_set = makeInvalidEarlyAccess('__emscripten_tempret_set'); +var _emscripten_stack_init = makeInvalidEarlyAccess('_emscripten_stack_init'); +var _emscripten_stack_get_free = makeInvalidEarlyAccess('_emscripten_stack_get_free'); +var __emscripten_stack_restore = makeInvalidEarlyAccess('__emscripten_stack_restore'); +var __emscripten_stack_alloc = makeInvalidEarlyAccess('__emscripten_stack_alloc'); +var _emscripten_stack_get_current = makeInvalidEarlyAccess('_emscripten_stack_get_current'); +var ___cxa_increment_exception_refcount = makeInvalidEarlyAccess('___cxa_increment_exception_refcount'); +var ___cxa_decrement_exception_refcount = makeInvalidEarlyAccess('___cxa_decrement_exception_refcount'); +var ___get_exception_message = makeInvalidEarlyAccess('___get_exception_message'); +var ___cxa_can_catch = makeInvalidEarlyAccess('___cxa_can_catch'); +var ___cxa_get_exception_ptr = makeInvalidEarlyAccess('___cxa_get_exception_ptr'); + +function assignWasmExports(wasmExports) { + _fflush = createExportWrapper('fflush', 1); + Module['_webidl_free'] = _webidl_free = createExportWrapper('webidl_free', 1); + Module['_free'] = _free = createExportWrapper('free', 1); + Module['_webidl_malloc'] = _webidl_malloc = createExportWrapper('webidl_malloc', 1); + Module['_malloc'] = _malloc = createExportWrapper('malloc', 1); + Module['_emscripten_bind_VoidPtr___destroy___0'] = _emscripten_bind_VoidPtr___destroy___0 = createExportWrapper('emscripten_bind_VoidPtr___destroy___0', 1); + Module['_emscripten_bind_DoublePtr___destroy___0'] = _emscripten_bind_DoublePtr___destroy___0 = createExportWrapper('emscripten_bind_DoublePtr___destroy___0', 1); + Module['_emscripten_bind_BoolVector_BoolVector_0'] = _emscripten_bind_BoolVector_BoolVector_0 = createExportWrapper('emscripten_bind_BoolVector_BoolVector_0', 0); + Module['_emscripten_bind_BoolVector_BoolVector_1'] = _emscripten_bind_BoolVector_BoolVector_1 = createExportWrapper('emscripten_bind_BoolVector_BoolVector_1', 1); + Module['_emscripten_bind_BoolVector_resize_1'] = _emscripten_bind_BoolVector_resize_1 = createExportWrapper('emscripten_bind_BoolVector_resize_1', 2); + Module['_emscripten_bind_BoolVector_get_1'] = _emscripten_bind_BoolVector_get_1 = createExportWrapper('emscripten_bind_BoolVector_get_1', 2); + Module['_emscripten_bind_BoolVector_set_2'] = _emscripten_bind_BoolVector_set_2 = createExportWrapper('emscripten_bind_BoolVector_set_2', 3); + Module['_emscripten_bind_BoolVector_size_0'] = _emscripten_bind_BoolVector_size_0 = createExportWrapper('emscripten_bind_BoolVector_size_0', 1); + Module['_emscripten_bind_BoolVector___destroy___0'] = _emscripten_bind_BoolVector___destroy___0 = createExportWrapper('emscripten_bind_BoolVector___destroy___0', 1); + Module['_emscripten_bind_CharVector_CharVector_0'] = _emscripten_bind_CharVector_CharVector_0 = createExportWrapper('emscripten_bind_CharVector_CharVector_0', 0); + Module['_emscripten_bind_CharVector_CharVector_1'] = _emscripten_bind_CharVector_CharVector_1 = createExportWrapper('emscripten_bind_CharVector_CharVector_1', 1); + Module['_emscripten_bind_CharVector_resize_1'] = _emscripten_bind_CharVector_resize_1 = createExportWrapper('emscripten_bind_CharVector_resize_1', 2); + Module['_emscripten_bind_CharVector_get_1'] = _emscripten_bind_CharVector_get_1 = createExportWrapper('emscripten_bind_CharVector_get_1', 2); + Module['_emscripten_bind_CharVector_set_2'] = _emscripten_bind_CharVector_set_2 = createExportWrapper('emscripten_bind_CharVector_set_2', 3); + Module['_emscripten_bind_CharVector_size_0'] = _emscripten_bind_CharVector_size_0 = createExportWrapper('emscripten_bind_CharVector_size_0', 1); + Module['_emscripten_bind_CharVector___destroy___0'] = _emscripten_bind_CharVector___destroy___0 = createExportWrapper('emscripten_bind_CharVector___destroy___0', 1); + Module['_emscripten_bind_IntVector_IntVector_0'] = _emscripten_bind_IntVector_IntVector_0 = createExportWrapper('emscripten_bind_IntVector_IntVector_0', 0); + Module['_emscripten_bind_IntVector_IntVector_1'] = _emscripten_bind_IntVector_IntVector_1 = createExportWrapper('emscripten_bind_IntVector_IntVector_1', 1); + Module['_emscripten_bind_IntVector_resize_1'] = _emscripten_bind_IntVector_resize_1 = createExportWrapper('emscripten_bind_IntVector_resize_1', 2); + Module['_emscripten_bind_IntVector_get_1'] = _emscripten_bind_IntVector_get_1 = createExportWrapper('emscripten_bind_IntVector_get_1', 2); + Module['_emscripten_bind_IntVector_set_2'] = _emscripten_bind_IntVector_set_2 = createExportWrapper('emscripten_bind_IntVector_set_2', 3); + Module['_emscripten_bind_IntVector_size_0'] = _emscripten_bind_IntVector_size_0 = createExportWrapper('emscripten_bind_IntVector_size_0', 1); + Module['_emscripten_bind_IntVector___destroy___0'] = _emscripten_bind_IntVector___destroy___0 = createExportWrapper('emscripten_bind_IntVector___destroy___0', 1); + Module['_emscripten_bind_DoubleVector_DoubleVector_0'] = _emscripten_bind_DoubleVector_DoubleVector_0 = createExportWrapper('emscripten_bind_DoubleVector_DoubleVector_0', 0); + Module['_emscripten_bind_DoubleVector_DoubleVector_1'] = _emscripten_bind_DoubleVector_DoubleVector_1 = createExportWrapper('emscripten_bind_DoubleVector_DoubleVector_1', 1); + Module['_emscripten_bind_DoubleVector_resize_1'] = _emscripten_bind_DoubleVector_resize_1 = createExportWrapper('emscripten_bind_DoubleVector_resize_1', 2); + Module['_emscripten_bind_DoubleVector_get_1'] = _emscripten_bind_DoubleVector_get_1 = createExportWrapper('emscripten_bind_DoubleVector_get_1', 2); + Module['_emscripten_bind_DoubleVector_set_2'] = _emscripten_bind_DoubleVector_set_2 = createExportWrapper('emscripten_bind_DoubleVector_set_2', 3); + Module['_emscripten_bind_DoubleVector_size_0'] = _emscripten_bind_DoubleVector_size_0 = createExportWrapper('emscripten_bind_DoubleVector_size_0', 1); + Module['_emscripten_bind_DoubleVector___destroy___0'] = _emscripten_bind_DoubleVector___destroy___0 = createExportWrapper('emscripten_bind_DoubleVector___destroy___0', 1); + Module['_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0'] = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0', 0); + Module['_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1'] = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1', 1); + Module['_emscripten_bind_SpeciesMasterTableRecordVector_resize_1'] = _emscripten_bind_SpeciesMasterTableRecordVector_resize_1 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_resize_1', 2); + Module['_emscripten_bind_SpeciesMasterTableRecordVector_get_1'] = _emscripten_bind_SpeciesMasterTableRecordVector_get_1 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_get_1', 2); + Module['_emscripten_bind_SpeciesMasterTableRecordVector_set_2'] = _emscripten_bind_SpeciesMasterTableRecordVector_set_2 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_set_2', 3); + Module['_emscripten_bind_SpeciesMasterTableRecordVector_size_0'] = _emscripten_bind_SpeciesMasterTableRecordVector_size_0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_size_0', 1); + Module['_emscripten_bind_SpeciesMasterTableRecordVector___destroy___0'] = _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector___destroy___0', 1); + Module['_emscripten_bind_AreaUnits_toBaseUnits_2'] = _emscripten_bind_AreaUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_AreaUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_AreaUnits_fromBaseUnits_2'] = _emscripten_bind_AreaUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_AreaUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_AreaUnits___destroy___0'] = _emscripten_bind_AreaUnits___destroy___0 = createExportWrapper('emscripten_bind_AreaUnits___destroy___0', 1); + Module['_emscripten_bind_BasalAreaUnits_toBaseUnits_2'] = _emscripten_bind_BasalAreaUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_BasalAreaUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_BasalAreaUnits_fromBaseUnits_2'] = _emscripten_bind_BasalAreaUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_BasalAreaUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_BasalAreaUnits___destroy___0'] = _emscripten_bind_BasalAreaUnits___destroy___0 = createExportWrapper('emscripten_bind_BasalAreaUnits___destroy___0', 1); + Module['_emscripten_bind_FractionUnits_toBaseUnits_2'] = _emscripten_bind_FractionUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_FractionUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_FractionUnits_fromBaseUnits_2'] = _emscripten_bind_FractionUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_FractionUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_FractionUnits___destroy___0'] = _emscripten_bind_FractionUnits___destroy___0 = createExportWrapper('emscripten_bind_FractionUnits___destroy___0', 1); + Module['_emscripten_bind_LengthUnits_toBaseUnits_2'] = _emscripten_bind_LengthUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_LengthUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_LengthUnits_fromBaseUnits_2'] = _emscripten_bind_LengthUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_LengthUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_LengthUnits___destroy___0'] = _emscripten_bind_LengthUnits___destroy___0 = createExportWrapper('emscripten_bind_LengthUnits___destroy___0', 1); + Module['_emscripten_bind_LoadingUnits_toBaseUnits_2'] = _emscripten_bind_LoadingUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_LoadingUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_LoadingUnits_fromBaseUnits_2'] = _emscripten_bind_LoadingUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_LoadingUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_LoadingUnits___destroy___0'] = _emscripten_bind_LoadingUnits___destroy___0 = createExportWrapper('emscripten_bind_LoadingUnits___destroy___0', 1); + Module['_emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2'] = _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2'] = _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0'] = _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0 = createExportWrapper('emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0', 1); + Module['_emscripten_bind_SpeedUnits_toBaseUnits_2'] = _emscripten_bind_SpeedUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_SpeedUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_SpeedUnits_fromBaseUnits_2'] = _emscripten_bind_SpeedUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_SpeedUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_SpeedUnits___destroy___0'] = _emscripten_bind_SpeedUnits___destroy___0 = createExportWrapper('emscripten_bind_SpeedUnits___destroy___0', 1); + Module['_emscripten_bind_PressureUnits_toBaseUnits_2'] = _emscripten_bind_PressureUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_PressureUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_PressureUnits_fromBaseUnits_2'] = _emscripten_bind_PressureUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_PressureUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_PressureUnits___destroy___0'] = _emscripten_bind_PressureUnits___destroy___0 = createExportWrapper('emscripten_bind_PressureUnits___destroy___0', 1); + Module['_emscripten_bind_SlopeUnits_toBaseUnits_2'] = _emscripten_bind_SlopeUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_SlopeUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_SlopeUnits_fromBaseUnits_2'] = _emscripten_bind_SlopeUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_SlopeUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_SlopeUnits___destroy___0'] = _emscripten_bind_SlopeUnits___destroy___0 = createExportWrapper('emscripten_bind_SlopeUnits___destroy___0', 1); + Module['_emscripten_bind_DensityUnits_toBaseUnits_2'] = _emscripten_bind_DensityUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_DensityUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_DensityUnits_fromBaseUnits_2'] = _emscripten_bind_DensityUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_DensityUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_DensityUnits___destroy___0'] = _emscripten_bind_DensityUnits___destroy___0 = createExportWrapper('emscripten_bind_DensityUnits___destroy___0', 1); + Module['_emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2'] = _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2'] = _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_HeatOfCombustionUnits___destroy___0'] = _emscripten_bind_HeatOfCombustionUnits___destroy___0 = createExportWrapper('emscripten_bind_HeatOfCombustionUnits___destroy___0', 1); + Module['_emscripten_bind_HeatSinkUnits_toBaseUnits_2'] = _emscripten_bind_HeatSinkUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_HeatSinkUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_HeatSinkUnits_fromBaseUnits_2'] = _emscripten_bind_HeatSinkUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_HeatSinkUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_HeatSinkUnits___destroy___0'] = _emscripten_bind_HeatSinkUnits___destroy___0 = createExportWrapper('emscripten_bind_HeatSinkUnits___destroy___0', 1); + Module['_emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2'] = _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2'] = _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_HeatPerUnitAreaUnits___destroy___0'] = _emscripten_bind_HeatPerUnitAreaUnits___destroy___0 = createExportWrapper('emscripten_bind_HeatPerUnitAreaUnits___destroy___0', 1); + Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2'] = _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2'] = _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0'] = _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0 = createExportWrapper('emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0', 1); + Module['_emscripten_bind_FirelineIntensityUnits_toBaseUnits_2'] = _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_FirelineIntensityUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2'] = _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_FirelineIntensityUnits___destroy___0'] = _emscripten_bind_FirelineIntensityUnits___destroy___0 = createExportWrapper('emscripten_bind_FirelineIntensityUnits___destroy___0', 1); + Module['_emscripten_bind_TemperatureUnits_toBaseUnits_2'] = _emscripten_bind_TemperatureUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_TemperatureUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_TemperatureUnits_fromBaseUnits_2'] = _emscripten_bind_TemperatureUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_TemperatureUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_TemperatureUnits___destroy___0'] = _emscripten_bind_TemperatureUnits___destroy___0 = createExportWrapper('emscripten_bind_TemperatureUnits___destroy___0', 1); + Module['_emscripten_bind_TimeUnits_toBaseUnits_2'] = _emscripten_bind_TimeUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_TimeUnits_toBaseUnits_2', 2); + Module['_emscripten_bind_TimeUnits_fromBaseUnits_2'] = _emscripten_bind_TimeUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_TimeUnits_fromBaseUnits_2', 2); + Module['_emscripten_bind_TimeUnits___destroy___0'] = _emscripten_bind_TimeUnits___destroy___0 = createExportWrapper('emscripten_bind_TimeUnits___destroy___0', 1); + Module['_emscripten_bind_FireSize_getBackingSpreadRate_1'] = _emscripten_bind_FireSize_getBackingSpreadRate_1 = createExportWrapper('emscripten_bind_FireSize_getBackingSpreadRate_1', 2); + Module['_emscripten_bind_FireSize_getEccentricity_0'] = _emscripten_bind_FireSize_getEccentricity_0 = createExportWrapper('emscripten_bind_FireSize_getEccentricity_0', 1); + Module['_emscripten_bind_FireSize_getEllipticalA_3'] = _emscripten_bind_FireSize_getEllipticalA_3 = createExportWrapper('emscripten_bind_FireSize_getEllipticalA_3', 4); + Module['_emscripten_bind_FireSize_getEllipticalB_3'] = _emscripten_bind_FireSize_getEllipticalB_3 = createExportWrapper('emscripten_bind_FireSize_getEllipticalB_3', 4); + Module['_emscripten_bind_FireSize_getEllipticalC_3'] = _emscripten_bind_FireSize_getEllipticalC_3 = createExportWrapper('emscripten_bind_FireSize_getEllipticalC_3', 4); + Module['_emscripten_bind_FireSize_getFireArea_4'] = _emscripten_bind_FireSize_getFireArea_4 = createExportWrapper('emscripten_bind_FireSize_getFireArea_4', 5); + Module['_emscripten_bind_FireSize_getFireLength_3'] = _emscripten_bind_FireSize_getFireLength_3 = createExportWrapper('emscripten_bind_FireSize_getFireLength_3', 4); + Module['_emscripten_bind_FireSize_getFireLengthToWidthRatio_0'] = _emscripten_bind_FireSize_getFireLengthToWidthRatio_0 = createExportWrapper('emscripten_bind_FireSize_getFireLengthToWidthRatio_0', 1); + Module['_emscripten_bind_FireSize_getFirePerimeter_4'] = _emscripten_bind_FireSize_getFirePerimeter_4 = createExportWrapper('emscripten_bind_FireSize_getFirePerimeter_4', 5); + Module['_emscripten_bind_FireSize_getFlankingSpreadRate_1'] = _emscripten_bind_FireSize_getFlankingSpreadRate_1 = createExportWrapper('emscripten_bind_FireSize_getFlankingSpreadRate_1', 2); + Module['_emscripten_bind_FireSize_getHeadingToBackingRatio_0'] = _emscripten_bind_FireSize_getHeadingToBackingRatio_0 = createExportWrapper('emscripten_bind_FireSize_getHeadingToBackingRatio_0', 1); + Module['_emscripten_bind_FireSize_getMaxFireWidth_3'] = _emscripten_bind_FireSize_getMaxFireWidth_3 = createExportWrapper('emscripten_bind_FireSize_getMaxFireWidth_3', 4); + Module['_emscripten_bind_FireSize_calculateFireBasicDimensions_5'] = _emscripten_bind_FireSize_calculateFireBasicDimensions_5 = createExportWrapper('emscripten_bind_FireSize_calculateFireBasicDimensions_5', 6); + Module['_emscripten_bind_FireSize___destroy___0'] = _emscripten_bind_FireSize___destroy___0 = createExportWrapper('emscripten_bind_FireSize___destroy___0', 1); + Module['_emscripten_bind_SIGContainAdapter_SIGContainAdapter_0'] = _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_SIGContainAdapter_0', 0); + Module['_emscripten_bind_SIGContainAdapter_getContainmentStatus_0'] = _emscripten_bind_SIGContainAdapter_getContainmentStatus_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getContainmentStatus_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0'] = _emscripten_bind_SIGContainAdapter_getFirePerimeterX_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFirePerimeterX_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0'] = _emscripten_bind_SIGContainAdapter_getFirePerimeterY_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFirePerimeterY_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getAttackDistance_1'] = _emscripten_bind_SIGContainAdapter_getAttackDistance_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getAttackDistance_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1'] = _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getFinalCost_0'] = _emscripten_bind_SIGContainAdapter_getFinalCost_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalCost_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1'] = _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getFinalFireSize_1'] = _emscripten_bind_SIGContainAdapter_getFinalFireSize_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalFireSize_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1'] = _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getFinalProductionRate_1'] = _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalProductionRate_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0'] = _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getFireBackAtReport_0'] = _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireBackAtReport_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0'] = _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0'] = _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1'] = _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0'] = _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1'] = _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1'] = _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getReportSize_1'] = _emscripten_bind_SIGContainAdapter_getReportSize_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getReportSize_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getReportRate_1'] = _emscripten_bind_SIGContainAdapter_getReportRate_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getReportRate_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1'] = _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1', 2); + Module['_emscripten_bind_SIGContainAdapter_getTactic_0'] = _emscripten_bind_SIGContainAdapter_getTactic_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getTactic_0', 1); + Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0'] = _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0', 1); + Module['_emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1'] = _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1', 2); + Module['_emscripten_bind_SIGContainAdapter_removeResourceAt_1'] = _emscripten_bind_SIGContainAdapter_removeResourceAt_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_removeResourceAt_1', 2); + Module['_emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1'] = _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1', 2); + Module['_emscripten_bind_SIGContainAdapter_addResource_9'] = _emscripten_bind_SIGContainAdapter_addResource_9 = createExportWrapper('emscripten_bind_SIGContainAdapter_addResource_9', 10); + Module['_emscripten_bind_SIGContainAdapter_doContainRun_0'] = _emscripten_bind_SIGContainAdapter_doContainRun_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_doContainRun_0', 1); + Module['_emscripten_bind_SIGContainAdapter_removeAllResources_0'] = _emscripten_bind_SIGContainAdapter_removeAllResources_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_removeAllResources_0', 1); + Module['_emscripten_bind_SIGContainAdapter_setAttackDistance_2'] = _emscripten_bind_SIGContainAdapter_setAttackDistance_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setAttackDistance_2', 3); + Module['_emscripten_bind_SIGContainAdapter_setContainMode_1'] = _emscripten_bind_SIGContainAdapter_setContainMode_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setContainMode_1', 2); + Module['_emscripten_bind_SIGContainAdapter_setFireStartTime_1'] = _emscripten_bind_SIGContainAdapter_setFireStartTime_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setFireStartTime_1', 2); + Module['_emscripten_bind_SIGContainAdapter_setLwRatio_1'] = _emscripten_bind_SIGContainAdapter_setLwRatio_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setLwRatio_1', 2); + Module['_emscripten_bind_SIGContainAdapter_setMaxFireSize_1'] = _emscripten_bind_SIGContainAdapter_setMaxFireSize_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setMaxFireSize_1', 2); + Module['_emscripten_bind_SIGContainAdapter_setMaxFireTime_1'] = _emscripten_bind_SIGContainAdapter_setMaxFireTime_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setMaxFireTime_1', 2); + Module['_emscripten_bind_SIGContainAdapter_setMaxSteps_1'] = _emscripten_bind_SIGContainAdapter_setMaxSteps_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setMaxSteps_1', 2); + Module['_emscripten_bind_SIGContainAdapter_setMinSteps_1'] = _emscripten_bind_SIGContainAdapter_setMinSteps_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setMinSteps_1', 2); + Module['_emscripten_bind_SIGContainAdapter_setReportRate_2'] = _emscripten_bind_SIGContainAdapter_setReportRate_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setReportRate_2', 3); + Module['_emscripten_bind_SIGContainAdapter_setReportSize_2'] = _emscripten_bind_SIGContainAdapter_setReportSize_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setReportSize_2', 3); + Module['_emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2'] = _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2', 3); + Module['_emscripten_bind_SIGContainAdapter_setResourceDuration_2'] = _emscripten_bind_SIGContainAdapter_setResourceDuration_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setResourceDuration_2', 3); + Module['_emscripten_bind_SIGContainAdapter_setRetry_1'] = _emscripten_bind_SIGContainAdapter_setRetry_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setRetry_1', 2); + Module['_emscripten_bind_SIGContainAdapter_setTactic_1'] = _emscripten_bind_SIGContainAdapter_setTactic_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setTactic_1', 2); + Module['_emscripten_bind_SIGContainAdapter___destroy___0'] = _emscripten_bind_SIGContainAdapter___destroy___0 = createExportWrapper('emscripten_bind_SIGContainAdapter___destroy___0', 1); + Module['_emscripten_bind_SIGIgnite_SIGIgnite_0'] = _emscripten_bind_SIGIgnite_SIGIgnite_0 = createExportWrapper('emscripten_bind_SIGIgnite_SIGIgnite_0', 0); + Module['_emscripten_bind_SIGIgnite_initializeMembers_0'] = _emscripten_bind_SIGIgnite_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGIgnite_initializeMembers_0', 1); + Module['_emscripten_bind_SIGIgnite_getFuelBedType_0'] = _emscripten_bind_SIGIgnite_getFuelBedType_0 = createExportWrapper('emscripten_bind_SIGIgnite_getFuelBedType_0', 1); + Module['_emscripten_bind_SIGIgnite_getLightningChargeType_0'] = _emscripten_bind_SIGIgnite_getLightningChargeType_0 = createExportWrapper('emscripten_bind_SIGIgnite_getLightningChargeType_0', 1); + Module['_emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0'] = _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0 = createExportWrapper('emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0', 1); + Module['_emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1'] = _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1 = createExportWrapper('emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1', 2); + Module['_emscripten_bind_SIGIgnite_setAirTemperature_2'] = _emscripten_bind_SIGIgnite_setAirTemperature_2 = createExportWrapper('emscripten_bind_SIGIgnite_setAirTemperature_2', 3); + Module['_emscripten_bind_SIGIgnite_setDuffDepth_2'] = _emscripten_bind_SIGIgnite_setDuffDepth_2 = createExportWrapper('emscripten_bind_SIGIgnite_setDuffDepth_2', 3); + Module['_emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1'] = _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1 = createExportWrapper('emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1', 2); + Module['_emscripten_bind_SIGIgnite_setLightningChargeType_1'] = _emscripten_bind_SIGIgnite_setLightningChargeType_1 = createExportWrapper('emscripten_bind_SIGIgnite_setLightningChargeType_1', 2); + Module['_emscripten_bind_SIGIgnite_setMoistureHundredHour_2'] = _emscripten_bind_SIGIgnite_setMoistureHundredHour_2 = createExportWrapper('emscripten_bind_SIGIgnite_setMoistureHundredHour_2', 3); + Module['_emscripten_bind_SIGIgnite_setMoistureOneHour_2'] = _emscripten_bind_SIGIgnite_setMoistureOneHour_2 = createExportWrapper('emscripten_bind_SIGIgnite_setMoistureOneHour_2', 3); + Module['_emscripten_bind_SIGIgnite_setSunShade_2'] = _emscripten_bind_SIGIgnite_setSunShade_2 = createExportWrapper('emscripten_bind_SIGIgnite_setSunShade_2', 3); + Module['_emscripten_bind_SIGIgnite_updateIgniteInputs_11'] = _emscripten_bind_SIGIgnite_updateIgniteInputs_11 = createExportWrapper('emscripten_bind_SIGIgnite_updateIgniteInputs_11', 12); + Module['_emscripten_bind_SIGIgnite_getAirTemperature_1'] = _emscripten_bind_SIGIgnite_getAirTemperature_1 = createExportWrapper('emscripten_bind_SIGIgnite_getAirTemperature_1', 2); + Module['_emscripten_bind_SIGIgnite_getDuffDepth_1'] = _emscripten_bind_SIGIgnite_getDuffDepth_1 = createExportWrapper('emscripten_bind_SIGIgnite_getDuffDepth_1', 2); + Module['_emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1'] = _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1 = createExportWrapper('emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1', 2); + Module['_emscripten_bind_SIGIgnite_getFuelTemperature_1'] = _emscripten_bind_SIGIgnite_getFuelTemperature_1 = createExportWrapper('emscripten_bind_SIGIgnite_getFuelTemperature_1', 2); + Module['_emscripten_bind_SIGIgnite_getMoistureHundredHour_1'] = _emscripten_bind_SIGIgnite_getMoistureHundredHour_1 = createExportWrapper('emscripten_bind_SIGIgnite_getMoistureHundredHour_1', 2); + Module['_emscripten_bind_SIGIgnite_getMoistureOneHour_1'] = _emscripten_bind_SIGIgnite_getMoistureOneHour_1 = createExportWrapper('emscripten_bind_SIGIgnite_getMoistureOneHour_1', 2); + Module['_emscripten_bind_SIGIgnite_getSunShade_1'] = _emscripten_bind_SIGIgnite_getSunShade_1 = createExportWrapper('emscripten_bind_SIGIgnite_getSunShade_1', 2); + Module['_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0'] = _emscripten_bind_SIGIgnite_isFuelDepthNeeded_0 = createExportWrapper('emscripten_bind_SIGIgnite_isFuelDepthNeeded_0', 1); + Module['_emscripten_bind_SIGIgnite___destroy___0'] = _emscripten_bind_SIGIgnite___destroy___0 = createExportWrapper('emscripten_bind_SIGIgnite___destroy___0', 1); + Module['_emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0'] = _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0', 0); + Module['_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1'] = _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1', 2); + Module['_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1'] = _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1', 2); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2', 3); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1', 2); + Module['_emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0'] = _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0', 1); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1', 2); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1', 2); + Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1', 2); + Module['_emscripten_bind_SIGMoistureScenarios___destroy___0'] = _emscripten_bind_SIGMoistureScenarios___destroy___0 = createExportWrapper('emscripten_bind_SIGMoistureScenarios___destroy___0', 1); + Module['_emscripten_bind_SIGSpot_SIGSpot_0'] = _emscripten_bind_SIGSpot_SIGSpot_0 = createExportWrapper('emscripten_bind_SIGSpot_SIGSpot_0', 0); + Module['_emscripten_bind_SIGSpot_getDownwindCanopyMode_0'] = _emscripten_bind_SIGSpot_getDownwindCanopyMode_0 = createExportWrapper('emscripten_bind_SIGSpot_getDownwindCanopyMode_0', 1); + Module['_emscripten_bind_SIGSpot_getLocation_0'] = _emscripten_bind_SIGSpot_getLocation_0 = createExportWrapper('emscripten_bind_SIGSpot_getLocation_0', 1); + Module['_emscripten_bind_SIGSpot_getTreeSpecies_0'] = _emscripten_bind_SIGSpot_getTreeSpecies_0 = createExportWrapper('emscripten_bind_SIGSpot_getTreeSpecies_0', 1); + Module['_emscripten_bind_SIGSpot_getBurningPileFlameHeight_1'] = _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1 = createExportWrapper('emscripten_bind_SIGSpot_getBurningPileFlameHeight_1', 2); + Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1'] = _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1 = createExportWrapper('emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1', 2); + Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1'] = _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1 = createExportWrapper('emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1', 2); + Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1'] = _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1', 2); + Module['_emscripten_bind_SIGSpot_getDBH_1'] = _emscripten_bind_SIGSpot_getDBH_1 = createExportWrapper('emscripten_bind_SIGSpot_getDBH_1', 2); + Module['_emscripten_bind_SIGSpot_getDownwindCoverHeight_1'] = _emscripten_bind_SIGSpot_getDownwindCoverHeight_1 = createExportWrapper('emscripten_bind_SIGSpot_getDownwindCoverHeight_1', 2); + Module['_emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1'] = _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1', 2); + Module['_emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1'] = _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1', 2); + Module['_emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0'] = _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0 = createExportWrapper('emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0', 1); + Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1'] = _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1'] = _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1'] = _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1'] = _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1'] = _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1'] = _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1'] = _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1'] = _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1'] = _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1', 2); + Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1'] = _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1', 2); + Module['_emscripten_bind_SIGSpot_getRidgeToValleyDistance_1'] = _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1 = createExportWrapper('emscripten_bind_SIGSpot_getRidgeToValleyDistance_1', 2); + Module['_emscripten_bind_SIGSpot_getRidgeToValleyElevation_1'] = _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1 = createExportWrapper('emscripten_bind_SIGSpot_getRidgeToValleyElevation_1', 2); + Module['_emscripten_bind_SIGSpot_getSurfaceFlameLength_1'] = _emscripten_bind_SIGSpot_getSurfaceFlameLength_1 = createExportWrapper('emscripten_bind_SIGSpot_getSurfaceFlameLength_1', 2); + Module['_emscripten_bind_SIGSpot_getTreeHeight_1'] = _emscripten_bind_SIGSpot_getTreeHeight_1 = createExportWrapper('emscripten_bind_SIGSpot_getTreeHeight_1', 2); + Module['_emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1'] = _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1 = createExportWrapper('emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1', 2); + Module['_emscripten_bind_SIGSpot_getTorchingTrees_0'] = _emscripten_bind_SIGSpot_getTorchingTrees_0 = createExportWrapper('emscripten_bind_SIGSpot_getTorchingTrees_0', 1); + Module['_emscripten_bind_SIGSpot_calculateAll_0'] = _emscripten_bind_SIGSpot_calculateAll_0 = createExportWrapper('emscripten_bind_SIGSpot_calculateAll_0', 1); + Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0'] = _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0 = createExportWrapper('emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0', 1); + Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0'] = _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0 = createExportWrapper('emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0', 1); + Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0'] = _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0 = createExportWrapper('emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0', 1); + Module['_emscripten_bind_SIGSpot_initializeMembers_0'] = _emscripten_bind_SIGSpot_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGSpot_initializeMembers_0', 1); + Module['_emscripten_bind_SIGSpot_setActiveCrownFlameLength_2'] = _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2 = createExportWrapper('emscripten_bind_SIGSpot_setActiveCrownFlameLength_2', 3); + Module['_emscripten_bind_SIGSpot_setBurningPileFlameHeight_2'] = _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2 = createExportWrapper('emscripten_bind_SIGSpot_setBurningPileFlameHeight_2', 3); + Module['_emscripten_bind_SIGSpot_setDBH_2'] = _emscripten_bind_SIGSpot_setDBH_2 = createExportWrapper('emscripten_bind_SIGSpot_setDBH_2', 3); + Module['_emscripten_bind_SIGSpot_setDownwindCanopyMode_1'] = _emscripten_bind_SIGSpot_setDownwindCanopyMode_1 = createExportWrapper('emscripten_bind_SIGSpot_setDownwindCanopyMode_1', 2); + Module['_emscripten_bind_SIGSpot_setDownwindCoverHeight_2'] = _emscripten_bind_SIGSpot_setDownwindCoverHeight_2 = createExportWrapper('emscripten_bind_SIGSpot_setDownwindCoverHeight_2', 3); + Module['_emscripten_bind_SIGSpot_setFireType_1'] = _emscripten_bind_SIGSpot_setFireType_1 = createExportWrapper('emscripten_bind_SIGSpot_setFireType_1', 2); + Module['_emscripten_bind_SIGSpot_setFlameLength_2'] = _emscripten_bind_SIGSpot_setFlameLength_2 = createExportWrapper('emscripten_bind_SIGSpot_setFlameLength_2', 3); + Module['_emscripten_bind_SIGSpot_setFirelineIntensity_2'] = _emscripten_bind_SIGSpot_setFirelineIntensity_2 = createExportWrapper('emscripten_bind_SIGSpot_setFirelineIntensity_2', 3); + Module['_emscripten_bind_SIGSpot_setLocation_1'] = _emscripten_bind_SIGSpot_setLocation_1 = createExportWrapper('emscripten_bind_SIGSpot_setLocation_1', 2); + Module['_emscripten_bind_SIGSpot_setRidgeToValleyDistance_2'] = _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2 = createExportWrapper('emscripten_bind_SIGSpot_setRidgeToValleyDistance_2', 3); + Module['_emscripten_bind_SIGSpot_setRidgeToValleyElevation_2'] = _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2 = createExportWrapper('emscripten_bind_SIGSpot_setRidgeToValleyElevation_2', 3); + Module['_emscripten_bind_SIGSpot_setTorchingTrees_1'] = _emscripten_bind_SIGSpot_setTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_setTorchingTrees_1', 2); + Module['_emscripten_bind_SIGSpot_setTreeHeight_2'] = _emscripten_bind_SIGSpot_setTreeHeight_2 = createExportWrapper('emscripten_bind_SIGSpot_setTreeHeight_2', 3); + Module['_emscripten_bind_SIGSpot_setTreeSpecies_1'] = _emscripten_bind_SIGSpot_setTreeSpecies_1 = createExportWrapper('emscripten_bind_SIGSpot_setTreeSpecies_1', 2); + Module['_emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2'] = _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2 = createExportWrapper('emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2', 3); + Module['_emscripten_bind_SIGSpot_setWindSpeed_2'] = _emscripten_bind_SIGSpot_setWindSpeed_2 = createExportWrapper('emscripten_bind_SIGSpot_setWindSpeed_2', 3); + Module['_emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3'] = _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3 = createExportWrapper('emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3', 4); + Module['_emscripten_bind_SIGSpot_setWindHeightInputMode_1'] = _emscripten_bind_SIGSpot_setWindHeightInputMode_1 = createExportWrapper('emscripten_bind_SIGSpot_setWindHeightInputMode_1', 2); + Module['_emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12'] = _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12 = createExportWrapper('emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12', 13); + Module['_emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12'] = _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12 = createExportWrapper('emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12', 13); + Module['_emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16'] = _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16 = createExportWrapper('emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16', 17); + Module['_emscripten_bind_SIGSpot___destroy___0'] = _emscripten_bind_SIGSpot___destroy___0 = createExportWrapper('emscripten_bind_SIGSpot___destroy___0', 1); + Module['_emscripten_bind_SIGFuelModels_SIGFuelModels_0'] = _emscripten_bind_SIGFuelModels_SIGFuelModels_0 = createExportWrapper('emscripten_bind_SIGFuelModels_SIGFuelModels_0', 0); + Module['_emscripten_bind_SIGFuelModels_SIGFuelModels_1'] = _emscripten_bind_SIGFuelModels_SIGFuelModels_1 = createExportWrapper('emscripten_bind_SIGFuelModels_SIGFuelModels_1', 1); + Module['_emscripten_bind_SIGFuelModels_equal_1'] = _emscripten_bind_SIGFuelModels_equal_1 = createExportWrapper('emscripten_bind_SIGFuelModels_equal_1', 2); + Module['_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1'] = _emscripten_bind_SIGFuelModels_clearCustomFuelModel_1 = createExportWrapper('emscripten_bind_SIGFuelModels_clearCustomFuelModel_1', 2); + Module['_emscripten_bind_SIGFuelModels_getIsDynamic_1'] = _emscripten_bind_SIGFuelModels_getIsDynamic_1 = createExportWrapper('emscripten_bind_SIGFuelModels_getIsDynamic_1', 2); + Module['_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1'] = _emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1 = createExportWrapper('emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1', 2); + Module['_emscripten_bind_SIGFuelModels_isFuelModelDefined_1'] = _emscripten_bind_SIGFuelModels_isFuelModelDefined_1 = createExportWrapper('emscripten_bind_SIGFuelModels_isFuelModelDefined_1', 2); + Module['_emscripten_bind_SIGFuelModels_isFuelModelReserved_1'] = _emscripten_bind_SIGFuelModels_isFuelModelReserved_1 = createExportWrapper('emscripten_bind_SIGFuelModels_isFuelModelReserved_1', 2); + Module['_emscripten_bind_SIGFuelModels_setCustomFuelModel_21'] = _emscripten_bind_SIGFuelModels_setCustomFuelModel_21 = createExportWrapper('emscripten_bind_SIGFuelModels_setCustomFuelModel_21', 22); + Module['_emscripten_bind_SIGFuelModels_getFuelCode_1'] = _emscripten_bind_SIGFuelModels_getFuelCode_1 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelCode_1', 2); + Module['_emscripten_bind_SIGFuelModels_getFuelName_1'] = _emscripten_bind_SIGFuelModels_getFuelName_1 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelName_1', 2); + Module['_emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2', 3); + Module['_emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2', 3); + Module['_emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2', 3); + Module['_emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2', 3); + Module['_emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2', 3); + Module['_emscripten_bind_SIGFuelModels_getFuelbedDepth_2'] = _emscripten_bind_SIGFuelModels_getFuelbedDepth_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelbedDepth_2', 3); + Module['_emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2'] = _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2', 3); + Module['_emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2'] = _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2', 3); + Module['_emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2'] = _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2', 3); + Module['_emscripten_bind_SIGFuelModels_getSavrLiveWoody_2'] = _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getSavrLiveWoody_2', 3); + Module['_emscripten_bind_SIGFuelModels_getSavrOneHour_2'] = _emscripten_bind_SIGFuelModels_getSavrOneHour_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getSavrOneHour_2', 3); + Module['_emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2'] = _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2', 3); + Module['_emscripten_bind_SIGFuelModels___destroy___0'] = _emscripten_bind_SIGFuelModels___destroy___0 = createExportWrapper('emscripten_bind_SIGFuelModels___destroy___0', 1); + Module['_emscripten_bind_SIGSurface_SIGSurface_1'] = _emscripten_bind_SIGSurface_SIGSurface_1 = createExportWrapper('emscripten_bind_SIGSurface_SIGSurface_1', 1); + Module['_emscripten_bind_SIGSurface_getAspenFireSeverity_0'] = _emscripten_bind_SIGSurface_getAspenFireSeverity_0 = createExportWrapper('emscripten_bind_SIGSurface_getAspenFireSeverity_0', 1); + Module['_emscripten_bind_SIGSurface_getChaparralFuelType_0'] = _emscripten_bind_SIGSurface_getChaparralFuelType_0 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralFuelType_0', 1); + Module['_emscripten_bind_SIGSurface_getMoistureInputMode_0'] = _emscripten_bind_SIGSurface_getMoistureInputMode_0 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureInputMode_0', 1); + Module['_emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0'] = _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0', 1); + Module['_emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0'] = _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0', 1); + Module['_emscripten_bind_SIGSurface_getWindHeightInputMode_0'] = _emscripten_bind_SIGSurface_getWindHeightInputMode_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindHeightInputMode_0', 1); + Module['_emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0'] = _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0', 1); + Module['_emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0'] = _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0 = createExportWrapper('emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0', 1); + Module['_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1'] = _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1 = createExportWrapper('emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1', 2); + Module['_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1'] = _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1 = createExportWrapper('emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1', 2); + Module['_emscripten_bind_SIGSurface_getIsUsingChaparral_0'] = _emscripten_bind_SIGSurface_getIsUsingChaparral_0 = createExportWrapper('emscripten_bind_SIGSurface_getIsUsingChaparral_0', 1); + Module['_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0'] = _emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0 = createExportWrapper('emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0', 1); + Module['_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0'] = _emscripten_bind_SIGSurface_getIsUsingWesternAspen_0 = createExportWrapper('emscripten_bind_SIGSurface_getIsUsingWesternAspen_0', 1); + Module['_emscripten_bind_SIGSurface_isAllFuelLoadZero_1'] = _emscripten_bind_SIGSurface_isAllFuelLoadZero_1 = createExportWrapper('emscripten_bind_SIGSurface_isAllFuelLoadZero_1', 2); + Module['_emscripten_bind_SIGSurface_isFuelDynamic_1'] = _emscripten_bind_SIGSurface_isFuelDynamic_1 = createExportWrapper('emscripten_bind_SIGSurface_isFuelDynamic_1', 2); + Module['_emscripten_bind_SIGSurface_isFuelModelDefined_1'] = _emscripten_bind_SIGSurface_isFuelModelDefined_1 = createExportWrapper('emscripten_bind_SIGSurface_isFuelModelDefined_1', 2); + Module['_emscripten_bind_SIGSurface_isFuelModelReserved_1'] = _emscripten_bind_SIGSurface_isFuelModelReserved_1 = createExportWrapper('emscripten_bind_SIGSurface_isFuelModelReserved_1', 2); + Module['_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1'] = _emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1 = createExportWrapper('emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1', 2); + Module['_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0'] = _emscripten_bind_SIGSurface_isUsingTwoFuelModels_0 = createExportWrapper('emscripten_bind_SIGSurface_isUsingTwoFuelModels_0', 1); + Module['_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1'] = _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1 = createExportWrapper('emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1', 2); + Module['_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1'] = _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1 = createExportWrapper('emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1', 2); + Module['_emscripten_bind_SIGSurface_calculateFlameLength_3'] = _emscripten_bind_SIGSurface_calculateFlameLength_3 = createExportWrapper('emscripten_bind_SIGSurface_calculateFlameLength_3', 4); + Module['_emscripten_bind_SIGSurface_getAgeOfRough_0'] = _emscripten_bind_SIGSurface_getAgeOfRough_0 = createExportWrapper('emscripten_bind_SIGSurface_getAgeOfRough_0', 1); + Module['_emscripten_bind_SIGSurface_getAspect_0'] = _emscripten_bind_SIGSurface_getAspect_0 = createExportWrapper('emscripten_bind_SIGSurface_getAspect_0', 1); + Module['_emscripten_bind_SIGSurface_getAspenCuringLevel_1'] = _emscripten_bind_SIGSurface_getAspenCuringLevel_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenCuringLevel_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenDBH_1'] = _emscripten_bind_SIGSurface_getAspenDBH_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenDBH_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1'] = _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1'] = _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1'] = _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1'] = _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1'] = _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1'] = _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1'] = _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1', 2); + Module['_emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1'] = _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1', 2); + Module['_emscripten_bind_SIGSurface_getBackingFirelineIntensity_1'] = _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getBackingFirelineIntensity_1', 2); + Module['_emscripten_bind_SIGSurface_getBackingFlameLength_1'] = _emscripten_bind_SIGSurface_getBackingFlameLength_1 = createExportWrapper('emscripten_bind_SIGSurface_getBackingFlameLength_1', 2); + Module['_emscripten_bind_SIGSurface_getBackingSpreadDistance_1'] = _emscripten_bind_SIGSurface_getBackingSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGSurface_getBackingSpreadDistance_1', 2); + Module['_emscripten_bind_SIGSurface_getBackingSpreadRate_1'] = _emscripten_bind_SIGSurface_getBackingSpreadRate_1 = createExportWrapper('emscripten_bind_SIGSurface_getBackingSpreadRate_1', 2); + Module['_emscripten_bind_SIGSurface_getBulkDensity_1'] = _emscripten_bind_SIGSurface_getBulkDensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getBulkDensity_1', 2); + Module['_emscripten_bind_SIGSurface_getCanopyCover_1'] = _emscripten_bind_SIGSurface_getCanopyCover_1 = createExportWrapper('emscripten_bind_SIGSurface_getCanopyCover_1', 2); + Module['_emscripten_bind_SIGSurface_getCanopyHeight_1'] = _emscripten_bind_SIGSurface_getCanopyHeight_1 = createExportWrapper('emscripten_bind_SIGSurface_getCanopyHeight_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralAge_1'] = _emscripten_bind_SIGSurface_getChaparralAge_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralAge_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0'] = _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0', 1); + Module['_emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0'] = _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0', 1); + Module['_emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1'] = _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralDensity_3'] = _emscripten_bind_SIGSurface_getChaparralDensity_3 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralDensity_3', 4); + Module['_emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1'] = _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0'] = _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0', 1); + Module['_emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3'] = _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3', 4); + Module['_emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1'] = _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralMoisture_3'] = _emscripten_bind_SIGSurface_getChaparralMoisture_3 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralMoisture_3', 4); + Module['_emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1'] = _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1'] = _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1'] = _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2'] = _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2 = createExportWrapper('emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2', 3); + Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1'] = _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1 = createExportWrapper('emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1', 2); + Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1'] = _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1 = createExportWrapper('emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1', 2); + Module['_emscripten_bind_SIGSurface_getCharacteristicSAVR_1'] = _emscripten_bind_SIGSurface_getCharacteristicSAVR_1 = createExportWrapper('emscripten_bind_SIGSurface_getCharacteristicSAVR_1', 2); + Module['_emscripten_bind_SIGSurface_getCrownRatio_1'] = _emscripten_bind_SIGSurface_getCrownRatio_1 = createExportWrapper('emscripten_bind_SIGSurface_getCrownRatio_1', 2); + Module['_emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0'] = _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0 = createExportWrapper('emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0', 1); + Module['_emscripten_bind_SIGSurface_getDirectionOfInterest_0'] = _emscripten_bind_SIGSurface_getDirectionOfInterest_0 = createExportWrapper('emscripten_bind_SIGSurface_getDirectionOfInterest_0', 1); + Module['_emscripten_bind_SIGSurface_getDirectionOfBacking_0'] = _emscripten_bind_SIGSurface_getDirectionOfBacking_0 = createExportWrapper('emscripten_bind_SIGSurface_getDirectionOfBacking_0', 1); + Module['_emscripten_bind_SIGSurface_getDirectionOfFlanking_0'] = _emscripten_bind_SIGSurface_getDirectionOfFlanking_0 = createExportWrapper('emscripten_bind_SIGSurface_getDirectionOfFlanking_0', 1); + Module['_emscripten_bind_SIGSurface_getElapsedTime_1'] = _emscripten_bind_SIGSurface_getElapsedTime_1 = createExportWrapper('emscripten_bind_SIGSurface_getElapsedTime_1', 2); + Module['_emscripten_bind_SIGSurface_getEllipticalA_1'] = _emscripten_bind_SIGSurface_getEllipticalA_1 = createExportWrapper('emscripten_bind_SIGSurface_getEllipticalA_1', 2); + Module['_emscripten_bind_SIGSurface_getEllipticalB_1'] = _emscripten_bind_SIGSurface_getEllipticalB_1 = createExportWrapper('emscripten_bind_SIGSurface_getEllipticalB_1', 2); + Module['_emscripten_bind_SIGSurface_getEllipticalC_1'] = _emscripten_bind_SIGSurface_getEllipticalC_1 = createExportWrapper('emscripten_bind_SIGSurface_getEllipticalC_1', 2); + Module['_emscripten_bind_SIGSurface_getFireLength_1'] = _emscripten_bind_SIGSurface_getFireLength_1 = createExportWrapper('emscripten_bind_SIGSurface_getFireLength_1', 2); + Module['_emscripten_bind_SIGSurface_getMaxFireWidth_1'] = _emscripten_bind_SIGSurface_getMaxFireWidth_1 = createExportWrapper('emscripten_bind_SIGSurface_getMaxFireWidth_1', 2); + Module['_emscripten_bind_SIGSurface_getFireArea_1'] = _emscripten_bind_SIGSurface_getFireArea_1 = createExportWrapper('emscripten_bind_SIGSurface_getFireArea_1', 2); + Module['_emscripten_bind_SIGSurface_getFireEccentricity_0'] = _emscripten_bind_SIGSurface_getFireEccentricity_0 = createExportWrapper('emscripten_bind_SIGSurface_getFireEccentricity_0', 1); + Module['_emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0'] = _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0 = createExportWrapper('emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0', 1); + Module['_emscripten_bind_SIGSurface_getFirePerimeter_1'] = _emscripten_bind_SIGSurface_getFirePerimeter_1 = createExportWrapper('emscripten_bind_SIGSurface_getFirePerimeter_1', 2); + Module['_emscripten_bind_SIGSurface_getFirelineIntensity_1'] = _emscripten_bind_SIGSurface_getFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getFirelineIntensity_1', 2); + Module['_emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1', 2); + Module['_emscripten_bind_SIGSurface_getFlameLength_1'] = _emscripten_bind_SIGSurface_getFlameLength_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlameLength_1', 2); + Module['_emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1', 2); + Module['_emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1'] = _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1', 2); + Module['_emscripten_bind_SIGSurface_getFlankingFlameLength_1'] = _emscripten_bind_SIGSurface_getFlankingFlameLength_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlankingFlameLength_1', 2); + Module['_emscripten_bind_SIGSurface_getFlankingSpreadRate_1'] = _emscripten_bind_SIGSurface_getFlankingSpreadRate_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlankingSpreadRate_1', 2); + Module['_emscripten_bind_SIGSurface_getFlankingSpreadDistance_1'] = _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlankingSpreadDistance_1', 2); + Module['_emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2'] = _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2'] = _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelLoadHundredHour_2'] = _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadHundredHour_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2'] = _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2'] = _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelLoadOneHour_2'] = _emscripten_bind_SIGSurface_getFuelLoadOneHour_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadOneHour_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelLoadTenHour_2'] = _emscripten_bind_SIGSurface_getFuelLoadTenHour_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadTenHour_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2'] = _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2'] = _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2'] = _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelSavrOneHour_2'] = _emscripten_bind_SIGSurface_getFuelSavrOneHour_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelSavrOneHour_2', 3); + Module['_emscripten_bind_SIGSurface_getFuelbedDepth_2'] = _emscripten_bind_SIGSurface_getFuelbedDepth_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelbedDepth_2', 3); + Module['_emscripten_bind_SIGSurface_getHeadingSpreadRate_1'] = _emscripten_bind_SIGSurface_getHeadingSpreadRate_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeadingSpreadRate_1', 2); + Module['_emscripten_bind_SIGSurface_getHeadingToBackingRatio_0'] = _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0 = createExportWrapper('emscripten_bind_SIGSurface_getHeadingToBackingRatio_0', 1); + Module['_emscripten_bind_SIGSurface_getHeatPerUnitArea_1'] = _emscripten_bind_SIGSurface_getHeatPerUnitArea_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeatPerUnitArea_1', 2); + Module['_emscripten_bind_SIGSurface_getHeatSink_1'] = _emscripten_bind_SIGSurface_getHeatSink_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeatSink_1', 2); + Module['_emscripten_bind_SIGSurface_getHeatSource_1'] = _emscripten_bind_SIGSurface_getHeatSource_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeatSource_1', 2); + Module['_emscripten_bind_SIGSurface_getHeightOfUnderstory_1'] = _emscripten_bind_SIGSurface_getHeightOfUnderstory_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeightOfUnderstory_1', 2); + Module['_emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1'] = _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1 = createExportWrapper('emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1', 2); + Module['_emscripten_bind_SIGSurface_getMidflameWindspeed_1'] = _emscripten_bind_SIGSurface_getMidflameWindspeed_1 = createExportWrapper('emscripten_bind_SIGSurface_getMidflameWindspeed_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1'] = _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureHundredHour_1'] = _emscripten_bind_SIGSurface_getMoistureHundredHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureHundredHour_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1'] = _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1'] = _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureLiveWoody_1'] = _emscripten_bind_SIGSurface_getMoistureLiveWoody_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureLiveWoody_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureOneHour_1'] = _emscripten_bind_SIGSurface_getMoistureOneHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureOneHour_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2', 3); + Module['_emscripten_bind_SIGSurface_getMoistureTenHour_1'] = _emscripten_bind_SIGSurface_getMoistureTenHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureTenHour_1', 2); + Module['_emscripten_bind_SIGSurface_getOverstoryBasalArea_1'] = _emscripten_bind_SIGSurface_getOverstoryBasalArea_1 = createExportWrapper('emscripten_bind_SIGSurface_getOverstoryBasalArea_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getReactionIntensity_1'] = _emscripten_bind_SIGSurface_getReactionIntensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getReactionIntensity_1', 2); + Module['_emscripten_bind_SIGSurface_getResidenceTime_1'] = _emscripten_bind_SIGSurface_getResidenceTime_1 = createExportWrapper('emscripten_bind_SIGSurface_getResidenceTime_1', 2); + Module['_emscripten_bind_SIGSurface_getSlope_1'] = _emscripten_bind_SIGSurface_getSlope_1 = createExportWrapper('emscripten_bind_SIGSurface_getSlope_1', 2); + Module['_emscripten_bind_SIGSurface_getSlopeFactor_0'] = _emscripten_bind_SIGSurface_getSlopeFactor_0 = createExportWrapper('emscripten_bind_SIGSurface_getSlopeFactor_0', 1); + Module['_emscripten_bind_SIGSurface_getSpreadDistance_1'] = _emscripten_bind_SIGSurface_getSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGSurface_getSpreadDistance_1', 2); + Module['_emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1', 2); + Module['_emscripten_bind_SIGSurface_getSpreadRate_1'] = _emscripten_bind_SIGSurface_getSpreadRate_1 = createExportWrapper('emscripten_bind_SIGSurface_getSpreadRate_1', 2); + Module['_emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1', 2); + Module['_emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1'] = _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1 = createExportWrapper('emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1', 2); + Module['_emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1'] = _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1'] = _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1'] = _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1', 2); + Module['_emscripten_bind_SIGSurface_getWindDirection_0'] = _emscripten_bind_SIGSurface_getWindDirection_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindDirection_0', 1); + Module['_emscripten_bind_SIGSurface_getWindSpeed_2'] = _emscripten_bind_SIGSurface_getWindSpeed_2 = createExportWrapper('emscripten_bind_SIGSurface_getWindSpeed_2', 3); + Module['_emscripten_bind_SIGSurface_getAspenFuelModelNumber_0'] = _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0 = createExportWrapper('emscripten_bind_SIGSurface_getAspenFuelModelNumber_0', 1); + Module['_emscripten_bind_SIGSurface_getFuelModelNumber_0'] = _emscripten_bind_SIGSurface_getFuelModelNumber_0 = createExportWrapper('emscripten_bind_SIGSurface_getFuelModelNumber_0', 1); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1'] = _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1', 2); + Module['_emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0'] = _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0 = createExportWrapper('emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0', 1); + Module['_emscripten_bind_SIGSurface_getFuelCode_1'] = _emscripten_bind_SIGSurface_getFuelCode_1 = createExportWrapper('emscripten_bind_SIGSurface_getFuelCode_1', 2); + Module['_emscripten_bind_SIGSurface_getFuelName_1'] = _emscripten_bind_SIGSurface_getFuelName_1 = createExportWrapper('emscripten_bind_SIGSurface_getFuelName_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1'] = _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1'] = _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1', 2); + Module['_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1'] = _emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1', 2); + Module['_emscripten_bind_SIGSurface_doSurfaceRun_0'] = _emscripten_bind_SIGSurface_doSurfaceRun_0 = createExportWrapper('emscripten_bind_SIGSurface_doSurfaceRun_0', 1); + Module['_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2'] = _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2 = createExportWrapper('emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2', 3); + Module['_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0'] = _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0 = createExportWrapper('emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0', 1); + Module['_emscripten_bind_SIGSurface_initializeMembers_0'] = _emscripten_bind_SIGSurface_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGSurface_initializeMembers_0', 1); + Module['_emscripten_bind_SIGSurface_setAgeOfRough_1'] = _emscripten_bind_SIGSurface_setAgeOfRough_1 = createExportWrapper('emscripten_bind_SIGSurface_setAgeOfRough_1', 2); + Module['_emscripten_bind_SIGSurface_setAspect_1'] = _emscripten_bind_SIGSurface_setAspect_1 = createExportWrapper('emscripten_bind_SIGSurface_setAspect_1', 2); + Module['_emscripten_bind_SIGSurface_setAspenCuringLevel_2'] = _emscripten_bind_SIGSurface_setAspenCuringLevel_2 = createExportWrapper('emscripten_bind_SIGSurface_setAspenCuringLevel_2', 3); + Module['_emscripten_bind_SIGSurface_setAspenDBH_2'] = _emscripten_bind_SIGSurface_setAspenDBH_2 = createExportWrapper('emscripten_bind_SIGSurface_setAspenDBH_2', 3); + Module['_emscripten_bind_SIGSurface_setAspenFireSeverity_1'] = _emscripten_bind_SIGSurface_setAspenFireSeverity_1 = createExportWrapper('emscripten_bind_SIGSurface_setAspenFireSeverity_1', 2); + Module['_emscripten_bind_SIGSurface_setAspenFuelModelNumber_1'] = _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGSurface_setAspenFuelModelNumber_1', 2); + Module['_emscripten_bind_SIGSurface_setCanopyCover_2'] = _emscripten_bind_SIGSurface_setCanopyCover_2 = createExportWrapper('emscripten_bind_SIGSurface_setCanopyCover_2', 3); + Module['_emscripten_bind_SIGSurface_setCanopyHeight_2'] = _emscripten_bind_SIGSurface_setCanopyHeight_2 = createExportWrapper('emscripten_bind_SIGSurface_setCanopyHeight_2', 3); + Module['_emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2'] = _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2', 3); + Module['_emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1'] = _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1', 2); + Module['_emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1'] = _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1', 2); + Module['_emscripten_bind_SIGSurface_setChaparralFuelType_1'] = _emscripten_bind_SIGSurface_setChaparralFuelType_1 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralFuelType_1', 2); + Module['_emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2'] = _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2', 3); + Module['_emscripten_bind_SIGSurface_setCrownRatio_2'] = _emscripten_bind_SIGSurface_setCrownRatio_2 = createExportWrapper('emscripten_bind_SIGSurface_setCrownRatio_2', 3); + Module['_emscripten_bind_SIGSurface_setDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_setDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_setDirectionOfInterest_1', 2); + Module['_emscripten_bind_SIGSurface_setElapsedTime_2'] = _emscripten_bind_SIGSurface_setElapsedTime_2 = createExportWrapper('emscripten_bind_SIGSurface_setElapsedTime_2', 3); + Module['_emscripten_bind_SIGSurface_setFirstFuelModelNumber_1'] = _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGSurface_setFirstFuelModelNumber_1', 2); + Module['_emscripten_bind_SIGSurface_setFuelModels_1'] = _emscripten_bind_SIGSurface_setFuelModels_1 = createExportWrapper('emscripten_bind_SIGSurface_setFuelModels_1', 2); + Module['_emscripten_bind_SIGSurface_setHeightOfUnderstory_2'] = _emscripten_bind_SIGSurface_setHeightOfUnderstory_2 = createExportWrapper('emscripten_bind_SIGSurface_setHeightOfUnderstory_2', 3); + Module['_emscripten_bind_SIGSurface_setIsUsingChaparral_1'] = _emscripten_bind_SIGSurface_setIsUsingChaparral_1 = createExportWrapper('emscripten_bind_SIGSurface_setIsUsingChaparral_1', 2); + Module['_emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1'] = _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1 = createExportWrapper('emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1', 2); + Module['_emscripten_bind_SIGSurface_setIsUsingWesternAspen_1'] = _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1 = createExportWrapper('emscripten_bind_SIGSurface_setIsUsingWesternAspen_1', 2); + Module['_emscripten_bind_SIGSurface_setMoistureDeadAggregate_2'] = _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureDeadAggregate_2', 3); + Module['_emscripten_bind_SIGSurface_setMoistureHundredHour_2'] = _emscripten_bind_SIGSurface_setMoistureHundredHour_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureHundredHour_2', 3); + Module['_emscripten_bind_SIGSurface_setMoistureInputMode_1'] = _emscripten_bind_SIGSurface_setMoistureInputMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureInputMode_1', 2); + Module['_emscripten_bind_SIGSurface_setMoistureLiveAggregate_2'] = _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureLiveAggregate_2', 3); + Module['_emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2'] = _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2', 3); + Module['_emscripten_bind_SIGSurface_setMoistureLiveWoody_2'] = _emscripten_bind_SIGSurface_setMoistureLiveWoody_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureLiveWoody_2', 3); + Module['_emscripten_bind_SIGSurface_setMoistureOneHour_2'] = _emscripten_bind_SIGSurface_setMoistureOneHour_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureOneHour_2', 3); + Module['_emscripten_bind_SIGSurface_setMoistureScenarios_1'] = _emscripten_bind_SIGSurface_setMoistureScenarios_1 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureScenarios_1', 2); + Module['_emscripten_bind_SIGSurface_setMoistureTenHour_2'] = _emscripten_bind_SIGSurface_setMoistureTenHour_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureTenHour_2', 3); + Module['_emscripten_bind_SIGSurface_setOverstoryBasalArea_2'] = _emscripten_bind_SIGSurface_setOverstoryBasalArea_2 = createExportWrapper('emscripten_bind_SIGSurface_setOverstoryBasalArea_2', 3); + Module['_emscripten_bind_SIGSurface_setPalmettoCoverage_2'] = _emscripten_bind_SIGSurface_setPalmettoCoverage_2 = createExportWrapper('emscripten_bind_SIGSurface_setPalmettoCoverage_2', 3); + Module['_emscripten_bind_SIGSurface_setSecondFuelModelNumber_1'] = _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGSurface_setSecondFuelModelNumber_1', 2); + Module['_emscripten_bind_SIGSurface_setSlope_2'] = _emscripten_bind_SIGSurface_setSlope_2 = createExportWrapper('emscripten_bind_SIGSurface_setSlope_2', 3); + Module['_emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1'] = _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1', 2); + Module['_emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1'] = _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1 = createExportWrapper('emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1', 2); + Module['_emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2'] = _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2 = createExportWrapper('emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2', 3); + Module['_emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1'] = _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1 = createExportWrapper('emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1', 2); + Module['_emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1'] = _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1 = createExportWrapper('emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1', 2); + Module['_emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1'] = _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1 = createExportWrapper('emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1', 2); + Module['_emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1'] = _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1', 2); + Module['_emscripten_bind_SIGSurface_setWindDirection_1'] = _emscripten_bind_SIGSurface_setWindDirection_1 = createExportWrapper('emscripten_bind_SIGSurface_setWindDirection_1', 2); + Module['_emscripten_bind_SIGSurface_setWindHeightInputMode_1'] = _emscripten_bind_SIGSurface_setWindHeightInputMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setWindHeightInputMode_1', 2); + Module['_emscripten_bind_SIGSurface_setWindSpeed_2'] = _emscripten_bind_SIGSurface_setWindSpeed_2 = createExportWrapper('emscripten_bind_SIGSurface_setWindSpeed_2', 3); + Module['_emscripten_bind_SIGSurface_updateSurfaceInputs_21'] = _emscripten_bind_SIGSurface_updateSurfaceInputs_21 = createExportWrapper('emscripten_bind_SIGSurface_updateSurfaceInputs_21', 22); + Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25'] = _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25 = createExportWrapper('emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25', 26); + Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25'] = _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25 = createExportWrapper('emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25', 26); + Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26'] = _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26 = createExportWrapper('emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26', 27); + Module['_emscripten_bind_SIGSurface_setFuelModelNumber_1'] = _emscripten_bind_SIGSurface_setFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGSurface_setFuelModelNumber_1', 2); + Module['_emscripten_bind_SIGSurface___destroy___0'] = _emscripten_bind_SIGSurface___destroy___0 = createExportWrapper('emscripten_bind_SIGSurface___destroy___0', 1); + Module['_emscripten_bind_PalmettoGallberry_PalmettoGallberry_0'] = _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_PalmettoGallberry_0', 0); + Module['_emscripten_bind_PalmettoGallberry_initializeMembers_0'] = _emscripten_bind_PalmettoGallberry_initializeMembers_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_initializeMembers_0', 1); + Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2', 3); + Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2', 3); + Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2', 3); + Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1', 2); + Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2', 3); + Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2', 3); + Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3', 4); + Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2', 3); + Module['_emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0'] = _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0'] = _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0'] = _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0', 1); + Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0', 1); + Module['_emscripten_bind_PalmettoGallberry___destroy___0'] = _emscripten_bind_PalmettoGallberry___destroy___0 = createExportWrapper('emscripten_bind_PalmettoGallberry___destroy___0', 1); + Module['_emscripten_bind_WesternAspen_WesternAspen_0'] = _emscripten_bind_WesternAspen_WesternAspen_0 = createExportWrapper('emscripten_bind_WesternAspen_WesternAspen_0', 0); + Module['_emscripten_bind_WesternAspen_initializeMembers_0'] = _emscripten_bind_WesternAspen_initializeMembers_0 = createExportWrapper('emscripten_bind_WesternAspen_initializeMembers_0', 1); + Module['_emscripten_bind_WesternAspen_calculateAspenMortality_3'] = _emscripten_bind_WesternAspen_calculateAspenMortality_3 = createExportWrapper('emscripten_bind_WesternAspen_calculateAspenMortality_3', 4); + Module['_emscripten_bind_WesternAspen_getAspenFuelBedDepth_1'] = _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1 = createExportWrapper('emscripten_bind_WesternAspen_getAspenFuelBedDepth_1', 2); + Module['_emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0'] = _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0'] = _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0'] = _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0'] = _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0'] = _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0'] = _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0'] = _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenMortality_0'] = _emscripten_bind_WesternAspen_getAspenMortality_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenMortality_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0'] = _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0'] = _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0'] = _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0', 1); + Module['_emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0'] = _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0', 1); + Module['_emscripten_bind_WesternAspen___destroy___0'] = _emscripten_bind_WesternAspen___destroy___0 = createExportWrapper('emscripten_bind_WesternAspen___destroy___0', 1); + Module['_emscripten_bind_SIGCrown_SIGCrown_1'] = _emscripten_bind_SIGCrown_SIGCrown_1 = createExportWrapper('emscripten_bind_SIGCrown_SIGCrown_1', 1); + Module['_emscripten_bind_SIGCrown_getFireType_0'] = _emscripten_bind_SIGCrown_getFireType_0 = createExportWrapper('emscripten_bind_SIGCrown_getFireType_0', 1); + Module['_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1'] = _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1 = createExportWrapper('emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1', 2); + Module['_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1'] = _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1 = createExportWrapper('emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1', 2); + Module['_emscripten_bind_SIGCrown_isAllFuelLoadZero_1'] = _emscripten_bind_SIGCrown_isAllFuelLoadZero_1 = createExportWrapper('emscripten_bind_SIGCrown_isAllFuelLoadZero_1', 2); + Module['_emscripten_bind_SIGCrown_isFuelDynamic_1'] = _emscripten_bind_SIGCrown_isFuelDynamic_1 = createExportWrapper('emscripten_bind_SIGCrown_isFuelDynamic_1', 2); + Module['_emscripten_bind_SIGCrown_isFuelModelDefined_1'] = _emscripten_bind_SIGCrown_isFuelModelDefined_1 = createExportWrapper('emscripten_bind_SIGCrown_isFuelModelDefined_1', 2); + Module['_emscripten_bind_SIGCrown_isFuelModelReserved_1'] = _emscripten_bind_SIGCrown_isFuelModelReserved_1 = createExportWrapper('emscripten_bind_SIGCrown_isFuelModelReserved_1', 2); + Module['_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1'] = _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1 = createExportWrapper('emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1', 2); + Module['_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1'] = _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1 = createExportWrapper('emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1', 2); + Module['_emscripten_bind_SIGCrown_getAspect_0'] = _emscripten_bind_SIGCrown_getAspect_0 = createExportWrapper('emscripten_bind_SIGCrown_getAspect_0', 1); + Module['_emscripten_bind_SIGCrown_getCanopyBaseHeight_1'] = _emscripten_bind_SIGCrown_getCanopyBaseHeight_1 = createExportWrapper('emscripten_bind_SIGCrown_getCanopyBaseHeight_1', 2); + Module['_emscripten_bind_SIGCrown_getCanopyBulkDensity_1'] = _emscripten_bind_SIGCrown_getCanopyBulkDensity_1 = createExportWrapper('emscripten_bind_SIGCrown_getCanopyBulkDensity_1', 2); + Module['_emscripten_bind_SIGCrown_getCanopyCover_1'] = _emscripten_bind_SIGCrown_getCanopyCover_1 = createExportWrapper('emscripten_bind_SIGCrown_getCanopyCover_1', 2); + Module['_emscripten_bind_SIGCrown_getCanopyHeight_1'] = _emscripten_bind_SIGCrown_getCanopyHeight_1 = createExportWrapper('emscripten_bind_SIGCrown_getCanopyHeight_1', 2); + Module['_emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1'] = _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1 = createExportWrapper('emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1'] = _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1'] = _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1'] = _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownFireActiveRatio_0'] = _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireActiveRatio_0', 1); + Module['_emscripten_bind_SIGCrown_getCrownFireArea_1'] = _emscripten_bind_SIGCrown_getCrownFireArea_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireArea_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownFirePerimeter_1'] = _emscripten_bind_SIGCrown_getCrownFirePerimeter_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFirePerimeter_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownTransitionRatio_0'] = _emscripten_bind_SIGCrown_getCrownTransitionRatio_0 = createExportWrapper('emscripten_bind_SIGCrown_getCrownTransitionRatio_0', 1); + Module['_emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0'] = _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0', 1); + Module['_emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1'] = _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownFireSpreadRate_1'] = _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireSpreadRate_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownFirelineIntensity_1'] = _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFirelineIntensity_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownFlameLength_1'] = _emscripten_bind_SIGCrown_getCrownFlameLength_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFlameLength_1', 2); + Module['_emscripten_bind_SIGCrown_getCrownFractionBurned_0'] = _emscripten_bind_SIGCrown_getCrownFractionBurned_0 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFractionBurned_0', 1); + Module['_emscripten_bind_SIGCrown_getCrownRatio_1'] = _emscripten_bind_SIGCrown_getCrownRatio_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownRatio_1', 2); + Module['_emscripten_bind_SIGCrown_getFinalFirelineIntesity_1'] = _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalFirelineIntesity_1', 2); + Module['_emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1'] = _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1', 2); + Module['_emscripten_bind_SIGCrown_getFinalSpreadRate_1'] = _emscripten_bind_SIGCrown_getFinalSpreadRate_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalSpreadRate_1', 2); + Module['_emscripten_bind_SIGCrown_getFinalSpreadDistance_1'] = _emscripten_bind_SIGCrown_getFinalSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalSpreadDistance_1', 2); + Module['_emscripten_bind_SIGCrown_getFinalFireArea_1'] = _emscripten_bind_SIGCrown_getFinalFireArea_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalFireArea_1', 2); + Module['_emscripten_bind_SIGCrown_getFinalFirePerimeter_1'] = _emscripten_bind_SIGCrown_getFinalFirePerimeter_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalFirePerimeter_1', 2); + Module['_emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2'] = _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2'] = _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelLoadHundredHour_2'] = _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadHundredHour_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2'] = _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2'] = _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelLoadOneHour_2'] = _emscripten_bind_SIGCrown_getFuelLoadOneHour_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadOneHour_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelLoadTenHour_2'] = _emscripten_bind_SIGCrown_getFuelLoadTenHour_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadTenHour_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2'] = _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2'] = _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2'] = _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelSavrOneHour_2'] = _emscripten_bind_SIGCrown_getFuelSavrOneHour_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelSavrOneHour_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelbedDepth_2'] = _emscripten_bind_SIGCrown_getFuelbedDepth_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelbedDepth_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureFoliar_1'] = _emscripten_bind_SIGCrown_getMoistureFoliar_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureFoliar_1', 2); + Module['_emscripten_bind_SIGCrown_getMoistureHundredHour_1'] = _emscripten_bind_SIGCrown_getMoistureHundredHour_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureHundredHour_1', 2); + Module['_emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1'] = _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1', 2); + Module['_emscripten_bind_SIGCrown_getMoistureLiveWoody_1'] = _emscripten_bind_SIGCrown_getMoistureLiveWoody_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureLiveWoody_1', 2); + Module['_emscripten_bind_SIGCrown_getMoistureOneHour_1'] = _emscripten_bind_SIGCrown_getMoistureOneHour_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureOneHour_1', 2); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2', 3); + Module['_emscripten_bind_SIGCrown_getMoistureTenHour_1'] = _emscripten_bind_SIGCrown_getMoistureTenHour_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureTenHour_1', 2); + Module['_emscripten_bind_SIGCrown_getSlope_1'] = _emscripten_bind_SIGCrown_getSlope_1 = createExportWrapper('emscripten_bind_SIGCrown_getSlope_1', 2); + Module['_emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1'] = _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1', 2); + Module['_emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1'] = _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1 = createExportWrapper('emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1', 2); + Module['_emscripten_bind_SIGCrown_getWindDirection_0'] = _emscripten_bind_SIGCrown_getWindDirection_0 = createExportWrapper('emscripten_bind_SIGCrown_getWindDirection_0', 1); + Module['_emscripten_bind_SIGCrown_getWindSpeed_2'] = _emscripten_bind_SIGCrown_getWindSpeed_2 = createExportWrapper('emscripten_bind_SIGCrown_getWindSpeed_2', 3); + Module['_emscripten_bind_SIGCrown_getFuelModelNumber_0'] = _emscripten_bind_SIGCrown_getFuelModelNumber_0 = createExportWrapper('emscripten_bind_SIGCrown_getFuelModelNumber_0', 1); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1'] = _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1', 2); + Module['_emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0'] = _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0 = createExportWrapper('emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0', 1); + Module['_emscripten_bind_SIGCrown_getFuelCode_1'] = _emscripten_bind_SIGCrown_getFuelCode_1 = createExportWrapper('emscripten_bind_SIGCrown_getFuelCode_1', 2); + Module['_emscripten_bind_SIGCrown_getFuelName_1'] = _emscripten_bind_SIGCrown_getFuelName_1 = createExportWrapper('emscripten_bind_SIGCrown_getFuelName_1', 2); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1'] = _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1', 2); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1'] = _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1', 2); + Module['_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1'] = _emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1', 2); + Module['_emscripten_bind_SIGCrown_doCrownRun_0'] = _emscripten_bind_SIGCrown_doCrownRun_0 = createExportWrapper('emscripten_bind_SIGCrown_doCrownRun_0', 1); + Module['_emscripten_bind_SIGCrown_doCrownRunRothermel_0'] = _emscripten_bind_SIGCrown_doCrownRunRothermel_0 = createExportWrapper('emscripten_bind_SIGCrown_doCrownRunRothermel_0', 1); + Module['_emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0'] = _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0 = createExportWrapper('emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0', 1); + Module['_emscripten_bind_SIGCrown_initializeMembers_0'] = _emscripten_bind_SIGCrown_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGCrown_initializeMembers_0', 1); + Module['_emscripten_bind_SIGCrown_setAspect_1'] = _emscripten_bind_SIGCrown_setAspect_1 = createExportWrapper('emscripten_bind_SIGCrown_setAspect_1', 2); + Module['_emscripten_bind_SIGCrown_setCanopyBaseHeight_2'] = _emscripten_bind_SIGCrown_setCanopyBaseHeight_2 = createExportWrapper('emscripten_bind_SIGCrown_setCanopyBaseHeight_2', 3); + Module['_emscripten_bind_SIGCrown_setCanopyBulkDensity_2'] = _emscripten_bind_SIGCrown_setCanopyBulkDensity_2 = createExportWrapper('emscripten_bind_SIGCrown_setCanopyBulkDensity_2', 3); + Module['_emscripten_bind_SIGCrown_setCanopyCover_2'] = _emscripten_bind_SIGCrown_setCanopyCover_2 = createExportWrapper('emscripten_bind_SIGCrown_setCanopyCover_2', 3); + Module['_emscripten_bind_SIGCrown_setCanopyHeight_2'] = _emscripten_bind_SIGCrown_setCanopyHeight_2 = createExportWrapper('emscripten_bind_SIGCrown_setCanopyHeight_2', 3); + Module['_emscripten_bind_SIGCrown_setCrownRatio_2'] = _emscripten_bind_SIGCrown_setCrownRatio_2 = createExportWrapper('emscripten_bind_SIGCrown_setCrownRatio_2', 3); + Module['_emscripten_bind_SIGCrown_setFuelModelNumber_1'] = _emscripten_bind_SIGCrown_setFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGCrown_setFuelModelNumber_1', 2); + Module['_emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1'] = _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1 = createExportWrapper('emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1', 2); + Module['_emscripten_bind_SIGCrown_setElapsedTime_2'] = _emscripten_bind_SIGCrown_setElapsedTime_2 = createExportWrapper('emscripten_bind_SIGCrown_setElapsedTime_2', 3); + Module['_emscripten_bind_SIGCrown_setFuelModels_1'] = _emscripten_bind_SIGCrown_setFuelModels_1 = createExportWrapper('emscripten_bind_SIGCrown_setFuelModels_1', 2); + Module['_emscripten_bind_SIGCrown_setMoistureDeadAggregate_2'] = _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureDeadAggregate_2', 3); + Module['_emscripten_bind_SIGCrown_setMoistureFoliar_2'] = _emscripten_bind_SIGCrown_setMoistureFoliar_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureFoliar_2', 3); + Module['_emscripten_bind_SIGCrown_setMoistureHundredHour_2'] = _emscripten_bind_SIGCrown_setMoistureHundredHour_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureHundredHour_2', 3); + Module['_emscripten_bind_SIGCrown_setMoistureInputMode_1'] = _emscripten_bind_SIGCrown_setMoistureInputMode_1 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureInputMode_1', 2); + Module['_emscripten_bind_SIGCrown_setMoistureLiveAggregate_2'] = _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureLiveAggregate_2', 3); + Module['_emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2'] = _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2', 3); + Module['_emscripten_bind_SIGCrown_setMoistureLiveWoody_2'] = _emscripten_bind_SIGCrown_setMoistureLiveWoody_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureLiveWoody_2', 3); + Module['_emscripten_bind_SIGCrown_setMoistureOneHour_2'] = _emscripten_bind_SIGCrown_setMoistureOneHour_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureOneHour_2', 3); + Module['_emscripten_bind_SIGCrown_setMoistureScenarios_1'] = _emscripten_bind_SIGCrown_setMoistureScenarios_1 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureScenarios_1', 2); + Module['_emscripten_bind_SIGCrown_setMoistureTenHour_2'] = _emscripten_bind_SIGCrown_setMoistureTenHour_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureTenHour_2', 3); + Module['_emscripten_bind_SIGCrown_setSlope_2'] = _emscripten_bind_SIGCrown_setSlope_2 = createExportWrapper('emscripten_bind_SIGCrown_setSlope_2', 3); + Module['_emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1'] = _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1 = createExportWrapper('emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1', 2); + Module['_emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1'] = _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1 = createExportWrapper('emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1', 2); + Module['_emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1'] = _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1 = createExportWrapper('emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1', 2); + Module['_emscripten_bind_SIGCrown_setWindDirection_1'] = _emscripten_bind_SIGCrown_setWindDirection_1 = createExportWrapper('emscripten_bind_SIGCrown_setWindDirection_1', 2); + Module['_emscripten_bind_SIGCrown_setWindHeightInputMode_1'] = _emscripten_bind_SIGCrown_setWindHeightInputMode_1 = createExportWrapper('emscripten_bind_SIGCrown_setWindHeightInputMode_1', 2); + Module['_emscripten_bind_SIGCrown_setWindSpeed_2'] = _emscripten_bind_SIGCrown_setWindSpeed_2 = createExportWrapper('emscripten_bind_SIGCrown_setWindSpeed_2', 3); + Module['_emscripten_bind_SIGCrown_updateCrownInputs_25'] = _emscripten_bind_SIGCrown_updateCrownInputs_25 = createExportWrapper('emscripten_bind_SIGCrown_updateCrownInputs_25', 26); + Module['_emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21'] = _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21 = createExportWrapper('emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21', 22); + Module['_emscripten_bind_SIGCrown_getFinalFlameLength_1'] = _emscripten_bind_SIGCrown_getFinalFlameLength_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalFlameLength_1', 2); + Module['_emscripten_bind_SIGCrown___destroy___0'] = _emscripten_bind_SIGCrown___destroy___0 = createExportWrapper('emscripten_bind_SIGCrown___destroy___0', 1); + Module['_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0'] = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0', 0); + Module['_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1'] = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1', 1); + Module['_emscripten_bind_SpeciesMasterTableRecord___destroy___0'] = _emscripten_bind_SpeciesMasterTableRecord___destroy___0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecord___destroy___0', 1); + Module['_emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0'] = _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0 = createExportWrapper('emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0', 0); + Module['_emscripten_bind_SpeciesMasterTable_initializeMasterTable_0'] = _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0 = createExportWrapper('emscripten_bind_SpeciesMasterTable_initializeMasterTable_0', 1); + Module['_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1'] = _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1', 2); + Module['_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'] = _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = createExportWrapper('emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2', 3); + Module['_emscripten_bind_SpeciesMasterTable_insertRecord_17'] = _emscripten_bind_SpeciesMasterTable_insertRecord_17 = createExportWrapper('emscripten_bind_SpeciesMasterTable_insertRecord_17', 18); + Module['_emscripten_bind_SpeciesMasterTable___destroy___0'] = _emscripten_bind_SpeciesMasterTable___destroy___0 = createExportWrapper('emscripten_bind_SpeciesMasterTable___destroy___0', 1); + Module['_emscripten_bind_SIGMortality_SIGMortality_1'] = _emscripten_bind_SIGMortality_SIGMortality_1 = createExportWrapper('emscripten_bind_SIGMortality_SIGMortality_1', 1); + Module['_emscripten_bind_SIGMortality_initializeMembers_0'] = _emscripten_bind_SIGMortality_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGMortality_initializeMembers_0', 1); + Module['_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2'] = _emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2 = createExportWrapper('emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2', 3); + Module['_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2'] = _emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2 = createExportWrapper('emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2', 3); + Module['_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2'] = _emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2 = createExportWrapper('emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2', 3); + Module['_emscripten_bind_SIGMortality_calculateMortality_1'] = _emscripten_bind_SIGMortality_calculateMortality_1 = createExportWrapper('emscripten_bind_SIGMortality_calculateMortality_1', 2); + Module['_emscripten_bind_SIGMortality_calculateScorchHeight_7'] = _emscripten_bind_SIGMortality_calculateScorchHeight_7 = createExportWrapper('emscripten_bind_SIGMortality_calculateScorchHeight_7', 8); + Module['_emscripten_bind_SIGMortality_calculateMortalityAllDirections_1'] = _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1 = createExportWrapper('emscripten_bind_SIGMortality_calculateMortalityAllDirections_1', 2); + Module['_emscripten_bind_SIGMortality_getRequiredFieldVector_0'] = _emscripten_bind_SIGMortality_getRequiredFieldVector_0 = createExportWrapper('emscripten_bind_SIGMortality_getRequiredFieldVector_0', 1); + Module['_emscripten_bind_SIGMortality_getBeetleDamage_0'] = _emscripten_bind_SIGMortality_getBeetleDamage_0 = createExportWrapper('emscripten_bind_SIGMortality_getBeetleDamage_0', 1); + Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCode_0'] = _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamageEquationCode_0', 1); + Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1', 2); + Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_getCrownDamageType_0'] = _emscripten_bind_SIGMortality_getCrownDamageType_0 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamageType_0', 1); + Module['_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1', 2); + Module['_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1', 2); + Module['_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_getSpeciesCode_0'] = _emscripten_bind_SIGMortality_getSpeciesCode_0 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesCode_0', 1); + Module['_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1', 2); + Module['_emscripten_bind_SIGMortality_getEquationType_0'] = _emscripten_bind_SIGMortality_getEquationType_0 = createExportWrapper('emscripten_bind_SIGMortality_getEquationType_0', 1); + Module['_emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1', 2); + Module['_emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_getFireSeverity_0'] = _emscripten_bind_SIGMortality_getFireSeverity_0 = createExportWrapper('emscripten_bind_SIGMortality_getFireSeverity_0', 1); + Module['_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0'] = _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0 = createExportWrapper('emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0', 1); + Module['_emscripten_bind_SIGMortality_getGACCRegion_0'] = _emscripten_bind_SIGMortality_getGACCRegion_0 = createExportWrapper('emscripten_bind_SIGMortality_getGACCRegion_0', 1); + Module['_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1'] = _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1', 2); + Module['_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2'] = _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2', 3); + Module['_emscripten_bind_SIGMortality_getBarkThickness_1'] = _emscripten_bind_SIGMortality_getBarkThickness_1 = createExportWrapper('emscripten_bind_SIGMortality_getBarkThickness_1', 2); + Module['_emscripten_bind_SIGMortality_getBasalAreaKillled_0'] = _emscripten_bind_SIGMortality_getBasalAreaKillled_0 = createExportWrapper('emscripten_bind_SIGMortality_getBasalAreaKillled_0', 1); + Module['_emscripten_bind_SIGMortality_getBasalAreaPostfire_0'] = _emscripten_bind_SIGMortality_getBasalAreaPostfire_0 = createExportWrapper('emscripten_bind_SIGMortality_getBasalAreaPostfire_0', 1); + Module['_emscripten_bind_SIGMortality_getBasalAreaPrefire_0'] = _emscripten_bind_SIGMortality_getBasalAreaPrefire_0 = createExportWrapper('emscripten_bind_SIGMortality_getBasalAreaPrefire_0', 1); + Module['_emscripten_bind_SIGMortality_getBoleCharHeight_1'] = _emscripten_bind_SIGMortality_getBoleCharHeight_1 = createExportWrapper('emscripten_bind_SIGMortality_getBoleCharHeight_1', 2); + Module['_emscripten_bind_SIGMortality_getBoleCharHeightBacking_1'] = _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getBoleCharHeightBacking_1', 2); + Module['_emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1'] = _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1', 2); + Module['_emscripten_bind_SIGMortality_getCambiumKillRating_0'] = _emscripten_bind_SIGMortality_getCambiumKillRating_0 = createExportWrapper('emscripten_bind_SIGMortality_getCambiumKillRating_0', 1); + Module['_emscripten_bind_SIGMortality_getCrownDamage_0'] = _emscripten_bind_SIGMortality_getCrownDamage_0 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamage_0', 1); + Module['_emscripten_bind_SIGMortality_getCrownRatio_1'] = _emscripten_bind_SIGMortality_getCrownRatio_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownRatio_1', 2); + Module['_emscripten_bind_SIGMortality_getCVSorCLS_0'] = _emscripten_bind_SIGMortality_getCVSorCLS_0 = createExportWrapper('emscripten_bind_SIGMortality_getCVSorCLS_0', 1); + Module['_emscripten_bind_SIGMortality_getDBH_1'] = _emscripten_bind_SIGMortality_getDBH_1 = createExportWrapper('emscripten_bind_SIGMortality_getDBH_1', 2); + Module['_emscripten_bind_SIGMortality_getFlameLength_1'] = _emscripten_bind_SIGMortality_getFlameLength_1 = createExportWrapper('emscripten_bind_SIGMortality_getFlameLength_1', 2); + Module['_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1'] = _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1 = createExportWrapper('emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1', 2); + Module['_emscripten_bind_SIGMortality_getKilledTrees_0'] = _emscripten_bind_SIGMortality_getKilledTrees_0 = createExportWrapper('emscripten_bind_SIGMortality_getKilledTrees_0', 1); + Module['_emscripten_bind_SIGMortality_getProbabilityOfMortality_1'] = _emscripten_bind_SIGMortality_getProbabilityOfMortality_1 = createExportWrapper('emscripten_bind_SIGMortality_getProbabilityOfMortality_1', 2); + Module['_emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1'] = _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1', 2); + Module['_emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1'] = _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1', 2); + Module['_emscripten_bind_SIGMortality_getScorchHeight_1'] = _emscripten_bind_SIGMortality_getScorchHeight_1 = createExportWrapper('emscripten_bind_SIGMortality_getScorchHeight_1', 2); + Module['_emscripten_bind_SIGMortality_getScorchHeightBacking_1'] = _emscripten_bind_SIGMortality_getScorchHeightBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getScorchHeightBacking_1', 2); + Module['_emscripten_bind_SIGMortality_getScorchHeightFlanking_1'] = _emscripten_bind_SIGMortality_getScorchHeightFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getScorchHeightFlanking_1', 2); + Module['_emscripten_bind_SIGMortality_getTotalPrefireTrees_0'] = _emscripten_bind_SIGMortality_getTotalPrefireTrees_0 = createExportWrapper('emscripten_bind_SIGMortality_getTotalPrefireTrees_0', 1); + Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1'] = _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1', 2); + Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1'] = _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1', 2); + Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1'] = _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1', 2); + Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1'] = _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1', 2); + Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1'] = _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1', 2); + Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1'] = _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1', 2); + Module['_emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1'] = _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1', 2); + Module['_emscripten_bind_SIGMortality_getTreeHeight_1'] = _emscripten_bind_SIGMortality_getTreeHeight_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeHeight_1', 2); + Module['_emscripten_bind_SIGMortality_postfireCanopyCover_0'] = _emscripten_bind_SIGMortality_postfireCanopyCover_0 = createExportWrapper('emscripten_bind_SIGMortality_postfireCanopyCover_0', 1); + Module['_emscripten_bind_SIGMortality_prefireCanopyCover_0'] = _emscripten_bind_SIGMortality_prefireCanopyCover_0 = createExportWrapper('emscripten_bind_SIGMortality_prefireCanopyCover_0', 1); + Module['_emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1', 2); + Module['_emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1', 2); + Module['_emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0'] = _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0 = createExportWrapper('emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0', 1); + Module['_emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1', 2); + Module['_emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0'] = _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0 = createExportWrapper('emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0', 1); + Module['_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'] = _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2', 3); + Module['_emscripten_bind_SIGMortality_setAirTemperature_2'] = _emscripten_bind_SIGMortality_setAirTemperature_2 = createExportWrapper('emscripten_bind_SIGMortality_setAirTemperature_2', 3); + Module['_emscripten_bind_SIGMortality_setBeetleDamage_1'] = _emscripten_bind_SIGMortality_setBeetleDamage_1 = createExportWrapper('emscripten_bind_SIGMortality_setBeetleDamage_1', 2); + Module['_emscripten_bind_SIGMortality_setBoleCharHeight_2'] = _emscripten_bind_SIGMortality_setBoleCharHeight_2 = createExportWrapper('emscripten_bind_SIGMortality_setBoleCharHeight_2', 3); + Module['_emscripten_bind_SIGMortality_setCambiumKillRating_1'] = _emscripten_bind_SIGMortality_setCambiumKillRating_1 = createExportWrapper('emscripten_bind_SIGMortality_setCambiumKillRating_1', 2); + Module['_emscripten_bind_SIGMortality_setCrownDamage_1'] = _emscripten_bind_SIGMortality_setCrownDamage_1 = createExportWrapper('emscripten_bind_SIGMortality_setCrownDamage_1', 2); + Module['_emscripten_bind_SIGMortality_setCrownRatio_2'] = _emscripten_bind_SIGMortality_setCrownRatio_2 = createExportWrapper('emscripten_bind_SIGMortality_setCrownRatio_2', 3); + Module['_emscripten_bind_SIGMortality_setDBH_2'] = _emscripten_bind_SIGMortality_setDBH_2 = createExportWrapper('emscripten_bind_SIGMortality_setDBH_2', 3); + Module['_emscripten_bind_SIGMortality_setEquationType_1'] = _emscripten_bind_SIGMortality_setEquationType_1 = createExportWrapper('emscripten_bind_SIGMortality_setEquationType_1', 2); + Module['_emscripten_bind_SIGMortality_setFireSeverity_1'] = _emscripten_bind_SIGMortality_setFireSeverity_1 = createExportWrapper('emscripten_bind_SIGMortality_setFireSeverity_1', 2); + Module['_emscripten_bind_SIGMortality_setFirelineIntensity_2'] = _emscripten_bind_SIGMortality_setFirelineIntensity_2 = createExportWrapper('emscripten_bind_SIGMortality_setFirelineIntensity_2', 3); + Module['_emscripten_bind_SIGMortality_setFlameLength_2'] = _emscripten_bind_SIGMortality_setFlameLength_2 = createExportWrapper('emscripten_bind_SIGMortality_setFlameLength_2', 3); + Module['_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1'] = _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1 = createExportWrapper('emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1', 2); + Module['_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2'] = _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2 = createExportWrapper('emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2', 3); + Module['_emscripten_bind_SIGMortality_setMidFlameWindSpeed_2'] = _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2 = createExportWrapper('emscripten_bind_SIGMortality_setMidFlameWindSpeed_2', 3); + Module['_emscripten_bind_SIGMortality_setGACCRegion_1'] = _emscripten_bind_SIGMortality_setGACCRegion_1 = createExportWrapper('emscripten_bind_SIGMortality_setGACCRegion_1', 2); + Module['_emscripten_bind_SIGMortality_setScorchHeight_2'] = _emscripten_bind_SIGMortality_setScorchHeight_2 = createExportWrapper('emscripten_bind_SIGMortality_setScorchHeight_2', 3); + Module['_emscripten_bind_SIGMortality_setSpeciesCode_1'] = _emscripten_bind_SIGMortality_setSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_setSpeciesCode_1', 2); + Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2', 3); + Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2', 3); + Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2', 3); + Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2', 3); + Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2', 3); + Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2', 3); + Module['_emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2'] = _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2', 3); + Module['_emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2'] = _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2 = createExportWrapper('emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2', 3); + Module['_emscripten_bind_SIGMortality_setTreeHeight_2'] = _emscripten_bind_SIGMortality_setTreeHeight_2 = createExportWrapper('emscripten_bind_SIGMortality_setTreeHeight_2', 3); + Module['_emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1'] = _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1 = createExportWrapper('emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1', 2); + Module['_emscripten_bind_SIGMortality_setWindHeightInputMode_1'] = _emscripten_bind_SIGMortality_setWindHeightInputMode_1 = createExportWrapper('emscripten_bind_SIGMortality_setWindHeightInputMode_1', 2); + Module['_emscripten_bind_SIGMortality_setWindSpeed_2'] = _emscripten_bind_SIGMortality_setWindSpeed_2 = createExportWrapper('emscripten_bind_SIGMortality_setWindSpeed_2', 3); + Module['_emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4'] = _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4 = createExportWrapper('emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4', 5); + Module['_emscripten_bind_SIGMortality___destroy___0'] = _emscripten_bind_SIGMortality___destroy___0 = createExportWrapper('emscripten_bind_SIGMortality___destroy___0', 1); + Module['_emscripten_bind_WindSpeedUtility_WindSpeedUtility_0'] = _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0 = createExportWrapper('emscripten_bind_WindSpeedUtility_WindSpeedUtility_0', 0); + Module['_emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2'] = _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2 = createExportWrapper('emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2', 3); + Module['_emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1'] = _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1 = createExportWrapper('emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1', 2); + Module['_emscripten_bind_WindSpeedUtility___destroy___0'] = _emscripten_bind_WindSpeedUtility___destroy___0 = createExportWrapper('emscripten_bind_WindSpeedUtility___destroy___0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0', 0); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8', 9); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1', 2); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0', 1); + Module['_emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0', 1); + Module['_emscripten_bind_SIGSlopeTool_SIGSlopeTool_0'] = _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_SIGSlopeTool_0', 0); + Module['_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistance_2'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistance_2', 3); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2', 3); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1'] = _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1'] = _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1'] = _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0'] = _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0', 1); + Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0'] = _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0', 1); + Module['_emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0'] = _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0', 1); + Module['_emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0'] = _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0', 1); + Module['_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1', 2); + Module['_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1', 2); + Module['_emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0'] = _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0', 1); + Module['_emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0'] = _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0', 1); + Module['_emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2'] = _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2', 3); + Module['_emscripten_bind_SIGSlopeTool_setContourInterval_2'] = _emscripten_bind_SIGSlopeTool_setContourInterval_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_setContourInterval_2', 3); + Module['_emscripten_bind_SIGSlopeTool_setMapDistance_2'] = _emscripten_bind_SIGSlopeTool_setMapDistance_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_setMapDistance_2', 3); + Module['_emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1', 2); + Module['_emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1'] = _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1', 2); + Module['_emscripten_bind_SIGSlopeTool_setNumberOfContours_1'] = _emscripten_bind_SIGSlopeTool_setNumberOfContours_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_setNumberOfContours_1', 2); + Module['_emscripten_bind_SIGSlopeTool___destroy___0'] = _emscripten_bind_SIGSlopeTool___destroy___0 = createExportWrapper('emscripten_bind_SIGSlopeTool___destroy___0', 1); + Module['_emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0'] = _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0', 0); + Module['_emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0'] = _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0', 1); + Module['_emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2'] = _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2', 3); + Module['_emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2'] = _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2', 3); + Module['_emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1'] = _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1', 2); + Module['_emscripten_bind_VaporPressureDeficitCalculator___destroy___0'] = _emscripten_bind_VaporPressureDeficitCalculator___destroy___0 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator___destroy___0', 1); + Module['_emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0'] = _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0 = createExportWrapper('emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0', 0); + Module['_emscripten_bind_RelativeHumidityTool_calculate_0'] = _emscripten_bind_RelativeHumidityTool_calculate_0 = createExportWrapper('emscripten_bind_RelativeHumidityTool_calculate_0', 1); + Module['_emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1'] = _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1', 2); + Module['_emscripten_bind_RelativeHumidityTool_getSiteElevation_1'] = _emscripten_bind_RelativeHumidityTool_getSiteElevation_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getSiteElevation_1', 2); + Module['_emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1'] = _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1', 2); + Module['_emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1'] = _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1', 2); + Module['_emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1'] = _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1', 2); + Module['_emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1'] = _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1', 2); + Module['_emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2'] = _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2 = createExportWrapper('emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2', 3); + Module['_emscripten_bind_RelativeHumidityTool_setSiteElevation_2'] = _emscripten_bind_RelativeHumidityTool_setSiteElevation_2 = createExportWrapper('emscripten_bind_RelativeHumidityTool_setSiteElevation_2', 3); + Module['_emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2'] = _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2 = createExportWrapper('emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2', 3); + Module['_emscripten_bind_RelativeHumidityTool___destroy___0'] = _emscripten_bind_RelativeHumidityTool___destroy___0 = createExportWrapper('emscripten_bind_RelativeHumidityTool___destroy___0', 1); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0', 0); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_calculate_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_calculate_0', 1); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0', 1); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0', 1); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0', 1); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1', 2); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1', 2); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1', 2); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0', 1); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1', 2); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1', 2); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1', 2); + Module['_emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2'] = _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2', 3); + Module['_emscripten_bind_SafeSeparationDistanceCalculator___destroy___0'] = _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator___destroy___0', 1); + Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet', 0); + Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_Acres'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_Acres = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_Acres', 0); + Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares', 0); + Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters', 0); + Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles', 0); + Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers', 0); + Module['_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre = createExportWrapper('emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre', 0); + Module['_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare = createExportWrapper('emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare', 0); + Module['_emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction = createExportWrapper('emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction', 0); + Module['_emscripten_enum_FractionUnits_FractionUnitsEnum_Percent'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent = createExportWrapper('emscripten_enum_FractionUnits_FractionUnitsEnum_Percent', 0); + Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Feet'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Feet', 0); + Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Inches'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Inches = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Inches', 0); + Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters', 0); + Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters', 0); + Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Meters'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Meters = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Meters', 0); + Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Chains'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Chains = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Chains', 0); + Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Miles'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Miles = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Miles', 0); + Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers', 0); + Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot = createExportWrapper('emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot', 0); + Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre = createExportWrapper('emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre', 0); + Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare = createExportWrapper('emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare', 0); + Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter = createExportWrapper('emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter', 0); + Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet = createExportWrapper('emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet', 0); + Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters = createExportWrapper('emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters', 0); + Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches = createExportWrapper('emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches', 0); + Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters = createExportWrapper('emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters', 0); + Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute', 0); + Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour', 0); + Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond', 0); + Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute', 0); + Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour', 0); + Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Bar'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Bar = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_Bar', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere', 0); + Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch', 0); + Module['_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees = createExportWrapper('emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees', 0); + Module['_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent = createExportWrapper('emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent', 0); + Module['_emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot = createExportWrapper('emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot', 0); + Module['_emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter = createExportWrapper('emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter', 0); + Module['_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound = createExportWrapper('emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound', 0); + Module['_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram = createExportWrapper('emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram', 0); + Module['_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot = createExportWrapper('emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot', 0); + Module['_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter = createExportWrapper('emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter', 0); + Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot = createExportWrapper('emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot', 0); + Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter = createExportWrapper('emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter', 0); + Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter = createExportWrapper('emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter', 0); + Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute', 0); + Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond', 0); + Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond', 0); + Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute', 0); + Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter', 0); + Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond', 0); + Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute', 0); + Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond', 0); + Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute', 0); + Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter', 0); + Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit = createExportWrapper('emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit', 0); + Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius = createExportWrapper('emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius', 0); + Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin = createExportWrapper('emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin', 0); + Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes = createExportWrapper('emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes', 0); + Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds = createExportWrapper('emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds', 0); + Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Hours'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours = createExportWrapper('emscripten_enum_TimeUnits_TimeUnitsEnum_Hours', 0); + Module['_emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack = createExportWrapper('emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack', 0); + Module['_emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack = createExportWrapper('emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Unreported'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Unreported', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Reported'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Reported = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Reported', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Attacked'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Attacked = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Attacked', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Contained'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Contained = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Contained', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Overrun'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Overrun = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Overrun', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Overflow'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Overflow = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Overflow', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded'] = _emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded', 0); + Module['_emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded'] = _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded', 0); + Module['_emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank = createExportWrapper('emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank', 0); + Module['_emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank = createExportWrapper('emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank', 0); + Module['_emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks'] = _emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks = createExportWrapper('emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks', 0); + Module['_emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank = createExportWrapper('emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank', 0); + Module['_emscripten_enum_ContainMode_Default'] = _emscripten_enum_ContainMode_Default = createExportWrapper('emscripten_enum_ContainMode_Default', 0); + Module['_emscripten_enum_ContainMode_ComputeWithOptimalResource'] = _emscripten_enum_ContainMode_ComputeWithOptimalResource = createExportWrapper('emscripten_enum_ContainMode_ComputeWithOptimalResource', 0); + Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter', 0); + Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky', 0); + Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep', 0); + Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow', 0); + Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff', 0); + Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff', 0); + Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed', 0); + Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss', 0); + Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Negative'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Negative = createExportWrapper('emscripten_enum_LightningCharge_LightningChargeEnum_Negative', 0); + Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Positive'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Positive = createExportWrapper('emscripten_enum_LightningCharge_LightningChargeEnum_Positive', 0); + Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Unknown'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown = createExportWrapper('emscripten_enum_LightningCharge_LightningChargeEnum_Unknown', 0); + Module['_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED = createExportWrapper('emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED', 0); + Module['_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN = createExportWrapper('emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE', 0); + Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE', 0); + Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD = createExportWrapper('emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD', 0); + Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM = createExportWrapper('emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM', 0); + Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD = createExportWrapper('emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD', 0); + Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP = createExportWrapper('emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP', 0); + Module['_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead = createExportWrapper('emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead', 0); + Module['_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live = createExportWrapper('emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live', 0); + Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates', 0); + Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses', 0); + Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses', 0); + Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles', 0); + Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses', 0); + Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels', 0); + Module['_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low = createExportWrapper('emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low', 0); + Module['_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate = createExportWrapper('emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate', 0); + Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet = createExportWrapper('emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet', 0); + Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise = createExportWrapper('emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise', 0); + Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush = createExportWrapper('emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush', 0); + Module['_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad = createExportWrapper('emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad', 0); + Module['_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType = createExportWrapper('emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType', 0); + Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass', 0); + Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate', 0); + Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass', 0); + Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass', 0); + Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario', 0); + Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour', 0); + Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour', 0); + Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour', 0); + Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous', 0); + Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody', 0); + Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate', 0); + Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate', 0); + Module['_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint = createExportWrapper('emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint', 0); + Module['_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter = createExportWrapper('emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter', 0); + Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod = createExportWrapper('emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod', 0); + Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic = createExportWrapper('emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic', 0); + Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic = createExportWrapper('emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic', 0); + Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional = createExportWrapper('emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional', 0); + Module['_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered = createExportWrapper('emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered', 0); + Module['_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered = createExportWrapper('emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered', 0); + Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput = createExportWrapper('emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput', 0); + Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio = createExportWrapper('emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio', 0); + Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio = createExportWrapper('emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio', 0); + Module['_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope = createExportWrapper('emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope', 0); + Module['_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth = createExportWrapper('emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth', 0); + Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame = createExportWrapper('emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame', 0); + Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot = createExportWrapper('emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot', 0); + Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter = createExportWrapper('emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter', 0); + Module['_emscripten_enum_WindUpslopeAlignmentMode_NotAligned'] = _emscripten_enum_WindUpslopeAlignmentMode_NotAligned = createExportWrapper('emscripten_enum_WindUpslopeAlignmentMode_NotAligned', 0); + Module['_emscripten_enum_WindUpslopeAlignmentMode_Aligned'] = _emscripten_enum_WindUpslopeAlignmentMode_Aligned = createExportWrapper('emscripten_enum_WindUpslopeAlignmentMode_Aligned', 0); + Module['_emscripten_enum_SurfaceRunInDirectionOf_MaxSpread'] = _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread = createExportWrapper('emscripten_enum_SurfaceRunInDirectionOf_MaxSpread', 0); + Module['_emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest'] = _emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest = createExportWrapper('emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest', 0); + Module['_emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking'] = _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking = createExportWrapper('emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking', 0); + Module['_emscripten_enum_FireType_FireTypeEnum_Surface'] = _emscripten_enum_FireType_FireTypeEnum_Surface = createExportWrapper('emscripten_enum_FireType_FireTypeEnum_Surface', 0); + Module['_emscripten_enum_FireType_FireTypeEnum_Torching'] = _emscripten_enum_FireType_FireTypeEnum_Torching = createExportWrapper('emscripten_enum_FireType_FireTypeEnum_Torching', 0); + Module['_emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire'] = _emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire = createExportWrapper('emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire', 0); + Module['_emscripten_enum_FireType_FireTypeEnum_Crowning'] = _emscripten_enum_FireType_FireTypeEnum_Crowning = createExportWrapper('emscripten_enum_FireType_FireTypeEnum_Crowning', 0); + Module['_emscripten_enum_BeetleDamage_not_set'] = _emscripten_enum_BeetleDamage_not_set = createExportWrapper('emscripten_enum_BeetleDamage_not_set', 0); + Module['_emscripten_enum_BeetleDamage_no'] = _emscripten_enum_BeetleDamage_no = createExportWrapper('emscripten_enum_BeetleDamage_no', 0); + Module['_emscripten_enum_BeetleDamage_yes'] = _emscripten_enum_BeetleDamage_yes = createExportWrapper('emscripten_enum_BeetleDamage_yes', 0); + Module['_emscripten_enum_CrownFireCalculationMethod_rothermel'] = _emscripten_enum_CrownFireCalculationMethod_rothermel = createExportWrapper('emscripten_enum_CrownFireCalculationMethod_rothermel', 0); + Module['_emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt'] = _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt = createExportWrapper('emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt', 0); + Module['_emscripten_enum_CrownDamageEquationCode_not_set'] = _emscripten_enum_CrownDamageEquationCode_not_set = createExportWrapper('emscripten_enum_CrownDamageEquationCode_not_set', 0); + Module['_emscripten_enum_CrownDamageEquationCode_white_fir'] = _emscripten_enum_CrownDamageEquationCode_white_fir = createExportWrapper('emscripten_enum_CrownDamageEquationCode_white_fir', 0); + Module['_emscripten_enum_CrownDamageEquationCode_subalpine_fir'] = _emscripten_enum_CrownDamageEquationCode_subalpine_fir = createExportWrapper('emscripten_enum_CrownDamageEquationCode_subalpine_fir', 0); + Module['_emscripten_enum_CrownDamageEquationCode_incense_cedar'] = _emscripten_enum_CrownDamageEquationCode_incense_cedar = createExportWrapper('emscripten_enum_CrownDamageEquationCode_incense_cedar', 0); + Module['_emscripten_enum_CrownDamageEquationCode_western_larch'] = _emscripten_enum_CrownDamageEquationCode_western_larch = createExportWrapper('emscripten_enum_CrownDamageEquationCode_western_larch', 0); + Module['_emscripten_enum_CrownDamageEquationCode_whitebark_pine'] = _emscripten_enum_CrownDamageEquationCode_whitebark_pine = createExportWrapper('emscripten_enum_CrownDamageEquationCode_whitebark_pine', 0); + Module['_emscripten_enum_CrownDamageEquationCode_engelmann_spruce'] = _emscripten_enum_CrownDamageEquationCode_engelmann_spruce = createExportWrapper('emscripten_enum_CrownDamageEquationCode_engelmann_spruce', 0); + Module['_emscripten_enum_CrownDamageEquationCode_sugar_pine'] = _emscripten_enum_CrownDamageEquationCode_sugar_pine = createExportWrapper('emscripten_enum_CrownDamageEquationCode_sugar_pine', 0); + Module['_emscripten_enum_CrownDamageEquationCode_red_fir'] = _emscripten_enum_CrownDamageEquationCode_red_fir = createExportWrapper('emscripten_enum_CrownDamageEquationCode_red_fir', 0); + Module['_emscripten_enum_CrownDamageEquationCode_ponderosa_pine'] = _emscripten_enum_CrownDamageEquationCode_ponderosa_pine = createExportWrapper('emscripten_enum_CrownDamageEquationCode_ponderosa_pine', 0); + Module['_emscripten_enum_CrownDamageEquationCode_ponderosa_kill'] = _emscripten_enum_CrownDamageEquationCode_ponderosa_kill = createExportWrapper('emscripten_enum_CrownDamageEquationCode_ponderosa_kill', 0); + Module['_emscripten_enum_CrownDamageEquationCode_douglas_fir'] = _emscripten_enum_CrownDamageEquationCode_douglas_fir = createExportWrapper('emscripten_enum_CrownDamageEquationCode_douglas_fir', 0); + Module['_emscripten_enum_CrownDamageType_not_set'] = _emscripten_enum_CrownDamageType_not_set = createExportWrapper('emscripten_enum_CrownDamageType_not_set', 0); + Module['_emscripten_enum_CrownDamageType_crown_length'] = _emscripten_enum_CrownDamageType_crown_length = createExportWrapper('emscripten_enum_CrownDamageType_crown_length', 0); + Module['_emscripten_enum_CrownDamageType_crown_volume'] = _emscripten_enum_CrownDamageType_crown_volume = createExportWrapper('emscripten_enum_CrownDamageType_crown_volume', 0); + Module['_emscripten_enum_CrownDamageType_crown_kill'] = _emscripten_enum_CrownDamageType_crown_kill = createExportWrapper('emscripten_enum_CrownDamageType_crown_kill', 0); + Module['_emscripten_enum_EquationType_not_set'] = _emscripten_enum_EquationType_not_set = createExportWrapper('emscripten_enum_EquationType_not_set', 0); + Module['_emscripten_enum_EquationType_crown_scorch'] = _emscripten_enum_EquationType_crown_scorch = createExportWrapper('emscripten_enum_EquationType_crown_scorch', 0); + Module['_emscripten_enum_EquationType_bole_char'] = _emscripten_enum_EquationType_bole_char = createExportWrapper('emscripten_enum_EquationType_bole_char', 0); + Module['_emscripten_enum_EquationType_crown_damage'] = _emscripten_enum_EquationType_crown_damage = createExportWrapper('emscripten_enum_EquationType_crown_damage', 0); + Module['_emscripten_enum_FireSeverity_not_set'] = _emscripten_enum_FireSeverity_not_set = createExportWrapper('emscripten_enum_FireSeverity_not_set', 0); + Module['_emscripten_enum_FireSeverity_empty'] = _emscripten_enum_FireSeverity_empty = createExportWrapper('emscripten_enum_FireSeverity_empty', 0); + Module['_emscripten_enum_FireSeverity_low'] = _emscripten_enum_FireSeverity_low = createExportWrapper('emscripten_enum_FireSeverity_low', 0); + Module['_emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length = createExportWrapper('emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length', 0); + Module['_emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height = createExportWrapper('emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height', 0); + Module['_emscripten_enum_GACC_NotSet'] = _emscripten_enum_GACC_NotSet = createExportWrapper('emscripten_enum_GACC_NotSet', 0); + Module['_emscripten_enum_GACC_Alaska'] = _emscripten_enum_GACC_Alaska = createExportWrapper('emscripten_enum_GACC_Alaska', 0); + Module['_emscripten_enum_GACC_California'] = _emscripten_enum_GACC_California = createExportWrapper('emscripten_enum_GACC_California', 0); + Module['_emscripten_enum_GACC_EasternArea'] = _emscripten_enum_GACC_EasternArea = createExportWrapper('emscripten_enum_GACC_EasternArea', 0); + Module['_emscripten_enum_GACC_GreatBasin'] = _emscripten_enum_GACC_GreatBasin = createExportWrapper('emscripten_enum_GACC_GreatBasin', 0); + Module['_emscripten_enum_GACC_NorthernRockies'] = _emscripten_enum_GACC_NorthernRockies = createExportWrapper('emscripten_enum_GACC_NorthernRockies', 0); + Module['_emscripten_enum_GACC_Northwest'] = _emscripten_enum_GACC_Northwest = createExportWrapper('emscripten_enum_GACC_Northwest', 0); + Module['_emscripten_enum_GACC_RockeyMountain'] = _emscripten_enum_GACC_RockeyMountain = createExportWrapper('emscripten_enum_GACC_RockeyMountain', 0); + Module['_emscripten_enum_GACC_SouthernArea'] = _emscripten_enum_GACC_SouthernArea = createExportWrapper('emscripten_enum_GACC_SouthernArea', 0); + Module['_emscripten_enum_GACC_Southwest'] = _emscripten_enum_GACC_Southwest = createExportWrapper('emscripten_enum_GACC_Southwest', 0); + Module['_emscripten_enum_RequiredFieldNames_region'] = _emscripten_enum_RequiredFieldNames_region = createExportWrapper('emscripten_enum_RequiredFieldNames_region', 0); + Module['_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch'] = _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch = createExportWrapper('emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch', 0); + Module['_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value'] = _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value = createExportWrapper('emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value', 0); + Module['_emscripten_enum_RequiredFieldNames_equation_type'] = _emscripten_enum_RequiredFieldNames_equation_type = createExportWrapper('emscripten_enum_RequiredFieldNames_equation_type', 0); + Module['_emscripten_enum_RequiredFieldNames_dbh'] = _emscripten_enum_RequiredFieldNames_dbh = createExportWrapper('emscripten_enum_RequiredFieldNames_dbh', 0); + Module['_emscripten_enum_RequiredFieldNames_tree_height'] = _emscripten_enum_RequiredFieldNames_tree_height = createExportWrapper('emscripten_enum_RequiredFieldNames_tree_height', 0); + Module['_emscripten_enum_RequiredFieldNames_crown_ratio'] = _emscripten_enum_RequiredFieldNames_crown_ratio = createExportWrapper('emscripten_enum_RequiredFieldNames_crown_ratio', 0); + Module['_emscripten_enum_RequiredFieldNames_crown_damage'] = _emscripten_enum_RequiredFieldNames_crown_damage = createExportWrapper('emscripten_enum_RequiredFieldNames_crown_damage', 0); + Module['_emscripten_enum_RequiredFieldNames_cambium_kill_rating'] = _emscripten_enum_RequiredFieldNames_cambium_kill_rating = createExportWrapper('emscripten_enum_RequiredFieldNames_cambium_kill_rating', 0); + Module['_emscripten_enum_RequiredFieldNames_beetle_damage'] = _emscripten_enum_RequiredFieldNames_beetle_damage = createExportWrapper('emscripten_enum_RequiredFieldNames_beetle_damage', 0); + Module['_emscripten_enum_RequiredFieldNames_bole_char_height'] = _emscripten_enum_RequiredFieldNames_bole_char_height = createExportWrapper('emscripten_enum_RequiredFieldNames_bole_char_height', 0); + Module['_emscripten_enum_RequiredFieldNames_bark_thickness'] = _emscripten_enum_RequiredFieldNames_bark_thickness = createExportWrapper('emscripten_enum_RequiredFieldNames_bark_thickness', 0); + Module['_emscripten_enum_RequiredFieldNames_fire_severity'] = _emscripten_enum_RequiredFieldNames_fire_severity = createExportWrapper('emscripten_enum_RequiredFieldNames_fire_severity', 0); + Module['_emscripten_enum_RequiredFieldNames_num_inputs'] = _emscripten_enum_RequiredFieldNames_num_inputs = createExportWrapper('emscripten_enum_RequiredFieldNames_num_inputs', 0); + Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH = createExportWrapper('emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH', 0); + Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST = createExportWrapper('emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST', 0); + Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH = createExportWrapper('emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH', 0); + Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST = createExportWrapper('emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST', 0); + Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F', 0); + Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F', 0); + Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F', 0); + Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F', 0); + Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F', 0); + Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F', 0); + Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT = createExportWrapper('emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT', 0); + Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT = createExportWrapper('emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT', 0); + Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT = createExportWrapper('emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT', 0); + Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY = createExportWrapper('emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY', 0); + Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT = createExportWrapper('emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT', 0); + Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN = createExportWrapper('emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT', 0); + Module['_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED = createExportWrapper('emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED', 0); + Module['_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED = createExportWrapper('emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED', 0); + Module['_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT = createExportWrapper('emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT', 0); + Module['_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT', 0); + Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE', 0); + Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE', 0); + Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE', 0); + Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE', 0); + Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE', 0); + Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION', 0); + Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY', 0); + Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES', 0); + Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE', 0); + Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE', 0); + Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE', 0); + Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE', 0); + Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE', 0); + Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES', 0); + Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Low'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Low = createExportWrapper('emscripten_enum_BurningCondition_BurningConditionEnum_Low', 0); + Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Moderate'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Moderate = createExportWrapper('emscripten_enum_BurningCondition_BurningConditionEnum_Moderate', 0); + Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Extreme'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme = createExportWrapper('emscripten_enum_BurningCondition_BurningConditionEnum_Extreme', 0); + Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Flat'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Flat = createExportWrapper('emscripten_enum_SlopeClass_SlopeClassEnum_Flat', 0); + Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Moderate'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Moderate = createExportWrapper('emscripten_enum_SlopeClass_SlopeClassEnum_Moderate', 0); + Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Steep'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Steep = createExportWrapper('emscripten_enum_SlopeClass_SlopeClassEnum_Steep', 0); + Module['_emscripten_enum_SpeedClass_SpeedClassEnum_Light'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Light = createExportWrapper('emscripten_enum_SpeedClass_SpeedClassEnum_Light', 0); + Module['_emscripten_enum_SpeedClass_SpeedClassEnum_Moderate'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Moderate = createExportWrapper('emscripten_enum_SpeedClass_SpeedClassEnum_Moderate', 0); + Module['_emscripten_enum_SpeedClass_SpeedClassEnum_High'] = _emscripten_enum_SpeedClass_SpeedClassEnum_High = createExportWrapper('emscripten_enum_SpeedClass_SpeedClassEnum_High', 0); + Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Low'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low = createExportWrapper('emscripten_enum_SafetyCondition_SafetyConditionEnum_Low', 0); + Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate = createExportWrapper('emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate', 0); + Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme = createExportWrapper('emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme', 0); + ___cxa_free_exception = createExportWrapper('__cxa_free_exception', 1); + _strerror = createExportWrapper('strerror', 1); + _emscripten_stack_get_end = wasmExports['emscripten_stack_get_end']; + _emscripten_stack_get_base = wasmExports['emscripten_stack_get_base']; + _setThrew = createExportWrapper('setThrew', 2); + __emscripten_tempret_set = createExportWrapper('_emscripten_tempret_set', 1); + _emscripten_stack_init = wasmExports['emscripten_stack_init']; + _emscripten_stack_get_free = wasmExports['emscripten_stack_get_free']; + __emscripten_stack_restore = wasmExports['_emscripten_stack_restore']; + __emscripten_stack_alloc = wasmExports['_emscripten_stack_alloc']; + _emscripten_stack_get_current = wasmExports['emscripten_stack_get_current']; + ___cxa_increment_exception_refcount = createExportWrapper('__cxa_increment_exception_refcount', 1); + ___cxa_decrement_exception_refcount = createExportWrapper('__cxa_decrement_exception_refcount', 1); + ___get_exception_message = createExportWrapper('__get_exception_message', 3); + ___cxa_can_catch = createExportWrapper('__cxa_can_catch', 3); + ___cxa_get_exception_ptr = createExportWrapper('__cxa_get_exception_ptr', 1); +} var wasmImports = { - "__assert_fail": ___assert_fail, - "__cxa_begin_catch": ___cxa_begin_catch, - "__cxa_end_catch": ___cxa_end_catch, - "__cxa_find_matching_catch_2": ___cxa_find_matching_catch_2, - "__cxa_find_matching_catch_3": ___cxa_find_matching_catch_3, - "__cxa_rethrow": ___cxa_rethrow, - "__cxa_throw": ___cxa_throw, - "__resumeException": ___resumeException, - "__syscall_fcntl64": ___syscall_fcntl64, - "__syscall_ioctl": ___syscall_ioctl, - "__syscall_openat": ___syscall_openat, - "abort": _abort, - "emscripten_memcpy_big": _emscripten_memcpy_big, - "emscripten_resize_heap": _emscripten_resize_heap, - "fd_close": _fd_close, - "fd_read": _fd_read, - "fd_seek": _fd_seek, - "fd_write": _fd_write, - "invoke_diii": invoke_diii, - "invoke_diiidiiiii": invoke_diiidiiiii, - "invoke_ii": invoke_ii, - "invoke_iidddddd": invoke_iidddddd, - "invoke_iidddiidd": invoke_iidddiidd, - "invoke_iiddiiddiidid": invoke_iiddiiddiidid, - "invoke_iiddiidiidiiiii": invoke_iiddiidiidiiiii, - "invoke_iii": invoke_iii, - "invoke_iiii": invoke_iiii, - "invoke_iiiii": invoke_iiiii, - "invoke_iiiiidididdidddddidddii": invoke_iiiiidididdidddddidddii, - "invoke_iiiiii": invoke_iiiiii, - "invoke_v": invoke_v, - "invoke_vi": invoke_vi, - "invoke_viddidiidd": invoke_viddidiidd, - "invoke_vidii": invoke_vidii, - "invoke_vii": invoke_vii, - "invoke_viididi": invoke_viididi, - "invoke_viii": invoke_viii, - "invoke_viiiddddd": invoke_viiiddddd, - "invoke_viiii": invoke_viiii, - "invoke_viiiiddddddddddddii": invoke_viiiiddddddddddddii, - "invoke_viiiii": invoke_viiiii, - "invoke_viiiiiiiiiiiiiiiiii": invoke_viiiiiiiiiiiiiiiiii -}; -var asm = createWasm(); -/** @type {function(...*):?} */ -var ___wasm_call_ctors = createExportWrapper("__wasm_call_ctors"); -/** @type {function(...*):?} */ -var getTempRet0 = createExportWrapper("getTempRet0"); -/** @type {function(...*):?} */ -var _fflush = Module["_fflush"] = createExportWrapper("fflush"); -/** @type {function(...*):?} */ -var _emscripten_bind_VoidPtr___destroy___0 = Module["_emscripten_bind_VoidPtr___destroy___0"] = createExportWrapper("emscripten_bind_VoidPtr___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_DoublePtr___destroy___0 = Module["_emscripten_bind_DoublePtr___destroy___0"] = createExportWrapper("emscripten_bind_DoublePtr___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_BoolVector_BoolVector_0 = Module["_emscripten_bind_BoolVector_BoolVector_0"] = createExportWrapper("emscripten_bind_BoolVector_BoolVector_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_BoolVector_BoolVector_1 = Module["_emscripten_bind_BoolVector_BoolVector_1"] = createExportWrapper("emscripten_bind_BoolVector_BoolVector_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_BoolVector_resize_1 = Module["_emscripten_bind_BoolVector_resize_1"] = createExportWrapper("emscripten_bind_BoolVector_resize_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_BoolVector_get_1 = Module["_emscripten_bind_BoolVector_get_1"] = createExportWrapper("emscripten_bind_BoolVector_get_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_BoolVector_set_2 = Module["_emscripten_bind_BoolVector_set_2"] = createExportWrapper("emscripten_bind_BoolVector_set_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_BoolVector_size_0 = Module["_emscripten_bind_BoolVector_size_0"] = createExportWrapper("emscripten_bind_BoolVector_size_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_BoolVector___destroy___0 = Module["_emscripten_bind_BoolVector___destroy___0"] = createExportWrapper("emscripten_bind_BoolVector___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_CharVector_CharVector_0 = Module["_emscripten_bind_CharVector_CharVector_0"] = createExportWrapper("emscripten_bind_CharVector_CharVector_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_CharVector_CharVector_1 = Module["_emscripten_bind_CharVector_CharVector_1"] = createExportWrapper("emscripten_bind_CharVector_CharVector_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_CharVector_resize_1 = Module["_emscripten_bind_CharVector_resize_1"] = createExportWrapper("emscripten_bind_CharVector_resize_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_CharVector_get_1 = Module["_emscripten_bind_CharVector_get_1"] = createExportWrapper("emscripten_bind_CharVector_get_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_CharVector_set_2 = Module["_emscripten_bind_CharVector_set_2"] = createExportWrapper("emscripten_bind_CharVector_set_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_CharVector_size_0 = Module["_emscripten_bind_CharVector_size_0"] = createExportWrapper("emscripten_bind_CharVector_size_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_CharVector___destroy___0 = Module["_emscripten_bind_CharVector___destroy___0"] = createExportWrapper("emscripten_bind_CharVector___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_IntVector_IntVector_0 = Module["_emscripten_bind_IntVector_IntVector_0"] = createExportWrapper("emscripten_bind_IntVector_IntVector_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_IntVector_IntVector_1 = Module["_emscripten_bind_IntVector_IntVector_1"] = createExportWrapper("emscripten_bind_IntVector_IntVector_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_IntVector_resize_1 = Module["_emscripten_bind_IntVector_resize_1"] = createExportWrapper("emscripten_bind_IntVector_resize_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_IntVector_get_1 = Module["_emscripten_bind_IntVector_get_1"] = createExportWrapper("emscripten_bind_IntVector_get_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_IntVector_set_2 = Module["_emscripten_bind_IntVector_set_2"] = createExportWrapper("emscripten_bind_IntVector_set_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_IntVector_size_0 = Module["_emscripten_bind_IntVector_size_0"] = createExportWrapper("emscripten_bind_IntVector_size_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_IntVector___destroy___0 = Module["_emscripten_bind_IntVector___destroy___0"] = createExportWrapper("emscripten_bind_IntVector___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_DoubleVector_DoubleVector_0 = Module["_emscripten_bind_DoubleVector_DoubleVector_0"] = createExportWrapper("emscripten_bind_DoubleVector_DoubleVector_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_DoubleVector_DoubleVector_1 = Module["_emscripten_bind_DoubleVector_DoubleVector_1"] = createExportWrapper("emscripten_bind_DoubleVector_DoubleVector_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_DoubleVector_resize_1 = Module["_emscripten_bind_DoubleVector_resize_1"] = createExportWrapper("emscripten_bind_DoubleVector_resize_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_DoubleVector_get_1 = Module["_emscripten_bind_DoubleVector_get_1"] = createExportWrapper("emscripten_bind_DoubleVector_get_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_DoubleVector_set_2 = Module["_emscripten_bind_DoubleVector_set_2"] = createExportWrapper("emscripten_bind_DoubleVector_set_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_DoubleVector_size_0 = Module["_emscripten_bind_DoubleVector_size_0"] = createExportWrapper("emscripten_bind_DoubleVector_size_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_DoubleVector___destroy___0 = Module["_emscripten_bind_DoubleVector___destroy___0"] = createExportWrapper("emscripten_bind_DoubleVector___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecordVector_resize_1 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_resize_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_resize_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecordVector_get_1 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_get_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_get_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecordVector_set_2 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_set_2"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_set_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecordVector_size_0 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_size_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_size_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0 = Module["_emscripten_bind_SpeciesMasterTableRecordVector___destroy___0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_AreaUnits_toBaseUnits_2 = Module["_emscripten_bind_AreaUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_AreaUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_AreaUnits_fromBaseUnits_2 = Module["_emscripten_bind_AreaUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_AreaUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_AreaUnits___destroy___0 = Module["_emscripten_bind_AreaUnits___destroy___0"] = createExportWrapper("emscripten_bind_AreaUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_BasalAreaUnits_toBaseUnits_2 = Module["_emscripten_bind_BasalAreaUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_BasalAreaUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_BasalAreaUnits_fromBaseUnits_2 = Module["_emscripten_bind_BasalAreaUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_BasalAreaUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_BasalAreaUnits___destroy___0 = Module["_emscripten_bind_BasalAreaUnits___destroy___0"] = createExportWrapper("emscripten_bind_BasalAreaUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_FractionUnits_toBaseUnits_2 = Module["_emscripten_bind_FractionUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_FractionUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_FractionUnits_fromBaseUnits_2 = Module["_emscripten_bind_FractionUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_FractionUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_FractionUnits___destroy___0 = Module["_emscripten_bind_FractionUnits___destroy___0"] = createExportWrapper("emscripten_bind_FractionUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_LengthUnits_toBaseUnits_2 = Module["_emscripten_bind_LengthUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_LengthUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_LengthUnits_fromBaseUnits_2 = Module["_emscripten_bind_LengthUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_LengthUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_LengthUnits___destroy___0 = Module["_emscripten_bind_LengthUnits___destroy___0"] = createExportWrapper("emscripten_bind_LengthUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_LoadingUnits_toBaseUnits_2 = Module["_emscripten_bind_LoadingUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_LoadingUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_LoadingUnits_fromBaseUnits_2 = Module["_emscripten_bind_LoadingUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_LoadingUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_LoadingUnits___destroy___0 = Module["_emscripten_bind_LoadingUnits___destroy___0"] = createExportWrapper("emscripten_bind_LoadingUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2 = Module["_emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2 = Module["_emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0 = Module["_emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0"] = createExportWrapper("emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeedUnits_toBaseUnits_2 = Module["_emscripten_bind_SpeedUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_SpeedUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeedUnits_fromBaseUnits_2 = Module["_emscripten_bind_SpeedUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_SpeedUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeedUnits___destroy___0 = Module["_emscripten_bind_SpeedUnits___destroy___0"] = createExportWrapper("emscripten_bind_SpeedUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PressureUnits_toBaseUnits_2 = Module["_emscripten_bind_PressureUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_PressureUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_PressureUnits_fromBaseUnits_2 = Module["_emscripten_bind_PressureUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_PressureUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_PressureUnits___destroy___0 = Module["_emscripten_bind_PressureUnits___destroy___0"] = createExportWrapper("emscripten_bind_PressureUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SlopeUnits_toBaseUnits_2 = Module["_emscripten_bind_SlopeUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_SlopeUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SlopeUnits_fromBaseUnits_2 = Module["_emscripten_bind_SlopeUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_SlopeUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SlopeUnits___destroy___0 = Module["_emscripten_bind_SlopeUnits___destroy___0"] = createExportWrapper("emscripten_bind_SlopeUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_DensityUnits_toBaseUnits_2 = Module["_emscripten_bind_DensityUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_DensityUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_DensityUnits_fromBaseUnits_2 = Module["_emscripten_bind_DensityUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_DensityUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_DensityUnits___destroy___0 = Module["_emscripten_bind_DensityUnits___destroy___0"] = createExportWrapper("emscripten_bind_DensityUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2 = Module["_emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2 = Module["_emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatOfCombustionUnits___destroy___0 = Module["_emscripten_bind_HeatOfCombustionUnits___destroy___0"] = createExportWrapper("emscripten_bind_HeatOfCombustionUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatSinkUnits_toBaseUnits_2 = Module["_emscripten_bind_HeatSinkUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatSinkUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatSinkUnits_fromBaseUnits_2 = Module["_emscripten_bind_HeatSinkUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatSinkUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatSinkUnits___destroy___0 = Module["_emscripten_bind_HeatSinkUnits___destroy___0"] = createExportWrapper("emscripten_bind_HeatSinkUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2 = Module["_emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2 = Module["_emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatPerUnitAreaUnits___destroy___0 = Module["_emscripten_bind_HeatPerUnitAreaUnits___destroy___0"] = createExportWrapper("emscripten_bind_HeatPerUnitAreaUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2 = Module["_emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2 = Module["_emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0 = Module["_emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0"] = createExportWrapper("emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2 = Module["_emscripten_bind_FirelineIntensityUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_FirelineIntensityUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2 = Module["_emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_FirelineIntensityUnits___destroy___0 = Module["_emscripten_bind_FirelineIntensityUnits___destroy___0"] = createExportWrapper("emscripten_bind_FirelineIntensityUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_TemperatureUnits_toBaseUnits_2 = Module["_emscripten_bind_TemperatureUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_TemperatureUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_TemperatureUnits_fromBaseUnits_2 = Module["_emscripten_bind_TemperatureUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_TemperatureUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_TemperatureUnits___destroy___0 = Module["_emscripten_bind_TemperatureUnits___destroy___0"] = createExportWrapper("emscripten_bind_TemperatureUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_TimeUnits_toBaseUnits_2 = Module["_emscripten_bind_TimeUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_TimeUnits_toBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_TimeUnits_fromBaseUnits_2 = Module["_emscripten_bind_TimeUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_TimeUnits_fromBaseUnits_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_TimeUnits___destroy___0 = Module["_emscripten_bind_TimeUnits___destroy___0"] = createExportWrapper("emscripten_bind_TimeUnits___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getBackingSpreadRate_1 = Module["_emscripten_bind_FireSize_getBackingSpreadRate_1"] = createExportWrapper("emscripten_bind_FireSize_getBackingSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getEccentricity_0 = Module["_emscripten_bind_FireSize_getEccentricity_0"] = createExportWrapper("emscripten_bind_FireSize_getEccentricity_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getEllipticalA_3 = Module["_emscripten_bind_FireSize_getEllipticalA_3"] = createExportWrapper("emscripten_bind_FireSize_getEllipticalA_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getEllipticalB_3 = Module["_emscripten_bind_FireSize_getEllipticalB_3"] = createExportWrapper("emscripten_bind_FireSize_getEllipticalB_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getEllipticalC_3 = Module["_emscripten_bind_FireSize_getEllipticalC_3"] = createExportWrapper("emscripten_bind_FireSize_getEllipticalC_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getFireArea_4 = Module["_emscripten_bind_FireSize_getFireArea_4"] = createExportWrapper("emscripten_bind_FireSize_getFireArea_4"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getFireLength_3 = Module["_emscripten_bind_FireSize_getFireLength_3"] = createExportWrapper("emscripten_bind_FireSize_getFireLength_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getFireLengthToWidthRatio_0 = Module["_emscripten_bind_FireSize_getFireLengthToWidthRatio_0"] = createExportWrapper("emscripten_bind_FireSize_getFireLengthToWidthRatio_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getFirePerimeter_4 = Module["_emscripten_bind_FireSize_getFirePerimeter_4"] = createExportWrapper("emscripten_bind_FireSize_getFirePerimeter_4"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getFlankingSpreadRate_1 = Module["_emscripten_bind_FireSize_getFlankingSpreadRate_1"] = createExportWrapper("emscripten_bind_FireSize_getFlankingSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getHeadingToBackingRatio_0 = Module["_emscripten_bind_FireSize_getHeadingToBackingRatio_0"] = createExportWrapper("emscripten_bind_FireSize_getHeadingToBackingRatio_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_getMaxFireWidth_3 = Module["_emscripten_bind_FireSize_getMaxFireWidth_3"] = createExportWrapper("emscripten_bind_FireSize_getMaxFireWidth_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize_calculateFireBasicDimensions_5 = Module["_emscripten_bind_FireSize_calculateFireBasicDimensions_5"] = createExportWrapper("emscripten_bind_FireSize_calculateFireBasicDimensions_5"); -/** @type {function(...*):?} */ -var _emscripten_bind_FireSize___destroy___0 = Module["_emscripten_bind_FireSize___destroy___0"] = createExportWrapper("emscripten_bind_FireSize___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0 = Module["_emscripten_bind_SIGContainAdapter_SIGContainAdapter_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_SIGContainAdapter_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getContainmentStatus_0 = Module["_emscripten_bind_SIGContainAdapter_getContainmentStatus_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getContainmentStatus_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFirePerimeterX_0 = Module["_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFirePerimeterX_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFirePerimeterY_0 = Module["_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFirePerimeterY_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getAttackDistance_1 = Module["_emscripten_bind_SIGContainAdapter_getAttackDistance_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getAttackDistance_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFinalCost_0 = Module["_emscripten_bind_SIGContainAdapter_getFinalCost_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalCost_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFinalFireSize_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalFireSize_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalFireSize_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalProductionRate_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalProductionRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0 = Module["_emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0 = Module["_emscripten_bind_SIGContainAdapter_getFireBackAtReport_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireBackAtReport_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0 = Module["_emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0 = Module["_emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1 = Module["_emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0 = Module["_emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1 = Module["_emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1 = Module["_emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getReportSize_1 = Module["_emscripten_bind_SIGContainAdapter_getReportSize_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getReportSize_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getReportRate_1 = Module["_emscripten_bind_SIGContainAdapter_getReportRate_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getReportRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1 = Module["_emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getTactic_0 = Module["_emscripten_bind_SIGContainAdapter_getTactic_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getTactic_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0 = Module["_emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1 = Module["_emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_removeResourceAt_1 = Module["_emscripten_bind_SIGContainAdapter_removeResourceAt_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_removeResourceAt_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1 = Module["_emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_addResource_9 = Module["_emscripten_bind_SIGContainAdapter_addResource_9"] = createExportWrapper("emscripten_bind_SIGContainAdapter_addResource_9"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_doContainRun_0 = Module["_emscripten_bind_SIGContainAdapter_doContainRun_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_doContainRun_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_removeAllResources_0 = Module["_emscripten_bind_SIGContainAdapter_removeAllResources_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_removeAllResources_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setAttackDistance_2 = Module["_emscripten_bind_SIGContainAdapter_setAttackDistance_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setAttackDistance_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setContainMode_1 = Module["_emscripten_bind_SIGContainAdapter_setContainMode_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setContainMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setFireStartTime_1 = Module["_emscripten_bind_SIGContainAdapter_setFireStartTime_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setFireStartTime_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setLwRatio_1 = Module["_emscripten_bind_SIGContainAdapter_setLwRatio_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setLwRatio_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setMaxFireSize_1 = Module["_emscripten_bind_SIGContainAdapter_setMaxFireSize_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setMaxFireSize_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setMaxFireTime_1 = Module["_emscripten_bind_SIGContainAdapter_setMaxFireTime_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setMaxFireTime_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setMaxSteps_1 = Module["_emscripten_bind_SIGContainAdapter_setMaxSteps_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setMaxSteps_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setMinSteps_1 = Module["_emscripten_bind_SIGContainAdapter_setMinSteps_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setMinSteps_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setReportRate_2 = Module["_emscripten_bind_SIGContainAdapter_setReportRate_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setReportRate_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setReportSize_2 = Module["_emscripten_bind_SIGContainAdapter_setReportSize_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setReportSize_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2 = Module["_emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setResourceDuration_2 = Module["_emscripten_bind_SIGContainAdapter_setResourceDuration_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setResourceDuration_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setRetry_1 = Module["_emscripten_bind_SIGContainAdapter_setRetry_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setRetry_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter_setTactic_1 = Module["_emscripten_bind_SIGContainAdapter_setTactic_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setTactic_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGContainAdapter___destroy___0 = Module["_emscripten_bind_SIGContainAdapter___destroy___0"] = createExportWrapper("emscripten_bind_SIGContainAdapter___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_SIGIgnite_0 = Module["_emscripten_bind_SIGIgnite_SIGIgnite_0"] = createExportWrapper("emscripten_bind_SIGIgnite_SIGIgnite_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_initializeMembers_0 = Module["_emscripten_bind_SIGIgnite_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGIgnite_initializeMembers_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getFuelBedType_0 = Module["_emscripten_bind_SIGIgnite_getFuelBedType_0"] = createExportWrapper("emscripten_bind_SIGIgnite_getFuelBedType_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getLightningChargeType_0 = Module["_emscripten_bind_SIGIgnite_getLightningChargeType_0"] = createExportWrapper("emscripten_bind_SIGIgnite_getLightningChargeType_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0 = Module["_emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0"] = createExportWrapper("emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1 = Module["_emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1"] = createExportWrapper("emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_setAirTemperature_2 = Module["_emscripten_bind_SIGIgnite_setAirTemperature_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setAirTemperature_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_setDuffDepth_2 = Module["_emscripten_bind_SIGIgnite_setDuffDepth_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setDuffDepth_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1 = Module["_emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1"] = createExportWrapper("emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_setLightningChargeType_1 = Module["_emscripten_bind_SIGIgnite_setLightningChargeType_1"] = createExportWrapper("emscripten_bind_SIGIgnite_setLightningChargeType_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_setMoistureHundredHour_2 = Module["_emscripten_bind_SIGIgnite_setMoistureHundredHour_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setMoistureHundredHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_setMoistureOneHour_2 = Module["_emscripten_bind_SIGIgnite_setMoistureOneHour_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setMoistureOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_setSunShade_2 = Module["_emscripten_bind_SIGIgnite_setSunShade_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setSunShade_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_updateIgniteInputs_11 = Module["_emscripten_bind_SIGIgnite_updateIgniteInputs_11"] = createExportWrapper("emscripten_bind_SIGIgnite_updateIgniteInputs_11"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getAirTemperature_1 = Module["_emscripten_bind_SIGIgnite_getAirTemperature_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getAirTemperature_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getDuffDepth_1 = Module["_emscripten_bind_SIGIgnite_getDuffDepth_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getDuffDepth_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1 = Module["_emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getFuelTemperature_1 = Module["_emscripten_bind_SIGIgnite_getFuelTemperature_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getFuelTemperature_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getMoistureHundredHour_1 = Module["_emscripten_bind_SIGIgnite_getMoistureHundredHour_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getMoistureHundredHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getMoistureOneHour_1 = Module["_emscripten_bind_SIGIgnite_getMoistureOneHour_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getMoistureOneHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_getSunShade_1 = Module["_emscripten_bind_SIGIgnite_getSunShade_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getSunShade_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite_isFuelDepthNeeded_0 = Module["_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0"] = createExportWrapper("emscripten_bind_SIGIgnite_isFuelDepthNeeded_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGIgnite___destroy___0 = Module["_emscripten_bind_SIGIgnite___destroy___0"] = createExportWrapper("emscripten_bind_SIGIgnite___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0 = Module["_emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1 = Module["_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1 = Module["_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0 = Module["_emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMoistureScenarios___destroy___0 = Module["_emscripten_bind_SIGMoistureScenarios___destroy___0"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_SIGSpot_0 = Module["_emscripten_bind_SIGSpot_SIGSpot_0"] = createExportWrapper("emscripten_bind_SIGSpot_SIGSpot_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getDownwindCanopyMode_0 = Module["_emscripten_bind_SIGSpot_getDownwindCanopyMode_0"] = createExportWrapper("emscripten_bind_SIGSpot_getDownwindCanopyMode_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getLocation_0 = Module["_emscripten_bind_SIGSpot_getLocation_0"] = createExportWrapper("emscripten_bind_SIGSpot_getLocation_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getTreeSpecies_0 = Module["_emscripten_bind_SIGSpot_getTreeSpecies_0"] = createExportWrapper("emscripten_bind_SIGSpot_getTreeSpecies_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1 = Module["_emscripten_bind_SIGSpot_getBurningPileFlameHeight_1"] = createExportWrapper("emscripten_bind_SIGSpot_getBurningPileFlameHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1 = Module["_emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1"] = createExportWrapper("emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1 = Module["_emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1"] = createExportWrapper("emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getDBH_1 = Module["_emscripten_bind_SIGSpot_getDBH_1"] = createExportWrapper("emscripten_bind_SIGSpot_getDBH_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getDownwindCoverHeight_1 = Module["_emscripten_bind_SIGSpot_getDownwindCoverHeight_1"] = createExportWrapper("emscripten_bind_SIGSpot_getDownwindCoverHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0 = Module["_emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0"] = createExportWrapper("emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1 = Module["_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1 = Module["_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1 = Module["_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1 = Module["_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1 = Module["_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1 = Module["_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1 = Module["_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1 = Module["_emscripten_bind_SIGSpot_getRidgeToValleyDistance_1"] = createExportWrapper("emscripten_bind_SIGSpot_getRidgeToValleyDistance_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1 = Module["_emscripten_bind_SIGSpot_getRidgeToValleyElevation_1"] = createExportWrapper("emscripten_bind_SIGSpot_getRidgeToValleyElevation_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getSurfaceFlameLength_1 = Module["_emscripten_bind_SIGSpot_getSurfaceFlameLength_1"] = createExportWrapper("emscripten_bind_SIGSpot_getSurfaceFlameLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getTreeHeight_1 = Module["_emscripten_bind_SIGSpot_getTreeHeight_1"] = createExportWrapper("emscripten_bind_SIGSpot_getTreeHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1 = Module["_emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1"] = createExportWrapper("emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_getTorchingTrees_0 = Module["_emscripten_bind_SIGSpot_getTorchingTrees_0"] = createExportWrapper("emscripten_bind_SIGSpot_getTorchingTrees_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_calculateAll_0 = Module["_emscripten_bind_SIGSpot_calculateAll_0"] = createExportWrapper("emscripten_bind_SIGSpot_calculateAll_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0 = Module["_emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0"] = createExportWrapper("emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0 = Module["_emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0"] = createExportWrapper("emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0 = Module["_emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0"] = createExportWrapper("emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_initializeMembers_0 = Module["_emscripten_bind_SIGSpot_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGSpot_initializeMembers_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2 = Module["_emscripten_bind_SIGSpot_setActiveCrownFlameLength_2"] = createExportWrapper("emscripten_bind_SIGSpot_setActiveCrownFlameLength_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2 = Module["_emscripten_bind_SIGSpot_setBurningPileFlameHeight_2"] = createExportWrapper("emscripten_bind_SIGSpot_setBurningPileFlameHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setDBH_2 = Module["_emscripten_bind_SIGSpot_setDBH_2"] = createExportWrapper("emscripten_bind_SIGSpot_setDBH_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setDownwindCanopyMode_1 = Module["_emscripten_bind_SIGSpot_setDownwindCanopyMode_1"] = createExportWrapper("emscripten_bind_SIGSpot_setDownwindCanopyMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setDownwindCoverHeight_2 = Module["_emscripten_bind_SIGSpot_setDownwindCoverHeight_2"] = createExportWrapper("emscripten_bind_SIGSpot_setDownwindCoverHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setFireType_1 = Module["_emscripten_bind_SIGSpot_setFireType_1"] = createExportWrapper("emscripten_bind_SIGSpot_setFireType_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setFlameLength_2 = Module["_emscripten_bind_SIGSpot_setFlameLength_2"] = createExportWrapper("emscripten_bind_SIGSpot_setFlameLength_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setFirelineIntensity_2 = Module["_emscripten_bind_SIGSpot_setFirelineIntensity_2"] = createExportWrapper("emscripten_bind_SIGSpot_setFirelineIntensity_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setLocation_1 = Module["_emscripten_bind_SIGSpot_setLocation_1"] = createExportWrapper("emscripten_bind_SIGSpot_setLocation_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2 = Module["_emscripten_bind_SIGSpot_setRidgeToValleyDistance_2"] = createExportWrapper("emscripten_bind_SIGSpot_setRidgeToValleyDistance_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2 = Module["_emscripten_bind_SIGSpot_setRidgeToValleyElevation_2"] = createExportWrapper("emscripten_bind_SIGSpot_setRidgeToValleyElevation_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_setTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_setTorchingTrees_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setTreeHeight_2 = Module["_emscripten_bind_SIGSpot_setTreeHeight_2"] = createExportWrapper("emscripten_bind_SIGSpot_setTreeHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setTreeSpecies_1 = Module["_emscripten_bind_SIGSpot_setTreeSpecies_1"] = createExportWrapper("emscripten_bind_SIGSpot_setTreeSpecies_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2 = Module["_emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2"] = createExportWrapper("emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setWindSpeed_2 = Module["_emscripten_bind_SIGSpot_setWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGSpot_setWindSpeed_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3 = Module["_emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3"] = createExportWrapper("emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_setWindHeightInputMode_1 = Module["_emscripten_bind_SIGSpot_setWindHeightInputMode_1"] = createExportWrapper("emscripten_bind_SIGSpot_setWindHeightInputMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12 = Module["_emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12"] = createExportWrapper("emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12 = Module["_emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12"] = createExportWrapper("emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16 = Module["_emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16"] = createExportWrapper("emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSpot___destroy___0 = Module["_emscripten_bind_SIGSpot___destroy___0"] = createExportWrapper("emscripten_bind_SIGSpot___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_SIGFuelModels_0 = Module["_emscripten_bind_SIGFuelModels_SIGFuelModels_0"] = createExportWrapper("emscripten_bind_SIGFuelModels_SIGFuelModels_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_SIGFuelModels_1 = Module["_emscripten_bind_SIGFuelModels_SIGFuelModels_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_SIGFuelModels_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_equal_1 = Module["_emscripten_bind_SIGFuelModels_equal_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_equal_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_clearCustomFuelModel_1 = Module["_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_clearCustomFuelModel_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getIsDynamic_1 = Module["_emscripten_bind_SIGFuelModels_getIsDynamic_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_getIsDynamic_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1 = Module["_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_isFuelModelDefined_1 = Module["_emscripten_bind_SIGFuelModels_isFuelModelDefined_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_isFuelModelDefined_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_isFuelModelReserved_1 = Module["_emscripten_bind_SIGFuelModels_isFuelModelReserved_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_isFuelModelReserved_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_setCustomFuelModel_21 = Module["_emscripten_bind_SIGFuelModels_setCustomFuelModel_21"] = createExportWrapper("emscripten_bind_SIGFuelModels_setCustomFuelModel_21"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getFuelCode_1 = Module["_emscripten_bind_SIGFuelModels_getFuelCode_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getFuelName_1 = Module["_emscripten_bind_SIGFuelModels_getFuelName_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getFuelbedDepth_2 = Module["_emscripten_bind_SIGFuelModels_getFuelbedDepth_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelbedDepth_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2 = Module["_emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2 = Module["_emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2 = Module["_emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2 = Module["_emscripten_bind_SIGFuelModels_getSavrLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getSavrLiveWoody_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getSavrOneHour_2 = Module["_emscripten_bind_SIGFuelModels_getSavrOneHour_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getSavrOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2 = Module["_emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFuelModels___destroy___0 = Module["_emscripten_bind_SIGFuelModels___destroy___0"] = createExportWrapper("emscripten_bind_SIGFuelModels___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_SIGSurface_1 = Module["_emscripten_bind_SIGSurface_SIGSurface_1"] = createExportWrapper("emscripten_bind_SIGSurface_SIGSurface_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenFireSeverity_0 = Module["_emscripten_bind_SIGSurface_getAspenFireSeverity_0"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenFireSeverity_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralFuelType_0 = Module["_emscripten_bind_SIGSurface_getChaparralFuelType_0"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralFuelType_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureInputMode_0 = Module["_emscripten_bind_SIGSurface_getMoistureInputMode_0"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureInputMode_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0 = Module["_emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0 = Module["_emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getWindHeightInputMode_0 = Module["_emscripten_bind_SIGSurface_getWindHeightInputMode_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindHeightInputMode_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0 = Module["_emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0 = Module["_emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0"] = createExportWrapper("emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1 = Module["_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1"] = createExportWrapper("emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1 = Module["_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1"] = createExportWrapper("emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getIsUsingChaparral_0 = Module["_emscripten_bind_SIGSurface_getIsUsingChaparral_0"] = createExportWrapper("emscripten_bind_SIGSurface_getIsUsingChaparral_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0 = Module["_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0"] = createExportWrapper("emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getIsUsingWesternAspen_0 = Module["_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0"] = createExportWrapper("emscripten_bind_SIGSurface_getIsUsingWesternAspen_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_isAllFuelLoadZero_1 = Module["_emscripten_bind_SIGSurface_isAllFuelLoadZero_1"] = createExportWrapper("emscripten_bind_SIGSurface_isAllFuelLoadZero_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_isFuelDynamic_1 = Module["_emscripten_bind_SIGSurface_isFuelDynamic_1"] = createExportWrapper("emscripten_bind_SIGSurface_isFuelDynamic_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_isFuelModelDefined_1 = Module["_emscripten_bind_SIGSurface_isFuelModelDefined_1"] = createExportWrapper("emscripten_bind_SIGSurface_isFuelModelDefined_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_isFuelModelReserved_1 = Module["_emscripten_bind_SIGSurface_isFuelModelReserved_1"] = createExportWrapper("emscripten_bind_SIGSurface_isFuelModelReserved_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1 = Module["_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1"] = createExportWrapper("emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_isUsingTwoFuelModels_0 = Module["_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0"] = createExportWrapper("emscripten_bind_SIGSurface_isUsingTwoFuelModels_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1 = Module["_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1"] = createExportWrapper("emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1 = Module["_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1"] = createExportWrapper("emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_calculateFlameLength_3 = Module["_emscripten_bind_SIGSurface_calculateFlameLength_3"] = createExportWrapper("emscripten_bind_SIGSurface_calculateFlameLength_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAgeOfRough_0 = Module["_emscripten_bind_SIGSurface_getAgeOfRough_0"] = createExportWrapper("emscripten_bind_SIGSurface_getAgeOfRough_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspect_0 = Module["_emscripten_bind_SIGSurface_getAspect_0"] = createExportWrapper("emscripten_bind_SIGSurface_getAspect_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenCuringLevel_1 = Module["_emscripten_bind_SIGSurface_getAspenCuringLevel_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenCuringLevel_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenDBH_1 = Module["_emscripten_bind_SIGSurface_getAspenDBH_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenDBH_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1 = Module["_emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1 = Module["_emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1 = Module["_emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1 = Module["_emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1 = Module["_emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1 = Module["_emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1 = Module["_emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1 = Module["_emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1 = Module["_emscripten_bind_SIGSurface_getBackingFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBackingFirelineIntensity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getBackingFlameLength_1 = Module["_emscripten_bind_SIGSurface_getBackingFlameLength_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBackingFlameLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getBackingSpreadDistance_1 = Module["_emscripten_bind_SIGSurface_getBackingSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBackingSpreadDistance_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getBackingSpreadRate_1 = Module["_emscripten_bind_SIGSurface_getBackingSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBackingSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getBulkDensity_1 = Module["_emscripten_bind_SIGSurface_getBulkDensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBulkDensity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getCanopyCover_1 = Module["_emscripten_bind_SIGSurface_getCanopyCover_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCanopyCover_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getCanopyHeight_1 = Module["_emscripten_bind_SIGSurface_getCanopyHeight_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCanopyHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralAge_1 = Module["_emscripten_bind_SIGSurface_getChaparralAge_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralAge_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0 = Module["_emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0 = Module["_emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1 = Module["_emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralDensity_3 = Module["_emscripten_bind_SIGSurface_getChaparralDensity_3"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralDensity_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1 = Module["_emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0 = Module["_emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3 = Module["_emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1 = Module["_emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralMoisture_3 = Module["_emscripten_bind_SIGSurface_getChaparralMoisture_3"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralMoisture_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2 = Module["_emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2"] = createExportWrapper("emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1 = Module["_emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1 = Module["_emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getCharacteristicSAVR_1 = Module["_emscripten_bind_SIGSurface_getCharacteristicSAVR_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCharacteristicSAVR_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getCrownRatio_1 = Module["_emscripten_bind_SIGSurface_getCrownRatio_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCrownRatio_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0 = Module["_emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0"] = createExportWrapper("emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getDirectionOfInterest_0 = Module["_emscripten_bind_SIGSurface_getDirectionOfInterest_0"] = createExportWrapper("emscripten_bind_SIGSurface_getDirectionOfInterest_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getDirectionOfBacking_0 = Module["_emscripten_bind_SIGSurface_getDirectionOfBacking_0"] = createExportWrapper("emscripten_bind_SIGSurface_getDirectionOfBacking_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getDirectionOfFlanking_0 = Module["_emscripten_bind_SIGSurface_getDirectionOfFlanking_0"] = createExportWrapper("emscripten_bind_SIGSurface_getDirectionOfFlanking_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getElapsedTime_1 = Module["_emscripten_bind_SIGSurface_getElapsedTime_1"] = createExportWrapper("emscripten_bind_SIGSurface_getElapsedTime_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getEllipticalA_1 = Module["_emscripten_bind_SIGSurface_getEllipticalA_1"] = createExportWrapper("emscripten_bind_SIGSurface_getEllipticalA_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getEllipticalB_1 = Module["_emscripten_bind_SIGSurface_getEllipticalB_1"] = createExportWrapper("emscripten_bind_SIGSurface_getEllipticalB_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getEllipticalC_1 = Module["_emscripten_bind_SIGSurface_getEllipticalC_1"] = createExportWrapper("emscripten_bind_SIGSurface_getEllipticalC_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFireLength_1 = Module["_emscripten_bind_SIGSurface_getFireLength_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFireLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMaxFireWidth_1 = Module["_emscripten_bind_SIGSurface_getMaxFireWidth_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMaxFireWidth_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFireArea_1 = Module["_emscripten_bind_SIGSurface_getFireArea_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFireArea_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFireEccentricity_0 = Module["_emscripten_bind_SIGSurface_getFireEccentricity_0"] = createExportWrapper("emscripten_bind_SIGSurface_getFireEccentricity_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0 = Module["_emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0"] = createExportWrapper("emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFirePerimeter_1 = Module["_emscripten_bind_SIGSurface_getFirePerimeter_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFirePerimeter_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFirelineIntensity_1 = Module["_emscripten_bind_SIGSurface_getFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFirelineIntensity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFlameLength_1 = Module["_emscripten_bind_SIGSurface_getFlameLength_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlameLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1 = Module["_emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFlankingFlameLength_1 = Module["_emscripten_bind_SIGSurface_getFlankingFlameLength_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlankingFlameLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFlankingSpreadRate_1 = Module["_emscripten_bind_SIGSurface_getFlankingSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlankingSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1 = Module["_emscripten_bind_SIGSurface_getFlankingSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlankingSpreadDistance_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2 = Module["_emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2 = Module["_emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadHundredHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadHundredHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelLoadOneHour_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadOneHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelLoadTenHour_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadTenHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadTenHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2 = Module["_emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2 = Module["_emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2 = Module["_emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelSavrOneHour_2 = Module["_emscripten_bind_SIGSurface_getFuelSavrOneHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelSavrOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelbedDepth_2 = Module["_emscripten_bind_SIGSurface_getFuelbedDepth_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelbedDepth_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getHeadingSpreadRate_1 = Module["_emscripten_bind_SIGSurface_getHeadingSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeadingSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0 = Module["_emscripten_bind_SIGSurface_getHeadingToBackingRatio_0"] = createExportWrapper("emscripten_bind_SIGSurface_getHeadingToBackingRatio_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getHeatPerUnitArea_1 = Module["_emscripten_bind_SIGSurface_getHeatPerUnitArea_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeatPerUnitArea_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getHeatSink_1 = Module["_emscripten_bind_SIGSurface_getHeatSink_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeatSink_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getHeatSource_1 = Module["_emscripten_bind_SIGSurface_getHeatSource_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeatSource_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getHeightOfUnderstory_1 = Module["_emscripten_bind_SIGSurface_getHeightOfUnderstory_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeightOfUnderstory_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1 = Module["_emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1"] = createExportWrapper("emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMidflameWindspeed_1 = Module["_emscripten_bind_SIGSurface_getMidflameWindspeed_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMidflameWindspeed_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1 = Module["_emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureHundredHour_1 = Module["_emscripten_bind_SIGSurface_getMoistureHundredHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureHundredHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1 = Module["_emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1 = Module["_emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureLiveWoody_1 = Module["_emscripten_bind_SIGSurface_getMoistureLiveWoody_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureLiveWoody_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureOneHour_1 = Module["_emscripten_bind_SIGSurface_getMoistureOneHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureOneHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureTenHour_1 = Module["_emscripten_bind_SIGSurface_getMoistureTenHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureTenHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getOverstoryBasalArea_1 = Module["_emscripten_bind_SIGSurface_getOverstoryBasalArea_1"] = createExportWrapper("emscripten_bind_SIGSurface_getOverstoryBasalArea_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getReactionIntensity_1 = Module["_emscripten_bind_SIGSurface_getReactionIntensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getReactionIntensity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getResidenceTime_1 = Module["_emscripten_bind_SIGSurface_getResidenceTime_1"] = createExportWrapper("emscripten_bind_SIGSurface_getResidenceTime_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getSlope_1 = Module["_emscripten_bind_SIGSurface_getSlope_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSlope_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getSlopeFactor_0 = Module["_emscripten_bind_SIGSurface_getSlopeFactor_0"] = createExportWrapper("emscripten_bind_SIGSurface_getSlopeFactor_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getSpreadDistance_1 = Module["_emscripten_bind_SIGSurface_getSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSpreadDistance_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getSpreadRate_1 = Module["_emscripten_bind_SIGSurface_getSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1 = Module["_emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getWindDirection_0 = Module["_emscripten_bind_SIGSurface_getWindDirection_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindDirection_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getWindSpeed_2 = Module["_emscripten_bind_SIGSurface_getWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGSurface_getWindSpeed_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0 = Module["_emscripten_bind_SIGSurface_getAspenFuelModelNumber_0"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenFuelModelNumber_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelModelNumber_0 = Module["_emscripten_bind_SIGSurface_getFuelModelNumber_0"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelModelNumber_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0 = Module["_emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0"] = createExportWrapper("emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelCode_1 = Module["_emscripten_bind_SIGSurface_getFuelCode_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getFuelName_1 = Module["_emscripten_bind_SIGSurface_getFuelName_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_doSurfaceRun_0 = Module["_emscripten_bind_SIGSurface_doSurfaceRun_0"] = createExportWrapper("emscripten_bind_SIGSurface_doSurfaceRun_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2 = Module["_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2"] = createExportWrapper("emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0 = Module["_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0"] = createExportWrapper("emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_initializeMembers_0 = Module["_emscripten_bind_SIGSurface_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGSurface_initializeMembers_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setAgeOfRough_1 = Module["_emscripten_bind_SIGSurface_setAgeOfRough_1"] = createExportWrapper("emscripten_bind_SIGSurface_setAgeOfRough_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setAspect_1 = Module["_emscripten_bind_SIGSurface_setAspect_1"] = createExportWrapper("emscripten_bind_SIGSurface_setAspect_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setAspenCuringLevel_2 = Module["_emscripten_bind_SIGSurface_setAspenCuringLevel_2"] = createExportWrapper("emscripten_bind_SIGSurface_setAspenCuringLevel_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setAspenDBH_2 = Module["_emscripten_bind_SIGSurface_setAspenDBH_2"] = createExportWrapper("emscripten_bind_SIGSurface_setAspenDBH_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setAspenFireSeverity_1 = Module["_emscripten_bind_SIGSurface_setAspenFireSeverity_1"] = createExportWrapper("emscripten_bind_SIGSurface_setAspenFireSeverity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1 = Module["_emscripten_bind_SIGSurface_setAspenFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGSurface_setAspenFuelModelNumber_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setCanopyCover_2 = Module["_emscripten_bind_SIGSurface_setCanopyCover_2"] = createExportWrapper("emscripten_bind_SIGSurface_setCanopyCover_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setCanopyHeight_2 = Module["_emscripten_bind_SIGSurface_setCanopyHeight_2"] = createExportWrapper("emscripten_bind_SIGSurface_setCanopyHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2 = Module["_emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1 = Module["_emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1 = Module["_emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setChaparralFuelType_1 = Module["_emscripten_bind_SIGSurface_setChaparralFuelType_1"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralFuelType_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2 = Module["_emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setCrownRatio_2 = Module["_emscripten_bind_SIGSurface_setCrownRatio_2"] = createExportWrapper("emscripten_bind_SIGSurface_setCrownRatio_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_setDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_setDirectionOfInterest_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setElapsedTime_2 = Module["_emscripten_bind_SIGSurface_setElapsedTime_2"] = createExportWrapper("emscripten_bind_SIGSurface_setElapsedTime_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1 = Module["_emscripten_bind_SIGSurface_setFirstFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGSurface_setFirstFuelModelNumber_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setFuelModels_1 = Module["_emscripten_bind_SIGSurface_setFuelModels_1"] = createExportWrapper("emscripten_bind_SIGSurface_setFuelModels_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setHeightOfUnderstory_2 = Module["_emscripten_bind_SIGSurface_setHeightOfUnderstory_2"] = createExportWrapper("emscripten_bind_SIGSurface_setHeightOfUnderstory_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setIsUsingChaparral_1 = Module["_emscripten_bind_SIGSurface_setIsUsingChaparral_1"] = createExportWrapper("emscripten_bind_SIGSurface_setIsUsingChaparral_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1 = Module["_emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1"] = createExportWrapper("emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1 = Module["_emscripten_bind_SIGSurface_setIsUsingWesternAspen_1"] = createExportWrapper("emscripten_bind_SIGSurface_setIsUsingWesternAspen_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2 = Module["_emscripten_bind_SIGSurface_setMoistureDeadAggregate_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureDeadAggregate_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureHundredHour_2 = Module["_emscripten_bind_SIGSurface_setMoistureHundredHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureHundredHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureInputMode_1 = Module["_emscripten_bind_SIGSurface_setMoistureInputMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureInputMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2 = Module["_emscripten_bind_SIGSurface_setMoistureLiveAggregate_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureLiveAggregate_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2 = Module["_emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureLiveWoody_2 = Module["_emscripten_bind_SIGSurface_setMoistureLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureLiveWoody_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureOneHour_2 = Module["_emscripten_bind_SIGSurface_setMoistureOneHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureScenarios_1 = Module["_emscripten_bind_SIGSurface_setMoistureScenarios_1"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureScenarios_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setMoistureTenHour_2 = Module["_emscripten_bind_SIGSurface_setMoistureTenHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureTenHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setOverstoryBasalArea_2 = Module["_emscripten_bind_SIGSurface_setOverstoryBasalArea_2"] = createExportWrapper("emscripten_bind_SIGSurface_setOverstoryBasalArea_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setPalmettoCoverage_2 = Module["_emscripten_bind_SIGSurface_setPalmettoCoverage_2"] = createExportWrapper("emscripten_bind_SIGSurface_setPalmettoCoverage_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1 = Module["_emscripten_bind_SIGSurface_setSecondFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGSurface_setSecondFuelModelNumber_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setSlope_2 = Module["_emscripten_bind_SIGSurface_setSlope_2"] = createExportWrapper("emscripten_bind_SIGSurface_setSlope_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1 = Module["_emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1 = Module["_emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1"] = createExportWrapper("emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2 = Module["_emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2"] = createExportWrapper("emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1 = Module["_emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1"] = createExportWrapper("emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1 = Module["_emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1"] = createExportWrapper("emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1 = Module["_emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1"] = createExportWrapper("emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1 = Module["_emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setWindDirection_1 = Module["_emscripten_bind_SIGSurface_setWindDirection_1"] = createExportWrapper("emscripten_bind_SIGSurface_setWindDirection_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setWindHeightInputMode_1 = Module["_emscripten_bind_SIGSurface_setWindHeightInputMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setWindHeightInputMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setWindSpeed_2 = Module["_emscripten_bind_SIGSurface_setWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGSurface_setWindSpeed_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_updateSurfaceInputs_21 = Module["_emscripten_bind_SIGSurface_updateSurfaceInputs_21"] = createExportWrapper("emscripten_bind_SIGSurface_updateSurfaceInputs_21"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25 = Module["_emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25"] = createExportWrapper("emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25 = Module["_emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25"] = createExportWrapper("emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26 = Module["_emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26"] = createExportWrapper("emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface_setFuelModelNumber_1 = Module["_emscripten_bind_SIGSurface_setFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGSurface_setFuelModelNumber_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSurface___destroy___0 = Module["_emscripten_bind_SIGSurface___destroy___0"] = createExportWrapper("emscripten_bind_SIGSurface___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0 = Module["_emscripten_bind_PalmettoGallberry_PalmettoGallberry_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_PalmettoGallberry_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_initializeMembers_0 = Module["_emscripten_bind_PalmettoGallberry_initializeMembers_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_initializeMembers_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0 = Module["_emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0 = Module["_emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0 = Module["_emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_PalmettoGallberry___destroy___0 = Module["_emscripten_bind_PalmettoGallberry___destroy___0"] = createExportWrapper("emscripten_bind_PalmettoGallberry___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_WesternAspen_0 = Module["_emscripten_bind_WesternAspen_WesternAspen_0"] = createExportWrapper("emscripten_bind_WesternAspen_WesternAspen_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_initializeMembers_0 = Module["_emscripten_bind_WesternAspen_initializeMembers_0"] = createExportWrapper("emscripten_bind_WesternAspen_initializeMembers_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_calculateAspenMortality_3 = Module["_emscripten_bind_WesternAspen_calculateAspenMortality_3"] = createExportWrapper("emscripten_bind_WesternAspen_calculateAspenMortality_3"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1 = Module["_emscripten_bind_WesternAspen_getAspenFuelBedDepth_1"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenFuelBedDepth_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0 = Module["_emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0 = Module["_emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0 = Module["_emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0 = Module["_emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0 = Module["_emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0 = Module["_emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0 = Module["_emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenMortality_0 = Module["_emscripten_bind_WesternAspen_getAspenMortality_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenMortality_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0 = Module["_emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0 = Module["_emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0 = Module["_emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0 = Module["_emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WesternAspen___destroy___0 = Module["_emscripten_bind_WesternAspen___destroy___0"] = createExportWrapper("emscripten_bind_WesternAspen___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_SIGCrown_1 = Module["_emscripten_bind_SIGCrown_SIGCrown_1"] = createExportWrapper("emscripten_bind_SIGCrown_SIGCrown_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFireType_0 = Module["_emscripten_bind_SIGCrown_getFireType_0"] = createExportWrapper("emscripten_bind_SIGCrown_getFireType_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1 = Module["_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1"] = createExportWrapper("emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1 = Module["_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1"] = createExportWrapper("emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_isAllFuelLoadZero_1 = Module["_emscripten_bind_SIGCrown_isAllFuelLoadZero_1"] = createExportWrapper("emscripten_bind_SIGCrown_isAllFuelLoadZero_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_isFuelDynamic_1 = Module["_emscripten_bind_SIGCrown_isFuelDynamic_1"] = createExportWrapper("emscripten_bind_SIGCrown_isFuelDynamic_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_isFuelModelDefined_1 = Module["_emscripten_bind_SIGCrown_isFuelModelDefined_1"] = createExportWrapper("emscripten_bind_SIGCrown_isFuelModelDefined_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_isFuelModelReserved_1 = Module["_emscripten_bind_SIGCrown_isFuelModelReserved_1"] = createExportWrapper("emscripten_bind_SIGCrown_isFuelModelReserved_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1 = Module["_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1"] = createExportWrapper("emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1 = Module["_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1"] = createExportWrapper("emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getAspect_0 = Module["_emscripten_bind_SIGCrown_getAspect_0"] = createExportWrapper("emscripten_bind_SIGCrown_getAspect_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCanopyBaseHeight_1 = Module["_emscripten_bind_SIGCrown_getCanopyBaseHeight_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCanopyBaseHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCanopyBulkDensity_1 = Module["_emscripten_bind_SIGCrown_getCanopyBulkDensity_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCanopyBulkDensity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCanopyCover_1 = Module["_emscripten_bind_SIGCrown_getCanopyCover_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCanopyCover_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCanopyHeight_1 = Module["_emscripten_bind_SIGCrown_getCanopyHeight_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCanopyHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1 = Module["_emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1 = Module["_emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1 = Module["_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1 = Module["_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0 = Module["_emscripten_bind_SIGCrown_getCrownFireActiveRatio_0"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireActiveRatio_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFireArea_1 = Module["_emscripten_bind_SIGCrown_getCrownFireArea_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireArea_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFirePerimeter_1 = Module["_emscripten_bind_SIGCrown_getCrownFirePerimeter_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFirePerimeter_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownTransitionRatio_0 = Module["_emscripten_bind_SIGCrown_getCrownTransitionRatio_0"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownTransitionRatio_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0 = Module["_emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1 = Module["_emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1 = Module["_emscripten_bind_SIGCrown_getCrownFireSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1 = Module["_emscripten_bind_SIGCrown_getCrownFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFirelineIntensity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFlameLength_1 = Module["_emscripten_bind_SIGCrown_getCrownFlameLength_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFlameLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownFractionBurned_0 = Module["_emscripten_bind_SIGCrown_getCrownFractionBurned_0"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFractionBurned_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getCrownRatio_1 = Module["_emscripten_bind_SIGCrown_getCrownRatio_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownRatio_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1 = Module["_emscripten_bind_SIGCrown_getFinalFirelineIntesity_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalFirelineIntesity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1 = Module["_emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFinalSpreadRate_1 = Module["_emscripten_bind_SIGCrown_getFinalSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFinalSpreadDistance_1 = Module["_emscripten_bind_SIGCrown_getFinalSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalSpreadDistance_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFinalFireArea_1 = Module["_emscripten_bind_SIGCrown_getFinalFireArea_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalFireArea_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFinalFirePerimeter_1 = Module["_emscripten_bind_SIGCrown_getFinalFirePerimeter_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalFirePerimeter_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2 = Module["_emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2 = Module["_emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadHundredHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadHundredHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelLoadOneHour_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadOneHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelLoadTenHour_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadTenHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadTenHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2 = Module["_emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2 = Module["_emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2 = Module["_emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelSavrOneHour_2 = Module["_emscripten_bind_SIGCrown_getFuelSavrOneHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelSavrOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelbedDepth_2 = Module["_emscripten_bind_SIGCrown_getFuelbedDepth_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelbedDepth_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureFoliar_1 = Module["_emscripten_bind_SIGCrown_getMoistureFoliar_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureFoliar_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureHundredHour_1 = Module["_emscripten_bind_SIGCrown_getMoistureHundredHour_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureHundredHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1 = Module["_emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureLiveWoody_1 = Module["_emscripten_bind_SIGCrown_getMoistureLiveWoody_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureLiveWoody_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureOneHour_1 = Module["_emscripten_bind_SIGCrown_getMoistureOneHour_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureOneHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureTenHour_1 = Module["_emscripten_bind_SIGCrown_getMoistureTenHour_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureTenHour_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getSlope_1 = Module["_emscripten_bind_SIGCrown_getSlope_1"] = createExportWrapper("emscripten_bind_SIGCrown_getSlope_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1 = Module["_emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1 = Module["_emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getWindDirection_0 = Module["_emscripten_bind_SIGCrown_getWindDirection_0"] = createExportWrapper("emscripten_bind_SIGCrown_getWindDirection_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getWindSpeed_2 = Module["_emscripten_bind_SIGCrown_getWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGCrown_getWindSpeed_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelModelNumber_0 = Module["_emscripten_bind_SIGCrown_getFuelModelNumber_0"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelModelNumber_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0 = Module["_emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0"] = createExportWrapper("emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelCode_1 = Module["_emscripten_bind_SIGCrown_getFuelCode_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFuelName_1 = Module["_emscripten_bind_SIGCrown_getFuelName_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_doCrownRun_0 = Module["_emscripten_bind_SIGCrown_doCrownRun_0"] = createExportWrapper("emscripten_bind_SIGCrown_doCrownRun_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_doCrownRunRothermel_0 = Module["_emscripten_bind_SIGCrown_doCrownRunRothermel_0"] = createExportWrapper("emscripten_bind_SIGCrown_doCrownRunRothermel_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0 = Module["_emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0"] = createExportWrapper("emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_initializeMembers_0 = Module["_emscripten_bind_SIGCrown_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGCrown_initializeMembers_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setAspect_1 = Module["_emscripten_bind_SIGCrown_setAspect_1"] = createExportWrapper("emscripten_bind_SIGCrown_setAspect_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setCanopyBaseHeight_2 = Module["_emscripten_bind_SIGCrown_setCanopyBaseHeight_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCanopyBaseHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setCanopyBulkDensity_2 = Module["_emscripten_bind_SIGCrown_setCanopyBulkDensity_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCanopyBulkDensity_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setCanopyCover_2 = Module["_emscripten_bind_SIGCrown_setCanopyCover_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCanopyCover_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setCanopyHeight_2 = Module["_emscripten_bind_SIGCrown_setCanopyHeight_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCanopyHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setCrownRatio_2 = Module["_emscripten_bind_SIGCrown_setCrownRatio_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCrownRatio_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setFuelModelNumber_1 = Module["_emscripten_bind_SIGCrown_setFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGCrown_setFuelModelNumber_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1 = Module["_emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1"] = createExportWrapper("emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setElapsedTime_2 = Module["_emscripten_bind_SIGCrown_setElapsedTime_2"] = createExportWrapper("emscripten_bind_SIGCrown_setElapsedTime_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setFuelModels_1 = Module["_emscripten_bind_SIGCrown_setFuelModels_1"] = createExportWrapper("emscripten_bind_SIGCrown_setFuelModels_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2 = Module["_emscripten_bind_SIGCrown_setMoistureDeadAggregate_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureDeadAggregate_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureFoliar_2 = Module["_emscripten_bind_SIGCrown_setMoistureFoliar_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureFoliar_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureHundredHour_2 = Module["_emscripten_bind_SIGCrown_setMoistureHundredHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureHundredHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureInputMode_1 = Module["_emscripten_bind_SIGCrown_setMoistureInputMode_1"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureInputMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2 = Module["_emscripten_bind_SIGCrown_setMoistureLiveAggregate_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureLiveAggregate_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2 = Module["_emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureLiveWoody_2 = Module["_emscripten_bind_SIGCrown_setMoistureLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureLiveWoody_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureOneHour_2 = Module["_emscripten_bind_SIGCrown_setMoistureOneHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureOneHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureScenarios_1 = Module["_emscripten_bind_SIGCrown_setMoistureScenarios_1"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureScenarios_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setMoistureTenHour_2 = Module["_emscripten_bind_SIGCrown_setMoistureTenHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureTenHour_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setSlope_2 = Module["_emscripten_bind_SIGCrown_setSlope_2"] = createExportWrapper("emscripten_bind_SIGCrown_setSlope_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1 = Module["_emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1"] = createExportWrapper("emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1 = Module["_emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1"] = createExportWrapper("emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1 = Module["_emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1"] = createExportWrapper("emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setWindDirection_1 = Module["_emscripten_bind_SIGCrown_setWindDirection_1"] = createExportWrapper("emscripten_bind_SIGCrown_setWindDirection_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setWindHeightInputMode_1 = Module["_emscripten_bind_SIGCrown_setWindHeightInputMode_1"] = createExportWrapper("emscripten_bind_SIGCrown_setWindHeightInputMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_setWindSpeed_2 = Module["_emscripten_bind_SIGCrown_setWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGCrown_setWindSpeed_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_updateCrownInputs_25 = Module["_emscripten_bind_SIGCrown_updateCrownInputs_25"] = createExportWrapper("emscripten_bind_SIGCrown_updateCrownInputs_25"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21 = Module["_emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21"] = createExportWrapper("emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown_getFinalFlameLength_1 = Module["_emscripten_bind_SIGCrown_getFinalFlameLength_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalFlameLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGCrown___destroy___0 = Module["_emscripten_bind_SIGCrown___destroy___0"] = createExportWrapper("emscripten_bind_SIGCrown___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0 = Module["_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1 = Module["_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTableRecord___destroy___0 = Module["_emscripten_bind_SpeciesMasterTableRecord___destroy___0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecord___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0 = Module["_emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0 = Module["_emscripten_bind_SpeciesMasterTable_initializeMasterTable_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_initializeMasterTable_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1 = Module["_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = Module["_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTable_insertRecord_17 = Module["_emscripten_bind_SpeciesMasterTable_insertRecord_17"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_insertRecord_17"); -/** @type {function(...*):?} */ -var _emscripten_bind_SpeciesMasterTable___destroy___0 = Module["_emscripten_bind_SpeciesMasterTable___destroy___0"] = createExportWrapper("emscripten_bind_SpeciesMasterTable___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_SIGMortality_1 = Module["_emscripten_bind_SIGMortality_SIGMortality_1"] = createExportWrapper("emscripten_bind_SIGMortality_SIGMortality_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_initializeMembers_0 = Module["_emscripten_bind_SIGMortality_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGMortality_initializeMembers_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2 = Module["_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2"] = createExportWrapper("emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2 = Module["_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2"] = createExportWrapper("emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2 = Module["_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2"] = createExportWrapper("emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_calculateMortality_1 = Module["_emscripten_bind_SIGMortality_calculateMortality_1"] = createExportWrapper("emscripten_bind_SIGMortality_calculateMortality_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_calculateScorchHeight_7 = Module["_emscripten_bind_SIGMortality_calculateScorchHeight_7"] = createExportWrapper("emscripten_bind_SIGMortality_calculateScorchHeight_7"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1 = Module["_emscripten_bind_SIGMortality_calculateMortalityAllDirections_1"] = createExportWrapper("emscripten_bind_SIGMortality_calculateMortalityAllDirections_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getRequiredFieldVector_0 = Module["_emscripten_bind_SIGMortality_getRequiredFieldVector_0"] = createExportWrapper("emscripten_bind_SIGMortality_getRequiredFieldVector_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBeetleDamage_0 = Module["_emscripten_bind_SIGMortality_getBeetleDamage_0"] = createExportWrapper("emscripten_bind_SIGMortality_getBeetleDamage_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0 = Module["_emscripten_bind_SIGMortality_getCrownDamageEquationCode_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamageEquationCode_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownDamageType_0 = Module["_emscripten_bind_SIGMortality_getCrownDamageType_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamageType_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getSpeciesCode_0 = Module["_emscripten_bind_SIGMortality_getSpeciesCode_0"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesCode_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getEquationType_0 = Module["_emscripten_bind_SIGMortality_getEquationType_0"] = createExportWrapper("emscripten_bind_SIGMortality_getEquationType_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getFireSeverity_0 = Module["_emscripten_bind_SIGMortality_getFireSeverity_0"] = createExportWrapper("emscripten_bind_SIGMortality_getFireSeverity_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0 = Module["_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0"] = createExportWrapper("emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getGACCRegion_0 = Module["_emscripten_bind_SIGMortality_getGACCRegion_0"] = createExportWrapper("emscripten_bind_SIGMortality_getGACCRegion_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1 = Module["_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2 = Module["_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBarkThickness_1 = Module["_emscripten_bind_SIGMortality_getBarkThickness_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBarkThickness_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBasalAreaKillled_0 = Module["_emscripten_bind_SIGMortality_getBasalAreaKillled_0"] = createExportWrapper("emscripten_bind_SIGMortality_getBasalAreaKillled_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBasalAreaPostfire_0 = Module["_emscripten_bind_SIGMortality_getBasalAreaPostfire_0"] = createExportWrapper("emscripten_bind_SIGMortality_getBasalAreaPostfire_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBasalAreaPrefire_0 = Module["_emscripten_bind_SIGMortality_getBasalAreaPrefire_0"] = createExportWrapper("emscripten_bind_SIGMortality_getBasalAreaPrefire_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBoleCharHeight_1 = Module["_emscripten_bind_SIGMortality_getBoleCharHeight_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBoleCharHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1 = Module["_emscripten_bind_SIGMortality_getBoleCharHeightBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBoleCharHeightBacking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1 = Module["_emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCambiumKillRating_0 = Module["_emscripten_bind_SIGMortality_getCambiumKillRating_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCambiumKillRating_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownDamage_0 = Module["_emscripten_bind_SIGMortality_getCrownDamage_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamage_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownRatio_1 = Module["_emscripten_bind_SIGMortality_getCrownRatio_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownRatio_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCVSorCLS_0 = Module["_emscripten_bind_SIGMortality_getCVSorCLS_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCVSorCLS_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getDBH_1 = Module["_emscripten_bind_SIGMortality_getDBH_1"] = createExportWrapper("emscripten_bind_SIGMortality_getDBH_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getFlameLength_1 = Module["_emscripten_bind_SIGMortality_getFlameLength_1"] = createExportWrapper("emscripten_bind_SIGMortality_getFlameLength_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1 = Module["_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1"] = createExportWrapper("emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getKilledTrees_0 = Module["_emscripten_bind_SIGMortality_getKilledTrees_0"] = createExportWrapper("emscripten_bind_SIGMortality_getKilledTrees_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getProbabilityOfMortality_1 = Module["_emscripten_bind_SIGMortality_getProbabilityOfMortality_1"] = createExportWrapper("emscripten_bind_SIGMortality_getProbabilityOfMortality_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1 = Module["_emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1 = Module["_emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getScorchHeight_1 = Module["_emscripten_bind_SIGMortality_getScorchHeight_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScorchHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getScorchHeightBacking_1 = Module["_emscripten_bind_SIGMortality_getScorchHeightBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScorchHeightBacking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getScorchHeightFlanking_1 = Module["_emscripten_bind_SIGMortality_getScorchHeightFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScorchHeightFlanking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTotalPrefireTrees_0 = Module["_emscripten_bind_SIGMortality_getTotalPrefireTrees_0"] = createExportWrapper("emscripten_bind_SIGMortality_getTotalPrefireTrees_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1 = Module["_emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getTreeHeight_1 = Module["_emscripten_bind_SIGMortality_getTreeHeight_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeHeight_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_postfireCanopyCover_0 = Module["_emscripten_bind_SIGMortality_postfireCanopyCover_0"] = createExportWrapper("emscripten_bind_SIGMortality_postfireCanopyCover_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_prefireCanopyCover_0 = Module["_emscripten_bind_SIGMortality_prefireCanopyCover_0"] = createExportWrapper("emscripten_bind_SIGMortality_prefireCanopyCover_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0 = Module["_emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0 = Module["_emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0"] = createExportWrapper("emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = Module["_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setAirTemperature_2 = Module["_emscripten_bind_SIGMortality_setAirTemperature_2"] = createExportWrapper("emscripten_bind_SIGMortality_setAirTemperature_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setBeetleDamage_1 = Module["_emscripten_bind_SIGMortality_setBeetleDamage_1"] = createExportWrapper("emscripten_bind_SIGMortality_setBeetleDamage_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setBoleCharHeight_2 = Module["_emscripten_bind_SIGMortality_setBoleCharHeight_2"] = createExportWrapper("emscripten_bind_SIGMortality_setBoleCharHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setCambiumKillRating_1 = Module["_emscripten_bind_SIGMortality_setCambiumKillRating_1"] = createExportWrapper("emscripten_bind_SIGMortality_setCambiumKillRating_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setCrownDamage_1 = Module["_emscripten_bind_SIGMortality_setCrownDamage_1"] = createExportWrapper("emscripten_bind_SIGMortality_setCrownDamage_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setCrownRatio_2 = Module["_emscripten_bind_SIGMortality_setCrownRatio_2"] = createExportWrapper("emscripten_bind_SIGMortality_setCrownRatio_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setDBH_2 = Module["_emscripten_bind_SIGMortality_setDBH_2"] = createExportWrapper("emscripten_bind_SIGMortality_setDBH_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setEquationType_1 = Module["_emscripten_bind_SIGMortality_setEquationType_1"] = createExportWrapper("emscripten_bind_SIGMortality_setEquationType_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setFireSeverity_1 = Module["_emscripten_bind_SIGMortality_setFireSeverity_1"] = createExportWrapper("emscripten_bind_SIGMortality_setFireSeverity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setFirelineIntensity_2 = Module["_emscripten_bind_SIGMortality_setFirelineIntensity_2"] = createExportWrapper("emscripten_bind_SIGMortality_setFirelineIntensity_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setFlameLength_2 = Module["_emscripten_bind_SIGMortality_setFlameLength_2"] = createExportWrapper("emscripten_bind_SIGMortality_setFlameLength_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1 = Module["_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1"] = createExportWrapper("emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2 = Module["_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2"] = createExportWrapper("emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2 = Module["_emscripten_bind_SIGMortality_setMidFlameWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGMortality_setMidFlameWindSpeed_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setGACCRegion_1 = Module["_emscripten_bind_SIGMortality_setGACCRegion_1"] = createExportWrapper("emscripten_bind_SIGMortality_setGACCRegion_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setScorchHeight_2 = Module["_emscripten_bind_SIGMortality_setScorchHeight_2"] = createExportWrapper("emscripten_bind_SIGMortality_setScorchHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_setSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_setSpeciesCode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2 = Module["_emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2"] = createExportWrapper("emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setTreeHeight_2 = Module["_emscripten_bind_SIGMortality_setTreeHeight_2"] = createExportWrapper("emscripten_bind_SIGMortality_setTreeHeight_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1 = Module["_emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1"] = createExportWrapper("emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setWindHeightInputMode_1 = Module["_emscripten_bind_SIGMortality_setWindHeightInputMode_1"] = createExportWrapper("emscripten_bind_SIGMortality_setWindHeightInputMode_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setWindSpeed_2 = Module["_emscripten_bind_SIGMortality_setWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGMortality_setWindSpeed_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4 = Module["_emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4"] = createExportWrapper("emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGMortality___destroy___0 = Module["_emscripten_bind_SIGMortality___destroy___0"] = createExportWrapper("emscripten_bind_SIGMortality___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0 = Module["_emscripten_bind_WindSpeedUtility_WindSpeedUtility_0"] = createExportWrapper("emscripten_bind_WindSpeedUtility_WindSpeedUtility_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2 = Module["_emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2"] = createExportWrapper("emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1 = Module["_emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1"] = createExportWrapper("emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_WindSpeedUtility___destroy___0 = Module["_emscripten_bind_WindSpeedUtility___destroy___0"] = createExportWrapper("emscripten_bind_WindSpeedUtility___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0 = Module["_emscripten_bind_SIGSlopeTool_SIGSlopeTool_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_SIGSlopeTool_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistance_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistance_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1 = Module["_emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1 = Module["_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1 = Module["_emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0 = Module["_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0 = Module["_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0 = Module["_emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0 = Module["_emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0 = Module["_emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0 = Module["_emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2 = Module["_emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_setContourInterval_2 = Module["_emscripten_bind_SIGSlopeTool_setContourInterval_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setContourInterval_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_setMapDistance_2 = Module["_emscripten_bind_SIGSlopeTool_setMapDistance_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setMapDistance_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1 = Module["_emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool_setNumberOfContours_1 = Module["_emscripten_bind_SIGSlopeTool_setNumberOfContours_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setNumberOfContours_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_SIGSlopeTool___destroy___0 = Module["_emscripten_bind_SIGSlopeTool___destroy___0"] = createExportWrapper("emscripten_bind_SIGSlopeTool___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0 = Module["_emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0 = Module["_emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2 = Module["_emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2 = Module["_emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1 = Module["_emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_VaporPressureDeficitCalculator___destroy___0 = Module["_emscripten_bind_VaporPressureDeficitCalculator___destroy___0"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0 = Module["_emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_calculate_0 = Module["_emscripten_bind_RelativeHumidityTool_calculate_0"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_calculate_0"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1 = Module["_emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_getSiteElevation_1 = Module["_emscripten_bind_RelativeHumidityTool_getSiteElevation_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getSiteElevation_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1 = Module["_emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1 = Module["_emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1 = Module["_emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1 = Module["_emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2 = Module["_emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_setSiteElevation_2 = Module["_emscripten_bind_RelativeHumidityTool_setSiteElevation_2"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_setSiteElevation_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2 = Module["_emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2"); -/** @type {function(...*):?} */ -var _emscripten_bind_RelativeHumidityTool___destroy___0 = Module["_emscripten_bind_RelativeHumidityTool___destroy___0"] = createExportWrapper("emscripten_bind_RelativeHumidityTool___destroy___0"); -/** @type {function(...*):?} */ -var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet"); -/** @type {function(...*):?} */ -var _emscripten_enum_AreaUnits_AreaUnitsEnum_Acres = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_Acres"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_Acres"); -/** @type {function(...*):?} */ -var _emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares"); -/** @type {function(...*):?} */ -var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters"); -/** @type {function(...*):?} */ -var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles"); -/** @type {function(...*):?} */ -var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers"); -/** @type {function(...*):?} */ -var _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre = Module["_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre"] = createExportWrapper("emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre"); -/** @type {function(...*):?} */ -var _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare = Module["_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare"] = createExportWrapper("emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare"); -/** @type {function(...*):?} */ -var _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction = Module["_emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction"] = createExportWrapper("emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction"); -/** @type {function(...*):?} */ -var _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent = Module["_emscripten_enum_FractionUnits_FractionUnitsEnum_Percent"] = createExportWrapper("emscripten_enum_FractionUnits_FractionUnitsEnum_Percent"); -/** @type {function(...*):?} */ -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Feet"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Feet"); -/** @type {function(...*):?} */ -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Inches = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Inches"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Inches"); -/** @type {function(...*):?} */ -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters"); -/** @type {function(...*):?} */ -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters"); -/** @type {function(...*):?} */ -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Meters = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Meters"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Meters"); -/** @type {function(...*):?} */ -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Chains = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Chains"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Chains"); -/** @type {function(...*):?} */ -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Miles = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Miles"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Miles"); -/** @type {function(...*):?} */ -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers"); -/** @type {function(...*):?} */ -var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot = Module["_emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot"] = createExportWrapper("emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot"); -/** @type {function(...*):?} */ -var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre = Module["_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre"] = createExportWrapper("emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre"); -/** @type {function(...*):?} */ -var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare = Module["_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare"] = createExportWrapper("emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare"); -/** @type {function(...*):?} */ -var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter = Module["_emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter"] = createExportWrapper("emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet = Module["_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet"] = createExportWrapper("emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters = Module["_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters"] = createExportWrapper("emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches = Module["_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches"] = createExportWrapper("emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters = Module["_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters"] = createExportWrapper("emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_Bar = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_Bar"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_Bar"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere"); -/** @type {function(...*):?} */ -var _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch"); -/** @type {function(...*):?} */ -var _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees = Module["_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees"] = createExportWrapper("emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees"); -/** @type {function(...*):?} */ -var _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent = Module["_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent"] = createExportWrapper("emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent"); -/** @type {function(...*):?} */ -var _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot = Module["_emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot"] = createExportWrapper("emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot"); -/** @type {function(...*):?} */ -var _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter = Module["_emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter"] = createExportWrapper("emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound = Module["_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound"] = createExportWrapper("emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram = Module["_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram"] = createExportWrapper("emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot = Module["_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot"] = createExportWrapper("emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter = Module["_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter"] = createExportWrapper("emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot = Module["_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot"] = createExportWrapper("emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter = Module["_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter"] = createExportWrapper("emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter = Module["_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter"] = createExportWrapper("emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute"); -/** @type {function(...*):?} */ -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond"); -/** @type {function(...*):?} */ -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute"); -/** @type {function(...*):?} */ -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond"); -/** @type {function(...*):?} */ -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute"); -/** @type {function(...*):?} */ -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit = Module["_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit"] = createExportWrapper("emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit"); -/** @type {function(...*):?} */ -var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius = Module["_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius"] = createExportWrapper("emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius"); -/** @type {function(...*):?} */ -var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin = Module["_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin"] = createExportWrapper("emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin"); -/** @type {function(...*):?} */ -var _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes = Module["_emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes"] = createExportWrapper("emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes"); -/** @type {function(...*):?} */ -var _emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds = Module["_emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds"] = createExportWrapper("emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds"); -/** @type {function(...*):?} */ -var _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours = Module["_emscripten_enum_TimeUnits_TimeUnitsEnum_Hours"] = createExportWrapper("emscripten_enum_TimeUnits_TimeUnitsEnum_Hours"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack = Module["_emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack"] = createExportWrapper("emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack = Module["_emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack"] = createExportWrapper("emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Unreported"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Unreported"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_Reported = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Reported"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Reported"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_Attacked = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Attacked"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Attacked"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_Contained = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Contained"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Contained"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_Overrun = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Overrun"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Overrun"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_Overflow = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Overflow"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Overflow"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank = Module["_emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank"] = createExportWrapper("emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank = Module["_emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank"] = createExportWrapper("emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks = Module["_emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks"] = createExportWrapper("emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank = Module["_emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank"] = createExportWrapper("emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainMode_Default = Module["_emscripten_enum_ContainMode_Default"] = createExportWrapper("emscripten_enum_ContainMode_Default"); -/** @type {function(...*):?} */ -var _emscripten_enum_ContainMode_ComputeWithOptimalResource = Module["_emscripten_enum_ContainMode_ComputeWithOptimalResource"] = createExportWrapper("emscripten_enum_ContainMode_ComputeWithOptimalResource"); -/** @type {function(...*):?} */ -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter"); -/** @type {function(...*):?} */ -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky"); -/** @type {function(...*):?} */ -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep"); -/** @type {function(...*):?} */ -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow"); -/** @type {function(...*):?} */ -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff"); -/** @type {function(...*):?} */ -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff"); -/** @type {function(...*):?} */ -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed"); -/** @type {function(...*):?} */ -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss"); -/** @type {function(...*):?} */ -var _emscripten_enum_LightningCharge_LightningChargeEnum_Negative = Module["_emscripten_enum_LightningCharge_LightningChargeEnum_Negative"] = createExportWrapper("emscripten_enum_LightningCharge_LightningChargeEnum_Negative"); -/** @type {function(...*):?} */ -var _emscripten_enum_LightningCharge_LightningChargeEnum_Positive = Module["_emscripten_enum_LightningCharge_LightningChargeEnum_Positive"] = createExportWrapper("emscripten_enum_LightningCharge_LightningChargeEnum_Positive"); -/** @type {function(...*):?} */ -var _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown = Module["_emscripten_enum_LightningCharge_LightningChargeEnum_Unknown"] = createExportWrapper("emscripten_enum_LightningCharge_LightningChargeEnum_Unknown"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED = Module["_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED"] = createExportWrapper("emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN = Module["_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN"] = createExportWrapper("emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD = Module["_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD"] = createExportWrapper("emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM = Module["_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM"] = createExportWrapper("emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD = Module["_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD"] = createExportWrapper("emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD"); -/** @type {function(...*):?} */ -var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP = Module["_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP"] = createExportWrapper("emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP"); -/** @type {function(...*):?} */ -var _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead = Module["_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead"] = createExportWrapper("emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead"); -/** @type {function(...*):?} */ -var _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live = Module["_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live"] = createExportWrapper("emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live"); -/** @type {function(...*):?} */ -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates"); -/** @type {function(...*):?} */ -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses"); -/** @type {function(...*):?} */ -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses"); -/** @type {function(...*):?} */ -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles"); -/** @type {function(...*):?} */ -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses"); -/** @type {function(...*):?} */ -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels"); -/** @type {function(...*):?} */ -var _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low = Module["_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low"] = createExportWrapper("emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low"); -/** @type {function(...*):?} */ -var _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate = Module["_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate"] = createExportWrapper("emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate"); -/** @type {function(...*):?} */ -var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet = Module["_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet"] = createExportWrapper("emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet"); -/** @type {function(...*):?} */ -var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise = Module["_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise"] = createExportWrapper("emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise"); -/** @type {function(...*):?} */ -var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush = Module["_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush"] = createExportWrapper("emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush"); -/** @type {function(...*):?} */ -var _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad = Module["_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad"] = createExportWrapper("emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad"); -/** @type {function(...*):?} */ -var _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType = Module["_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType"] = createExportWrapper("emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate"); -/** @type {function(...*):?} */ -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint = Module["_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint"] = createExportWrapper("emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter = Module["_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter"] = createExportWrapper("emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod = Module["_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod"] = createExportWrapper("emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod"); -/** @type {function(...*):?} */ -var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic = Module["_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic"] = createExportWrapper("emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic"); -/** @type {function(...*):?} */ -var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic = Module["_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic"] = createExportWrapper("emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic"); -/** @type {function(...*):?} */ -var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional = Module["_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional"] = createExportWrapper("emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered = Module["_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered = Module["_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput = Module["_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio = Module["_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio = Module["_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope = Module["_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope"] = createExportWrapper("emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth = Module["_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth"] = createExportWrapper("emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame = Module["_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame"] = createExportWrapper("emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot = Module["_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot"] = createExportWrapper("emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter = Module["_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter"] = createExportWrapper("emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindUpslopeAlignmentMode_NotAligned = Module["_emscripten_enum_WindUpslopeAlignmentMode_NotAligned"] = createExportWrapper("emscripten_enum_WindUpslopeAlignmentMode_NotAligned"); -/** @type {function(...*):?} */ -var _emscripten_enum_WindUpslopeAlignmentMode_Aligned = Module["_emscripten_enum_WindUpslopeAlignmentMode_Aligned"] = createExportWrapper("emscripten_enum_WindUpslopeAlignmentMode_Aligned"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread = Module["_emscripten_enum_SurfaceRunInDirectionOf_MaxSpread"] = createExportWrapper("emscripten_enum_SurfaceRunInDirectionOf_MaxSpread"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest = Module["_emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest"] = createExportWrapper("emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest"); -/** @type {function(...*):?} */ -var _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking = Module["_emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking"] = createExportWrapper("emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking"); -/** @type {function(...*):?} */ -var _emscripten_enum_FireType_FireTypeEnum_Surface = Module["_emscripten_enum_FireType_FireTypeEnum_Surface"] = createExportWrapper("emscripten_enum_FireType_FireTypeEnum_Surface"); -/** @type {function(...*):?} */ -var _emscripten_enum_FireType_FireTypeEnum_Torching = Module["_emscripten_enum_FireType_FireTypeEnum_Torching"] = createExportWrapper("emscripten_enum_FireType_FireTypeEnum_Torching"); -/** @type {function(...*):?} */ -var _emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire = Module["_emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire"] = createExportWrapper("emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire"); -/** @type {function(...*):?} */ -var _emscripten_enum_FireType_FireTypeEnum_Crowning = Module["_emscripten_enum_FireType_FireTypeEnum_Crowning"] = createExportWrapper("emscripten_enum_FireType_FireTypeEnum_Crowning"); -/** @type {function(...*):?} */ -var _emscripten_enum_BeetleDamage_not_set = Module["_emscripten_enum_BeetleDamage_not_set"] = createExportWrapper("emscripten_enum_BeetleDamage_not_set"); -/** @type {function(...*):?} */ -var _emscripten_enum_BeetleDamage_no = Module["_emscripten_enum_BeetleDamage_no"] = createExportWrapper("emscripten_enum_BeetleDamage_no"); -/** @type {function(...*):?} */ -var _emscripten_enum_BeetleDamage_yes = Module["_emscripten_enum_BeetleDamage_yes"] = createExportWrapper("emscripten_enum_BeetleDamage_yes"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownFireCalculationMethod_rothermel = Module["_emscripten_enum_CrownFireCalculationMethod_rothermel"] = createExportWrapper("emscripten_enum_CrownFireCalculationMethod_rothermel"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt = Module["_emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt"] = createExportWrapper("emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_not_set = Module["_emscripten_enum_CrownDamageEquationCode_not_set"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_not_set"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_white_fir = Module["_emscripten_enum_CrownDamageEquationCode_white_fir"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_white_fir"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_subalpine_fir = Module["_emscripten_enum_CrownDamageEquationCode_subalpine_fir"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_subalpine_fir"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_incense_cedar = Module["_emscripten_enum_CrownDamageEquationCode_incense_cedar"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_incense_cedar"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_western_larch = Module["_emscripten_enum_CrownDamageEquationCode_western_larch"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_western_larch"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_whitebark_pine = Module["_emscripten_enum_CrownDamageEquationCode_whitebark_pine"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_whitebark_pine"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_engelmann_spruce = Module["_emscripten_enum_CrownDamageEquationCode_engelmann_spruce"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_engelmann_spruce"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_sugar_pine = Module["_emscripten_enum_CrownDamageEquationCode_sugar_pine"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_sugar_pine"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_red_fir = Module["_emscripten_enum_CrownDamageEquationCode_red_fir"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_red_fir"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_ponderosa_pine = Module["_emscripten_enum_CrownDamageEquationCode_ponderosa_pine"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_ponderosa_pine"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_ponderosa_kill = Module["_emscripten_enum_CrownDamageEquationCode_ponderosa_kill"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_ponderosa_kill"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageEquationCode_douglas_fir = Module["_emscripten_enum_CrownDamageEquationCode_douglas_fir"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_douglas_fir"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageType_not_set = Module["_emscripten_enum_CrownDamageType_not_set"] = createExportWrapper("emscripten_enum_CrownDamageType_not_set"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageType_crown_length = Module["_emscripten_enum_CrownDamageType_crown_length"] = createExportWrapper("emscripten_enum_CrownDamageType_crown_length"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageType_crown_volume = Module["_emscripten_enum_CrownDamageType_crown_volume"] = createExportWrapper("emscripten_enum_CrownDamageType_crown_volume"); -/** @type {function(...*):?} */ -var _emscripten_enum_CrownDamageType_crown_kill = Module["_emscripten_enum_CrownDamageType_crown_kill"] = createExportWrapper("emscripten_enum_CrownDamageType_crown_kill"); -/** @type {function(...*):?} */ -var _emscripten_enum_EquationType_not_set = Module["_emscripten_enum_EquationType_not_set"] = createExportWrapper("emscripten_enum_EquationType_not_set"); -/** @type {function(...*):?} */ -var _emscripten_enum_EquationType_crown_scorch = Module["_emscripten_enum_EquationType_crown_scorch"] = createExportWrapper("emscripten_enum_EquationType_crown_scorch"); -/** @type {function(...*):?} */ -var _emscripten_enum_EquationType_bole_char = Module["_emscripten_enum_EquationType_bole_char"] = createExportWrapper("emscripten_enum_EquationType_bole_char"); -/** @type {function(...*):?} */ -var _emscripten_enum_EquationType_crown_damage = Module["_emscripten_enum_EquationType_crown_damage"] = createExportWrapper("emscripten_enum_EquationType_crown_damage"); -/** @type {function(...*):?} */ -var _emscripten_enum_FireSeverity_not_set = Module["_emscripten_enum_FireSeverity_not_set"] = createExportWrapper("emscripten_enum_FireSeverity_not_set"); -/** @type {function(...*):?} */ -var _emscripten_enum_FireSeverity_empty = Module["_emscripten_enum_FireSeverity_empty"] = createExportWrapper("emscripten_enum_FireSeverity_empty"); -/** @type {function(...*):?} */ -var _emscripten_enum_FireSeverity_low = Module["_emscripten_enum_FireSeverity_low"] = createExportWrapper("emscripten_enum_FireSeverity_low"); -/** @type {function(...*):?} */ -var _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length = Module["_emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length"] = createExportWrapper("emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length"); -/** @type {function(...*):?} */ -var _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height = Module["_emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height"] = createExportWrapper("emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_NotSet = Module["_emscripten_enum_GACC_NotSet"] = createExportWrapper("emscripten_enum_GACC_NotSet"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_Alaska = Module["_emscripten_enum_GACC_Alaska"] = createExportWrapper("emscripten_enum_GACC_Alaska"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_California = Module["_emscripten_enum_GACC_California"] = createExportWrapper("emscripten_enum_GACC_California"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_EasternArea = Module["_emscripten_enum_GACC_EasternArea"] = createExportWrapper("emscripten_enum_GACC_EasternArea"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_GreatBasin = Module["_emscripten_enum_GACC_GreatBasin"] = createExportWrapper("emscripten_enum_GACC_GreatBasin"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_NorthernRockies = Module["_emscripten_enum_GACC_NorthernRockies"] = createExportWrapper("emscripten_enum_GACC_NorthernRockies"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_Northwest = Module["_emscripten_enum_GACC_Northwest"] = createExportWrapper("emscripten_enum_GACC_Northwest"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_RockeyMountain = Module["_emscripten_enum_GACC_RockeyMountain"] = createExportWrapper("emscripten_enum_GACC_RockeyMountain"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_SouthernArea = Module["_emscripten_enum_GACC_SouthernArea"] = createExportWrapper("emscripten_enum_GACC_SouthernArea"); -/** @type {function(...*):?} */ -var _emscripten_enum_GACC_Southwest = Module["_emscripten_enum_GACC_Southwest"] = createExportWrapper("emscripten_enum_GACC_Southwest"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_region = Module["_emscripten_enum_RequiredFieldNames_region"] = createExportWrapper("emscripten_enum_RequiredFieldNames_region"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch = Module["_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch"] = createExportWrapper("emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value = Module["_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value"] = createExportWrapper("emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_equation_type = Module["_emscripten_enum_RequiredFieldNames_equation_type"] = createExportWrapper("emscripten_enum_RequiredFieldNames_equation_type"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_dbh = Module["_emscripten_enum_RequiredFieldNames_dbh"] = createExportWrapper("emscripten_enum_RequiredFieldNames_dbh"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_tree_height = Module["_emscripten_enum_RequiredFieldNames_tree_height"] = createExportWrapper("emscripten_enum_RequiredFieldNames_tree_height"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_crown_ratio = Module["_emscripten_enum_RequiredFieldNames_crown_ratio"] = createExportWrapper("emscripten_enum_RequiredFieldNames_crown_ratio"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_crown_damage = Module["_emscripten_enum_RequiredFieldNames_crown_damage"] = createExportWrapper("emscripten_enum_RequiredFieldNames_crown_damage"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_cambium_kill_rating = Module["_emscripten_enum_RequiredFieldNames_cambium_kill_rating"] = createExportWrapper("emscripten_enum_RequiredFieldNames_cambium_kill_rating"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_beetle_damage = Module["_emscripten_enum_RequiredFieldNames_beetle_damage"] = createExportWrapper("emscripten_enum_RequiredFieldNames_beetle_damage"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_bole_char_height = Module["_emscripten_enum_RequiredFieldNames_bole_char_height"] = createExportWrapper("emscripten_enum_RequiredFieldNames_bole_char_height"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_bark_thickness = Module["_emscripten_enum_RequiredFieldNames_bark_thickness"] = createExportWrapper("emscripten_enum_RequiredFieldNames_bark_thickness"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_fire_severity = Module["_emscripten_enum_RequiredFieldNames_fire_severity"] = createExportWrapper("emscripten_enum_RequiredFieldNames_fire_severity"); -/** @type {function(...*):?} */ -var _emscripten_enum_RequiredFieldNames_num_inputs = Module["_emscripten_enum_RequiredFieldNames_num_inputs"] = createExportWrapper("emscripten_enum_RequiredFieldNames_num_inputs"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH = Module["_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH"] = createExportWrapper("emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST = Module["_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST"] = createExportWrapper("emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH = Module["_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH"] = createExportWrapper("emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST = Module["_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST"] = createExportWrapper("emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT = Module["_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT"] = createExportWrapper("emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT = Module["_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT"] = createExportWrapper("emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT = Module["_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT"] = createExportWrapper("emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY = Module["_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY"] = createExportWrapper("emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT = Module["_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT"] = createExportWrapper("emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN = Module["_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN"] = createExportWrapper("emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED = Module["_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED"] = createExportWrapper("emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED = Module["_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED"] = createExportWrapper("emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT = Module["_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT = Module["_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE"); -/** @type {function(...*):?} */ -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION"); -/** @type {function(...*):?} */ -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY"); -/** @type {function(...*):?} */ -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES"); -/** @type {function(...*):?} */ -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE"); -/** @type {function(...*):?} */ -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE"); -/** @type {function(...*):?} */ -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE"); -/** @type {function(...*):?} */ -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE"); -/** @type {function(...*):?} */ -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE"); -/** @type {function(...*):?} */ -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES"); -/** @type {function(...*):?} */ -var ___cxa_free_exception = createExportWrapper("__cxa_free_exception"); -/** @type {function(...*):?} */ -var ___errno_location = createExportWrapper("__errno_location"); -/** @type {function(...*):?} */ -var _malloc = Module["_malloc"] = createExportWrapper("malloc"); -/** @type {function(...*):?} */ -var _free = Module["_free"] = createExportWrapper("free"); -/** @type {function(...*):?} */ -var _setThrew = createExportWrapper("setThrew"); -/** @type {function(...*):?} */ -var setTempRet0 = createExportWrapper("setTempRet0"); -/** @type {function(...*):?} */ -var _emscripten_stack_init = function() { - return (_emscripten_stack_init = Module["asm"]["emscripten_stack_init"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _emscripten_stack_get_free = function() { - return (_emscripten_stack_get_free = Module["asm"]["emscripten_stack_get_free"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _emscripten_stack_get_base = function() { - return (_emscripten_stack_get_base = Module["asm"]["emscripten_stack_get_base"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _emscripten_stack_get_end = function() { - return (_emscripten_stack_get_end = Module["asm"]["emscripten_stack_get_end"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var stackSave = createExportWrapper("stackSave"); -/** @type {function(...*):?} */ -var stackRestore = createExportWrapper("stackRestore"); -/** @type {function(...*):?} */ -var stackAlloc = createExportWrapper("stackAlloc"); -/** @type {function(...*):?} */ -var _emscripten_stack_get_current = function() { - return (_emscripten_stack_get_current = Module["asm"]["emscripten_stack_get_current"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var ___get_exception_message = Module["___get_exception_message"] = createExportWrapper("__get_exception_message"); -/** @type {function(...*):?} */ -var ___cxa_can_catch = createExportWrapper("__cxa_can_catch"); -/** @type {function(...*):?} */ -var ___cxa_is_pointer_type = createExportWrapper("__cxa_is_pointer_type"); -/** @type {function(...*):?} */ -var dynCall_jiji = Module["dynCall_jiji"] = createExportWrapper("dynCall_jiji"); -var ___start_em_js = Module['___start_em_js'] = 119000; -var ___stop_em_js = Module['___stop_em_js'] = 119098; + /** @export */ + __assert_fail: ___assert_fail, + /** @export */ + __cxa_begin_catch: ___cxa_begin_catch, + /** @export */ + __cxa_find_matching_catch_2: ___cxa_find_matching_catch_2, + /** @export */ + __cxa_find_matching_catch_3: ___cxa_find_matching_catch_3, + /** @export */ + __cxa_throw: ___cxa_throw, + /** @export */ + __resumeException: ___resumeException, + /** @export */ + __syscall_fcntl64: ___syscall_fcntl64, + /** @export */ + __syscall_ioctl: ___syscall_ioctl, + /** @export */ + __syscall_openat: ___syscall_openat, + /** @export */ + _abort_js: __abort_js, + /** @export */ + emscripten_resize_heap: _emscripten_resize_heap, + /** @export */ + fd_close: _fd_close, + /** @export */ + fd_read: _fd_read, + /** @export */ + fd_seek: _fd_seek, + /** @export */ + fd_write: _fd_write, + /** @export */ + invoke_diii, + /** @export */ + invoke_diiidiiiii, + /** @export */ + invoke_ii, + /** @export */ + invoke_iidddddd, + /** @export */ + invoke_iidddiidd, + /** @export */ + invoke_iiddiiddiidid, + /** @export */ + invoke_iiddiidiidiiiii, + /** @export */ + invoke_iii, + /** @export */ + invoke_iiii, + /** @export */ + invoke_iiiii, + /** @export */ + invoke_iiiiidididdidddddidddii, + /** @export */ + invoke_iiiiii, + /** @export */ + invoke_v, + /** @export */ + invoke_vi, + /** @export */ + invoke_viddidiidd, + /** @export */ + invoke_vidii, + /** @export */ + invoke_vii, + /** @export */ + invoke_viididi, + /** @export */ + invoke_viii, + /** @export */ + invoke_viiiddddd, + /** @export */ + invoke_viiii, + /** @export */ + invoke_viiiiddddddddddddii, + /** @export */ + invoke_viiiii, + /** @export */ + invoke_viiiiiiiiiiiiiiiiii +}; +var wasmExports; +createWasm(); + function invoke_vii(index,a1,a2) { var sp = stackSave(); try { @@ -6972,17 +7391,6 @@ function invoke_vi(index,a1) { } } -function invoke_iiii(index,a1,a2,a3) { - var sp = stackSave(); - try { - return getWasmTableEntry(index)(a1,a2,a3); - } catch(e) { - stackRestore(sp); - if (!(e instanceof EmscriptenEH)) throw e; - _setThrew(1, 0); - } -} - function invoke_iii(index,a1,a2) { var sp = stackSave(); try { @@ -7049,10 +7457,10 @@ function invoke_diii(index,a1,a2,a3) { } } -function invoke_viiii(index,a1,a2,a3,a4) { +function invoke_iiiii(index,a1,a2,a3,a4) { var sp = stackSave(); try { - getWasmTableEntry(index)(a1,a2,a3,a4); + return getWasmTableEntry(index)(a1,a2,a3,a4); } catch(e) { stackRestore(sp); if (!(e instanceof EmscriptenEH)) throw e; @@ -7060,10 +7468,10 @@ function invoke_viiii(index,a1,a2,a3,a4) { } } -function invoke_iiiii(index,a1,a2,a3,a4) { +function invoke_iiiiii(index,a1,a2,a3,a4,a5) { var sp = stackSave(); try { - return getWasmTableEntry(index)(a1,a2,a3,a4); + return getWasmTableEntry(index)(a1,a2,a3,a4,a5); } catch(e) { stackRestore(sp); if (!(e instanceof EmscriptenEH)) throw e; @@ -7071,10 +7479,10 @@ function invoke_iiiii(index,a1,a2,a3,a4) { } } -function invoke_iiiiii(index,a1,a2,a3,a4,a5) { +function invoke_viiii(index,a1,a2,a3,a4) { var sp = stackSave(); try { - return getWasmTableEntry(index)(a1,a2,a3,a4,a5); + getWasmTableEntry(index)(a1,a2,a3,a4); } catch(e) { stackRestore(sp); if (!(e instanceof EmscriptenEH)) throw e; @@ -7093,6 +7501,17 @@ function invoke_viiiii(index,a1,a2,a3,a4,a5) { } } +function invoke_iiii(index,a1,a2,a3) { + var sp = stackSave(); + try { + return getWasmTableEntry(index)(a1,a2,a3); + } catch(e) { + stackRestore(sp); + if (!(e instanceof EmscriptenEH)) throw e; + _setThrew(1, 0); + } +} + function invoke_viiiddddd(index,a1,a2,a3,a4,a5,a6,a7,a8) { var sp = stackSave(); try { @@ -7175,318 +7594,51 @@ function invoke_viddidiidd(index,a1,a2,a3,a4,a5,a6,a7,a8,a9) { try { getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9); } catch(e) { - stackRestore(sp); - if (!(e instanceof EmscriptenEH)) throw e; - _setThrew(1, 0); - } -} - -function invoke_iidddddd(index,a1,a2,a3,a4,a5,a6,a7) { - var sp = stackSave(); - try { - return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7); - } catch(e) { - stackRestore(sp); - if (!(e instanceof EmscriptenEH)) throw e; - _setThrew(1, 0); - } -} - -function invoke_viiiiiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18) { - var sp = stackSave(); - try { - getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18); - } catch(e) { - stackRestore(sp); - if (!(e instanceof EmscriptenEH)) throw e; - _setThrew(1, 0); - } -} - -function invoke_v(index) { - var sp = stackSave(); - try { - getWasmTableEntry(index)(); - } catch(e) { - stackRestore(sp); - if (!(e instanceof EmscriptenEH)) throw e; - _setThrew(1, 0); - } -} - - -// include: postamble.js -// === Auto-generated postamble setup entry stuff === - -Module["UTF8ToString"] = UTF8ToString; -Module["ccall"] = ccall; -Module["cwrap"] = cwrap; -Module["addFunction"] = addFunction; -Module["allocateUTF8"] = allocateUTF8; -var missingLibrarySymbols = [ - 'stringToNewUTF8', - 'exitJS', - 'inetPton4', - 'inetNtop4', - 'inetPton6', - 'inetNtop6', - 'readSockaddr', - 'writeSockaddr', - 'getHostByName', - 'traverseStack', - 'convertPCtoSourceLocation', - 'readEmAsmArgs', - 'jstoi_q', - 'jstoi_s', - 'getExecutableName', - 'listenOnce', - 'autoResumeAudioContext', - 'dynCallLegacy', - 'getDynCaller', - 'dynCall', - 'handleException', - 'runtimeKeepalivePush', - 'runtimeKeepalivePop', - 'callUserCallback', - 'maybeExit', - 'safeSetTimeout', - 'asmjsMangle', - 'HandleAllocator', - 'getNativeTypeSize', - 'STACK_SIZE', - 'STACK_ALIGN', - 'POINTER_SIZE', - 'ASSERTIONS', - 'writeI53ToI64', - 'writeI53ToI64Clamped', - 'writeI53ToI64Signaling', - 'writeI53ToU64Clamped', - 'writeI53ToU64Signaling', - 'readI53FromI64', - 'readI53FromU64', - 'convertI32PairToI53', - 'convertU32PairToI53', - 'removeFunction', - 'reallyNegative', - 'unSign', - 'strLen', - 'reSign', - 'formatString', - 'intArrayToString', - 'AsciiToString', - 'stringToAscii', - 'UTF16ToString', - 'stringToUTF16', - 'lengthBytesUTF16', - 'UTF32ToString', - 'stringToUTF32', - 'lengthBytesUTF32', - 'allocateUTF8OnStack', - 'writeStringToMemory', - 'writeAsciiToMemory', - 'getSocketFromFD', - 'getSocketAddress', - 'registerKeyEventCallback', - 'maybeCStringToJsString', - 'findEventTarget', - 'findCanvasEventTarget', - 'getBoundingClientRect', - 'fillMouseEventData', - 'registerMouseEventCallback', - 'registerWheelEventCallback', - 'registerUiEventCallback', - 'registerFocusEventCallback', - 'fillDeviceOrientationEventData', - 'registerDeviceOrientationEventCallback', - 'fillDeviceMotionEventData', - 'registerDeviceMotionEventCallback', - 'screenOrientation', - 'fillOrientationChangeEventData', - 'registerOrientationChangeEventCallback', - 'fillFullscreenChangeEventData', - 'registerFullscreenChangeEventCallback', - 'JSEvents_requestFullscreen', - 'JSEvents_resizeCanvasForFullscreen', - 'registerRestoreOldStyle', - 'hideEverythingExceptGivenElement', - 'restoreHiddenElements', - 'setLetterbox', - 'softFullscreenResizeWebGLRenderTarget', - 'doRequestFullscreen', - 'fillPointerlockChangeEventData', - 'registerPointerlockChangeEventCallback', - 'registerPointerlockErrorEventCallback', - 'requestPointerLock', - 'fillVisibilityChangeEventData', - 'registerVisibilityChangeEventCallback', - 'registerTouchEventCallback', - 'fillGamepadEventData', - 'registerGamepadEventCallback', - 'registerBeforeUnloadEventCallback', - 'fillBatteryEventData', - 'battery', - 'registerBatteryEventCallback', - 'setCanvasElementSize', - 'getCanvasElementSize', - 'jsStackTrace', - 'stackTrace', - 'getEnvStrings', - 'checkWasiClock', - 'createDyncallWrapper', - 'setImmediateWrapped', - 'clearImmediateWrapped', - 'polyfillSetImmediate', - 'getPromise', - 'makePromise', - 'makePromiseCallback', - 'setMainLoop', - '_setNetworkCallback', - 'heapObjectForWebGLType', - 'heapAccessShiftForWebGLHeap', - 'emscriptenWebGLGet', - 'computeUnpackAlignedImageSize', - 'emscriptenWebGLGetTexPixelData', - 'emscriptenWebGLGetUniform', - 'webglGetUniformLocation', - 'webglPrepareUniformLocationsBeforeFirstUse', - 'webglGetLeftBracePos', - 'emscriptenWebGLGetVertexAttrib', - 'writeGLArray', - 'SDL_unicode', - 'SDL_ttfContext', - 'SDL_audio', - 'GLFW_Window', - 'runAndAbortIfError', - 'ALLOC_NORMAL', - 'ALLOC_STACK', - 'allocate', -]; -missingLibrarySymbols.forEach(missingLibrarySymbol) + stackRestore(sp); + if (!(e instanceof EmscriptenEH)) throw e; + _setThrew(1, 0); + } +} -var unexportedSymbols = [ - 'run', - 'UTF8ArrayToString', - 'stringToUTF8Array', - 'stringToUTF8', - 'lengthBytesUTF8', - 'addOnPreRun', - 'addOnInit', - 'addOnPreMain', - 'addOnExit', - 'addOnPostRun', - 'addRunDependency', - 'removeRunDependency', - 'FS_createFolder', - 'FS_createPath', - 'FS_createDataFile', - 'FS_createPreloadedFile', - 'FS_createLazyFile', - 'FS_createLink', - 'FS_createDevice', - 'FS_unlink', - 'out', - 'err', - 'callMain', - 'abort', - 'keepRuntimeAlive', - 'wasmMemory', - 'stackAlloc', - 'stackSave', - 'stackRestore', - 'getTempRet0', - 'setTempRet0', - 'writeStackCookie', - 'checkStackCookie', - 'ptrToString', - 'zeroMemory', - 'getHeapMax', - 'emscripten_realloc_buffer', - 'ENV', - 'ERRNO_CODES', - 'ERRNO_MESSAGES', - 'setErrNo', - 'DNS', - 'Protocols', - 'Sockets', - 'getRandomDevice', - 'timers', - 'warnOnce', - 'UNWIND_CACHE', - 'readEmAsmArgsArray', - 'asyncLoad', - 'alignMemory', - 'mmapAlloc', - 'convertI32PairToI53Checked', - 'getCFunc', - 'uleb128Encode', - 'sigToWasmTypes', - 'generateFuncType', - 'convertJsFunctionToWasm', - 'freeTableIndexes', - 'functionsInTableMap', - 'getEmptyTableSlot', - 'updateTableMap', - 'getFunctionAddress', - 'setValue', - 'getValue', - 'PATH', - 'PATH_FS', - 'intArrayFromString', - 'UTF16Decoder', - 'writeArrayToMemory', - 'SYSCALLS', - 'JSEvents', - 'specialHTMLTargets', - 'currentFullscreenStrategy', - 'restoreOldWindowedStyle', - 'demangle', - 'demangleAll', - 'ExitStatus', - 'doReadv', - 'doWritev', - 'dlopenMissingError', - 'promiseMap', - 'uncaughtExceptionCount', - 'exceptionLast', - 'exceptionCaught', - 'ExceptionInfo', - 'exception_addRef', - 'exception_decRef', - 'getExceptionMessageCommon', - 'incrementExceptionRefcount', - 'decrementExceptionRefcount', - 'getExceptionMessage', - 'Browser', - 'wget', - 'FS', - 'MEMFS', - 'TTY', - 'PIPEFS', - 'SOCKFS', - 'tempFixedLengthArray', - 'miniTempWebGLFloatBuffers', - 'GL', - 'AL', - 'SDL', - 'SDL_gfx', - 'GLUT', - 'EGL', - 'GLFW', - 'GLEW', - 'IDBStore', -]; -unexportedSymbols.forEach(unexportedRuntimeSymbol); +function invoke_iidddddd(index,a1,a2,a3,a4,a5,a6,a7) { + var sp = stackSave(); + try { + return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7); + } catch(e) { + stackRestore(sp); + if (!(e instanceof EmscriptenEH)) throw e; + _setThrew(1, 0); + } +} + +function invoke_viiiiiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18) { + var sp = stackSave(); + try { + getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18); + } catch(e) { + stackRestore(sp); + if (!(e instanceof EmscriptenEH)) throw e; + _setThrew(1, 0); + } +} + +function invoke_v(index) { + var sp = stackSave(); + try { + getWasmTableEntry(index)(); + } catch(e) { + stackRestore(sp); + if (!(e instanceof EmscriptenEH)) throw e; + _setThrew(1, 0); + } +} +// include: postamble.js +// === Auto-generated postamble setup entry stuff === var calledRun; -dependenciesFulfilled = function runCaller() { - // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) - if (!calledRun) run(); - if (!calledRun) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled -}; - function stackCheckInit() { // This is normally called automatically during __wasm_call_ctors but need to // get these values before even running any of the ctors so we call it redundantly @@ -7499,22 +7651,24 @@ function stackCheckInit() { function run() { if (runDependencies > 0) { + dependenciesFulfilled = run; return; } - stackCheckInit(); + stackCheckInit(); preRun(); // a preRun added a dependency, run will be called later if (runDependencies > 0) { + dependenciesFulfilled = run; return; } function doRun() { // run may have just been called through dependencies being fulfilled just in this very frame, // or while the async setStatus time below was happening - if (calledRun) return; + assert(!calledRun); calledRun = true; Module['calledRun'] = true; @@ -7522,7 +7676,8 @@ function run() { initRuntime(); - if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized'](); + Module['onRuntimeInitialized']?.(); + consumedModuleProp('onRuntimeInitialized'); assert(!Module['_main'], 'compiled without a main, but one is present. if you added it from JS, use Module["onRuntimeInitialized"]'); @@ -7531,10 +7686,8 @@ function run() { if (Module['setStatus']) { Module['setStatus']('Running...'); - setTimeout(function() { - setTimeout(function() { - Module['setStatus'](''); - }, 1); + setTimeout(() => { + setTimeout(() => Module['setStatus'](''), 1); doRun(); }, 1); } else @@ -7565,13 +7718,13 @@ function checkUnflushedContent() { try { // it doesn't matter if it fails _fflush(0); // also flush in the JS FS layer - ['stdout', 'stderr'].forEach(function(name) { + ['stdout', 'stderr'].forEach((name) => { var info = FS.analyzePath('/dev/' + name); if (!info) return; var stream = info.object; var rdev = stream.rdev; var tty = TTY.ttys[rdev]; - if (tty && tty.output && tty.output.length) { + if (tty?.output?.length) { has = true; } }); @@ -7579,22 +7732,26 @@ function checkUnflushedContent() { out = oldOut; err = oldErr; if (has) { - warnOnce('stdio streams had content in them that was not flushed. you should set EXIT_RUNTIME to 1 (see the FAQ), or make sure to emit a newline when you printf etc.'); + warnOnce('stdio streams had content in them that was not flushed. you should set EXIT_RUNTIME to 1 (see the Emscripten FAQ), or make sure to emit a newline when you printf etc.'); } } -if (Module['preInit']) { - if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; - while (Module['preInit'].length > 0) { - Module['preInit'].pop()(); +function preInit() { + if (Module['preInit']) { + if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; + while (Module['preInit'].length > 0) { + Module['preInit'].shift()(); + } } + consumedModuleProp('preInit'); } +preInit(); run(); - // end include: postamble.js -// include: /home/kcheung/work/code/behave-polylith/behave-lib/include/js/glue.js + +// include: /Users/rsheperd/code/sig/behave-app/behave-lib/include/js/glue.js // Bindings utilities @@ -7671,15 +7828,15 @@ var ensureCache = { temps: [], // extra allocations needed: 0, // the total size we need next time - prepare: function() { + prepare() { if (ensureCache.needed) { // clear the temps for (var i = 0; i < ensureCache.temps.length; i++) { - Module['_free'](ensureCache.temps[i]); + Module['_webidl_free'](ensureCache.temps[i]); } ensureCache.temps.length = 0; // prepare to allocate a bigger buffer - Module['_free'](ensureCache.buffer); + Module['_webidl_free'](ensureCache.buffer); ensureCache.buffer = 0; ensureCache.size += ensureCache.needed; // clean up @@ -7687,22 +7844,22 @@ var ensureCache = { } if (!ensureCache.buffer) { // happens first time, or when we need to grow ensureCache.size += 128; // heuristic, avoid many small grow events - ensureCache.buffer = Module['_malloc'](ensureCache.size); + ensureCache.buffer = Module['_webidl_malloc'](ensureCache.size); assert(ensureCache.buffer); } ensureCache.pos = 0; }, - alloc: function(array, view) { + alloc(array, view) { assert(ensureCache.buffer); var bytes = view.BYTES_PER_ELEMENT; var len = array.length * bytes; - len = (len + 7) & -8; // keep things aligned to 8 byte boundaries + len = alignMemory(len, 8); // keep things aligned to 8 byte boundaries var ret; if (ensureCache.pos + len >= ensureCache.size) { // we failed to allocate in the buffer, ensureCache time around :( assert(len > 0); // null terminator, at least ensureCache.needed += len; - ret = Module['_malloc'](len); + ret = Module['_webidl_malloc'](len); ensureCache.temps.push(ret); } else { // we can allocate in the buffer @@ -7711,14 +7868,8 @@ var ensureCache = { } return ret; }, - copy: function(array, view, offset) { - offset >>>= 0; - var bytes = view.BYTES_PER_ELEMENT; - switch (bytes) { - case 2: offset >>>= 1; break; - case 4: offset >>>= 2; break; - case 8: offset >>>= 3; break; - } + copy(array, view, offset) { + offset /= view.BYTES_PER_ELEMENT; for (var i = 0; i < array.length; i++) { view[offset + i] = array[i]; } @@ -7735,6 +7886,7 @@ function ensureString(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt8(value) { if (typeof value === 'object') { @@ -7744,6 +7896,7 @@ function ensureInt8(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt16(value) { if (typeof value === 'object') { @@ -7753,6 +7906,7 @@ function ensureInt16(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt32(value) { if (typeof value === 'object') { @@ -7762,6 +7916,7 @@ function ensureInt32(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureFloat32(value) { if (typeof value === 'object') { @@ -7771,6 +7926,7 @@ function ensureFloat32(value) { } return value; } + /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureFloat64(value) { if (typeof value === 'object') { @@ -7781,771 +7937,906 @@ function ensureFloat64(value) { return value; } -// VoidPtr -/** @suppress {undefinedVars, duplicate} @this{Object} */function VoidPtr() { throw "cannot construct a VoidPtr, no constructor in IDL" } +// Interface: VoidPtr + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function VoidPtr() { throw "cannot construct a VoidPtr, no constructor in IDL" } VoidPtr.prototype = Object.create(WrapperObject.prototype); VoidPtr.prototype.constructor = VoidPtr; VoidPtr.prototype.__class__ = VoidPtr; VoidPtr.__cache__ = {}; Module['VoidPtr'] = VoidPtr; - VoidPtr.prototype['__destroy__'] = VoidPtr.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VoidPtr.prototype['__destroy__'] = VoidPtr.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_VoidPtr___destroy___0(self); }; -// DoublePtr -/** @suppress {undefinedVars, duplicate} @this{Object} */function DoublePtr() { throw "cannot construct a DoublePtr, no constructor in IDL" } + +// Interface: DoublePtr + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function DoublePtr() { throw "cannot construct a DoublePtr, no constructor in IDL" } DoublePtr.prototype = Object.create(WrapperObject.prototype); DoublePtr.prototype.constructor = DoublePtr; DoublePtr.prototype.__class__ = DoublePtr; DoublePtr.__cache__ = {}; Module['DoublePtr'] = DoublePtr; - DoublePtr.prototype['__destroy__'] = DoublePtr.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoublePtr.prototype['__destroy__'] = DoublePtr.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_DoublePtr___destroy___0(self); }; -// BoolVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function BoolVector(size) { + +// Interface: BoolVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function BoolVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_BoolVector_BoolVector_0(); getCache(BoolVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_BoolVector_BoolVector_1(size); getCache(BoolVector)[this.ptr] = this; -};; +}; + BoolVector.prototype = Object.create(WrapperObject.prototype); BoolVector.prototype.constructor = BoolVector; BoolVector.prototype.__class__ = BoolVector; BoolVector.__cache__ = {}; Module['BoolVector'] = BoolVector; - -BoolVector.prototype['resize'] = BoolVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['resize'] = BoolVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_BoolVector_resize_1(self, size); -};; +}; -BoolVector.prototype['get'] = BoolVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['get'] = BoolVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return !!(_emscripten_bind_BoolVector_get_1(self, i)); -};; +}; -BoolVector.prototype['set'] = BoolVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['set'] = BoolVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_BoolVector_set_2(self, i, val); -};; +}; -BoolVector.prototype['size'] = BoolVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['size'] = BoolVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_BoolVector_size_0(self); -};; +}; - BoolVector.prototype['__destroy__'] = BoolVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BoolVector.prototype['__destroy__'] = BoolVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_BoolVector___destroy___0(self); }; -// CharVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function CharVector(size) { + +// Interface: CharVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function CharVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_CharVector_CharVector_0(); getCache(CharVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_CharVector_CharVector_1(size); getCache(CharVector)[this.ptr] = this; -};; +}; + CharVector.prototype = Object.create(WrapperObject.prototype); CharVector.prototype.constructor = CharVector; CharVector.prototype.__class__ = CharVector; CharVector.__cache__ = {}; Module['CharVector'] = CharVector; - -CharVector.prototype['resize'] = CharVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['resize'] = CharVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_CharVector_resize_1(self, size); -};; +}; -CharVector.prototype['get'] = CharVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['get'] = CharVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_CharVector_get_1(self, i); -};; +}; -CharVector.prototype['set'] = CharVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['set'] = CharVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_CharVector_set_2(self, i, val); -};; +}; -CharVector.prototype['size'] = CharVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['size'] = CharVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_CharVector_size_0(self); -};; +}; - CharVector.prototype['__destroy__'] = CharVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +CharVector.prototype['__destroy__'] = CharVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_CharVector___destroy___0(self); }; -// IntVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function IntVector(size) { + +// Interface: IntVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function IntVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_IntVector_IntVector_0(); getCache(IntVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_IntVector_IntVector_1(size); getCache(IntVector)[this.ptr] = this; -};; +}; + IntVector.prototype = Object.create(WrapperObject.prototype); IntVector.prototype.constructor = IntVector; IntVector.prototype.__class__ = IntVector; IntVector.__cache__ = {}; Module['IntVector'] = IntVector; - -IntVector.prototype['resize'] = IntVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['resize'] = IntVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_IntVector_resize_1(self, size); -};; +}; -IntVector.prototype['get'] = IntVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['get'] = IntVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_IntVector_get_1(self, i); -};; +}; -IntVector.prototype['set'] = IntVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['set'] = IntVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_IntVector_set_2(self, i, val); -};; +}; -IntVector.prototype['size'] = IntVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['size'] = IntVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_IntVector_size_0(self); -};; +}; - IntVector.prototype['__destroy__'] = IntVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +IntVector.prototype['__destroy__'] = IntVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_IntVector___destroy___0(self); }; -// DoubleVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function DoubleVector(size) { + +// Interface: DoubleVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function DoubleVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_DoubleVector_DoubleVector_0(); getCache(DoubleVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_DoubleVector_DoubleVector_1(size); getCache(DoubleVector)[this.ptr] = this; -};; +}; + DoubleVector.prototype = Object.create(WrapperObject.prototype); DoubleVector.prototype.constructor = DoubleVector; DoubleVector.prototype.__class__ = DoubleVector; DoubleVector.__cache__ = {}; Module['DoubleVector'] = DoubleVector; - -DoubleVector.prototype['resize'] = DoubleVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['resize'] = DoubleVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_DoubleVector_resize_1(self, size); -};; +}; -DoubleVector.prototype['get'] = DoubleVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['get'] = DoubleVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_DoubleVector_get_1(self, i); -};; +}; -DoubleVector.prototype['set'] = DoubleVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['set'] = DoubleVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_DoubleVector_set_2(self, i, val); -};; +}; -DoubleVector.prototype['size'] = DoubleVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['size'] = DoubleVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_DoubleVector_size_0(self); -};; +}; - DoubleVector.prototype['__destroy__'] = DoubleVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DoubleVector.prototype['__destroy__'] = DoubleVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_DoubleVector___destroy___0(self); }; -// SpeciesMasterTableRecordVector -/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTableRecordVector(size) { + +// Interface: SpeciesMasterTableRecordVector + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SpeciesMasterTableRecordVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0(); getCache(SpeciesMasterTableRecordVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1(size); getCache(SpeciesMasterTableRecordVector)[this.ptr] = this; -};; +}; + SpeciesMasterTableRecordVector.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTableRecordVector.prototype.constructor = SpeciesMasterTableRecordVector; SpeciesMasterTableRecordVector.prototype.__class__ = SpeciesMasterTableRecordVector; SpeciesMasterTableRecordVector.__cache__ = {}; Module['SpeciesMasterTableRecordVector'] = SpeciesMasterTableRecordVector; - -SpeciesMasterTableRecordVector.prototype['resize'] = SpeciesMasterTableRecordVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['resize'] = SpeciesMasterTableRecordVector.prototype.resize = function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_SpeciesMasterTableRecordVector_resize_1(self, size); -};; +}; -SpeciesMasterTableRecordVector.prototype['get'] = SpeciesMasterTableRecordVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['get'] = SpeciesMasterTableRecordVector.prototype.get = function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return wrapPointer(_emscripten_bind_SpeciesMasterTableRecordVector_get_1(self, i), SpeciesMasterTableRecord); -};; +}; -SpeciesMasterTableRecordVector.prototype['set'] = SpeciesMasterTableRecordVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['set'] = SpeciesMasterTableRecordVector.prototype.set = function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_SpeciesMasterTableRecordVector_set_2(self, i, val); -};; +}; -SpeciesMasterTableRecordVector.prototype['size'] = SpeciesMasterTableRecordVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['size'] = SpeciesMasterTableRecordVector.prototype.size = function() { var self = this.ptr; return _emscripten_bind_SpeciesMasterTableRecordVector_size_0(self); -};; +}; - SpeciesMasterTableRecordVector.prototype['__destroy__'] = SpeciesMasterTableRecordVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecordVector.prototype['__destroy__'] = SpeciesMasterTableRecordVector.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0(self); }; -// AreaUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function AreaUnits() { throw "cannot construct a AreaUnits, no constructor in IDL" } + +// Interface: AreaUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function AreaUnits() { throw "cannot construct a AreaUnits, no constructor in IDL" } AreaUnits.prototype = Object.create(WrapperObject.prototype); AreaUnits.prototype.constructor = AreaUnits; AreaUnits.prototype.__class__ = AreaUnits; AreaUnits.__cache__ = {}; Module['AreaUnits'] = AreaUnits; - -AreaUnits.prototype['toBaseUnits'] = AreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +AreaUnits.prototype['toBaseUnits'] = AreaUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_AreaUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_AreaUnits_toBaseUnits_2(value, units); +}; -AreaUnits.prototype['fromBaseUnits'] = AreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +AreaUnits.prototype['fromBaseUnits'] = AreaUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_AreaUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_AreaUnits_fromBaseUnits_2(value, units); +}; - AreaUnits.prototype['__destroy__'] = AreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +AreaUnits.prototype['__destroy__'] = AreaUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_AreaUnits___destroy___0(self); }; -// BasalAreaUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function BasalAreaUnits() { throw "cannot construct a BasalAreaUnits, no constructor in IDL" } + +// Interface: BasalAreaUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function BasalAreaUnits() { throw "cannot construct a BasalAreaUnits, no constructor in IDL" } BasalAreaUnits.prototype = Object.create(WrapperObject.prototype); BasalAreaUnits.prototype.constructor = BasalAreaUnits; BasalAreaUnits.prototype.__class__ = BasalAreaUnits; BasalAreaUnits.__cache__ = {}; Module['BasalAreaUnits'] = BasalAreaUnits; - -BasalAreaUnits.prototype['toBaseUnits'] = BasalAreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BasalAreaUnits.prototype['toBaseUnits'] = BasalAreaUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_BasalAreaUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_BasalAreaUnits_toBaseUnits_2(value, units); +}; -BasalAreaUnits.prototype['fromBaseUnits'] = BasalAreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BasalAreaUnits.prototype['fromBaseUnits'] = BasalAreaUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_BasalAreaUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_BasalAreaUnits_fromBaseUnits_2(value, units); +}; - BasalAreaUnits.prototype['__destroy__'] = BasalAreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +BasalAreaUnits.prototype['__destroy__'] = BasalAreaUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_BasalAreaUnits___destroy___0(self); }; -// FractionUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function FractionUnits() { throw "cannot construct a FractionUnits, no constructor in IDL" } + +// Interface: FractionUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function FractionUnits() { throw "cannot construct a FractionUnits, no constructor in IDL" } FractionUnits.prototype = Object.create(WrapperObject.prototype); FractionUnits.prototype.constructor = FractionUnits; FractionUnits.prototype.__class__ = FractionUnits; FractionUnits.__cache__ = {}; Module['FractionUnits'] = FractionUnits; - -FractionUnits.prototype['toBaseUnits'] = FractionUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FractionUnits.prototype['toBaseUnits'] = FractionUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FractionUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_FractionUnits_toBaseUnits_2(value, units); +}; -FractionUnits.prototype['fromBaseUnits'] = FractionUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FractionUnits.prototype['fromBaseUnits'] = FractionUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FractionUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_FractionUnits_fromBaseUnits_2(value, units); +}; - FractionUnits.prototype['__destroy__'] = FractionUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FractionUnits.prototype['__destroy__'] = FractionUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_FractionUnits___destroy___0(self); }; -// LengthUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function LengthUnits() { throw "cannot construct a LengthUnits, no constructor in IDL" } + +// Interface: LengthUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function LengthUnits() { throw "cannot construct a LengthUnits, no constructor in IDL" } LengthUnits.prototype = Object.create(WrapperObject.prototype); LengthUnits.prototype.constructor = LengthUnits; LengthUnits.prototype.__class__ = LengthUnits; LengthUnits.__cache__ = {}; Module['LengthUnits'] = LengthUnits; - -LengthUnits.prototype['toBaseUnits'] = LengthUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LengthUnits.prototype['toBaseUnits'] = LengthUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LengthUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_LengthUnits_toBaseUnits_2(value, units); +}; -LengthUnits.prototype['fromBaseUnits'] = LengthUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LengthUnits.prototype['fromBaseUnits'] = LengthUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LengthUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_LengthUnits_fromBaseUnits_2(value, units); +}; - LengthUnits.prototype['__destroy__'] = LengthUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LengthUnits.prototype['__destroy__'] = LengthUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_LengthUnits___destroy___0(self); }; -// LoadingUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function LoadingUnits() { throw "cannot construct a LoadingUnits, no constructor in IDL" } + +// Interface: LoadingUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function LoadingUnits() { throw "cannot construct a LoadingUnits, no constructor in IDL" } LoadingUnits.prototype = Object.create(WrapperObject.prototype); LoadingUnits.prototype.constructor = LoadingUnits; LoadingUnits.prototype.__class__ = LoadingUnits; LoadingUnits.__cache__ = {}; Module['LoadingUnits'] = LoadingUnits; - -LoadingUnits.prototype['toBaseUnits'] = LoadingUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LoadingUnits.prototype['toBaseUnits'] = LoadingUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LoadingUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_LoadingUnits_toBaseUnits_2(value, units); +}; -LoadingUnits.prototype['fromBaseUnits'] = LoadingUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LoadingUnits.prototype['fromBaseUnits'] = LoadingUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LoadingUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_LoadingUnits_fromBaseUnits_2(value, units); +}; - LoadingUnits.prototype['__destroy__'] = LoadingUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +LoadingUnits.prototype['__destroy__'] = LoadingUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_LoadingUnits___destroy___0(self); }; -// SurfaceAreaToVolumeUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function SurfaceAreaToVolumeUnits() { throw "cannot construct a SurfaceAreaToVolumeUnits, no constructor in IDL" } + +// Interface: SurfaceAreaToVolumeUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SurfaceAreaToVolumeUnits() { throw "cannot construct a SurfaceAreaToVolumeUnits, no constructor in IDL" } SurfaceAreaToVolumeUnits.prototype = Object.create(WrapperObject.prototype); SurfaceAreaToVolumeUnits.prototype.constructor = SurfaceAreaToVolumeUnits; SurfaceAreaToVolumeUnits.prototype.__class__ = SurfaceAreaToVolumeUnits; SurfaceAreaToVolumeUnits.__cache__ = {}; Module['SurfaceAreaToVolumeUnits'] = SurfaceAreaToVolumeUnits; - -SurfaceAreaToVolumeUnits.prototype['toBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SurfaceAreaToVolumeUnits.prototype['toBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(value, units); +}; -SurfaceAreaToVolumeUnits.prototype['fromBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SurfaceAreaToVolumeUnits.prototype['fromBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(value, units); +}; - SurfaceAreaToVolumeUnits.prototype['__destroy__'] = SurfaceAreaToVolumeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SurfaceAreaToVolumeUnits.prototype['__destroy__'] = SurfaceAreaToVolumeUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0(self); }; -// SpeedUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeedUnits() { throw "cannot construct a SpeedUnits, no constructor in IDL" } + +// Interface: SpeedUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SpeedUnits() { throw "cannot construct a SpeedUnits, no constructor in IDL" } SpeedUnits.prototype = Object.create(WrapperObject.prototype); SpeedUnits.prototype.constructor = SpeedUnits; SpeedUnits.prototype.__class__ = SpeedUnits; SpeedUnits.__cache__ = {}; Module['SpeedUnits'] = SpeedUnits; - -SpeedUnits.prototype['toBaseUnits'] = SpeedUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeedUnits.prototype['toBaseUnits'] = SpeedUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SpeedUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SpeedUnits_toBaseUnits_2(value, units); +}; -SpeedUnits.prototype['fromBaseUnits'] = SpeedUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeedUnits.prototype['fromBaseUnits'] = SpeedUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SpeedUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SpeedUnits_fromBaseUnits_2(value, units); +}; - SpeedUnits.prototype['__destroy__'] = SpeedUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeedUnits.prototype['__destroy__'] = SpeedUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SpeedUnits___destroy___0(self); }; -// PressureUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function PressureUnits() { throw "cannot construct a PressureUnits, no constructor in IDL" } + +// Interface: PressureUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function PressureUnits() { throw "cannot construct a PressureUnits, no constructor in IDL" } PressureUnits.prototype = Object.create(WrapperObject.prototype); PressureUnits.prototype.constructor = PressureUnits; PressureUnits.prototype.__class__ = PressureUnits; PressureUnits.__cache__ = {}; Module['PressureUnits'] = PressureUnits; - -PressureUnits.prototype['toBaseUnits'] = PressureUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PressureUnits.prototype['toBaseUnits'] = PressureUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_PressureUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_PressureUnits_toBaseUnits_2(value, units); +}; -PressureUnits.prototype['fromBaseUnits'] = PressureUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PressureUnits.prototype['fromBaseUnits'] = PressureUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_PressureUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_PressureUnits_fromBaseUnits_2(value, units); +}; - PressureUnits.prototype['__destroy__'] = PressureUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PressureUnits.prototype['__destroy__'] = PressureUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_PressureUnits___destroy___0(self); }; -// SlopeUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function SlopeUnits() { throw "cannot construct a SlopeUnits, no constructor in IDL" } + +// Interface: SlopeUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SlopeUnits() { throw "cannot construct a SlopeUnits, no constructor in IDL" } SlopeUnits.prototype = Object.create(WrapperObject.prototype); SlopeUnits.prototype.constructor = SlopeUnits; SlopeUnits.prototype.__class__ = SlopeUnits; SlopeUnits.__cache__ = {}; Module['SlopeUnits'] = SlopeUnits; - -SlopeUnits.prototype['toBaseUnits'] = SlopeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SlopeUnits.prototype['toBaseUnits'] = SlopeUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SlopeUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SlopeUnits_toBaseUnits_2(value, units); +}; -SlopeUnits.prototype['fromBaseUnits'] = SlopeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SlopeUnits.prototype['fromBaseUnits'] = SlopeUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SlopeUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_SlopeUnits_fromBaseUnits_2(value, units); +}; - SlopeUnits.prototype['__destroy__'] = SlopeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SlopeUnits.prototype['__destroy__'] = SlopeUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SlopeUnits___destroy___0(self); }; -// DensityUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function DensityUnits() { throw "cannot construct a DensityUnits, no constructor in IDL" } + +// Interface: DensityUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function DensityUnits() { throw "cannot construct a DensityUnits, no constructor in IDL" } DensityUnits.prototype = Object.create(WrapperObject.prototype); DensityUnits.prototype.constructor = DensityUnits; DensityUnits.prototype.__class__ = DensityUnits; DensityUnits.__cache__ = {}; Module['DensityUnits'] = DensityUnits; - -DensityUnits.prototype['toBaseUnits'] = DensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DensityUnits.prototype['toBaseUnits'] = DensityUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_DensityUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_DensityUnits_toBaseUnits_2(value, units); +}; -DensityUnits.prototype['fromBaseUnits'] = DensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DensityUnits.prototype['fromBaseUnits'] = DensityUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_DensityUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_DensityUnits_fromBaseUnits_2(value, units); +}; - DensityUnits.prototype['__destroy__'] = DensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +DensityUnits.prototype['__destroy__'] = DensityUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_DensityUnits___destroy___0(self); }; -// HeatOfCombustionUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatOfCombustionUnits() { throw "cannot construct a HeatOfCombustionUnits, no constructor in IDL" } + +// Interface: HeatOfCombustionUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function HeatOfCombustionUnits() { throw "cannot construct a HeatOfCombustionUnits, no constructor in IDL" } HeatOfCombustionUnits.prototype = Object.create(WrapperObject.prototype); HeatOfCombustionUnits.prototype.constructor = HeatOfCombustionUnits; HeatOfCombustionUnits.prototype.__class__ = HeatOfCombustionUnits; HeatOfCombustionUnits.__cache__ = {}; Module['HeatOfCombustionUnits'] = HeatOfCombustionUnits; - -HeatOfCombustionUnits.prototype['toBaseUnits'] = HeatOfCombustionUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatOfCombustionUnits.prototype['toBaseUnits'] = HeatOfCombustionUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(value, units); +}; -HeatOfCombustionUnits.prototype['fromBaseUnits'] = HeatOfCombustionUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatOfCombustionUnits.prototype['fromBaseUnits'] = HeatOfCombustionUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(value, units); +}; - HeatOfCombustionUnits.prototype['__destroy__'] = HeatOfCombustionUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatOfCombustionUnits.prototype['__destroy__'] = HeatOfCombustionUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_HeatOfCombustionUnits___destroy___0(self); }; -// HeatSinkUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatSinkUnits() { throw "cannot construct a HeatSinkUnits, no constructor in IDL" } + +// Interface: HeatSinkUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function HeatSinkUnits() { throw "cannot construct a HeatSinkUnits, no constructor in IDL" } HeatSinkUnits.prototype = Object.create(WrapperObject.prototype); HeatSinkUnits.prototype.constructor = HeatSinkUnits; HeatSinkUnits.prototype.__class__ = HeatSinkUnits; HeatSinkUnits.__cache__ = {}; Module['HeatSinkUnits'] = HeatSinkUnits; - -HeatSinkUnits.prototype['toBaseUnits'] = HeatSinkUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSinkUnits.prototype['toBaseUnits'] = HeatSinkUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSinkUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatSinkUnits_toBaseUnits_2(value, units); +}; -HeatSinkUnits.prototype['fromBaseUnits'] = HeatSinkUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSinkUnits.prototype['fromBaseUnits'] = HeatSinkUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSinkUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatSinkUnits_fromBaseUnits_2(value, units); +}; - HeatSinkUnits.prototype['__destroy__'] = HeatSinkUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSinkUnits.prototype['__destroy__'] = HeatSinkUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_HeatSinkUnits___destroy___0(self); }; -// HeatPerUnitAreaUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatPerUnitAreaUnits() { throw "cannot construct a HeatPerUnitAreaUnits, no constructor in IDL" } + +// Interface: HeatPerUnitAreaUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function HeatPerUnitAreaUnits() { throw "cannot construct a HeatPerUnitAreaUnits, no constructor in IDL" } HeatPerUnitAreaUnits.prototype = Object.create(WrapperObject.prototype); HeatPerUnitAreaUnits.prototype.constructor = HeatPerUnitAreaUnits; HeatPerUnitAreaUnits.prototype.__class__ = HeatPerUnitAreaUnits; HeatPerUnitAreaUnits.__cache__ = {}; Module['HeatPerUnitAreaUnits'] = HeatPerUnitAreaUnits; - -HeatPerUnitAreaUnits.prototype['toBaseUnits'] = HeatPerUnitAreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatPerUnitAreaUnits.prototype['toBaseUnits'] = HeatPerUnitAreaUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(value, units); +}; -HeatPerUnitAreaUnits.prototype['fromBaseUnits'] = HeatPerUnitAreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatPerUnitAreaUnits.prototype['fromBaseUnits'] = HeatPerUnitAreaUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(value, units); +}; - HeatPerUnitAreaUnits.prototype['__destroy__'] = HeatPerUnitAreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatPerUnitAreaUnits.prototype['__destroy__'] = HeatPerUnitAreaUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_HeatPerUnitAreaUnits___destroy___0(self); }; -// HeatSourceAndReactionIntensityUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatSourceAndReactionIntensityUnits() { throw "cannot construct a HeatSourceAndReactionIntensityUnits, no constructor in IDL" } + +// Interface: HeatSourceAndReactionIntensityUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function HeatSourceAndReactionIntensityUnits() { throw "cannot construct a HeatSourceAndReactionIntensityUnits, no constructor in IDL" } HeatSourceAndReactionIntensityUnits.prototype = Object.create(WrapperObject.prototype); HeatSourceAndReactionIntensityUnits.prototype.constructor = HeatSourceAndReactionIntensityUnits; HeatSourceAndReactionIntensityUnits.prototype.__class__ = HeatSourceAndReactionIntensityUnits; HeatSourceAndReactionIntensityUnits.__cache__ = {}; Module['HeatSourceAndReactionIntensityUnits'] = HeatSourceAndReactionIntensityUnits; - -HeatSourceAndReactionIntensityUnits.prototype['toBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSourceAndReactionIntensityUnits.prototype['toBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(value, units); +}; -HeatSourceAndReactionIntensityUnits.prototype['fromBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSourceAndReactionIntensityUnits.prototype['fromBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(value, units); +}; - HeatSourceAndReactionIntensityUnits.prototype['__destroy__'] = HeatSourceAndReactionIntensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +HeatSourceAndReactionIntensityUnits.prototype['__destroy__'] = HeatSourceAndReactionIntensityUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0(self); }; -// FirelineIntensityUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function FirelineIntensityUnits() { throw "cannot construct a FirelineIntensityUnits, no constructor in IDL" } + +// Interface: FirelineIntensityUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function FirelineIntensityUnits() { throw "cannot construct a FirelineIntensityUnits, no constructor in IDL" } FirelineIntensityUnits.prototype = Object.create(WrapperObject.prototype); FirelineIntensityUnits.prototype.constructor = FirelineIntensityUnits; FirelineIntensityUnits.prototype.__class__ = FirelineIntensityUnits; FirelineIntensityUnits.__cache__ = {}; Module['FirelineIntensityUnits'] = FirelineIntensityUnits; - -FirelineIntensityUnits.prototype['toBaseUnits'] = FirelineIntensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FirelineIntensityUnits.prototype['toBaseUnits'] = FirelineIntensityUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(value, units); +}; -FirelineIntensityUnits.prototype['fromBaseUnits'] = FirelineIntensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FirelineIntensityUnits.prototype['fromBaseUnits'] = FirelineIntensityUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(value, units); +}; - FirelineIntensityUnits.prototype['__destroy__'] = FirelineIntensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FirelineIntensityUnits.prototype['__destroy__'] = FirelineIntensityUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_FirelineIntensityUnits___destroy___0(self); }; -// TemperatureUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function TemperatureUnits() { throw "cannot construct a TemperatureUnits, no constructor in IDL" } + +// Interface: TemperatureUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function TemperatureUnits() { throw "cannot construct a TemperatureUnits, no constructor in IDL" } TemperatureUnits.prototype = Object.create(WrapperObject.prototype); TemperatureUnits.prototype.constructor = TemperatureUnits; TemperatureUnits.prototype.__class__ = TemperatureUnits; TemperatureUnits.__cache__ = {}; Module['TemperatureUnits'] = TemperatureUnits; - -TemperatureUnits.prototype['toBaseUnits'] = TemperatureUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TemperatureUnits.prototype['toBaseUnits'] = TemperatureUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TemperatureUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_TemperatureUnits_toBaseUnits_2(value, units); +}; -TemperatureUnits.prototype['fromBaseUnits'] = TemperatureUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TemperatureUnits.prototype['fromBaseUnits'] = TemperatureUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TemperatureUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_TemperatureUnits_fromBaseUnits_2(value, units); +}; - TemperatureUnits.prototype['__destroy__'] = TemperatureUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TemperatureUnits.prototype['__destroy__'] = TemperatureUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_TemperatureUnits___destroy___0(self); }; -// TimeUnits -/** @suppress {undefinedVars, duplicate} @this{Object} */function TimeUnits() { throw "cannot construct a TimeUnits, no constructor in IDL" } + +// Interface: TimeUnits + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function TimeUnits() { throw "cannot construct a TimeUnits, no constructor in IDL" } TimeUnits.prototype = Object.create(WrapperObject.prototype); TimeUnits.prototype.constructor = TimeUnits; TimeUnits.prototype.__class__ = TimeUnits; TimeUnits.__cache__ = {}; Module['TimeUnits'] = TimeUnits; - -TimeUnits.prototype['toBaseUnits'] = TimeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TimeUnits.prototype['toBaseUnits'] = TimeUnits.prototype.toBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TimeUnits_toBaseUnits_2(self, value, units); -};; + return _emscripten_bind_TimeUnits_toBaseUnits_2(value, units); +}; -TimeUnits.prototype['fromBaseUnits'] = TimeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { - var self = this.ptr; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TimeUnits.prototype['fromBaseUnits'] = TimeUnits.prototype.fromBaseUnits = function(value, units) { if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TimeUnits_fromBaseUnits_2(self, value, units); -};; + return _emscripten_bind_TimeUnits_fromBaseUnits_2(value, units); +}; - TimeUnits.prototype['__destroy__'] = TimeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +TimeUnits.prototype['__destroy__'] = TimeUnits.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_TimeUnits___destroy___0(self); }; -// FireSize -/** @suppress {undefinedVars, duplicate} @this{Object} */function FireSize() { throw "cannot construct a FireSize, no constructor in IDL" } + +// Interface: FireSize + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function FireSize() { throw "cannot construct a FireSize, no constructor in IDL" } FireSize.prototype = Object.create(WrapperObject.prototype); FireSize.prototype.constructor = FireSize; FireSize.prototype.__class__ = FireSize; FireSize.__cache__ = {}; Module['FireSize'] = FireSize; - -FireSize.prototype['getBackingSpreadRate'] = FireSize.prototype.getBackingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getBackingSpreadRate'] = FireSize.prototype.getBackingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_FireSize_getBackingSpreadRate_1(self, spreadRateUnits); -};; +}; -FireSize.prototype['getEccentricity'] = FireSize.prototype.getEccentricity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getEccentricity'] = FireSize.prototype.getEccentricity = function() { var self = this.ptr; return _emscripten_bind_FireSize_getEccentricity_0(self); -};; +}; -FireSize.prototype['getEllipticalA'] = FireSize.prototype.getEllipticalA = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getEllipticalA'] = FireSize.prototype.getEllipticalA = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalA_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getEllipticalB'] = FireSize.prototype.getEllipticalB = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getEllipticalB'] = FireSize.prototype.getEllipticalB = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalB_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getEllipticalC'] = FireSize.prototype.getEllipticalC = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getEllipticalC'] = FireSize.prototype.getEllipticalC = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalC_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getFireArea'] = FireSize.prototype.getFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, areaUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFireArea'] = FireSize.prototype.getFireArea = function(isCrown, areaUnits, elapsedTime, timeUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFireArea_4(self, isCrown, areaUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getFireLength'] = FireSize.prototype.getFireLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFireLength'] = FireSize.prototype.getFireLength = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFireLength_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getFireLengthToWidthRatio'] = FireSize.prototype.getFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFireLengthToWidthRatio'] = FireSize.prototype.getFireLengthToWidthRatio = function() { var self = this.ptr; return _emscripten_bind_FireSize_getFireLengthToWidthRatio_0(self); -};; +}; -FireSize.prototype['getFirePerimeter'] = FireSize.prototype.getFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFirePerimeter'] = FireSize.prototype.getFirePerimeter = function(isCrown, lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFirePerimeter_4(self, isCrown, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['getFlankingSpreadRate'] = FireSize.prototype.getFlankingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getFlankingSpreadRate'] = FireSize.prototype.getFlankingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_FireSize_getFlankingSpreadRate_1(self, spreadRateUnits); -};; +}; -FireSize.prototype['getHeadingToBackingRatio'] = FireSize.prototype.getHeadingToBackingRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getHeadingToBackingRatio'] = FireSize.prototype.getHeadingToBackingRatio = function() { var self = this.ptr; return _emscripten_bind_FireSize_getHeadingToBackingRatio_0(self); -};; +}; -FireSize.prototype['getMaxFireWidth'] = FireSize.prototype.getMaxFireWidth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['getMaxFireWidth'] = FireSize.prototype.getMaxFireWidth = function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getMaxFireWidth_3(self, lengthUnits, elapsedTime, timeUnits); -};; +}; -FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculateFireBasicDimensions = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculateFireBasicDimensions = function(isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (effectiveWindSpeed && typeof effectiveWindSpeed === 'object') effectiveWindSpeed = effectiveWindSpeed.ptr; @@ -8553,173 +8844,205 @@ FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculat if (forwardSpreadRate && typeof forwardSpreadRate === 'object') forwardSpreadRate = forwardSpreadRate.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; _emscripten_bind_FireSize_calculateFireBasicDimensions_5(self, isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits); -};; +}; + - FireSize.prototype['__destroy__'] = FireSize.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +FireSize.prototype['__destroy__'] = FireSize.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_FireSize___destroy___0(self); }; -// SIGContainAdapter -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGContainAdapter() { + +// Interface: SIGContainAdapter + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGContainAdapter() { this.ptr = _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0(); getCache(SIGContainAdapter)[this.ptr] = this; -};; +}; + SIGContainAdapter.prototype = Object.create(WrapperObject.prototype); SIGContainAdapter.prototype.constructor = SIGContainAdapter; SIGContainAdapter.prototype.__class__ = SIGContainAdapter; SIGContainAdapter.__cache__ = {}; Module['SIGContainAdapter'] = SIGContainAdapter; - -SIGContainAdapter.prototype['getContainmentStatus'] = SIGContainAdapter.prototype.getContainmentStatus = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getContainmentStatus'] = SIGContainAdapter.prototype.getContainmentStatus = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getContainmentStatus_0(self); -};; +}; -SIGContainAdapter.prototype['getFirePerimeterX'] = SIGContainAdapter.prototype.getFirePerimeterX = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFirePerimeterX'] = SIGContainAdapter.prototype.getFirePerimeterX = function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0(self), DoubleVector); -};; +}; -SIGContainAdapter.prototype['getFirePerimeterY'] = SIGContainAdapter.prototype.getFirePerimeterY = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFirePerimeterY'] = SIGContainAdapter.prototype.getFirePerimeterY = function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0(self), DoubleVector); -};; +}; -SIGContainAdapter.prototype['getAttackDistance'] = SIGContainAdapter.prototype.getAttackDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getAttackDistance'] = SIGContainAdapter.prototype.getAttackDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getAttackDistance_1(self, lengthUnits); -};; +}; -SIGContainAdapter.prototype['getFinalContainmentArea'] = SIGContainAdapter.prototype.getFinalContainmentArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalContainmentArea'] = SIGContainAdapter.prototype.getFinalContainmentArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1(self, areaUnits); -};; +}; -SIGContainAdapter.prototype['getFinalCost'] = SIGContainAdapter.prototype.getFinalCost = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalCost'] = SIGContainAdapter.prototype.getFinalCost = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFinalCost_0(self); -};; +}; -SIGContainAdapter.prototype['getFinalFireLineLength'] = SIGContainAdapter.prototype.getFinalFireLineLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalFireLineLength'] = SIGContainAdapter.prototype.getFinalFireLineLength = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1(self, lengthUnits); -};; +}; -SIGContainAdapter.prototype['getFinalFireSize'] = SIGContainAdapter.prototype.getFinalFireSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalFireSize'] = SIGContainAdapter.prototype.getFinalFireSize = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalFireSize_1(self, areaUnits); -};; +}; -SIGContainAdapter.prototype['getFinalTimeSinceReport'] = SIGContainAdapter.prototype.getFinalTimeSinceReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalTimeSinceReport'] = SIGContainAdapter.prototype.getFinalTimeSinceReport = function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1(self, timeUnits); -};; +}; -SIGContainAdapter.prototype['getFinalProductionRate'] = SIGContainAdapter.prototype.getFinalProductionRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFinalProductionRate'] = SIGContainAdapter.prototype.getFinalProductionRate = function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1(self, speedUnits); -};; +}; -SIGContainAdapter.prototype['getFireBackAtAttack'] = SIGContainAdapter.prototype.getFireBackAtAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireBackAtAttack'] = SIGContainAdapter.prototype.getFireBackAtAttack = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0(self); -};; +}; -SIGContainAdapter.prototype['getFireBackAtReport'] = SIGContainAdapter.prototype.getFireBackAtReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireBackAtReport'] = SIGContainAdapter.prototype.getFireBackAtReport = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0(self); -};; +}; -SIGContainAdapter.prototype['getFireHeadAtAttack'] = SIGContainAdapter.prototype.getFireHeadAtAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireHeadAtAttack'] = SIGContainAdapter.prototype.getFireHeadAtAttack = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0(self); -};; +}; -SIGContainAdapter.prototype['getFireHeadAtReport'] = SIGContainAdapter.prototype.getFireHeadAtReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireHeadAtReport'] = SIGContainAdapter.prototype.getFireHeadAtReport = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0(self); -};; +}; -SIGContainAdapter.prototype['getFireSizeAtInitialAttack'] = SIGContainAdapter.prototype.getFireSizeAtInitialAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFireSizeAtInitialAttack'] = SIGContainAdapter.prototype.getFireSizeAtInitialAttack = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1(self, areaUnits); -};; +}; -SIGContainAdapter.prototype['getLengthToWidthRatio'] = SIGContainAdapter.prototype.getLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getLengthToWidthRatio'] = SIGContainAdapter.prototype.getLengthToWidthRatio = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0(self); -};; +}; -SIGContainAdapter.prototype['getPerimeterAtContainment'] = SIGContainAdapter.prototype.getPerimeterAtContainment = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getPerimeterAtContainment'] = SIGContainAdapter.prototype.getPerimeterAtContainment = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1(self, lengthUnits); -};; +}; -SIGContainAdapter.prototype['getPerimeterAtInitialAttack'] = SIGContainAdapter.prototype.getPerimeterAtInitialAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getPerimeterAtInitialAttack'] = SIGContainAdapter.prototype.getPerimeterAtInitialAttack = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1(self, lengthUnits); -};; +}; -SIGContainAdapter.prototype['getReportSize'] = SIGContainAdapter.prototype.getReportSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getReportSize'] = SIGContainAdapter.prototype.getReportSize = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getReportSize_1(self, areaUnits); -};; +}; -SIGContainAdapter.prototype['getReportRate'] = SIGContainAdapter.prototype.getReportRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getReportRate'] = SIGContainAdapter.prototype.getReportRate = function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getReportRate_1(self, speedUnits); -};; +}; -SIGContainAdapter.prototype['getAutoComputedResourceProductionRate'] = SIGContainAdapter.prototype.getAutoComputedResourceProductionRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getAutoComputedResourceProductionRate'] = SIGContainAdapter.prototype.getAutoComputedResourceProductionRate = function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1(self, speedUnits); -};; +}; -SIGContainAdapter.prototype['getTactic'] = SIGContainAdapter.prototype.getTactic = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getTactic'] = SIGContainAdapter.prototype.getTactic = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getTactic_0(self); -};; +}; -SIGContainAdapter.prototype['getFirePerimeterPointCount'] = SIGContainAdapter.prototype.getFirePerimeterPointCount = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['getFirePerimeterPointCount'] = SIGContainAdapter.prototype.getFirePerimeterPointCount = function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0(self); -};; +}; -SIGContainAdapter.prototype['removeAllResourcesWithThisDesc'] = SIGContainAdapter.prototype.removeAllResourcesWithThisDesc = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desc) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['removeAllResourcesWithThisDesc'] = SIGContainAdapter.prototype.removeAllResourcesWithThisDesc = function(desc) { var self = this.ptr; ensureCache.prepare(); if (desc && typeof desc === 'object') desc = desc.ptr; else desc = ensureString(desc); return _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1(self, desc); -};; +}; -SIGContainAdapter.prototype['removeResourceAt'] = SIGContainAdapter.prototype.removeResourceAt = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['removeResourceAt'] = SIGContainAdapter.prototype.removeResourceAt = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGContainAdapter_removeResourceAt_1(self, index); -};; +}; -SIGContainAdapter.prototype['removeResourceWithThisDesc'] = SIGContainAdapter.prototype.removeResourceWithThisDesc = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desc) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['removeResourceWithThisDesc'] = SIGContainAdapter.prototype.removeResourceWithThisDesc = function(desc) { var self = this.ptr; ensureCache.prepare(); if (desc && typeof desc === 'object') desc = desc.ptr; else desc = ensureString(desc); return _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1(self, desc); -};; +}; -SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addResource = /** @suppress {undefinedVars, duplicate} @this{Object} */function(arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addResource = function(arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost) { var self = this.ptr; ensureCache.prepare(); if (arrival && typeof arrival === 'object') arrival = arrival.ptr; @@ -8733,196 +9056,230 @@ SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addReso if (baseCost && typeof baseCost === 'object') baseCost = baseCost.ptr; if (hourCost && typeof hourCost === 'object') hourCost = hourCost.ptr; _emscripten_bind_SIGContainAdapter_addResource_9(self, arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost); -};; +}; -SIGContainAdapter.prototype['doContainRun'] = SIGContainAdapter.prototype.doContainRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['doContainRun'] = SIGContainAdapter.prototype.doContainRun = function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter_doContainRun_0(self); -};; +}; -SIGContainAdapter.prototype['removeAllResources'] = SIGContainAdapter.prototype.removeAllResources = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['removeAllResources'] = SIGContainAdapter.prototype.removeAllResources = function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter_removeAllResources_0(self); -};; +}; -SIGContainAdapter.prototype['setAttackDistance'] = SIGContainAdapter.prototype.setAttackDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(attackDistance, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setAttackDistance'] = SIGContainAdapter.prototype.setAttackDistance = function(attackDistance, lengthUnits) { var self = this.ptr; if (attackDistance && typeof attackDistance === 'object') attackDistance = attackDistance.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGContainAdapter_setAttackDistance_2(self, attackDistance, lengthUnits); -};; +}; -SIGContainAdapter.prototype['setContainMode'] = SIGContainAdapter.prototype.setContainMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(containmode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setContainMode'] = SIGContainAdapter.prototype.setContainMode = function(containmode) { var self = this.ptr; if (containmode && typeof containmode === 'object') containmode = containmode.ptr; _emscripten_bind_SIGContainAdapter_setContainMode_1(self, containmode); -};; +}; -SIGContainAdapter.prototype['setFireStartTime'] = SIGContainAdapter.prototype.setFireStartTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireStartTime) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setFireStartTime'] = SIGContainAdapter.prototype.setFireStartTime = function(fireStartTime) { var self = this.ptr; if (fireStartTime && typeof fireStartTime === 'object') fireStartTime = fireStartTime.ptr; _emscripten_bind_SIGContainAdapter_setFireStartTime_1(self, fireStartTime); -};; +}; -SIGContainAdapter.prototype['setLwRatio'] = SIGContainAdapter.prototype.setLwRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lwRatio) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setLwRatio'] = SIGContainAdapter.prototype.setLwRatio = function(lwRatio) { var self = this.ptr; if (lwRatio && typeof lwRatio === 'object') lwRatio = lwRatio.ptr; _emscripten_bind_SIGContainAdapter_setLwRatio_1(self, lwRatio); -};; +}; -SIGContainAdapter.prototype['setMaxFireSize'] = SIGContainAdapter.prototype.setMaxFireSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxFireSize) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setMaxFireSize'] = SIGContainAdapter.prototype.setMaxFireSize = function(maxFireSize) { var self = this.ptr; if (maxFireSize && typeof maxFireSize === 'object') maxFireSize = maxFireSize.ptr; _emscripten_bind_SIGContainAdapter_setMaxFireSize_1(self, maxFireSize); -};; +}; -SIGContainAdapter.prototype['setMaxFireTime'] = SIGContainAdapter.prototype.setMaxFireTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxFireTime) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setMaxFireTime'] = SIGContainAdapter.prototype.setMaxFireTime = function(maxFireTime) { var self = this.ptr; if (maxFireTime && typeof maxFireTime === 'object') maxFireTime = maxFireTime.ptr; _emscripten_bind_SIGContainAdapter_setMaxFireTime_1(self, maxFireTime); -};; +}; -SIGContainAdapter.prototype['setMaxSteps'] = SIGContainAdapter.prototype.setMaxSteps = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxSteps) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setMaxSteps'] = SIGContainAdapter.prototype.setMaxSteps = function(maxSteps) { var self = this.ptr; if (maxSteps && typeof maxSteps === 'object') maxSteps = maxSteps.ptr; _emscripten_bind_SIGContainAdapter_setMaxSteps_1(self, maxSteps); -};; +}; -SIGContainAdapter.prototype['setMinSteps'] = SIGContainAdapter.prototype.setMinSteps = /** @suppress {undefinedVars, duplicate} @this{Object} */function(minSteps) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setMinSteps'] = SIGContainAdapter.prototype.setMinSteps = function(minSteps) { var self = this.ptr; if (minSteps && typeof minSteps === 'object') minSteps = minSteps.ptr; _emscripten_bind_SIGContainAdapter_setMinSteps_1(self, minSteps); -};; +}; -SIGContainAdapter.prototype['setReportRate'] = SIGContainAdapter.prototype.setReportRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reportRate, speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setReportRate'] = SIGContainAdapter.prototype.setReportRate = function(reportRate, speedUnits) { var self = this.ptr; if (reportRate && typeof reportRate === 'object') reportRate = reportRate.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; _emscripten_bind_SIGContainAdapter_setReportRate_2(self, reportRate, speedUnits); -};; +}; -SIGContainAdapter.prototype['setReportSize'] = SIGContainAdapter.prototype.setReportSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reportSize, areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setReportSize'] = SIGContainAdapter.prototype.setReportSize = function(reportSize, areaUnits) { var self = this.ptr; if (reportSize && typeof reportSize === 'object') reportSize = reportSize.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; _emscripten_bind_SIGContainAdapter_setReportSize_2(self, reportSize, areaUnits); -};; +}; -SIGContainAdapter.prototype['setResourceArrivalTime'] = SIGContainAdapter.prototype.setResourceArrivalTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(arrivalTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setResourceArrivalTime'] = SIGContainAdapter.prototype.setResourceArrivalTime = function(arrivalTime, timeUnits) { var self = this.ptr; if (arrivalTime && typeof arrivalTime === 'object') arrivalTime = arrivalTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2(self, arrivalTime, timeUnits); -};; +}; -SIGContainAdapter.prototype['setResourceDuration'] = SIGContainAdapter.prototype.setResourceDuration = /** @suppress {undefinedVars, duplicate} @this{Object} */function(duration, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setResourceDuration'] = SIGContainAdapter.prototype.setResourceDuration = function(duration, timeUnits) { var self = this.ptr; if (duration && typeof duration === 'object') duration = duration.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGContainAdapter_setResourceDuration_2(self, duration, timeUnits); -};; +}; -SIGContainAdapter.prototype['setRetry'] = SIGContainAdapter.prototype.setRetry = /** @suppress {undefinedVars, duplicate} @this{Object} */function(retry) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setRetry'] = SIGContainAdapter.prototype.setRetry = function(retry) { var self = this.ptr; if (retry && typeof retry === 'object') retry = retry.ptr; _emscripten_bind_SIGContainAdapter_setRetry_1(self, retry); -};; +}; -SIGContainAdapter.prototype['setTactic'] = SIGContainAdapter.prototype.setTactic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(tactic) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['setTactic'] = SIGContainAdapter.prototype.setTactic = function(tactic) { var self = this.ptr; if (tactic && typeof tactic === 'object') tactic = tactic.ptr; _emscripten_bind_SIGContainAdapter_setTactic_1(self, tactic); -};; +}; - SIGContainAdapter.prototype['__destroy__'] = SIGContainAdapter.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGContainAdapter.prototype['__destroy__'] = SIGContainAdapter.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter___destroy___0(self); }; -// SIGIgnite -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGIgnite() { + +// Interface: SIGIgnite + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGIgnite() { this.ptr = _emscripten_bind_SIGIgnite_SIGIgnite_0(); getCache(SIGIgnite)[this.ptr] = this; -};; +}; + SIGIgnite.prototype = Object.create(WrapperObject.prototype); SIGIgnite.prototype.constructor = SIGIgnite; SIGIgnite.prototype.__class__ = SIGIgnite; SIGIgnite.__cache__ = {}; Module['SIGIgnite'] = SIGIgnite; - -SIGIgnite.prototype['initializeMembers'] = SIGIgnite.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['initializeMembers'] = SIGIgnite.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGIgnite_initializeMembers_0(self); -};; +}; -SIGIgnite.prototype['getFuelBedType'] = SIGIgnite.prototype.getFuelBedType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getFuelBedType'] = SIGIgnite.prototype.getFuelBedType = function() { var self = this.ptr; return _emscripten_bind_SIGIgnite_getFuelBedType_0(self); -};; +}; -SIGIgnite.prototype['getLightningChargeType'] = SIGIgnite.prototype.getLightningChargeType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getLightningChargeType'] = SIGIgnite.prototype.getLightningChargeType = function() { var self = this.ptr; return _emscripten_bind_SIGIgnite_getLightningChargeType_0(self); -};; +}; -SIGIgnite.prototype['calculateFirebrandIgnitionProbability'] = SIGIgnite.prototype.calculateFirebrandIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['calculateFirebrandIgnitionProbability'] = SIGIgnite.prototype.calculateFirebrandIgnitionProbability = function() { var self = this.ptr; _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0(self); -};; +}; -SIGIgnite.prototype['calculateLightningIgnitionProbability'] = SIGIgnite.prototype.calculateLightningIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['calculateLightningIgnitionProbability'] = SIGIgnite.prototype.calculateLightningIgnitionProbability = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['setAirTemperature'] = SIGIgnite.prototype.setAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(airTemperature, temperatureUnites) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setAirTemperature'] = SIGIgnite.prototype.setAirTemperature = function(airTemperature, temperatureUnites) { var self = this.ptr; if (airTemperature && typeof airTemperature === 'object') airTemperature = airTemperature.ptr; if (temperatureUnites && typeof temperatureUnites === 'object') temperatureUnites = temperatureUnites.ptr; _emscripten_bind_SIGIgnite_setAirTemperature_2(self, airTemperature, temperatureUnites); -};; +}; -SIGIgnite.prototype['setDuffDepth'] = SIGIgnite.prototype.setDuffDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(duffDepth, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setDuffDepth'] = SIGIgnite.prototype.setDuffDepth = function(duffDepth, lengthUnits) { var self = this.ptr; if (duffDepth && typeof duffDepth === 'object') duffDepth = duffDepth.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGIgnite_setDuffDepth_2(self, duffDepth, lengthUnits); -};; +}; -SIGIgnite.prototype['setIgnitionFuelBedType'] = SIGIgnite.prototype.setIgnitionFuelBedType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelBedType_) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setIgnitionFuelBedType'] = SIGIgnite.prototype.setIgnitionFuelBedType = function(fuelBedType_) { var self = this.ptr; if (fuelBedType_ && typeof fuelBedType_ === 'object') fuelBedType_ = fuelBedType_.ptr; _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1(self, fuelBedType_); -};; +}; -SIGIgnite.prototype['setLightningChargeType'] = SIGIgnite.prototype.setLightningChargeType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lightningChargeType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setLightningChargeType'] = SIGIgnite.prototype.setLightningChargeType = function(lightningChargeType) { var self = this.ptr; if (lightningChargeType && typeof lightningChargeType === 'object') lightningChargeType = lightningChargeType.ptr; _emscripten_bind_SIGIgnite_setLightningChargeType_1(self, lightningChargeType); -};; +}; -SIGIgnite.prototype['setMoistureHundredHour'] = SIGIgnite.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setMoistureHundredHour'] = SIGIgnite.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGIgnite_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -};; +}; -SIGIgnite.prototype['setMoistureOneHour'] = SIGIgnite.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setMoistureOneHour'] = SIGIgnite.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGIgnite_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -};; +}; -SIGIgnite.prototype['setSunShade'] = SIGIgnite.prototype.setSunShade = /** @suppress {undefinedVars, duplicate} @this{Object} */function(sunShade, sunShadeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['setSunShade'] = SIGIgnite.prototype.setSunShade = function(sunShade, sunShadeUnits) { var self = this.ptr; if (sunShade && typeof sunShade === 'object') sunShade = sunShade.ptr; if (sunShadeUnits && typeof sunShadeUnits === 'object') sunShadeUnits = sunShadeUnits.ptr; _emscripten_bind_SIGIgnite_setSunShade_2(self, sunShade, sunShadeUnits); -};; +}; -SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInputs = function(moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; @@ -8936,522 +9293,609 @@ SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInpu if (duffDepthUnits && typeof duffDepthUnits === 'object') duffDepthUnits = duffDepthUnits.ptr; if (lightningChargeType && typeof lightningChargeType === 'object') lightningChargeType = lightningChargeType.ptr; _emscripten_bind_SIGIgnite_updateIgniteInputs_11(self, moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType); -};; +}; -SIGIgnite.prototype['getAirTemperature'] = SIGIgnite.prototype.getAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getAirTemperature'] = SIGIgnite.prototype.getAirTemperature = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getAirTemperature_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getDuffDepth'] = SIGIgnite.prototype.getDuffDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getDuffDepth'] = SIGIgnite.prototype.getDuffDepth = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getDuffDepth_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getFirebrandIgnitionProbability'] = SIGIgnite.prototype.getFirebrandIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getFirebrandIgnitionProbability'] = SIGIgnite.prototype.getFirebrandIgnitionProbability = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getFuelTemperature'] = SIGIgnite.prototype.getFuelTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getFuelTemperature'] = SIGIgnite.prototype.getFuelTemperature = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getFuelTemperature_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getMoistureHundredHour'] = SIGIgnite.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getMoistureHundredHour'] = SIGIgnite.prototype.getMoistureHundredHour = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getMoistureHundredHour_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getMoistureOneHour'] = SIGIgnite.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getMoistureOneHour'] = SIGIgnite.prototype.getMoistureOneHour = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getMoistureOneHour_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['getSunShade'] = SIGIgnite.prototype.getSunShade = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['getSunShade'] = SIGIgnite.prototype.getSunShade = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getSunShade_1(self, desiredUnits); -};; +}; -SIGIgnite.prototype['isFuelDepthNeeded'] = SIGIgnite.prototype.isFuelDepthNeeded = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['isFuelDepthNeeded'] = SIGIgnite.prototype.isFuelDepthNeeded = function() { var self = this.ptr; return !!(_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0(self)); -};; +}; + - SIGIgnite.prototype['__destroy__'] = SIGIgnite.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGIgnite.prototype['__destroy__'] = SIGIgnite.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGIgnite___destroy___0(self); }; -// SIGMoistureScenarios -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGMoistureScenarios() { + +// Interface: SIGMoistureScenarios + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGMoistureScenarios() { this.ptr = _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0(); getCache(SIGMoistureScenarios)[this.ptr] = this; -};; +}; + SIGMoistureScenarios.prototype = Object.create(WrapperObject.prototype); SIGMoistureScenarios.prototype.constructor = SIGMoistureScenarios; SIGMoistureScenarios.prototype.__class__ = SIGMoistureScenarios; SIGMoistureScenarios.__cache__ = {}; Module['SIGMoistureScenarios'] = SIGMoistureScenarios; - -SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1(self, index)); -};; +}; -SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByName'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByName'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1(self, name)); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioIndexByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioIndexByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioIndexByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1(self, name); -};; +}; -SIGMoistureScenarios.prototype['getNumberOfMoistureScenarios'] = SIGMoistureScenarios.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getNumberOfMoistureScenarios'] = SIGMoistureScenarios.prototype.getNumberOfMoistureScenarios = function() { var self = this.ptr; return _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0(self); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1(self, index)); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1(self, name)); -};; +}; -SIGMoistureScenarios.prototype['getMoistureScenarioNameByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['getMoistureScenarioNameByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioNameByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1(self, index)); -};; +}; - SIGMoistureScenarios.prototype['__destroy__'] = SIGMoistureScenarios.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMoistureScenarios.prototype['__destroy__'] = SIGMoistureScenarios.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGMoistureScenarios___destroy___0(self); }; -// SIGSpot -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSpot() { + +// Interface: SIGSpot + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGSpot() { this.ptr = _emscripten_bind_SIGSpot_SIGSpot_0(); getCache(SIGSpot)[this.ptr] = this; -};; +}; + SIGSpot.prototype = Object.create(WrapperObject.prototype); SIGSpot.prototype.constructor = SIGSpot; SIGSpot.prototype.__class__ = SIGSpot; SIGSpot.__cache__ = {}; Module['SIGSpot'] = SIGSpot; - -SIGSpot.prototype['getDownwindCanopyMode'] = SIGSpot.prototype.getDownwindCanopyMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getDownwindCanopyMode'] = SIGSpot.prototype.getDownwindCanopyMode = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getDownwindCanopyMode_0(self); -};; +}; -SIGSpot.prototype['getLocation'] = SIGSpot.prototype.getLocation = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getLocation'] = SIGSpot.prototype.getLocation = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getLocation_0(self); -};; +}; -SIGSpot.prototype['getTreeSpecies'] = SIGSpot.prototype.getTreeSpecies = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getTreeSpecies'] = SIGSpot.prototype.getTreeSpecies = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getTreeSpecies_0(self); -};; +}; -SIGSpot.prototype['getBurningPileFlameHeight'] = SIGSpot.prototype.getBurningPileFlameHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getBurningPileFlameHeight'] = SIGSpot.prototype.getBurningPileFlameHeight = function(flameHeightUnits) { var self = this.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; return _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1(self, flameHeightUnits); -};; +}; -SIGSpot.prototype['getCoverHeightUsedForBurningPile'] = SIGSpot.prototype.getCoverHeightUsedForBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getCoverHeightUsedForBurningPile'] = SIGSpot.prototype.getCoverHeightUsedForBurningPile = function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1(self, coverHeightUnits); -};; +}; -SIGSpot.prototype['getCoverHeightUsedForSurfaceFire'] = SIGSpot.prototype.getCoverHeightUsedForSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getCoverHeightUsedForSurfaceFire'] = SIGSpot.prototype.getCoverHeightUsedForSurfaceFire = function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1(self, coverHeightUnits); -};; +}; -SIGSpot.prototype['getCoverHeightUsedForTorchingTrees'] = SIGSpot.prototype.getCoverHeightUsedForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getCoverHeightUsedForTorchingTrees'] = SIGSpot.prototype.getCoverHeightUsedForTorchingTrees = function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1(self, coverHeightUnits); -};; +}; -SIGSpot.prototype['getDBH'] = SIGSpot.prototype.getDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(DBHUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getDBH'] = SIGSpot.prototype.getDBH = function(DBHUnits) { var self = this.ptr; if (DBHUnits && typeof DBHUnits === 'object') DBHUnits = DBHUnits.ptr; return _emscripten_bind_SIGSpot_getDBH_1(self, DBHUnits); -};; +}; -SIGSpot.prototype['getDownwindCoverHeight'] = SIGSpot.prototype.getDownwindCoverHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getDownwindCoverHeight'] = SIGSpot.prototype.getDownwindCoverHeight = function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getDownwindCoverHeight_1(self, coverHeightUnits); -};; +}; -SIGSpot.prototype['getFlameDurationForTorchingTrees'] = SIGSpot.prototype.getFlameDurationForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(durationUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getFlameDurationForTorchingTrees'] = SIGSpot.prototype.getFlameDurationForTorchingTrees = function(durationUnits) { var self = this.ptr; if (durationUnits && typeof durationUnits === 'object') durationUnits = durationUnits.ptr; return _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1(self, durationUnits); -};; +}; -SIGSpot.prototype['getFlameHeightForTorchingTrees'] = SIGSpot.prototype.getFlameHeightForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getFlameHeightForTorchingTrees'] = SIGSpot.prototype.getFlameHeightForTorchingTrees = function(flameHeightUnits) { var self = this.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; return _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1(self, flameHeightUnits); -};; +}; -SIGSpot.prototype['getFlameRatioForTorchingTrees'] = SIGSpot.prototype.getFlameRatioForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getFlameRatioForTorchingTrees'] = SIGSpot.prototype.getFlameRatioForTorchingTrees = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0(self); -};; +}; -SIGSpot.prototype['getMaxFirebrandHeightFromBurningPile'] = SIGSpot.prototype.getMaxFirebrandHeightFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFirebrandHeightFromBurningPile'] = SIGSpot.prototype.getMaxFirebrandHeightFromBurningPile = function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1(self, firebrandHeightUnits); -};; +}; -SIGSpot.prototype['getMaxFirebrandHeightFromSurfaceFire'] = SIGSpot.prototype.getMaxFirebrandHeightFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFirebrandHeightFromSurfaceFire'] = SIGSpot.prototype.getMaxFirebrandHeightFromSurfaceFire = function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1(self, firebrandHeightUnits); -};; +}; -SIGSpot.prototype['getMaxFirebrandHeightFromTorchingTrees'] = SIGSpot.prototype.getMaxFirebrandHeightFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFirebrandHeightFromTorchingTrees'] = SIGSpot.prototype.getMaxFirebrandHeightFromTorchingTrees = function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1(self, firebrandHeightUnits); -};; +}; -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromBurningPile = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromSurfaceFire = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromTorchingTrees = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromBurningPile = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromSurfaceFire = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromTorchingTrees = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromActiveCrown'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromActiveCrown = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromActiveCrown'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromActiveCrown = function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1(self, spottingDistanceUnits); -};; +}; -SIGSpot.prototype['getRidgeToValleyDistance'] = SIGSpot.prototype.getRidgeToValleyDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getRidgeToValleyDistance'] = SIGSpot.prototype.getRidgeToValleyDistance = function(ridgeToValleyDistanceUnits) { var self = this.ptr; if (ridgeToValleyDistanceUnits && typeof ridgeToValleyDistanceUnits === 'object') ridgeToValleyDistanceUnits = ridgeToValleyDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1(self, ridgeToValleyDistanceUnits); -};; +}; -SIGSpot.prototype['getRidgeToValleyElevation'] = SIGSpot.prototype.getRidgeToValleyElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getRidgeToValleyElevation'] = SIGSpot.prototype.getRidgeToValleyElevation = function(elevationUnits) { var self = this.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; return _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1(self, elevationUnits); -};; +}; -SIGSpot.prototype['getSurfaceFlameLength'] = SIGSpot.prototype.getSurfaceFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(surfaceFlameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getSurfaceFlameLength'] = SIGSpot.prototype.getSurfaceFlameLength = function(surfaceFlameLengthUnits) { var self = this.ptr; if (surfaceFlameLengthUnits && typeof surfaceFlameLengthUnits === 'object') surfaceFlameLengthUnits = surfaceFlameLengthUnits.ptr; return _emscripten_bind_SIGSpot_getSurfaceFlameLength_1(self, surfaceFlameLengthUnits); -};; +}; -SIGSpot.prototype['getTreeHeight'] = SIGSpot.prototype.getTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getTreeHeight'] = SIGSpot.prototype.getTreeHeight = function(treeHeightUnits) { var self = this.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; return _emscripten_bind_SIGSpot_getTreeHeight_1(self, treeHeightUnits); -};; +}; -SIGSpot.prototype['getWindSpeedAtTwentyFeet'] = SIGSpot.prototype.getWindSpeedAtTwentyFeet = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getWindSpeedAtTwentyFeet'] = SIGSpot.prototype.getWindSpeedAtTwentyFeet = function(windSpeedUnits) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; return _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1(self, windSpeedUnits); -};; +}; -SIGSpot.prototype['getTorchingTrees'] = SIGSpot.prototype.getTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['getTorchingTrees'] = SIGSpot.prototype.getTorchingTrees = function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getTorchingTrees_0(self); -};; +}; -SIGSpot.prototype['calculateAll'] = SIGSpot.prototype.calculateAll = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['calculateAll'] = SIGSpot.prototype.calculateAll = function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateAll_0(self); -};; +}; -SIGSpot.prototype['calculateSpottingDistanceFromBurningPile'] = SIGSpot.prototype.calculateSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['calculateSpottingDistanceFromBurningPile'] = SIGSpot.prototype.calculateSpottingDistanceFromBurningPile = function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0(self); -};; +}; -SIGSpot.prototype['calculateSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.calculateSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['calculateSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.calculateSpottingDistanceFromSurfaceFire = function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0(self); -};; +}; -SIGSpot.prototype['calculateSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.calculateSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['calculateSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.calculateSpottingDistanceFromTorchingTrees = function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0(self); -};; +}; -SIGSpot.prototype['initializeMembers'] = SIGSpot.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['initializeMembers'] = SIGSpot.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGSpot_initializeMembers_0(self); -};; +}; -SIGSpot.prototype['setActiveCrownFlameLength'] = SIGSpot.prototype.setActiveCrownFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setActiveCrownFlameLength'] = SIGSpot.prototype.setActiveCrownFlameLength = function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2(self, flameLength, flameLengthUnits); -};; +}; -SIGSpot.prototype['setBurningPileFlameHeight'] = SIGSpot.prototype.setBurningPileFlameHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(buringPileflameHeight, flameHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setBurningPileFlameHeight'] = SIGSpot.prototype.setBurningPileFlameHeight = function(buringPileflameHeight, flameHeightUnits) { var self = this.ptr; if (buringPileflameHeight && typeof buringPileflameHeight === 'object') buringPileflameHeight = buringPileflameHeight.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2(self, buringPileflameHeight, flameHeightUnits); -};; +}; -SIGSpot.prototype['setDBH'] = SIGSpot.prototype.setDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(DBH, DBHUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setDBH'] = SIGSpot.prototype.setDBH = function(DBH, DBHUnits) { var self = this.ptr; if (DBH && typeof DBH === 'object') DBH = DBH.ptr; if (DBHUnits && typeof DBHUnits === 'object') DBHUnits = DBHUnits.ptr; _emscripten_bind_SIGSpot_setDBH_2(self, DBH, DBHUnits); -};; +}; -SIGSpot.prototype['setDownwindCanopyMode'] = SIGSpot.prototype.setDownwindCanopyMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(downwindCanopyMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setDownwindCanopyMode'] = SIGSpot.prototype.setDownwindCanopyMode = function(downwindCanopyMode) { var self = this.ptr; if (downwindCanopyMode && typeof downwindCanopyMode === 'object') downwindCanopyMode = downwindCanopyMode.ptr; _emscripten_bind_SIGSpot_setDownwindCanopyMode_1(self, downwindCanopyMode); -};; +}; -SIGSpot.prototype['setDownwindCoverHeight'] = SIGSpot.prototype.setDownwindCoverHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(downwindCoverHeight, coverHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setDownwindCoverHeight'] = SIGSpot.prototype.setDownwindCoverHeight = function(downwindCoverHeight, coverHeightUnits) { var self = this.ptr; if (downwindCoverHeight && typeof downwindCoverHeight === 'object') downwindCoverHeight = downwindCoverHeight.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; _emscripten_bind_SIGSpot_setDownwindCoverHeight_2(self, downwindCoverHeight, coverHeightUnits); -};; +}; -SIGSpot.prototype['setFireType'] = SIGSpot.prototype.setFireType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setFireType'] = SIGSpot.prototype.setFireType = function(fireType) { var self = this.ptr; if (fireType && typeof fireType === 'object') fireType = fireType.ptr; _emscripten_bind_SIGSpot_setFireType_1(self, fireType); -};; +}; -SIGSpot.prototype['setFlameLength'] = SIGSpot.prototype.setFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setFlameLength'] = SIGSpot.prototype.setFlameLength = function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_setFlameLength_2(self, flameLength, flameLengthUnits); -};; +}; -SIGSpot.prototype['setFirelineIntensity'] = SIGSpot.prototype.setFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setFirelineIntensity'] = SIGSpot.prototype.setFirelineIntensity = function(firelineIntensity, firelineIntensityUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGSpot_setFirelineIntensity_2(self, firelineIntensity, firelineIntensityUnits); -};; +}; -SIGSpot.prototype['setLocation'] = SIGSpot.prototype.setLocation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setLocation'] = SIGSpot.prototype.setLocation = function(location) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; _emscripten_bind_SIGSpot_setLocation_1(self, location); -};; +}; -SIGSpot.prototype['setRidgeToValleyDistance'] = SIGSpot.prototype.setRidgeToValleyDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyDistance, ridgeToValleyDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setRidgeToValleyDistance'] = SIGSpot.prototype.setRidgeToValleyDistance = function(ridgeToValleyDistance, ridgeToValleyDistanceUnits) { var self = this.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; if (ridgeToValleyDistanceUnits && typeof ridgeToValleyDistanceUnits === 'object') ridgeToValleyDistanceUnits = ridgeToValleyDistanceUnits.ptr; _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2(self, ridgeToValleyDistance, ridgeToValleyDistanceUnits); -};; +}; -SIGSpot.prototype['setRidgeToValleyElevation'] = SIGSpot.prototype.setRidgeToValleyElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyElevation, elevationUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setRidgeToValleyElevation'] = SIGSpot.prototype.setRidgeToValleyElevation = function(ridgeToValleyElevation, elevationUnits) { var self = this.ptr; if (ridgeToValleyElevation && typeof ridgeToValleyElevation === 'object') ridgeToValleyElevation = ridgeToValleyElevation.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2(self, ridgeToValleyElevation, elevationUnits); -};; +}; -SIGSpot.prototype['setTorchingTrees'] = SIGSpot.prototype.setTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(torchingTrees) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setTorchingTrees'] = SIGSpot.prototype.setTorchingTrees = function(torchingTrees) { var self = this.ptr; if (torchingTrees && typeof torchingTrees === 'object') torchingTrees = torchingTrees.ptr; _emscripten_bind_SIGSpot_setTorchingTrees_1(self, torchingTrees); -};; +}; -SIGSpot.prototype['setTreeHeight'] = SIGSpot.prototype.setTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeight, treeHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setTreeHeight'] = SIGSpot.prototype.setTreeHeight = function(treeHeight, treeHeightUnits) { var self = this.ptr; if (treeHeight && typeof treeHeight === 'object') treeHeight = treeHeight.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; _emscripten_bind_SIGSpot_setTreeHeight_2(self, treeHeight, treeHeightUnits); -};; +}; -SIGSpot.prototype['setTreeSpecies'] = SIGSpot.prototype.setTreeSpecies = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeSpecies) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setTreeSpecies'] = SIGSpot.prototype.setTreeSpecies = function(treeSpecies) { var self = this.ptr; if (treeSpecies && typeof treeSpecies === 'object') treeSpecies = treeSpecies.ptr; _emscripten_bind_SIGSpot_setTreeSpecies_1(self, treeSpecies); -};; +}; -SIGSpot.prototype['setWindSpeedAtTwentyFeet'] = SIGSpot.prototype.setWindSpeedAtTwentyFeet = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTwentyFeet, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setWindSpeedAtTwentyFeet'] = SIGSpot.prototype.setWindSpeedAtTwentyFeet = function(windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2(self, windSpeedAtTwentyFeet, windSpeedUnits); -};; +}; -SIGSpot.prototype['setWindSpeed'] = SIGSpot.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setWindSpeed'] = SIGSpot.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_setWindSpeed_2(self, windSpeed, windSpeedUnits); -};; +}; -SIGSpot.prototype['setWindSpeedAndWindHeightInputMode'] = SIGSpot.prototype.setWindSpeedAndWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits, windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setWindSpeedAndWindHeightInputMode'] = SIGSpot.prototype.setWindSpeedAndWindHeightInputMode = function(windSpeed, windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3(self, windSpeed, windSpeedUnits, windHeightInputMode); -};; +}; -SIGSpot.prototype['setWindHeightInputMode'] = SIGSpot.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['setWindHeightInputMode'] = SIGSpot.prototype.setWindHeightInputMode = function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSpot_setWindHeightInputMode_1(self, windHeightInputMode); -};; +}; -SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSpotInputsForBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSpotInputsForBurningPile = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -9466,9 +9910,10 @@ SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSp if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits); -};; +}; -SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSpotInputsForSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSpotInputsForSurfaceFire = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -9483,9 +9928,10 @@ SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSp if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits); -};; +}; -SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.updateSpotInputsForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.updateSpotInputsForTorchingTrees = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -9504,62 +9950,74 @@ SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.update if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits); -};; +}; - SIGSpot.prototype['__destroy__'] = SIGSpot.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSpot.prototype['__destroy__'] = SIGSpot.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGSpot___destroy___0(self); }; -// SIGFuelModels -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGFuelModels(rhs) { + +// Interface: SIGFuelModels + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGFuelModels(rhs) { if (rhs && typeof rhs === 'object') rhs = rhs.ptr; if (rhs === undefined) { this.ptr = _emscripten_bind_SIGFuelModels_SIGFuelModels_0(); getCache(SIGFuelModels)[this.ptr] = this;return } this.ptr = _emscripten_bind_SIGFuelModels_SIGFuelModels_1(rhs); getCache(SIGFuelModels)[this.ptr] = this; -};; +}; + SIGFuelModels.prototype = Object.create(WrapperObject.prototype); SIGFuelModels.prototype.constructor = SIGFuelModels; SIGFuelModels.prototype.__class__ = SIGFuelModels; SIGFuelModels.__cache__ = {}; Module['SIGFuelModels'] = SIGFuelModels; - -SIGFuelModels.prototype['equal'] = SIGFuelModels.prototype.equal = /** @suppress {undefinedVars, duplicate} @this{Object} */function(rhs) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['equal'] = SIGFuelModels.prototype.equal = function(rhs) { var self = this.ptr; if (rhs && typeof rhs === 'object') rhs = rhs.ptr; return wrapPointer(_emscripten_bind_SIGFuelModels_equal_1(self, rhs), SIGFuelModels); -};; +}; -SIGFuelModels.prototype['clearCustomFuelModel'] = SIGFuelModels.prototype.clearCustomFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['clearCustomFuelModel'] = SIGFuelModels.prototype.clearCustomFuelModel = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['getIsDynamic'] = SIGFuelModels.prototype.getIsDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getIsDynamic'] = SIGFuelModels.prototype.getIsDynamic = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_getIsDynamic_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['isAllFuelLoadZero'] = SIGFuelModels.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['isAllFuelLoadZero'] = SIGFuelModels.prototype.isAllFuelLoadZero = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['isFuelModelDefined'] = SIGFuelModels.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['isFuelModelDefined'] = SIGFuelModels.prototype.isFuelModelDefined = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isFuelModelDefined_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['isFuelModelReserved'] = SIGFuelModels.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['isFuelModelReserved'] = SIGFuelModels.prototype.isFuelModelReserved = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isFuelModelReserved_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCustomFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCustomFuelModel = function(fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic) { var self = this.ptr; ensureCache.prepare(); if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; @@ -9586,1433 +10044,1665 @@ SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCusto if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; if (isDynamic && typeof isDynamic === 'object') isDynamic = isDynamic.ptr; return !!(_emscripten_bind_SIGFuelModels_setCustomFuelModel_21(self, fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic)); -};; +}; -SIGFuelModels.prototype['getFuelCode'] = SIGFuelModels.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelCode'] = SIGFuelModels.prototype.getFuelCode = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGFuelModels_getFuelCode_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['getFuelName'] = SIGFuelModels.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelName'] = SIGFuelModels.prototype.getFuelName = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGFuelModels_getFuelName_1(self, fuelModelNumber)); -};; +}; -SIGFuelModels.prototype['getFuelLoadHundredHour'] = SIGFuelModels.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadHundredHour'] = SIGFuelModels.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelLoadLiveHerbaceous'] = SIGFuelModels.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadLiveHerbaceous'] = SIGFuelModels.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelLoadLiveWoody'] = SIGFuelModels.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadLiveWoody'] = SIGFuelModels.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelLoadOneHour'] = SIGFuelModels.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadOneHour'] = SIGFuelModels.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelLoadTenHour'] = SIGFuelModels.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelLoadTenHour'] = SIGFuelModels.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGFuelModels.prototype['getFuelbedDepth'] = SIGFuelModels.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getFuelbedDepth'] = SIGFuelModels.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -};; +}; -SIGFuelModels.prototype['getHeatOfCombustionDead'] = SIGFuelModels.prototype.getHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getHeatOfCombustionDead'] = SIGFuelModels.prototype.getHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGFuelModels.prototype['getMoistureOfExtinctionDead'] = SIGFuelModels.prototype.getMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getMoistureOfExtinctionDead'] = SIGFuelModels.prototype.getMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -};; +}; -SIGFuelModels.prototype['getSavrLiveHerbaceous'] = SIGFuelModels.prototype.getSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getSavrLiveHerbaceous'] = SIGFuelModels.prototype.getSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGFuelModels.prototype['getSavrLiveWoody'] = SIGFuelModels.prototype.getSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getSavrLiveWoody'] = SIGFuelModels.prototype.getSavrLiveWoody = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGFuelModels.prototype['getSavrOneHour'] = SIGFuelModels.prototype.getSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getSavrOneHour'] = SIGFuelModels.prototype.getSavrOneHour = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrOneHour_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGFuelModels.prototype['getHeatOfCombustionLive'] = SIGFuelModels.prototype.getHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['getHeatOfCombustionLive'] = SIGFuelModels.prototype.getHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; + - SIGFuelModels.prototype['__destroy__'] = SIGFuelModels.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFuelModels.prototype['__destroy__'] = SIGFuelModels.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGFuelModels___destroy___0(self); }; -// SIGSurface -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSurface(fuelModels) { + +// Interface: SIGSurface + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGSurface(fuelModels) { if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; this.ptr = _emscripten_bind_SIGSurface_SIGSurface_1(fuelModels); getCache(SIGSurface)[this.ptr] = this; -};; +}; + SIGSurface.prototype = Object.create(WrapperObject.prototype); SIGSurface.prototype.constructor = SIGSurface; SIGSurface.prototype.__class__ = SIGSurface; SIGSurface.__cache__ = {}; Module['SIGSurface'] = SIGSurface; - -SIGSurface.prototype['getAspenFireSeverity'] = SIGSurface.prototype.getAspenFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenFireSeverity'] = SIGSurface.prototype.getAspenFireSeverity = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspenFireSeverity_0(self); -};; +}; -SIGSurface.prototype['getChaparralFuelType'] = SIGSurface.prototype.getChaparralFuelType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralFuelType'] = SIGSurface.prototype.getChaparralFuelType = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelType_0(self); -};; +}; -SIGSurface.prototype['getMoistureInputMode'] = SIGSurface.prototype.getMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureInputMode'] = SIGSurface.prototype.getMoistureInputMode = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getMoistureInputMode_0(self); -};; +}; -SIGSurface.prototype['getWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.getWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.getWindAdjustmentFactorCalculationMethod = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0(self); -};; +}; -SIGSurface.prototype['getWindAndSpreadOrientationMode'] = SIGSurface.prototype.getWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindAndSpreadOrientationMode'] = SIGSurface.prototype.getWindAndSpreadOrientationMode = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0(self); -};; +}; -SIGSurface.prototype['getWindHeightInputMode'] = SIGSurface.prototype.getWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindHeightInputMode'] = SIGSurface.prototype.getWindHeightInputMode = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindHeightInputMode_0(self); -};; +}; -SIGSurface.prototype['getWindUpslopeAlignmentMode'] = SIGSurface.prototype.getWindUpslopeAlignmentMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindUpslopeAlignmentMode'] = SIGSurface.prototype.getWindUpslopeAlignmentMode = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0(self); -};; +}; -SIGSurface.prototype['getSurfaceRunInDirectionOf'] = SIGSurface.prototype.getSurfaceRunInDirectionOf = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSurfaceRunInDirectionOf'] = SIGSurface.prototype.getSurfaceRunInDirectionOf = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0(self); -};; +}; -SIGSurface.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1(self, index)); -};; +}; -SIGSurface.prototype['getIsMoistureScenarioDefinedByName'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsMoistureScenarioDefinedByName'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1(self, name)); -};; +}; -SIGSurface.prototype['getIsUsingChaparral'] = SIGSurface.prototype.getIsUsingChaparral = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsUsingChaparral'] = SIGSurface.prototype.getIsUsingChaparral = function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingChaparral_0(self)); -};; +}; -SIGSurface.prototype['getIsUsingPalmettoGallberry'] = SIGSurface.prototype.getIsUsingPalmettoGallberry = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsUsingPalmettoGallberry'] = SIGSurface.prototype.getIsUsingPalmettoGallberry = function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0(self)); -};; +}; -SIGSurface.prototype['getIsUsingWesternAspen'] = SIGSurface.prototype.getIsUsingWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getIsUsingWesternAspen'] = SIGSurface.prototype.getIsUsingWesternAspen = function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0(self)); -};; +}; -SIGSurface.prototype['isAllFuelLoadZero'] = SIGSurface.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isAllFuelLoadZero'] = SIGSurface.prototype.isAllFuelLoadZero = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isAllFuelLoadZero_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['isFuelDynamic'] = SIGSurface.prototype.isFuelDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isFuelDynamic'] = SIGSurface.prototype.isFuelDynamic = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelDynamic_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['isFuelModelDefined'] = SIGSurface.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isFuelModelDefined'] = SIGSurface.prototype.isFuelModelDefined = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelModelDefined_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['isFuelModelReserved'] = SIGSurface.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isFuelModelReserved'] = SIGSurface.prototype.isFuelModelReserved = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelModelReserved_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['isMoistureClassInputNeededForCurrentFuelModel'] = SIGSurface.prototype.isMoistureClassInputNeededForCurrentFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureClass) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isMoistureClassInputNeededForCurrentFuelModel'] = SIGSurface.prototype.isMoistureClassInputNeededForCurrentFuelModel = function(moistureClass) { var self = this.ptr; if (moistureClass && typeof moistureClass === 'object') moistureClass = moistureClass.ptr; return !!(_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1(self, moistureClass)); -};; +}; -SIGSurface.prototype['isUsingTwoFuelModels'] = SIGSurface.prototype.isUsingTwoFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['isUsingTwoFuelModels'] = SIGSurface.prototype.isUsingTwoFuelModels = function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0(self)); -};; +}; -SIGSurface.prototype['setCurrentMoistureScenarioByIndex'] = SIGSurface.prototype.setCurrentMoistureScenarioByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCurrentMoistureScenarioByIndex'] = SIGSurface.prototype.setCurrentMoistureScenarioByIndex = function(moistureScenarioIndex) { var self = this.ptr; if (moistureScenarioIndex && typeof moistureScenarioIndex === 'object') moistureScenarioIndex = moistureScenarioIndex.ptr; return !!(_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1(self, moistureScenarioIndex)); -};; +}; -SIGSurface.prototype['setCurrentMoistureScenarioByName'] = SIGSurface.prototype.setCurrentMoistureScenarioByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioName) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCurrentMoistureScenarioByName'] = SIGSurface.prototype.setCurrentMoistureScenarioByName = function(moistureScenarioName) { var self = this.ptr; ensureCache.prepare(); if (moistureScenarioName && typeof moistureScenarioName === 'object') moistureScenarioName = moistureScenarioName.ptr; else moistureScenarioName = ensureString(moistureScenarioName); return !!(_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1(self, moistureScenarioName)); -};; +}; -SIGSurface.prototype['calculateFlameLength'] = SIGSurface.prototype.calculateFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['calculateFlameLength'] = SIGSurface.prototype.calculateFlameLength = function(firelineIntensity, firelineIntensityUnits, flameLengthUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_calculateFlameLength_3(self, firelineIntensity, firelineIntensityUnits, flameLengthUnits); -};; +}; -SIGSurface.prototype['getAgeOfRough'] = SIGSurface.prototype.getAgeOfRough = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAgeOfRough'] = SIGSurface.prototype.getAgeOfRough = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAgeOfRough_0(self); -};; +}; -SIGSurface.prototype['getAspect'] = SIGSurface.prototype.getAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspect'] = SIGSurface.prototype.getAspect = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspect_0(self); -};; +}; -SIGSurface.prototype['getAspenCuringLevel'] = SIGSurface.prototype.getAspenCuringLevel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(curingLevelUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenCuringLevel'] = SIGSurface.prototype.getAspenCuringLevel = function(curingLevelUnits) { var self = this.ptr; if (curingLevelUnits && typeof curingLevelUnits === 'object') curingLevelUnits = curingLevelUnits.ptr; return _emscripten_bind_SIGSurface_getAspenCuringLevel_1(self, curingLevelUnits); -};; +}; -SIGSurface.prototype['getAspenDBH'] = SIGSurface.prototype.getAspenDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbhUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenDBH'] = SIGSurface.prototype.getAspenDBH = function(dbhUnits) { var self = this.ptr; if (dbhUnits && typeof dbhUnits === 'object') dbhUnits = dbhUnits.ptr; return _emscripten_bind_SIGSurface_getAspenDBH_1(self, dbhUnits); -};; +}; -SIGSurface.prototype['getAspenLoadDeadOneHour'] = SIGSurface.prototype.getAspenLoadDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenLoadDeadOneHour'] = SIGSurface.prototype.getAspenLoadDeadOneHour = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getAspenLoadDeadTenHour'] = SIGSurface.prototype.getAspenLoadDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenLoadDeadTenHour'] = SIGSurface.prototype.getAspenLoadDeadTenHour = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getAspenLoadLiveHerbaceous'] = SIGSurface.prototype.getAspenLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenLoadLiveHerbaceous'] = SIGSurface.prototype.getAspenLoadLiveHerbaceous = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getAspenLoadLiveWoody'] = SIGSurface.prototype.getAspenLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenLoadLiveWoody'] = SIGSurface.prototype.getAspenLoadLiveWoody = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getAspenSavrDeadOneHour'] = SIGSurface.prototype.getAspenSavrDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenSavrDeadOneHour'] = SIGSurface.prototype.getAspenSavrDeadOneHour = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getAspenSavrDeadTenHour'] = SIGSurface.prototype.getAspenSavrDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenSavrDeadTenHour'] = SIGSurface.prototype.getAspenSavrDeadTenHour = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getAspenSavrLiveHerbaceous'] = SIGSurface.prototype.getAspenSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenSavrLiveHerbaceous'] = SIGSurface.prototype.getAspenSavrLiveHerbaceous = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getAspenSavrLiveWoody'] = SIGSurface.prototype.getAspenSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenSavrLiveWoody'] = SIGSurface.prototype.getAspenSavrLiveWoody = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getBackingFirelineIntensity'] = SIGSurface.prototype.getBackingFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBackingFirelineIntensity'] = SIGSurface.prototype.getBackingFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGSurface.prototype['getBackingFlameLength'] = SIGSurface.prototype.getBackingFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBackingFlameLength'] = SIGSurface.prototype.getBackingFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getBackingFlameLength_1(self, flameLengthUnits); -};; +}; -SIGSurface.prototype['getBackingSpreadDistance'] = SIGSurface.prototype.getBackingSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBackingSpreadDistance'] = SIGSurface.prototype.getBackingSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getBackingSpreadDistance_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getBackingSpreadRate'] = SIGSurface.prototype.getBackingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBackingSpreadRate'] = SIGSurface.prototype.getBackingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getBackingSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getBulkDensity'] = SIGSurface.prototype.getBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(densityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getBulkDensity'] = SIGSurface.prototype.getBulkDensity = function(densityUnits) { var self = this.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; return _emscripten_bind_SIGSurface_getBulkDensity_1(self, densityUnits); -};; +}; -SIGSurface.prototype['getCanopyCover'] = SIGSurface.prototype.getCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCanopyCover'] = SIGSurface.prototype.getCanopyCover = function(coverUnits) { var self = this.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; return _emscripten_bind_SIGSurface_getCanopyCover_1(self, coverUnits); -};; +}; -SIGSurface.prototype['getCanopyHeight'] = SIGSurface.prototype.getCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCanopyHeight'] = SIGSurface.prototype.getCanopyHeight = function(canopyHeightUnits) { var self = this.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; return _emscripten_bind_SIGSurface_getCanopyHeight_1(self, canopyHeightUnits); -};; +}; -SIGSurface.prototype['getChaparralAge'] = SIGSurface.prototype.getChaparralAge = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralAge'] = SIGSurface.prototype.getChaparralAge = function(ageUnits) { var self = this.ptr; if (ageUnits && typeof ageUnits === 'object') ageUnits = ageUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralAge_1(self, ageUnits); -};; +}; -SIGSurface.prototype['getChaparralDaysSinceMayFirst'] = SIGSurface.prototype.getChaparralDaysSinceMayFirst = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralDaysSinceMayFirst'] = SIGSurface.prototype.getChaparralDaysSinceMayFirst = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0(self); -};; +}; -SIGSurface.prototype['getChaparralDeadFuelFraction'] = SIGSurface.prototype.getChaparralDeadFuelFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralDeadFuelFraction'] = SIGSurface.prototype.getChaparralDeadFuelFraction = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0(self); -};; +}; -SIGSurface.prototype['getChaparralDeadMoistureOfExtinction'] = SIGSurface.prototype.getChaparralDeadMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralDeadMoistureOfExtinction'] = SIGSurface.prototype.getChaparralDeadMoistureOfExtinction = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getChaparralDensity'] = SIGSurface.prototype.getChaparralDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, densityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralDensity'] = SIGSurface.prototype.getChaparralDensity = function(lifeState, sizeClass, densityUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralDensity_3(self, lifeState, sizeClass, densityUnits); -};; +}; -SIGSurface.prototype['getChaparralFuelBedDepth'] = SIGSurface.prototype.getChaparralFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(depthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralFuelBedDepth'] = SIGSurface.prototype.getChaparralFuelBedDepth = function(depthUnits) { var self = this.ptr; if (depthUnits && typeof depthUnits === 'object') depthUnits = depthUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1(self, depthUnits); -};; +}; -SIGSurface.prototype['getChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.getChaparralFuelDeadLoadFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.getChaparralFuelDeadLoadFraction = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0(self); -};; +}; -SIGSurface.prototype['getChaparralHeatOfCombustion'] = SIGSurface.prototype.getChaparralHeatOfCombustion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralHeatOfCombustion'] = SIGSurface.prototype.getChaparralHeatOfCombustion = function(lifeState, sizeClass, heatOfCombustionUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3(self, lifeState, sizeClass, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getChaparralLiveMoistureOfExtinction'] = SIGSurface.prototype.getChaparralLiveMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLiveMoistureOfExtinction'] = SIGSurface.prototype.getChaparralLiveMoistureOfExtinction = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadDeadHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadDeadHalfInchToLessThanOneInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadDeadHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadDeadHalfInchToLessThanOneInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadDeadLessThanQuarterInch'] = SIGSurface.prototype.getChaparralLoadDeadLessThanQuarterInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadDeadLessThanQuarterInch'] = SIGSurface.prototype.getChaparralLoadDeadLessThanQuarterInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadDeadOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadDeadOneInchToThreeInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadDeadOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadDeadOneInchToThreeInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadDeadQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadDeadQuarterInchToLessThanHalfInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadDeadQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadDeadQuarterInchToLessThanHalfInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadLiveHalfInchToLessThanOneInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadLiveHalfInchToLessThanOneInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveLeaves'] = SIGSurface.prototype.getChaparralLoadLiveLeaves = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveLeaves'] = SIGSurface.prototype.getChaparralLoadLiveLeaves = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadLiveOneInchToThreeInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadLiveOneInchToThreeInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadLiveQuarterInchToLessThanHalfInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadLiveQuarterInchToLessThanHalfInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralLoadLiveStemsLessThanQuaterInch'] = SIGSurface.prototype.getChaparralLoadLiveStemsLessThanQuaterInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralLoadLiveStemsLessThanQuaterInch'] = SIGSurface.prototype.getChaparralLoadLiveStemsLessThanQuaterInch = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralMoisture'] = SIGSurface.prototype.getChaparralMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralMoisture'] = SIGSurface.prototype.getChaparralMoisture = function(lifeState, sizeClass, moistureUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralMoisture_3(self, lifeState, sizeClass, moistureUnits); -};; +}; -SIGSurface.prototype['getChaparralTotalDeadFuelLoad'] = SIGSurface.prototype.getChaparralTotalDeadFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralTotalDeadFuelLoad'] = SIGSurface.prototype.getChaparralTotalDeadFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralTotalFuelLoad'] = SIGSurface.prototype.getChaparralTotalFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralTotalFuelLoad'] = SIGSurface.prototype.getChaparralTotalFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getChaparralTotalLiveFuelLoad'] = SIGSurface.prototype.getChaparralTotalLiveFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getChaparralTotalLiveFuelLoad'] = SIGSurface.prototype.getChaparralTotalLiveFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getCharacteristicMoistureByLifeState'] = SIGSurface.prototype.getCharacteristicMoistureByLifeState = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCharacteristicMoistureByLifeState'] = SIGSurface.prototype.getCharacteristicMoistureByLifeState = function(lifeState, moistureUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2(self, lifeState, moistureUnits); -};; +}; -SIGSurface.prototype['getCharacteristicMoistureDead'] = SIGSurface.prototype.getCharacteristicMoistureDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCharacteristicMoistureDead'] = SIGSurface.prototype.getCharacteristicMoistureDead = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getCharacteristicMoistureLive'] = SIGSurface.prototype.getCharacteristicMoistureLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCharacteristicMoistureLive'] = SIGSurface.prototype.getCharacteristicMoistureLive = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getCharacteristicSAVR'] = SIGSurface.prototype.getCharacteristicSAVR = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCharacteristicSAVR'] = SIGSurface.prototype.getCharacteristicSAVR = function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicSAVR_1(self, savrUnits); -};; +}; -SIGSurface.prototype['getCrownRatio'] = SIGSurface.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getCrownRatio'] = SIGSurface.prototype.getCrownRatio = function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGSurface_getCrownRatio_1(self, crownRatioUnits); -};; +}; -SIGSurface.prototype['getDirectionOfMaxSpread'] = SIGSurface.prototype.getDirectionOfMaxSpread = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getDirectionOfMaxSpread'] = SIGSurface.prototype.getDirectionOfMaxSpread = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0(self); -};; +}; -SIGSurface.prototype['getDirectionOfInterest'] = SIGSurface.prototype.getDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getDirectionOfInterest'] = SIGSurface.prototype.getDirectionOfInterest = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfInterest_0(self); -};; +}; -SIGSurface.prototype['getDirectionOfBacking'] = SIGSurface.prototype.getDirectionOfBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getDirectionOfBacking'] = SIGSurface.prototype.getDirectionOfBacking = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfBacking_0(self); -};; +}; -SIGSurface.prototype['getDirectionOfFlanking'] = SIGSurface.prototype.getDirectionOfFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getDirectionOfFlanking'] = SIGSurface.prototype.getDirectionOfFlanking = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfFlanking_0(self); -};; +}; -SIGSurface.prototype['getElapsedTime'] = SIGSurface.prototype.getElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getElapsedTime'] = SIGSurface.prototype.getElapsedTime = function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGSurface_getElapsedTime_1(self, timeUnits); -};; +}; -SIGSurface.prototype['getEllipticalA'] = SIGSurface.prototype.getEllipticalA = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getEllipticalA'] = SIGSurface.prototype.getEllipticalA = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalA_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getEllipticalB'] = SIGSurface.prototype.getEllipticalB = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getEllipticalB'] = SIGSurface.prototype.getEllipticalB = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalB_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getEllipticalC'] = SIGSurface.prototype.getEllipticalC = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getEllipticalC'] = SIGSurface.prototype.getEllipticalC = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalC_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getFireLength'] = SIGSurface.prototype.getFireLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFireLength'] = SIGSurface.prototype.getFireLength = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFireLength_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getMaxFireWidth'] = SIGSurface.prototype.getMaxFireWidth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMaxFireWidth'] = SIGSurface.prototype.getMaxFireWidth = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getMaxFireWidth_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getFireArea'] = SIGSurface.prototype.getFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFireArea'] = SIGSurface.prototype.getFireArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGSurface_getFireArea_1(self, areaUnits); -};; +}; -SIGSurface.prototype['getFireEccentricity'] = SIGSurface.prototype.getFireEccentricity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFireEccentricity'] = SIGSurface.prototype.getFireEccentricity = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFireEccentricity_0(self); -};; +}; -SIGSurface.prototype['getFireLengthToWidthRatio'] = SIGSurface.prototype.getFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFireLengthToWidthRatio'] = SIGSurface.prototype.getFireLengthToWidthRatio = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0(self); -};; +}; -SIGSurface.prototype['getFirePerimeter'] = SIGSurface.prototype.getFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFirePerimeter'] = SIGSurface.prototype.getFirePerimeter = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFirePerimeter_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getFirelineIntensity'] = SIGSurface.prototype.getFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFirelineIntensity'] = SIGSurface.prototype.getFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGSurface.prototype['getFirelineIntensityInDirectionOfInterest'] = SIGSurface.prototype.getFirelineIntensityInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFirelineIntensityInDirectionOfInterest'] = SIGSurface.prototype.getFirelineIntensityInDirectionOfInterest = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1(self, firelineIntensityUnits); -};; +}; -SIGSurface.prototype['getFlameLength'] = SIGSurface.prototype.getFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlameLength'] = SIGSurface.prototype.getFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlameLength_1(self, flameLengthUnits); -};; +}; -SIGSurface.prototype['getFlameLengthInDirectionOfInterest'] = SIGSurface.prototype.getFlameLengthInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlameLengthInDirectionOfInterest'] = SIGSurface.prototype.getFlameLengthInDirectionOfInterest = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1(self, flameLengthUnits); -};; +}; -SIGSurface.prototype['getFlankingFirelineIntensity'] = SIGSurface.prototype.getFlankingFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlankingFirelineIntensity'] = SIGSurface.prototype.getFlankingFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGSurface.prototype['getFlankingFlameLength'] = SIGSurface.prototype.getFlankingFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlankingFlameLength'] = SIGSurface.prototype.getFlankingFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingFlameLength_1(self, flameLengthUnits); -};; +}; -SIGSurface.prototype['getFlankingSpreadRate'] = SIGSurface.prototype.getFlankingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlankingSpreadRate'] = SIGSurface.prototype.getFlankingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getFlankingSpreadDistance'] = SIGSurface.prototype.getFlankingSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFlankingSpreadDistance'] = SIGSurface.prototype.getFlankingSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getFuelHeatOfCombustionDead'] = SIGSurface.prototype.getFuelHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelHeatOfCombustionDead'] = SIGSurface.prototype.getFuelHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getFuelHeatOfCombustionLive'] = SIGSurface.prototype.getFuelHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelHeatOfCombustionLive'] = SIGSurface.prototype.getFuelHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getFuelLoadHundredHour'] = SIGSurface.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadHundredHour'] = SIGSurface.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelLoadLiveHerbaceous'] = SIGSurface.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadLiveHerbaceous'] = SIGSurface.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelLoadLiveWoody'] = SIGSurface.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadLiveWoody'] = SIGSurface.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelLoadOneHour'] = SIGSurface.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadOneHour'] = SIGSurface.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelLoadTenHour'] = SIGSurface.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelLoadTenHour'] = SIGSurface.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGSurface.prototype['getFuelMoistureOfExtinctionDead'] = SIGSurface.prototype.getFuelMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelMoistureOfExtinctionDead'] = SIGSurface.prototype.getFuelMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -};; +}; -SIGSurface.prototype['getFuelSavrLiveHerbaceous'] = SIGSurface.prototype.getFuelSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelSavrLiveHerbaceous'] = SIGSurface.prototype.getFuelSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGSurface.prototype['getFuelSavrLiveWoody'] = SIGSurface.prototype.getFuelSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelSavrLiveWoody'] = SIGSurface.prototype.getFuelSavrLiveWoody = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGSurface.prototype['getFuelSavrOneHour'] = SIGSurface.prototype.getFuelSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelSavrOneHour'] = SIGSurface.prototype.getFuelSavrOneHour = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrOneHour_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGSurface.prototype['getFuelbedDepth'] = SIGSurface.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelbedDepth'] = SIGSurface.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -};; +}; -SIGSurface.prototype['getHeadingSpreadRate'] = SIGSurface.prototype.getHeadingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeadingSpreadRate'] = SIGSurface.prototype.getHeadingSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getHeadingSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getHeadingToBackingRatio'] = SIGSurface.prototype.getHeadingToBackingRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeadingToBackingRatio'] = SIGSurface.prototype.getHeadingToBackingRatio = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0(self); -};; +}; -SIGSurface.prototype['getHeatPerUnitArea'] = SIGSurface.prototype.getHeatPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatPerUnitAreaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeatPerUnitArea'] = SIGSurface.prototype.getHeatPerUnitArea = function(heatPerUnitAreaUnits) { var self = this.ptr; if (heatPerUnitAreaUnits && typeof heatPerUnitAreaUnits === 'object') heatPerUnitAreaUnits = heatPerUnitAreaUnits.ptr; return _emscripten_bind_SIGSurface_getHeatPerUnitArea_1(self, heatPerUnitAreaUnits); -};; +}; -SIGSurface.prototype['getHeatSink'] = SIGSurface.prototype.getHeatSink = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatSinkUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeatSink'] = SIGSurface.prototype.getHeatSink = function(heatSinkUnits) { var self = this.ptr; if (heatSinkUnits && typeof heatSinkUnits === 'object') heatSinkUnits = heatSinkUnits.ptr; return _emscripten_bind_SIGSurface_getHeatSink_1(self, heatSinkUnits); -};; +}; -SIGSurface.prototype['getHeatSource'] = SIGSurface.prototype.getHeatSource = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatSourceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeatSource'] = SIGSurface.prototype.getHeatSource = function(heatSourceUnits) { var self = this.ptr; if (heatSourceUnits && typeof heatSourceUnits === 'object') heatSourceUnits = heatSourceUnits.ptr; return _emscripten_bind_SIGSurface_getHeatSource_1(self, heatSourceUnits); -};; +}; -SIGSurface.prototype['getHeightOfUnderstory'] = SIGSurface.prototype.getHeightOfUnderstory = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getHeightOfUnderstory'] = SIGSurface.prototype.getHeightOfUnderstory = function(heightUnits) { var self = this.ptr; if (heightUnits && typeof heightUnits === 'object') heightUnits = heightUnits.ptr; return _emscripten_bind_SIGSurface_getHeightOfUnderstory_1(self, heightUnits); -};; +}; -SIGSurface.prototype['getLiveFuelMoistureOfExtinction'] = SIGSurface.prototype.getLiveFuelMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getLiveFuelMoistureOfExtinction'] = SIGSurface.prototype.getLiveFuelMoistureOfExtinction = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMidflameWindspeed'] = SIGSurface.prototype.getMidflameWindspeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMidflameWindspeed'] = SIGSurface.prototype.getMidflameWindspeed = function(windSpeedUnits) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; return _emscripten_bind_SIGSurface_getMidflameWindspeed_1(self, windSpeedUnits); -};; +}; -SIGSurface.prototype['getMoistureDeadAggregateValue'] = SIGSurface.prototype.getMoistureDeadAggregateValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureDeadAggregateValue'] = SIGSurface.prototype.getMoistureDeadAggregateValue = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureHundredHour'] = SIGSurface.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureHundredHour'] = SIGSurface.prototype.getMoistureHundredHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureHundredHour_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureLiveAggregateValue'] = SIGSurface.prototype.getMoistureLiveAggregateValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureLiveAggregateValue'] = SIGSurface.prototype.getMoistureLiveAggregateValue = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureLiveHerbaceous'] = SIGSurface.prototype.getMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureLiveHerbaceous'] = SIGSurface.prototype.getMoistureLiveHerbaceous = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureLiveWoody'] = SIGSurface.prototype.getMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureLiveWoody'] = SIGSurface.prototype.getMoistureLiveWoody = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveWoody_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureOneHour'] = SIGSurface.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureOneHour'] = SIGSurface.prototype.getMoistureOneHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureOneHour_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioHundredHourByIndex'] = SIGSurface.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioHundredHourByIndex'] = SIGSurface.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioHundredHourByName'] = SIGSurface.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioHundredHourByName'] = SIGSurface.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioLiveWoodyByName'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioLiveWoodyByName'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioOneHourByIndex'] = SIGSurface.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioOneHourByIndex'] = SIGSurface.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioOneHourByName'] = SIGSurface.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioOneHourByName'] = SIGSurface.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioTenHourByIndex'] = SIGSurface.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioTenHourByIndex'] = SIGSurface.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureScenarioTenHourByName'] = SIGSurface.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioTenHourByName'] = SIGSurface.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -};; +}; -SIGSurface.prototype['getMoistureTenHour'] = SIGSurface.prototype.getMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureTenHour'] = SIGSurface.prototype.getMoistureTenHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureTenHour_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getOverstoryBasalArea'] = SIGSurface.prototype.getOverstoryBasalArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(basalAreaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getOverstoryBasalArea'] = SIGSurface.prototype.getOverstoryBasalArea = function(basalAreaUnits) { var self = this.ptr; if (basalAreaUnits && typeof basalAreaUnits === 'object') basalAreaUnits = basalAreaUnits.ptr; return _emscripten_bind_SIGSurface_getOverstoryBasalArea_1(self, basalAreaUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberryCoverage'] = SIGSurface.prototype.getPalmettoGallberryCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberryCoverage'] = SIGSurface.prototype.getPalmettoGallberryCoverage = function(coverUnits) { var self = this.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1(self, coverUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionDead'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionDead'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionDead = function(heatOfCombustionUnits) { var self = this.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1(self, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionLive'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionLive'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionLive = function(heatOfCombustionUnits) { var self = this.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1(self, heatOfCombustionUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberryMoistureOfExtinctionDead'] = SIGSurface.prototype.getPalmettoGallberryMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberryMoistureOfExtinctionDead'] = SIGSurface.prototype.getPalmettoGallberryMoistureOfExtinctionDead = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1(self, moistureUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyDeadFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyDeadFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFineFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyDeadFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyDeadFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFoliageLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadMediumFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyFuelBedDepth'] = SIGSurface.prototype.getPalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(depthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyFuelBedDepth'] = SIGSurface.prototype.getPalmettoGallberyFuelBedDepth = function(depthUnits) { var self = this.ptr; if (depthUnits && typeof depthUnits === 'object') depthUnits = depthUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1(self, depthUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyLitterLoad'] = SIGSurface.prototype.getPalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyLitterLoad'] = SIGSurface.prototype.getPalmettoGallberyLitterLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyLiveFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyLiveFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFineFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyLiveFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyLiveFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFoliageLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveMediumFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getReactionIntensity'] = SIGSurface.prototype.getReactionIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reactiontionIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getReactionIntensity'] = SIGSurface.prototype.getReactionIntensity = function(reactiontionIntensityUnits) { var self = this.ptr; if (reactiontionIntensityUnits && typeof reactiontionIntensityUnits === 'object') reactiontionIntensityUnits = reactiontionIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getReactionIntensity_1(self, reactiontionIntensityUnits); -};; +}; -SIGSurface.prototype['getResidenceTime'] = SIGSurface.prototype.getResidenceTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getResidenceTime'] = SIGSurface.prototype.getResidenceTime = function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGSurface_getResidenceTime_1(self, timeUnits); -};; +}; -SIGSurface.prototype['getSlope'] = SIGSurface.prototype.getSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSlope'] = SIGSurface.prototype.getSlope = function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSurface_getSlope_1(self, slopeUnits); -};; +}; -SIGSurface.prototype['getSlopeFactor'] = SIGSurface.prototype.getSlopeFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSlopeFactor'] = SIGSurface.prototype.getSlopeFactor = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getSlopeFactor_0(self); -};; +}; -SIGSurface.prototype['getSpreadDistance'] = SIGSurface.prototype.getSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSpreadDistance'] = SIGSurface.prototype.getSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadDistance_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getSpreadDistanceInDirectionOfInterest'] = SIGSurface.prototype.getSpreadDistanceInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSpreadDistanceInDirectionOfInterest'] = SIGSurface.prototype.getSpreadDistanceInDirectionOfInterest = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1(self, lengthUnits); -};; +}; -SIGSurface.prototype['getSpreadRate'] = SIGSurface.prototype.getSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSpreadRate'] = SIGSurface.prototype.getSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getSpreadRateInDirectionOfInterest'] = SIGSurface.prototype.getSpreadRateInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSpreadRateInDirectionOfInterest'] = SIGSurface.prototype.getSpreadRateInDirectionOfInterest = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1(self, spreadRateUnits); -};; +}; -SIGSurface.prototype['getSurfaceFireReactionIntensityForLifeState'] = SIGSurface.prototype.getSurfaceFireReactionIntensityForLifeState = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getSurfaceFireReactionIntensityForLifeState'] = SIGSurface.prototype.getSurfaceFireReactionIntensityForLifeState = function(lifeState) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; return _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1(self, lifeState); -};; +}; -SIGSurface.prototype['getTotalLiveFuelLoad'] = SIGSurface.prototype.getTotalLiveFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getTotalLiveFuelLoad'] = SIGSurface.prototype.getTotalLiveFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getTotalDeadFuelLoad'] = SIGSurface.prototype.getTotalDeadFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getTotalDeadFuelLoad'] = SIGSurface.prototype.getTotalDeadFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getTotalDeadHerbaceousFuelLoad'] = SIGSurface.prototype.getTotalDeadHerbaceousFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getTotalDeadHerbaceousFuelLoad'] = SIGSurface.prototype.getTotalDeadHerbaceousFuelLoad = function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1(self, loadingUnits); -};; +}; -SIGSurface.prototype['getWindDirection'] = SIGSurface.prototype.getWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindDirection'] = SIGSurface.prototype.getWindDirection = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindDirection_0(self); -};; +}; -SIGSurface.prototype['getWindSpeed'] = SIGSurface.prototype.getWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits, windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getWindSpeed'] = SIGSurface.prototype.getWindSpeed = function(windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; return _emscripten_bind_SIGSurface_getWindSpeed_2(self, windSpeedUnits, windHeightInputMode); -};; +}; -SIGSurface.prototype['getAspenFuelModelNumber'] = SIGSurface.prototype.getAspenFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getAspenFuelModelNumber'] = SIGSurface.prototype.getAspenFuelModelNumber = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0(self); -};; +}; -SIGSurface.prototype['getFuelModelNumber'] = SIGSurface.prototype.getFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelModelNumber'] = SIGSurface.prototype.getFuelModelNumber = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFuelModelNumber_0(self); -};; +}; -SIGSurface.prototype['getMoistureScenarioIndexByName'] = SIGSurface.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioIndexByName'] = SIGSurface.prototype.getMoistureScenarioIndexByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1(self, name); -};; +}; -SIGSurface.prototype['getNumberOfMoistureScenarios'] = SIGSurface.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getNumberOfMoistureScenarios'] = SIGSurface.prototype.getNumberOfMoistureScenarios = function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0(self); -};; +}; -SIGSurface.prototype['getFuelCode'] = SIGSurface.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelCode'] = SIGSurface.prototype.getFuelCode = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getFuelCode_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['getFuelName'] = SIGSurface.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getFuelName'] = SIGSurface.prototype.getFuelName = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getFuelName_1(self, fuelModelNumber)); -};; +}; -SIGSurface.prototype['getMoistureScenarioDescriptionByIndex'] = SIGSurface.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioDescriptionByIndex'] = SIGSurface.prototype.getMoistureScenarioDescriptionByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1(self, index)); -};; +}; -SIGSurface.prototype['getMoistureScenarioDescriptionByName'] = SIGSurface.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioDescriptionByName'] = SIGSurface.prototype.getMoistureScenarioDescriptionByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1(self, name)); -};; +}; -SIGSurface.prototype['getMoistureScenarioNameByIndex'] = SIGSurface.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['getMoistureScenarioNameByIndex'] = SIGSurface.prototype.getMoistureScenarioNameByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1(self, index)); -};; +}; -SIGSurface.prototype['doSurfaceRun'] = SIGSurface.prototype.doSurfaceRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['doSurfaceRun'] = SIGSurface.prototype.doSurfaceRun = function() { var self = this.ptr; _emscripten_bind_SIGSurface_doSurfaceRun_0(self); -};; +}; -SIGSurface.prototype['doSurfaceRunInDirectionOfInterest'] = SIGSurface.prototype.doSurfaceRunInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionOfInterest, directionMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['doSurfaceRunInDirectionOfInterest'] = SIGSurface.prototype.doSurfaceRunInDirectionOfInterest = function(directionOfInterest, directionMode) { var self = this.ptr; if (directionOfInterest && typeof directionOfInterest === 'object') directionOfInterest = directionOfInterest.ptr; if (directionMode && typeof directionMode === 'object') directionMode = directionMode.ptr; _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2(self, directionOfInterest, directionMode); -};; +}; -SIGSurface.prototype['doSurfaceRunInDirectionOfMaxSpread'] = SIGSurface.prototype.doSurfaceRunInDirectionOfMaxSpread = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['doSurfaceRunInDirectionOfMaxSpread'] = SIGSurface.prototype.doSurfaceRunInDirectionOfMaxSpread = function() { var self = this.ptr; _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0(self); -};; +}; -SIGSurface.prototype['initializeMembers'] = SIGSurface.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['initializeMembers'] = SIGSurface.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGSurface_initializeMembers_0(self); -};; +}; -SIGSurface.prototype['setAgeOfRough'] = SIGSurface.prototype.setAgeOfRough = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAgeOfRough'] = SIGSurface.prototype.setAgeOfRough = function(ageOfRough) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; _emscripten_bind_SIGSurface_setAgeOfRough_1(self, ageOfRough); -};; +}; -SIGSurface.prototype['setAspect'] = SIGSurface.prototype.setAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspect) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspect'] = SIGSurface.prototype.setAspect = function(aspect) { var self = this.ptr; if (aspect && typeof aspect === 'object') aspect = aspect.ptr; _emscripten_bind_SIGSurface_setAspect_1(self, aspect); -};; +}; -SIGSurface.prototype['setAspenCuringLevel'] = SIGSurface.prototype.setAspenCuringLevel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenCuringLevel, curingLevelUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspenCuringLevel'] = SIGSurface.prototype.setAspenCuringLevel = function(aspenCuringLevel, curingLevelUnits) { var self = this.ptr; if (aspenCuringLevel && typeof aspenCuringLevel === 'object') aspenCuringLevel = aspenCuringLevel.ptr; if (curingLevelUnits && typeof curingLevelUnits === 'object') curingLevelUnits = curingLevelUnits.ptr; _emscripten_bind_SIGSurface_setAspenCuringLevel_2(self, aspenCuringLevel, curingLevelUnits); -};; +}; -SIGSurface.prototype['setAspenDBH'] = SIGSurface.prototype.setAspenDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbh, dbhUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspenDBH'] = SIGSurface.prototype.setAspenDBH = function(dbh, dbhUnits) { var self = this.ptr; if (dbh && typeof dbh === 'object') dbh = dbh.ptr; if (dbhUnits && typeof dbhUnits === 'object') dbhUnits = dbhUnits.ptr; _emscripten_bind_SIGSurface_setAspenDBH_2(self, dbh, dbhUnits); -};; +}; -SIGSurface.prototype['setAspenFireSeverity'] = SIGSurface.prototype.setAspenFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFireSeverity) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspenFireSeverity'] = SIGSurface.prototype.setAspenFireSeverity = function(aspenFireSeverity) { var self = this.ptr; if (aspenFireSeverity && typeof aspenFireSeverity === 'object') aspenFireSeverity = aspenFireSeverity.ptr; _emscripten_bind_SIGSurface_setAspenFireSeverity_1(self, aspenFireSeverity); -};; +}; -SIGSurface.prototype['setAspenFuelModelNumber'] = SIGSurface.prototype.setAspenFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setAspenFuelModelNumber'] = SIGSurface.prototype.setAspenFuelModelNumber = function(aspenFuelModelNumber) { var self = this.ptr; if (aspenFuelModelNumber && typeof aspenFuelModelNumber === 'object') aspenFuelModelNumber = aspenFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1(self, aspenFuelModelNumber); -};; +}; -SIGSurface.prototype['setCanopyCover'] = SIGSurface.prototype.setCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyCover, coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCanopyCover'] = SIGSurface.prototype.setCanopyCover = function(canopyCover, coverUnits) { var self = this.ptr; if (canopyCover && typeof canopyCover === 'object') canopyCover = canopyCover.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setCanopyCover_2(self, canopyCover, coverUnits); -};; +}; -SIGSurface.prototype['setCanopyHeight'] = SIGSurface.prototype.setCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeight, canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCanopyHeight'] = SIGSurface.prototype.setCanopyHeight = function(canopyHeight, canopyHeightUnits) { var self = this.ptr; if (canopyHeight && typeof canopyHeight === 'object') canopyHeight = canopyHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGSurface_setCanopyHeight_2(self, canopyHeight, canopyHeightUnits); -};; +}; -SIGSurface.prototype['setChaparralFuelBedDepth'] = SIGSurface.prototype.setChaparralFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelBedDepth, depthUnts) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralFuelBedDepth'] = SIGSurface.prototype.setChaparralFuelBedDepth = function(chaparralFuelBedDepth, depthUnts) { var self = this.ptr; if (chaparralFuelBedDepth && typeof chaparralFuelBedDepth === 'object') chaparralFuelBedDepth = chaparralFuelBedDepth.ptr; if (depthUnts && typeof depthUnts === 'object') depthUnts = depthUnts.ptr; _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2(self, chaparralFuelBedDepth, depthUnts); -};; +}; -SIGSurface.prototype['setChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.setChaparralFuelDeadLoadFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelDeadLoadFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.setChaparralFuelDeadLoadFraction = function(chaparralFuelDeadLoadFraction) { var self = this.ptr; if (chaparralFuelDeadLoadFraction && typeof chaparralFuelDeadLoadFraction === 'object') chaparralFuelDeadLoadFraction = chaparralFuelDeadLoadFraction.ptr; _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1(self, chaparralFuelDeadLoadFraction); -};; +}; -SIGSurface.prototype['setChaparralFuelLoadInputMode'] = SIGSurface.prototype.setChaparralFuelLoadInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelLoadInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralFuelLoadInputMode'] = SIGSurface.prototype.setChaparralFuelLoadInputMode = function(fuelLoadInputMode) { var self = this.ptr; if (fuelLoadInputMode && typeof fuelLoadInputMode === 'object') fuelLoadInputMode = fuelLoadInputMode.ptr; _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1(self, fuelLoadInputMode); -};; +}; -SIGSurface.prototype['setChaparralFuelType'] = SIGSurface.prototype.setChaparralFuelType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralFuelType'] = SIGSurface.prototype.setChaparralFuelType = function(chaparralFuelType) { var self = this.ptr; if (chaparralFuelType && typeof chaparralFuelType === 'object') chaparralFuelType = chaparralFuelType.ptr; _emscripten_bind_SIGSurface_setChaparralFuelType_1(self, chaparralFuelType); -};; +}; -SIGSurface.prototype['setChaparralTotalFuelLoad'] = SIGSurface.prototype.setChaparralTotalFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralTotalFuelLoad, fuelLoadUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setChaparralTotalFuelLoad'] = SIGSurface.prototype.setChaparralTotalFuelLoad = function(chaparralTotalFuelLoad, fuelLoadUnits) { var self = this.ptr; if (chaparralTotalFuelLoad && typeof chaparralTotalFuelLoad === 'object') chaparralTotalFuelLoad = chaparralTotalFuelLoad.ptr; if (fuelLoadUnits && typeof fuelLoadUnits === 'object') fuelLoadUnits = fuelLoadUnits.ptr; _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2(self, chaparralTotalFuelLoad, fuelLoadUnits); -};; +}; -SIGSurface.prototype['setCrownRatio'] = SIGSurface.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setCrownRatio'] = SIGSurface.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_setCrownRatio_2(self, crownRatio, crownRatioUnits); -};; +}; -SIGSurface.prototype['setDirectionOfInterest'] = SIGSurface.prototype.setDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionOfInterest) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setDirectionOfInterest'] = SIGSurface.prototype.setDirectionOfInterest = function(directionOfInterest) { var self = this.ptr; if (directionOfInterest && typeof directionOfInterest === 'object') directionOfInterest = directionOfInterest.ptr; _emscripten_bind_SIGSurface_setDirectionOfInterest_1(self, directionOfInterest); -};; +}; -SIGSurface.prototype['setElapsedTime'] = SIGSurface.prototype.setElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setElapsedTime'] = SIGSurface.prototype.setElapsedTime = function(elapsedTime, timeUnits) { var self = this.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGSurface_setElapsedTime_2(self, elapsedTime, timeUnits); -};; +}; -SIGSurface.prototype['setFirstFuelModelNumber'] = SIGSurface.prototype.setFirstFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setFirstFuelModelNumber'] = SIGSurface.prototype.setFirstFuelModelNumber = function(firstFuelModelNumber) { var self = this.ptr; if (firstFuelModelNumber && typeof firstFuelModelNumber === 'object') firstFuelModelNumber = firstFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1(self, firstFuelModelNumber); -};; +}; -SIGSurface.prototype['setFuelModels'] = SIGSurface.prototype.setFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModels) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setFuelModels'] = SIGSurface.prototype.setFuelModels = function(fuelModels) { var self = this.ptr; if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; _emscripten_bind_SIGSurface_setFuelModels_1(self, fuelModels); -};; +}; -SIGSurface.prototype['setHeightOfUnderstory'] = SIGSurface.prototype.setHeightOfUnderstory = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightOfUnderstory, heightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setHeightOfUnderstory'] = SIGSurface.prototype.setHeightOfUnderstory = function(heightOfUnderstory, heightUnits) { var self = this.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; if (heightUnits && typeof heightUnits === 'object') heightUnits = heightUnits.ptr; _emscripten_bind_SIGSurface_setHeightOfUnderstory_2(self, heightOfUnderstory, heightUnits); -};; +}; -SIGSurface.prototype['setIsUsingChaparral'] = SIGSurface.prototype.setIsUsingChaparral = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingChaparral) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setIsUsingChaparral'] = SIGSurface.prototype.setIsUsingChaparral = function(isUsingChaparral) { var self = this.ptr; if (isUsingChaparral && typeof isUsingChaparral === 'object') isUsingChaparral = isUsingChaparral.ptr; _emscripten_bind_SIGSurface_setIsUsingChaparral_1(self, isUsingChaparral); -};; +}; -SIGSurface.prototype['setIsUsingPalmettoGallberry'] = SIGSurface.prototype.setIsUsingPalmettoGallberry = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingPalmettoGallberry) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setIsUsingPalmettoGallberry'] = SIGSurface.prototype.setIsUsingPalmettoGallberry = function(isUsingPalmettoGallberry) { var self = this.ptr; if (isUsingPalmettoGallberry && typeof isUsingPalmettoGallberry === 'object') isUsingPalmettoGallberry = isUsingPalmettoGallberry.ptr; _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1(self, isUsingPalmettoGallberry); -};; +}; -SIGSurface.prototype['setIsUsingWesternAspen'] = SIGSurface.prototype.setIsUsingWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingWesternAspen) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setIsUsingWesternAspen'] = SIGSurface.prototype.setIsUsingWesternAspen = function(isUsingWesternAspen) { var self = this.ptr; if (isUsingWesternAspen && typeof isUsingWesternAspen === 'object') isUsingWesternAspen = isUsingWesternAspen.ptr; _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1(self, isUsingWesternAspen); -};; +}; -SIGSurface.prototype['setMoistureDeadAggregate'] = SIGSurface.prototype.setMoistureDeadAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureDead, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureDeadAggregate'] = SIGSurface.prototype.setMoistureDeadAggregate = function(moistureDead, moistureUnits) { var self = this.ptr; if (moistureDead && typeof moistureDead === 'object') moistureDead = moistureDead.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2(self, moistureDead, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureHundredHour'] = SIGSurface.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureHundredHour'] = SIGSurface.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureInputMode'] = SIGSurface.prototype.setMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureInputMode'] = SIGSurface.prototype.setMoistureInputMode = function(moistureInputMode) { var self = this.ptr; if (moistureInputMode && typeof moistureInputMode === 'object') moistureInputMode = moistureInputMode.ptr; _emscripten_bind_SIGSurface_setMoistureInputMode_1(self, moistureInputMode); -};; +}; -SIGSurface.prototype['setMoistureLiveAggregate'] = SIGSurface.prototype.setMoistureLiveAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLive, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureLiveAggregate'] = SIGSurface.prototype.setMoistureLiveAggregate = function(moistureLive, moistureUnits) { var self = this.ptr; if (moistureLive && typeof moistureLive === 'object') moistureLive = moistureLive.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2(self, moistureLive, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureLiveHerbaceous'] = SIGSurface.prototype.setMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveHerbaceous, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureLiveHerbaceous'] = SIGSurface.prototype.setMoistureLiveHerbaceous = function(moistureLiveHerbaceous, moistureUnits) { var self = this.ptr; if (moistureLiveHerbaceous && typeof moistureLiveHerbaceous === 'object') moistureLiveHerbaceous = moistureLiveHerbaceous.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2(self, moistureLiveHerbaceous, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureLiveWoody'] = SIGSurface.prototype.setMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveWoody, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureLiveWoody'] = SIGSurface.prototype.setMoistureLiveWoody = function(moistureLiveWoody, moistureUnits) { var self = this.ptr; if (moistureLiveWoody && typeof moistureLiveWoody === 'object') moistureLiveWoody = moistureLiveWoody.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveWoody_2(self, moistureLiveWoody, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureOneHour'] = SIGSurface.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureOneHour'] = SIGSurface.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -};; +}; -SIGSurface.prototype['setMoistureScenarios'] = SIGSurface.prototype.setMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarios) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureScenarios'] = SIGSurface.prototype.setMoistureScenarios = function(moistureScenarios) { var self = this.ptr; if (moistureScenarios && typeof moistureScenarios === 'object') moistureScenarios = moistureScenarios.ptr; _emscripten_bind_SIGSurface_setMoistureScenarios_1(self, moistureScenarios); -};; +}; -SIGSurface.prototype['setMoistureTenHour'] = SIGSurface.prototype.setMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureTenHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setMoistureTenHour'] = SIGSurface.prototype.setMoistureTenHour = function(moistureTenHour, moistureUnits) { var self = this.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureTenHour_2(self, moistureTenHour, moistureUnits); -};; +}; -SIGSurface.prototype['setOverstoryBasalArea'] = SIGSurface.prototype.setOverstoryBasalArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(overstoryBasalArea, basalAreaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setOverstoryBasalArea'] = SIGSurface.prototype.setOverstoryBasalArea = function(overstoryBasalArea, basalAreaUnits) { var self = this.ptr; if (overstoryBasalArea && typeof overstoryBasalArea === 'object') overstoryBasalArea = overstoryBasalArea.ptr; if (basalAreaUnits && typeof basalAreaUnits === 'object') basalAreaUnits = basalAreaUnits.ptr; _emscripten_bind_SIGSurface_setOverstoryBasalArea_2(self, overstoryBasalArea, basalAreaUnits); -};; +}; -SIGSurface.prototype['setPalmettoCoverage'] = SIGSurface.prototype.setPalmettoCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(palmettoCoverage, coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setPalmettoCoverage'] = SIGSurface.prototype.setPalmettoCoverage = function(palmettoCoverage, coverUnits) { var self = this.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setPalmettoCoverage_2(self, palmettoCoverage, coverUnits); -};; +}; -SIGSurface.prototype['setSecondFuelModelNumber'] = SIGSurface.prototype.setSecondFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(secondFuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setSecondFuelModelNumber'] = SIGSurface.prototype.setSecondFuelModelNumber = function(secondFuelModelNumber) { var self = this.ptr; if (secondFuelModelNumber && typeof secondFuelModelNumber === 'object') secondFuelModelNumber = secondFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1(self, secondFuelModelNumber); -};; +}; -SIGSurface.prototype['setSlope'] = SIGSurface.prototype.setSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope, slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setSlope'] = SIGSurface.prototype.setSlope = function(slope, slopeUnits) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; _emscripten_bind_SIGSurface_setSlope_2(self, slope, slopeUnits); -};; +}; -SIGSurface.prototype['setSurfaceFireSpreadDirectionMode'] = SIGSurface.prototype.setSurfaceFireSpreadDirectionMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setSurfaceFireSpreadDirectionMode'] = SIGSurface.prototype.setSurfaceFireSpreadDirectionMode = function(directionMode) { var self = this.ptr; if (directionMode && typeof directionMode === 'object') directionMode = directionMode.ptr; _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1(self, directionMode); -};; +}; -SIGSurface.prototype['setSurfaceRunInDirectionOf'] = SIGSurface.prototype.setSurfaceRunInDirectionOf = /** @suppress {undefinedVars, duplicate} @this{Object} */function(surfaceRunInDirectionOf) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setSurfaceRunInDirectionOf'] = SIGSurface.prototype.setSurfaceRunInDirectionOf = function(surfaceRunInDirectionOf) { var self = this.ptr; if (surfaceRunInDirectionOf && typeof surfaceRunInDirectionOf === 'object') surfaceRunInDirectionOf = surfaceRunInDirectionOf.ptr; _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1(self, surfaceRunInDirectionOf); -};; +}; -SIGSurface.prototype['setTwoFuelModelsFirstFuelModelCoverage'] = SIGSurface.prototype.setTwoFuelModelsFirstFuelModelCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelCoverage, coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setTwoFuelModelsFirstFuelModelCoverage'] = SIGSurface.prototype.setTwoFuelModelsFirstFuelModelCoverage = function(firstFuelModelCoverage, coverUnits) { var self = this.ptr; if (firstFuelModelCoverage && typeof firstFuelModelCoverage === 'object') firstFuelModelCoverage = firstFuelModelCoverage.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2(self, firstFuelModelCoverage, coverUnits); -};; +}; -SIGSurface.prototype['setTwoFuelModelsMethod'] = SIGSurface.prototype.setTwoFuelModelsMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(twoFuelModelsMethod) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setTwoFuelModelsMethod'] = SIGSurface.prototype.setTwoFuelModelsMethod = function(twoFuelModelsMethod) { var self = this.ptr; if (twoFuelModelsMethod && typeof twoFuelModelsMethod === 'object') twoFuelModelsMethod = twoFuelModelsMethod.ptr; _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1(self, twoFuelModelsMethod); -};; +}; -SIGSurface.prototype['setUserProvidedWindAdjustmentFactor'] = SIGSurface.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setUserProvidedWindAdjustmentFactor'] = SIGSurface.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -};; +}; -SIGSurface.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.setWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAdjustmentFactorCalculationMethod) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.setWindAdjustmentFactorCalculationMethod = function(windAdjustmentFactorCalculationMethod) { var self = this.ptr; if (windAdjustmentFactorCalculationMethod && typeof windAdjustmentFactorCalculationMethod === 'object') windAdjustmentFactorCalculationMethod = windAdjustmentFactorCalculationMethod.ptr; _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1(self, windAdjustmentFactorCalculationMethod); -};; +}; -SIGSurface.prototype['setWindAndSpreadOrientationMode'] = SIGSurface.prototype.setWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAndSpreadOrientationMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindAndSpreadOrientationMode'] = SIGSurface.prototype.setWindAndSpreadOrientationMode = function(windAndSpreadOrientationMode) { var self = this.ptr; if (windAndSpreadOrientationMode && typeof windAndSpreadOrientationMode === 'object') windAndSpreadOrientationMode = windAndSpreadOrientationMode.ptr; _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1(self, windAndSpreadOrientationMode); -};; +}; -SIGSurface.prototype['setWindDirection'] = SIGSurface.prototype.setWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windDirection) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindDirection'] = SIGSurface.prototype.setWindDirection = function(windDirection) { var self = this.ptr; if (windDirection && typeof windDirection === 'object') windDirection = windDirection.ptr; _emscripten_bind_SIGSurface_setWindDirection_1(self, windDirection); -};; +}; -SIGSurface.prototype['setWindHeightInputMode'] = SIGSurface.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindHeightInputMode'] = SIGSurface.prototype.setWindHeightInputMode = function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSurface_setWindHeightInputMode_1(self, windHeightInputMode); -};; +}; -SIGSurface.prototype['setWindSpeed'] = SIGSurface.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setWindSpeed'] = SIGSurface.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSurface_setWindSpeed_2(self, windSpeed, windSpeedUnits); -};; +}; -SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurfaceInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurfaceInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -11036,9 +11726,10 @@ SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurface if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputs_21(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -};; +}; -SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prototype.updateSurfaceInputsForPalmettoGallbery = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prototype.updateSurfaceInputsForPalmettoGallbery = function(moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; @@ -11066,9 +11757,10 @@ SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prot if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25(self, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -};; +}; -SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototype.updateSurfaceInputsForTwoFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototype.updateSurfaceInputsForTwoFuelModels = function(firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso) { var self = this.ptr; if (firstFuelModelNumber && typeof firstFuelModelNumber === 'object') firstFuelModelNumber = firstFuelModelNumber.ptr; if (secondFuelModelNumber && typeof secondFuelModelNumber === 'object') secondFuelModelNumber = secondFuelModelNumber.ptr; @@ -11096,9 +11788,10 @@ SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototy if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnitso && typeof crownRatioUnitso === 'object') crownRatioUnitso = crownRatioUnitso.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25(self, firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso); -};; +}; -SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototype.updateSurfaceInputsForWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototype.updateSurfaceInputsForWesternAspen = function(aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (aspenFuelModelNumber && typeof aspenFuelModelNumber === 'object') aspenFuelModelNumber = aspenFuelModelNumber.ptr; if (aspenCuringLevel && typeof aspenCuringLevel === 'object') aspenCuringLevel = aspenCuringLevel.ptr; @@ -11127,942 +11820,1101 @@ SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototyp if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26(self, aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -};; +}; -SIGSurface.prototype['setFuelModelNumber'] = SIGSurface.prototype.setFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['setFuelModelNumber'] = SIGSurface.prototype.setFuelModelNumber = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; _emscripten_bind_SIGSurface_setFuelModelNumber_1(self, fuelModelNumber); -};; +}; - SIGSurface.prototype['__destroy__'] = SIGSurface.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSurface.prototype['__destroy__'] = SIGSurface.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGSurface___destroy___0(self); }; -// PalmettoGallberry -/** @suppress {undefinedVars, duplicate} @this{Object} */function PalmettoGallberry() { + +// Interface: PalmettoGallberry + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function PalmettoGallberry() { this.ptr = _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0(); getCache(PalmettoGallberry)[this.ptr] = this; -};; +}; + PalmettoGallberry.prototype = Object.create(WrapperObject.prototype); PalmettoGallberry.prototype.constructor = PalmettoGallberry; PalmettoGallberry.prototype.__class__ = PalmettoGallberry; PalmettoGallberry.__cache__ = {}; Module['PalmettoGallberry'] = PalmettoGallberry; - -PalmettoGallberry.prototype['initializeMembers'] = PalmettoGallberry.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['initializeMembers'] = PalmettoGallberry.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_PalmettoGallberry_initializeMembers_0(self); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFineFuelLoad = function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2(self, ageOfRough, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFoliageLoad = function(ageOfRough, palmettoCoverage) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2(self, ageOfRough, palmettoCoverage); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadMediumFuelLoad = function(ageOfRough, palmettoCoverage) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2(self, ageOfRough, palmettoCoverage); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.calculatePalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.calculatePalmettoGallberyFuelBedDepth = function(heightOfUnderstory) { var self = this.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1(self, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, overstoryBasalArea) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLitterLoad = function(ageOfRough, overstoryBasalArea) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (overstoryBasalArea && typeof overstoryBasalArea === 'object') overstoryBasalArea = overstoryBasalArea.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2(self, ageOfRough, overstoryBasalArea); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFineFuelLoad = function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2(self, ageOfRough, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage, heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFoliageLoad = function(ageOfRough, palmettoCoverage, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3(self, ageOfRough, palmettoCoverage, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveMediumFuelLoad = function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2(self, ageOfRough, heightOfUnderstory); -};; +}; -PalmettoGallberry.prototype['getHeatOfCombustionDead'] = PalmettoGallberry.prototype.getHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getHeatOfCombustionDead'] = PalmettoGallberry.prototype.getHeatOfCombustionDead = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0(self); -};; +}; -PalmettoGallberry.prototype['getHeatOfCombustionLive'] = PalmettoGallberry.prototype.getHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getHeatOfCombustionLive'] = PalmettoGallberry.prototype.getHeatOfCombustionLive = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0(self); -};; +}; -PalmettoGallberry.prototype['getMoistureOfExtinctionDead'] = PalmettoGallberry.prototype.getMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getMoistureOfExtinctionDead'] = PalmettoGallberry.prototype.getMoistureOfExtinctionDead = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFineFuelLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFoliageLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadMediumFuelLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.getPalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.getPalmettoGallberyFuelBedDepth = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLitterLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFineFuelLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFoliageLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0(self); -};; +}; -PalmettoGallberry.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveMediumFuelLoad = function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0(self); -};; +}; - PalmettoGallberry.prototype['__destroy__'] = PalmettoGallberry.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +PalmettoGallberry.prototype['__destroy__'] = PalmettoGallberry.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_PalmettoGallberry___destroy___0(self); }; -// WesternAspen -/** @suppress {undefinedVars, duplicate} @this{Object} */function WesternAspen() { + +// Interface: WesternAspen + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function WesternAspen() { this.ptr = _emscripten_bind_WesternAspen_WesternAspen_0(); getCache(WesternAspen)[this.ptr] = this; -};; +}; + WesternAspen.prototype = Object.create(WrapperObject.prototype); WesternAspen.prototype.constructor = WesternAspen; WesternAspen.prototype.__class__ = WesternAspen; WesternAspen.__cache__ = {}; Module['WesternAspen'] = WesternAspen; - -WesternAspen.prototype['initializeMembers'] = WesternAspen.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['initializeMembers'] = WesternAspen.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_WesternAspen_initializeMembers_0(self); -};; +}; -WesternAspen.prototype['calculateAspenMortality'] = WesternAspen.prototype.calculateAspenMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(severity, flameLength, DBH) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['calculateAspenMortality'] = WesternAspen.prototype.calculateAspenMortality = function(severity, flameLength, DBH) { var self = this.ptr; if (severity && typeof severity === 'object') severity = severity.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (DBH && typeof DBH === 'object') DBH = DBH.ptr; return _emscripten_bind_WesternAspen_calculateAspenMortality_3(self, severity, flameLength, DBH); -};; +}; -WesternAspen.prototype['getAspenFuelBedDepth'] = WesternAspen.prototype.getAspenFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(typeIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenFuelBedDepth'] = WesternAspen.prototype.getAspenFuelBedDepth = function(typeIndex) { var self = this.ptr; if (typeIndex && typeof typeIndex === 'object') typeIndex = typeIndex.ptr; return _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1(self, typeIndex); -};; +}; -WesternAspen.prototype['getAspenHeatOfCombustionDead'] = WesternAspen.prototype.getAspenHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenHeatOfCombustionDead'] = WesternAspen.prototype.getAspenHeatOfCombustionDead = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0(self); -};; +}; -WesternAspen.prototype['getAspenHeatOfCombustionLive'] = WesternAspen.prototype.getAspenHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenHeatOfCombustionLive'] = WesternAspen.prototype.getAspenHeatOfCombustionLive = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0(self); -};; +}; -WesternAspen.prototype['getAspenLoadDeadOneHour'] = WesternAspen.prototype.getAspenLoadDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenLoadDeadOneHour'] = WesternAspen.prototype.getAspenLoadDeadOneHour = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0(self); -};; +}; -WesternAspen.prototype['getAspenLoadDeadTenHour'] = WesternAspen.prototype.getAspenLoadDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenLoadDeadTenHour'] = WesternAspen.prototype.getAspenLoadDeadTenHour = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0(self); -};; +}; -WesternAspen.prototype['getAspenLoadLiveHerbaceous'] = WesternAspen.prototype.getAspenLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenLoadLiveHerbaceous'] = WesternAspen.prototype.getAspenLoadLiveHerbaceous = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0(self); -};; +}; -WesternAspen.prototype['getAspenLoadLiveWoody'] = WesternAspen.prototype.getAspenLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenLoadLiveWoody'] = WesternAspen.prototype.getAspenLoadLiveWoody = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0(self); -};; +}; -WesternAspen.prototype['getAspenMoistureOfExtinctionDead'] = WesternAspen.prototype.getAspenMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenMoistureOfExtinctionDead'] = WesternAspen.prototype.getAspenMoistureOfExtinctionDead = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0(self); -};; +}; -WesternAspen.prototype['getAspenMortality'] = WesternAspen.prototype.getAspenMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenMortality'] = WesternAspen.prototype.getAspenMortality = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenMortality_0(self); -};; +}; -WesternAspen.prototype['getAspenSavrDeadOneHour'] = WesternAspen.prototype.getAspenSavrDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenSavrDeadOneHour'] = WesternAspen.prototype.getAspenSavrDeadOneHour = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0(self); -};; +}; -WesternAspen.prototype['getAspenSavrDeadTenHour'] = WesternAspen.prototype.getAspenSavrDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenSavrDeadTenHour'] = WesternAspen.prototype.getAspenSavrDeadTenHour = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0(self); -};; +}; -WesternAspen.prototype['getAspenSavrLiveHerbaceous'] = WesternAspen.prototype.getAspenSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenSavrLiveHerbaceous'] = WesternAspen.prototype.getAspenSavrLiveHerbaceous = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0(self); -};; +}; -WesternAspen.prototype['getAspenSavrLiveWoody'] = WesternAspen.prototype.getAspenSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['getAspenSavrLiveWoody'] = WesternAspen.prototype.getAspenSavrLiveWoody = function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0(self); -};; +}; + - WesternAspen.prototype['__destroy__'] = WesternAspen.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WesternAspen.prototype['__destroy__'] = WesternAspen.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_WesternAspen___destroy___0(self); }; -// SIGCrown -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGCrown(fuelModels) { + +// Interface: SIGCrown + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGCrown(fuelModels) { if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; this.ptr = _emscripten_bind_SIGCrown_SIGCrown_1(fuelModels); getCache(SIGCrown)[this.ptr] = this; -};; +}; + SIGCrown.prototype = Object.create(WrapperObject.prototype); SIGCrown.prototype.constructor = SIGCrown; SIGCrown.prototype.__class__ = SIGCrown; SIGCrown.__cache__ = {}; Module['SIGCrown'] = SIGCrown; - -SIGCrown.prototype['getFireType'] = SIGCrown.prototype.getFireType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFireType'] = SIGCrown.prototype.getFireType = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getFireType_0(self); -};; +}; -SIGCrown.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1(self, index)); -};; +}; -SIGCrown.prototype['getIsMoistureScenarioDefinedByName'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getIsMoistureScenarioDefinedByName'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1(self, name)); -};; +}; -SIGCrown.prototype['isAllFuelLoadZero'] = SIGCrown.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['isAllFuelLoadZero'] = SIGCrown.prototype.isAllFuelLoadZero = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isAllFuelLoadZero_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['isFuelDynamic'] = SIGCrown.prototype.isFuelDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['isFuelDynamic'] = SIGCrown.prototype.isFuelDynamic = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelDynamic_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['isFuelModelDefined'] = SIGCrown.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['isFuelModelDefined'] = SIGCrown.prototype.isFuelModelDefined = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelModelDefined_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['isFuelModelReserved'] = SIGCrown.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['isFuelModelReserved'] = SIGCrown.prototype.isFuelModelReserved = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelModelReserved_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['setCurrentMoistureScenarioByIndex'] = SIGCrown.prototype.setCurrentMoistureScenarioByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCurrentMoistureScenarioByIndex'] = SIGCrown.prototype.setCurrentMoistureScenarioByIndex = function(moistureScenarioIndex) { var self = this.ptr; if (moistureScenarioIndex && typeof moistureScenarioIndex === 'object') moistureScenarioIndex = moistureScenarioIndex.ptr; return !!(_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1(self, moistureScenarioIndex)); -};; +}; -SIGCrown.prototype['setCurrentMoistureScenarioByName'] = SIGCrown.prototype.setCurrentMoistureScenarioByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioName) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCurrentMoistureScenarioByName'] = SIGCrown.prototype.setCurrentMoistureScenarioByName = function(moistureScenarioName) { var self = this.ptr; ensureCache.prepare(); if (moistureScenarioName && typeof moistureScenarioName === 'object') moistureScenarioName = moistureScenarioName.ptr; else moistureScenarioName = ensureString(moistureScenarioName); return !!(_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1(self, moistureScenarioName)); -};; +}; -SIGCrown.prototype['getAspect'] = SIGCrown.prototype.getAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getAspect'] = SIGCrown.prototype.getAspect = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getAspect_0(self); -};; +}; -SIGCrown.prototype['getCanopyBaseHeight'] = SIGCrown.prototype.getCanopyBaseHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCanopyBaseHeight'] = SIGCrown.prototype.getCanopyBaseHeight = function(canopyHeightUnits) { var self = this.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyBaseHeight_1(self, canopyHeightUnits); -};; +}; -SIGCrown.prototype['getCanopyBulkDensity'] = SIGCrown.prototype.getCanopyBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBulkDensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCanopyBulkDensity'] = SIGCrown.prototype.getCanopyBulkDensity = function(canopyBulkDensityUnits) { var self = this.ptr; if (canopyBulkDensityUnits && typeof canopyBulkDensityUnits === 'object') canopyBulkDensityUnits = canopyBulkDensityUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyBulkDensity_1(self, canopyBulkDensityUnits); -};; +}; -SIGCrown.prototype['getCanopyCover'] = SIGCrown.prototype.getCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyFractionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCanopyCover'] = SIGCrown.prototype.getCanopyCover = function(canopyFractionUnits) { var self = this.ptr; if (canopyFractionUnits && typeof canopyFractionUnits === 'object') canopyFractionUnits = canopyFractionUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyCover_1(self, canopyFractionUnits); -};; +}; -SIGCrown.prototype['getCanopyHeight'] = SIGCrown.prototype.getCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeighUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCanopyHeight'] = SIGCrown.prototype.getCanopyHeight = function(canopyHeighUnits) { var self = this.ptr; if (canopyHeighUnits && typeof canopyHeighUnits === 'object') canopyHeighUnits = canopyHeighUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyHeight_1(self, canopyHeighUnits); -};; +}; -SIGCrown.prototype['getCriticalOpenWindSpeed'] = SIGCrown.prototype.getCriticalOpenWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCriticalOpenWindSpeed'] = SIGCrown.prototype.getCriticalOpenWindSpeed = function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1(self, speedUnits); -};; +}; -SIGCrown.prototype['getCrownCriticalFireSpreadRate'] = SIGCrown.prototype.getCrownCriticalFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownCriticalFireSpreadRate'] = SIGCrown.prototype.getCrownCriticalFireSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGCrown.prototype['getCrownCriticalSurfaceFirelineIntensity'] = SIGCrown.prototype.getCrownCriticalSurfaceFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownCriticalSurfaceFirelineIntensity'] = SIGCrown.prototype.getCrownCriticalSurfaceFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGCrown.prototype['getCrownCriticalSurfaceFlameLength'] = SIGCrown.prototype.getCrownCriticalSurfaceFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownCriticalSurfaceFlameLength'] = SIGCrown.prototype.getCrownCriticalSurfaceFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1(self, flameLengthUnits); -};; +}; -SIGCrown.prototype['getCrownFireActiveRatio'] = SIGCrown.prototype.getCrownFireActiveRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireActiveRatio'] = SIGCrown.prototype.getCrownFireActiveRatio = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0(self); -};; +}; -SIGCrown.prototype['getCrownFireArea'] = SIGCrown.prototype.getCrownFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireArea'] = SIGCrown.prototype.getCrownFireArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireArea_1(self, areaUnits); -};; +}; -SIGCrown.prototype['getCrownFirePerimeter'] = SIGCrown.prototype.getCrownFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFirePerimeter'] = SIGCrown.prototype.getCrownFirePerimeter = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFirePerimeter_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getCrownTransitionRatio'] = SIGCrown.prototype.getCrownTransitionRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownTransitionRatio'] = SIGCrown.prototype.getCrownTransitionRatio = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownTransitionRatio_0(self); -};; +}; -SIGCrown.prototype['getCrownFireLengthToWidthRatio'] = SIGCrown.prototype.getCrownFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireLengthToWidthRatio'] = SIGCrown.prototype.getCrownFireLengthToWidthRatio = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0(self); -};; +}; -SIGCrown.prototype['getCrownFireSpreadDistance'] = SIGCrown.prototype.getCrownFireSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireSpreadDistance'] = SIGCrown.prototype.getCrownFireSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getCrownFireSpreadRate'] = SIGCrown.prototype.getCrownFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFireSpreadRate'] = SIGCrown.prototype.getCrownFireSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGCrown.prototype['getCrownFirelineIntensity'] = SIGCrown.prototype.getCrownFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFirelineIntensity'] = SIGCrown.prototype.getCrownFirelineIntensity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1(self, firelineIntensityUnits); -};; +}; -SIGCrown.prototype['getCrownFlameLength'] = SIGCrown.prototype.getCrownFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFlameLength'] = SIGCrown.prototype.getCrownFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFlameLength_1(self, flameLengthUnits); -};; +}; -SIGCrown.prototype['getCrownFractionBurned'] = SIGCrown.prototype.getCrownFractionBurned = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownFractionBurned'] = SIGCrown.prototype.getCrownFractionBurned = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFractionBurned_0(self); -};; +}; -SIGCrown.prototype['getCrownRatio'] = SIGCrown.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getCrownRatio'] = SIGCrown.prototype.getCrownRatio = function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGCrown_getCrownRatio_1(self, crownRatioUnits); -};; +}; -SIGCrown.prototype['getFinalFirelineIntesity'] = SIGCrown.prototype.getFinalFirelineIntesity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalFirelineIntesity'] = SIGCrown.prototype.getFinalFirelineIntesity = function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1(self, firelineIntensityUnits); -};; +}; -SIGCrown.prototype['getFinalHeatPerUnitArea'] = SIGCrown.prototype.getFinalHeatPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatPerUnitAreaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalHeatPerUnitArea'] = SIGCrown.prototype.getFinalHeatPerUnitArea = function(heatPerUnitAreaUnits) { var self = this.ptr; if (heatPerUnitAreaUnits && typeof heatPerUnitAreaUnits === 'object') heatPerUnitAreaUnits = heatPerUnitAreaUnits.ptr; return _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1(self, heatPerUnitAreaUnits); -};; +}; -SIGCrown.prototype['getFinalSpreadRate'] = SIGCrown.prototype.getFinalSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalSpreadRate'] = SIGCrown.prototype.getFinalSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getFinalSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGCrown.prototype['getFinalSpreadDistance'] = SIGCrown.prototype.getFinalSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalSpreadDistance'] = SIGCrown.prototype.getFinalSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalSpreadDistance_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getFinalFireArea'] = SIGCrown.prototype.getFinalFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalFireArea'] = SIGCrown.prototype.getFinalFireArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFireArea_1(self, areaUnits); -};; +}; -SIGCrown.prototype['getFinalFirePerimeter'] = SIGCrown.prototype.getFinalFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalFirePerimeter'] = SIGCrown.prototype.getFinalFirePerimeter = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFirePerimeter_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getFuelHeatOfCombustionDead'] = SIGCrown.prototype.getFuelHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelHeatOfCombustionDead'] = SIGCrown.prototype.getFuelHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGCrown.prototype['getFuelHeatOfCombustionLive'] = SIGCrown.prototype.getFuelHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelHeatOfCombustionLive'] = SIGCrown.prototype.getFuelHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -};; +}; -SIGCrown.prototype['getFuelLoadHundredHour'] = SIGCrown.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadHundredHour'] = SIGCrown.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelLoadLiveHerbaceous'] = SIGCrown.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadLiveHerbaceous'] = SIGCrown.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelLoadLiveWoody'] = SIGCrown.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadLiveWoody'] = SIGCrown.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelLoadOneHour'] = SIGCrown.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadOneHour'] = SIGCrown.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelLoadTenHour'] = SIGCrown.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelLoadTenHour'] = SIGCrown.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -};; +}; -SIGCrown.prototype['getFuelMoistureOfExtinctionDead'] = SIGCrown.prototype.getFuelMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelMoistureOfExtinctionDead'] = SIGCrown.prototype.getFuelMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -};; +}; -SIGCrown.prototype['getFuelSavrLiveHerbaceous'] = SIGCrown.prototype.getFuelSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelSavrLiveHerbaceous'] = SIGCrown.prototype.getFuelSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGCrown.prototype['getFuelSavrLiveWoody'] = SIGCrown.prototype.getFuelSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelSavrLiveWoody'] = SIGCrown.prototype.getFuelSavrLiveWoody = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGCrown.prototype['getFuelSavrOneHour'] = SIGCrown.prototype.getFuelSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelSavrOneHour'] = SIGCrown.prototype.getFuelSavrOneHour = function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrOneHour_2(self, fuelModelNumber, savrUnits); -};; +}; -SIGCrown.prototype['getFuelbedDepth'] = SIGCrown.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelbedDepth'] = SIGCrown.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -};; +}; -SIGCrown.prototype['getMoistureFoliar'] = SIGCrown.prototype.getMoistureFoliar = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureFoliar'] = SIGCrown.prototype.getMoistureFoliar = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureFoliar_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureHundredHour'] = SIGCrown.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureHundredHour'] = SIGCrown.prototype.getMoistureHundredHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureHundredHour_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureLiveHerbaceous'] = SIGCrown.prototype.getMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureLiveHerbaceous'] = SIGCrown.prototype.getMoistureLiveHerbaceous = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureLiveWoody'] = SIGCrown.prototype.getMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureLiveWoody'] = SIGCrown.prototype.getMoistureLiveWoody = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureLiveWoody_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureOneHour'] = SIGCrown.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureOneHour'] = SIGCrown.prototype.getMoistureOneHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureOneHour_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioHundredHourByIndex'] = SIGCrown.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioHundredHourByIndex'] = SIGCrown.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioHundredHourByName'] = SIGCrown.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioHundredHourByName'] = SIGCrown.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioLiveWoodyByName'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioLiveWoodyByName'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioOneHourByIndex'] = SIGCrown.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioOneHourByIndex'] = SIGCrown.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioOneHourByName'] = SIGCrown.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioOneHourByName'] = SIGCrown.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioTenHourByIndex'] = SIGCrown.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioTenHourByIndex'] = SIGCrown.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureScenarioTenHourByName'] = SIGCrown.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioTenHourByName'] = SIGCrown.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -};; +}; -SIGCrown.prototype['getMoistureTenHour'] = SIGCrown.prototype.getMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureTenHour'] = SIGCrown.prototype.getMoistureTenHour = function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureTenHour_1(self, moistureUnits); -};; +}; -SIGCrown.prototype['getSlope'] = SIGCrown.prototype.getSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getSlope'] = SIGCrown.prototype.getSlope = function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGCrown_getSlope_1(self, slopeUnits); -};; +}; -SIGCrown.prototype['getSurfaceFireSpreadDistance'] = SIGCrown.prototype.getSurfaceFireSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getSurfaceFireSpreadDistance'] = SIGCrown.prototype.getSurfaceFireSpreadDistance = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1(self, lengthUnits); -};; +}; -SIGCrown.prototype['getSurfaceFireSpreadRate'] = SIGCrown.prototype.getSurfaceFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getSurfaceFireSpreadRate'] = SIGCrown.prototype.getSurfaceFireSpreadRate = function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1(self, spreadRateUnits); -};; +}; -SIGCrown.prototype['getWindDirection'] = SIGCrown.prototype.getWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getWindDirection'] = SIGCrown.prototype.getWindDirection = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getWindDirection_0(self); -};; +}; -SIGCrown.prototype['getWindSpeed'] = SIGCrown.prototype.getWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits, windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getWindSpeed'] = SIGCrown.prototype.getWindSpeed = function(windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; return _emscripten_bind_SIGCrown_getWindSpeed_2(self, windSpeedUnits, windHeightInputMode); -};; +}; -SIGCrown.prototype['getFuelModelNumber'] = SIGCrown.prototype.getFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelModelNumber'] = SIGCrown.prototype.getFuelModelNumber = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getFuelModelNumber_0(self); -};; +}; -SIGCrown.prototype['getMoistureScenarioIndexByName'] = SIGCrown.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioIndexByName'] = SIGCrown.prototype.getMoistureScenarioIndexByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1(self, name); -};; +}; -SIGCrown.prototype['getNumberOfMoistureScenarios'] = SIGCrown.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getNumberOfMoistureScenarios'] = SIGCrown.prototype.getNumberOfMoistureScenarios = function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0(self); -};; +}; -SIGCrown.prototype['getFuelCode'] = SIGCrown.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelCode'] = SIGCrown.prototype.getFuelCode = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getFuelCode_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['getFuelName'] = SIGCrown.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFuelName'] = SIGCrown.prototype.getFuelName = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getFuelName_1(self, fuelModelNumber)); -};; +}; -SIGCrown.prototype['getMoistureScenarioDescriptionByIndex'] = SIGCrown.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioDescriptionByIndex'] = SIGCrown.prototype.getMoistureScenarioDescriptionByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1(self, index)); -};; +}; -SIGCrown.prototype['getMoistureScenarioDescriptionByName'] = SIGCrown.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioDescriptionByName'] = SIGCrown.prototype.getMoistureScenarioDescriptionByName = function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1(self, name)); -};; +}; -SIGCrown.prototype['getMoistureScenarioNameByIndex'] = SIGCrown.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getMoistureScenarioNameByIndex'] = SIGCrown.prototype.getMoistureScenarioNameByIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1(self, index)); -};; +}; -SIGCrown.prototype['doCrownRun'] = SIGCrown.prototype.doCrownRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['doCrownRun'] = SIGCrown.prototype.doCrownRun = function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRun_0(self); -};; +}; -SIGCrown.prototype['doCrownRunRothermel'] = SIGCrown.prototype.doCrownRunRothermel = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['doCrownRunRothermel'] = SIGCrown.prototype.doCrownRunRothermel = function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRunRothermel_0(self); -};; +}; -SIGCrown.prototype['doCrownRunScottAndReinhardt'] = SIGCrown.prototype.doCrownRunScottAndReinhardt = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['doCrownRunScottAndReinhardt'] = SIGCrown.prototype.doCrownRunScottAndReinhardt = function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0(self); -};; +}; -SIGCrown.prototype['initializeMembers'] = SIGCrown.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['initializeMembers'] = SIGCrown.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGCrown_initializeMembers_0(self); -};; +}; -SIGCrown.prototype['setAspect'] = SIGCrown.prototype.setAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspect) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setAspect'] = SIGCrown.prototype.setAspect = function(aspect) { var self = this.ptr; if (aspect && typeof aspect === 'object') aspect = aspect.ptr; _emscripten_bind_SIGCrown_setAspect_1(self, aspect); -};; +}; -SIGCrown.prototype['setCanopyBaseHeight'] = SIGCrown.prototype.setCanopyBaseHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBaseHeight, canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCanopyBaseHeight'] = SIGCrown.prototype.setCanopyBaseHeight = function(canopyBaseHeight, canopyHeightUnits) { var self = this.ptr; if (canopyBaseHeight && typeof canopyBaseHeight === 'object') canopyBaseHeight = canopyBaseHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGCrown_setCanopyBaseHeight_2(self, canopyBaseHeight, canopyHeightUnits); -};; +}; -SIGCrown.prototype['setCanopyBulkDensity'] = SIGCrown.prototype.setCanopyBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBulkDensity, densityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCanopyBulkDensity'] = SIGCrown.prototype.setCanopyBulkDensity = function(canopyBulkDensity, densityUnits) { var self = this.ptr; if (canopyBulkDensity && typeof canopyBulkDensity === 'object') canopyBulkDensity = canopyBulkDensity.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; _emscripten_bind_SIGCrown_setCanopyBulkDensity_2(self, canopyBulkDensity, densityUnits); -};; +}; -SIGCrown.prototype['setCanopyCover'] = SIGCrown.prototype.setCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyCover, coverUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCanopyCover'] = SIGCrown.prototype.setCanopyCover = function(canopyCover, coverUnits) { var self = this.ptr; if (canopyCover && typeof canopyCover === 'object') canopyCover = canopyCover.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGCrown_setCanopyCover_2(self, canopyCover, coverUnits); -};; +}; -SIGCrown.prototype['setCanopyHeight'] = SIGCrown.prototype.setCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeight, canopyHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCanopyHeight'] = SIGCrown.prototype.setCanopyHeight = function(canopyHeight, canopyHeightUnits) { var self = this.ptr; if (canopyHeight && typeof canopyHeight === 'object') canopyHeight = canopyHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGCrown_setCanopyHeight_2(self, canopyHeight, canopyHeightUnits); -};; +}; -SIGCrown.prototype['setCrownRatio'] = SIGCrown.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCrownRatio'] = SIGCrown.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGCrown_setCrownRatio_2(self, crownRatio, crownRatioUnits); -};; +}; -SIGCrown.prototype['setFuelModelNumber'] = SIGCrown.prototype.setFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setFuelModelNumber'] = SIGCrown.prototype.setFuelModelNumber = function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; _emscripten_bind_SIGCrown_setFuelModelNumber_1(self, fuelModelNumber); -};; +}; -SIGCrown.prototype['setCrownFireCalculationMethod'] = SIGCrown.prototype.setCrownFireCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(CrownFireCalculationMethod) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setCrownFireCalculationMethod'] = SIGCrown.prototype.setCrownFireCalculationMethod = function(CrownFireCalculationMethod) { var self = this.ptr; if (CrownFireCalculationMethod && typeof CrownFireCalculationMethod === 'object') CrownFireCalculationMethod = CrownFireCalculationMethod.ptr; _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1(self, CrownFireCalculationMethod); -};; +}; -SIGCrown.prototype['setElapsedTime'] = SIGCrown.prototype.setElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elapsedTime, timeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setElapsedTime'] = SIGCrown.prototype.setElapsedTime = function(elapsedTime, timeUnits) { var self = this.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGCrown_setElapsedTime_2(self, elapsedTime, timeUnits); -};; +}; -SIGCrown.prototype['setFuelModels'] = SIGCrown.prototype.setFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModels) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setFuelModels'] = SIGCrown.prototype.setFuelModels = function(fuelModels) { var self = this.ptr; if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; _emscripten_bind_SIGCrown_setFuelModels_1(self, fuelModels); -};; +}; -SIGCrown.prototype['setMoistureDeadAggregate'] = SIGCrown.prototype.setMoistureDeadAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureDead, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureDeadAggregate'] = SIGCrown.prototype.setMoistureDeadAggregate = function(moistureDead, moistureUnits) { var self = this.ptr; if (moistureDead && typeof moistureDead === 'object') moistureDead = moistureDead.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2(self, moistureDead, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureFoliar'] = SIGCrown.prototype.setMoistureFoliar = /** @suppress {undefinedVars, duplicate} @this{Object} */function(foliarMoisture, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureFoliar'] = SIGCrown.prototype.setMoistureFoliar = function(foliarMoisture, moistureUnits) { var self = this.ptr; if (foliarMoisture && typeof foliarMoisture === 'object') foliarMoisture = foliarMoisture.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureFoliar_2(self, foliarMoisture, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureHundredHour'] = SIGCrown.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureHundredHour'] = SIGCrown.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureInputMode'] = SIGCrown.prototype.setMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureInputMode'] = SIGCrown.prototype.setMoistureInputMode = function(moistureInputMode) { var self = this.ptr; if (moistureInputMode && typeof moistureInputMode === 'object') moistureInputMode = moistureInputMode.ptr; _emscripten_bind_SIGCrown_setMoistureInputMode_1(self, moistureInputMode); -};; +}; -SIGCrown.prototype['setMoistureLiveAggregate'] = SIGCrown.prototype.setMoistureLiveAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLive, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureLiveAggregate'] = SIGCrown.prototype.setMoistureLiveAggregate = function(moistureLive, moistureUnits) { var self = this.ptr; if (moistureLive && typeof moistureLive === 'object') moistureLive = moistureLive.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2(self, moistureLive, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureLiveHerbaceous'] = SIGCrown.prototype.setMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveHerbaceous, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureLiveHerbaceous'] = SIGCrown.prototype.setMoistureLiveHerbaceous = function(moistureLiveHerbaceous, moistureUnits) { var self = this.ptr; if (moistureLiveHerbaceous && typeof moistureLiveHerbaceous === 'object') moistureLiveHerbaceous = moistureLiveHerbaceous.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2(self, moistureLiveHerbaceous, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureLiveWoody'] = SIGCrown.prototype.setMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveWoody, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureLiveWoody'] = SIGCrown.prototype.setMoistureLiveWoody = function(moistureLiveWoody, moistureUnits) { var self = this.ptr; if (moistureLiveWoody && typeof moistureLiveWoody === 'object') moistureLiveWoody = moistureLiveWoody.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveWoody_2(self, moistureLiveWoody, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureOneHour'] = SIGCrown.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureOneHour'] = SIGCrown.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -};; +}; -SIGCrown.prototype['setMoistureScenarios'] = SIGCrown.prototype.setMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarios) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureScenarios'] = SIGCrown.prototype.setMoistureScenarios = function(moistureScenarios) { var self = this.ptr; if (moistureScenarios && typeof moistureScenarios === 'object') moistureScenarios = moistureScenarios.ptr; _emscripten_bind_SIGCrown_setMoistureScenarios_1(self, moistureScenarios); -};; +}; -SIGCrown.prototype['setMoistureTenHour'] = SIGCrown.prototype.setMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureTenHour, moistureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setMoistureTenHour'] = SIGCrown.prototype.setMoistureTenHour = function(moistureTenHour, moistureUnits) { var self = this.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureTenHour_2(self, moistureTenHour, moistureUnits); -};; +}; -SIGCrown.prototype['setSlope'] = SIGCrown.prototype.setSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope, slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setSlope'] = SIGCrown.prototype.setSlope = function(slope, slopeUnits) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; _emscripten_bind_SIGCrown_setSlope_2(self, slope, slopeUnits); -};; +}; -SIGCrown.prototype['setUserProvidedWindAdjustmentFactor'] = SIGCrown.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setUserProvidedWindAdjustmentFactor'] = SIGCrown.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -};; +}; -SIGCrown.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGCrown.prototype.setWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAdjustmentFactorCalculationMethod) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGCrown.prototype.setWindAdjustmentFactorCalculationMethod = function(windAdjustmentFactorCalculationMethod) { var self = this.ptr; if (windAdjustmentFactorCalculationMethod && typeof windAdjustmentFactorCalculationMethod === 'object') windAdjustmentFactorCalculationMethod = windAdjustmentFactorCalculationMethod.ptr; _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1(self, windAdjustmentFactorCalculationMethod); -};; +}; -SIGCrown.prototype['setWindAndSpreadOrientationMode'] = SIGCrown.prototype.setWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAndSpreadAngleMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindAndSpreadOrientationMode'] = SIGCrown.prototype.setWindAndSpreadOrientationMode = function(windAndSpreadAngleMode) { var self = this.ptr; if (windAndSpreadAngleMode && typeof windAndSpreadAngleMode === 'object') windAndSpreadAngleMode = windAndSpreadAngleMode.ptr; _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1(self, windAndSpreadAngleMode); -};; +}; -SIGCrown.prototype['setWindDirection'] = SIGCrown.prototype.setWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windDirection) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindDirection'] = SIGCrown.prototype.setWindDirection = function(windDirection) { var self = this.ptr; if (windDirection && typeof windDirection === 'object') windDirection = windDirection.ptr; _emscripten_bind_SIGCrown_setWindDirection_1(self, windDirection); -};; +}; -SIGCrown.prototype['setWindHeightInputMode'] = SIGCrown.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindHeightInputMode'] = SIGCrown.prototype.setWindHeightInputMode = function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGCrown_setWindHeightInputMode_1(self, windHeightInputMode); -};; +}; -SIGCrown.prototype['setWindSpeed'] = SIGCrown.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['setWindSpeed'] = SIGCrown.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGCrown_setWindSpeed_2(self, windSpeed, windSpeedUnits); -};; +}; -SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -12090,9 +12942,10 @@ SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = if (canopyBulkDensity && typeof canopyBulkDensity === 'object') canopyBulkDensity = canopyBulkDensity.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; _emscripten_bind_SIGCrown_updateCrownInputs_25(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits); -};; +}; -SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrownsSurfaceInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrownsSurfaceInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -12116,69 +12969,84 @@ SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrown if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -};; +}; -SIGCrown.prototype['getFinalFlameLength'] = SIGCrown.prototype.getFinalFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['getFinalFlameLength'] = SIGCrown.prototype.getFinalFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFlameLength_1(self, flameLengthUnits); -};; +}; + - SIGCrown.prototype['__destroy__'] = SIGCrown.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGCrown.prototype['__destroy__'] = SIGCrown.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGCrown___destroy___0(self); }; -// SpeciesMasterTableRecord -/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTableRecord(rhs) { + +// Interface: SpeciesMasterTableRecord + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SpeciesMasterTableRecord(rhs) { if (rhs && typeof rhs === 'object') rhs = rhs.ptr; if (rhs === undefined) { this.ptr = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0(); getCache(SpeciesMasterTableRecord)[this.ptr] = this;return } this.ptr = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1(rhs); getCache(SpeciesMasterTableRecord)[this.ptr] = this; -};; +}; + SpeciesMasterTableRecord.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTableRecord.prototype.constructor = SpeciesMasterTableRecord; SpeciesMasterTableRecord.prototype.__class__ = SpeciesMasterTableRecord; SpeciesMasterTableRecord.__cache__ = {}; Module['SpeciesMasterTableRecord'] = SpeciesMasterTableRecord; - SpeciesMasterTableRecord.prototype['__destroy__'] = SpeciesMasterTableRecord.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTableRecord.prototype['__destroy__'] = SpeciesMasterTableRecord.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTableRecord___destroy___0(self); }; -// SpeciesMasterTable -/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTable() { + +// Interface: SpeciesMasterTable + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SpeciesMasterTable() { this.ptr = _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0(); getCache(SpeciesMasterTable)[this.ptr] = this; -};; +}; + SpeciesMasterTable.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTable.prototype.constructor = SpeciesMasterTable; SpeciesMasterTable.prototype.__class__ = SpeciesMasterTable; SpeciesMasterTable.__cache__ = {}; Module['SpeciesMasterTable'] = SpeciesMasterTable; - -SpeciesMasterTable.prototype['initializeMasterTable'] = SpeciesMasterTable.prototype.initializeMasterTable = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['initializeMasterTable'] = SpeciesMasterTable.prototype.initializeMasterTable = function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0(self); -};; +}; -SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCode'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCode'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1(self, speciesCode); -};; +}; -SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = function(speciesCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2(self, speciesCode, equationType); -};; +}; -SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.insertRecord = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.insertRecord = function(speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; @@ -12202,61 +13070,72 @@ SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.inse if (equationType && typeof equationType === 'object') equationType = equationType.ptr; if (crownDamageEquationCode && typeof crownDamageEquationCode === 'object') crownDamageEquationCode = crownDamageEquationCode.ptr; _emscripten_bind_SpeciesMasterTable_insertRecord_17(self, speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode); -};; +}; + - SpeciesMasterTable.prototype['__destroy__'] = SpeciesMasterTable.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SpeciesMasterTable.prototype['__destroy__'] = SpeciesMasterTable.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTable___destroy___0(self); }; -// SIGMortality -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGMortality(speciesMasterTable) { + +// Interface: SIGMortality + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGMortality(speciesMasterTable) { if (speciesMasterTable && typeof speciesMasterTable === 'object') speciesMasterTable = speciesMasterTable.ptr; this.ptr = _emscripten_bind_SIGMortality_SIGMortality_1(speciesMasterTable); getCache(SIGMortality)[this.ptr] = this; -};; +}; + SIGMortality.prototype = Object.create(WrapperObject.prototype); SIGMortality.prototype.constructor = SIGMortality; SIGMortality.prototype.__class__ = SIGMortality; SIGMortality.__cache__ = {}; Module['SIGMortality'] = SIGMortality; - -SIGMortality.prototype['initializeMembers'] = SIGMortality.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['initializeMembers'] = SIGMortality.prototype.initializeMembers = function() { var self = this.ptr; _emscripten_bind_SIGMortality_initializeMembers_0(self); -};; +}; -SIGMortality.prototype['checkIsInGACCRegionAtSpeciesTableIndex'] = SIGMortality.prototype.checkIsInGACCRegionAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, region) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['checkIsInGACCRegionAtSpeciesTableIndex'] = SIGMortality.prototype.checkIsInGACCRegionAtSpeciesTableIndex = function(index, region) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (region && typeof region === 'object') region = region.ptr; return !!(_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2(self, index, region)); -};; +}; -SIGMortality.prototype['checkIsInGACCRegionFromSpeciesCode'] = SIGMortality.prototype.checkIsInGACCRegionFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, region) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['checkIsInGACCRegionFromSpeciesCode'] = SIGMortality.prototype.checkIsInGACCRegionFromSpeciesCode = function(speciesCode, region) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (region && typeof region === 'object') region = region.ptr; return !!(_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2(self, speciesCode, region)); -};; +}; -SIGMortality.prototype['updateInputsForSpeciesCodeAndEquationType'] = SIGMortality.prototype.updateInputsForSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['updateInputsForSpeciesCodeAndEquationType'] = SIGMortality.prototype.updateInputsForSpeciesCodeAndEquationType = function(speciesCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return !!(_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2(self, speciesCode, equationType)); -};; +}; -SIGMortality.prototype['calculateMortality'] = SIGMortality.prototype.calculateMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probablityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['calculateMortality'] = SIGMortality.prototype.calculateMortality = function(probablityUnits) { var self = this.ptr; if (probablityUnits && typeof probablityUnits === 'object') probablityUnits = probablityUnits.ptr; return _emscripten_bind_SIGMortality_calculateMortality_1(self, probablityUnits); -};; +}; -SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calculateScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calculateScorchHeight = function(firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; @@ -12266,718 +13145,839 @@ SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calcula if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_calculateScorchHeight_7(self, firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits); -};; +}; -SIGMortality.prototype['calculateMortalityAllDirections'] = SIGMortality.prototype.calculateMortalityAllDirections = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probablityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['calculateMortalityAllDirections'] = SIGMortality.prototype.calculateMortalityAllDirections = function(probablityUnits) { var self = this.ptr; if (probablityUnits && typeof probablityUnits === 'object') probablityUnits = probablityUnits.ptr; _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1(self, probablityUnits); -};; +}; -SIGMortality.prototype['getRequiredFieldVector'] = SIGMortality.prototype.getRequiredFieldVector = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getRequiredFieldVector'] = SIGMortality.prototype.getRequiredFieldVector = function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getRequiredFieldVector_0(self), BoolVector); -};; +}; -SIGMortality.prototype['getBeetleDamage'] = SIGMortality.prototype.getBeetleDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBeetleDamage'] = SIGMortality.prototype.getBeetleDamage = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBeetleDamage_0(self); -};; +}; -SIGMortality.prototype['getCrownDamageEquationCode'] = SIGMortality.prototype.getCrownDamageEquationCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamageEquationCode'] = SIGMortality.prototype.getCrownDamageEquationCode = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0(self); -};; +}; -SIGMortality.prototype['getCrownDamageEquationCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownDamageEquationCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamageEquationCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownDamageEquationCodeAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getCrownDamageEquationCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownDamageEquationCodeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamageEquationCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownDamageEquationCodeFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getCrownDamageType'] = SIGMortality.prototype.getCrownDamageType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamageType'] = SIGMortality.prototype.getCrownDamageType = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamageType_0(self); -};; +}; -SIGMortality.prototype['getCommonNameAtSpeciesTableIndex'] = SIGMortality.prototype.getCommonNameAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCommonNameAtSpeciesTableIndex'] = SIGMortality.prototype.getCommonNameAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1(self, index)); -};; +}; -SIGMortality.prototype['getCommonNameFromSpeciesCode'] = SIGMortality.prototype.getCommonNameFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCommonNameFromSpeciesCode'] = SIGMortality.prototype.getCommonNameFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return UTF8ToString(_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1(self, speciesCode)); -};; +}; -SIGMortality.prototype['getScientificNameAtSpeciesTableIndex'] = SIGMortality.prototype.getScientificNameAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScientificNameAtSpeciesTableIndex'] = SIGMortality.prototype.getScientificNameAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1(self, index)); -};; +}; -SIGMortality.prototype['getScientificNameFromSpeciesCode'] = SIGMortality.prototype.getScientificNameFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScientificNameFromSpeciesCode'] = SIGMortality.prototype.getScientificNameFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return UTF8ToString(_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1(self, speciesCode)); -};; +}; -SIGMortality.prototype['getSpeciesCode'] = SIGMortality.prototype.getSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesCode'] = SIGMortality.prototype.getSpeciesCode = function() { var self = this.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getSpeciesCode_0(self)); -};; +}; -SIGMortality.prototype['getSpeciesCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getSpeciesCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getSpeciesCodeAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1(self, index)); -};; +}; -SIGMortality.prototype['getEquationType'] = SIGMortality.prototype.getEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getEquationType'] = SIGMortality.prototype.getEquationType = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getEquationType_0(self); -};; +}; -SIGMortality.prototype['getEquationTypeAtSpeciesTableIndex'] = SIGMortality.prototype.getEquationTypeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getEquationTypeAtSpeciesTableIndex'] = SIGMortality.prototype.getEquationTypeAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getEquationTypeFromSpeciesCode'] = SIGMortality.prototype.getEquationTypeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getEquationTypeFromSpeciesCode'] = SIGMortality.prototype.getEquationTypeFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getFireSeverity'] = SIGMortality.prototype.getFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getFireSeverity'] = SIGMortality.prototype.getFireSeverity = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getFireSeverity_0(self); -};; +}; -SIGMortality.prototype['getFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.getFlameLengthOrScorchHeightSwitch = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.getFlameLengthOrScorchHeightSwitch = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0(self); -};; +}; -SIGMortality.prototype['getGACCRegion'] = SIGMortality.prototype.getGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getGACCRegion'] = SIGMortality.prototype.getGACCRegion = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getGACCRegion_0(self); -};; +}; -SIGMortality.prototype['getSpeciesRecordVectorForGACCRegion'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesRecordVectorForGACCRegion'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegion = function(region) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1(self, region), SpeciesMasterTableRecordVector); -};; +}; -SIGMortality.prototype['getSpeciesRecordVectorForGACCRegionAndEquationType'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegionAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region, equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesRecordVectorForGACCRegionAndEquationType'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegionAndEquationType = function(region, equationType) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2(self, region, equationType), SpeciesMasterTableRecordVector); -};; +}; -SIGMortality.prototype['getBarkThickness'] = SIGMortality.prototype.getBarkThickness = /** @suppress {undefinedVars, duplicate} @this{Object} */function(barkThicknessUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBarkThickness'] = SIGMortality.prototype.getBarkThickness = function(barkThicknessUnits) { var self = this.ptr; if (barkThicknessUnits && typeof barkThicknessUnits === 'object') barkThicknessUnits = barkThicknessUnits.ptr; return _emscripten_bind_SIGMortality_getBarkThickness_1(self, barkThicknessUnits); -};; +}; -SIGMortality.prototype['getBasalAreaKillled'] = SIGMortality.prototype.getBasalAreaKillled = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBasalAreaKillled'] = SIGMortality.prototype.getBasalAreaKillled = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaKillled_0(self); -};; +}; -SIGMortality.prototype['getBasalAreaPostfire'] = SIGMortality.prototype.getBasalAreaPostfire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBasalAreaPostfire'] = SIGMortality.prototype.getBasalAreaPostfire = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaPostfire_0(self); -};; +}; -SIGMortality.prototype['getBasalAreaPrefire'] = SIGMortality.prototype.getBasalAreaPrefire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBasalAreaPrefire'] = SIGMortality.prototype.getBasalAreaPrefire = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaPrefire_0(self); -};; +}; -SIGMortality.prototype['getBoleCharHeight'] = SIGMortality.prototype.getBoleCharHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBoleCharHeight'] = SIGMortality.prototype.getBoleCharHeight = function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeight_1(self, boleCharHeightUnits); -};; +}; -SIGMortality.prototype['getBoleCharHeightBacking'] = SIGMortality.prototype.getBoleCharHeightBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBoleCharHeightBacking'] = SIGMortality.prototype.getBoleCharHeightBacking = function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1(self, boleCharHeightUnits); -};; +}; -SIGMortality.prototype['getBoleCharHeightFlanking'] = SIGMortality.prototype.getBoleCharHeightFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBoleCharHeightFlanking'] = SIGMortality.prototype.getBoleCharHeightFlanking = function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1(self, boleCharHeightUnits); -};; +}; -SIGMortality.prototype['getCambiumKillRating'] = SIGMortality.prototype.getCambiumKillRating = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCambiumKillRating'] = SIGMortality.prototype.getCambiumKillRating = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCambiumKillRating_0(self); -};; +}; -SIGMortality.prototype['getCrownDamage'] = SIGMortality.prototype.getCrownDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownDamage'] = SIGMortality.prototype.getCrownDamage = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamage_0(self); -};; +}; -SIGMortality.prototype['getCrownRatio'] = SIGMortality.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownRatio'] = SIGMortality.prototype.getCrownRatio = function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGMortality_getCrownRatio_1(self, crownRatioUnits); -};; +}; -SIGMortality.prototype['getCVSorCLS'] = SIGMortality.prototype.getCVSorCLS = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCVSorCLS'] = SIGMortality.prototype.getCVSorCLS = function() { var self = this.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getCVSorCLS_0(self)); -};; +}; -SIGMortality.prototype['getDBH'] = SIGMortality.prototype.getDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(diameterUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getDBH'] = SIGMortality.prototype.getDBH = function(diameterUnits) { var self = this.ptr; if (diameterUnits && typeof diameterUnits === 'object') diameterUnits = diameterUnits.ptr; return _emscripten_bind_SIGMortality_getDBH_1(self, diameterUnits); -};; +}; -SIGMortality.prototype['getFlameLength'] = SIGMortality.prototype.getFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getFlameLength'] = SIGMortality.prototype.getFlameLength = function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGMortality_getFlameLength_1(self, flameLengthUnits); -};; +}; -SIGMortality.prototype['getFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.getFlameLengthOrScorchHeightValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.getFlameLengthOrScorchHeightValue = function(flameLengthOrScorchHeightUnits) { var self = this.ptr; if (flameLengthOrScorchHeightUnits && typeof flameLengthOrScorchHeightUnits === 'object') flameLengthOrScorchHeightUnits = flameLengthOrScorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1(self, flameLengthOrScorchHeightUnits); -};; +}; -SIGMortality.prototype['getKilledTrees'] = SIGMortality.prototype.getKilledTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getKilledTrees'] = SIGMortality.prototype.getKilledTrees = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getKilledTrees_0(self); -};; +}; -SIGMortality.prototype['getProbabilityOfMortality'] = SIGMortality.prototype.getProbabilityOfMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getProbabilityOfMortality'] = SIGMortality.prototype.getProbabilityOfMortality = function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortality_1(self, probabilityUnits); -};; +}; -SIGMortality.prototype['getProbabilityOfMortalityBacking'] = SIGMortality.prototype.getProbabilityOfMortalityBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getProbabilityOfMortalityBacking'] = SIGMortality.prototype.getProbabilityOfMortalityBacking = function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1(self, probabilityUnits); -};; +}; -SIGMortality.prototype['getProbabilityOfMortalityFlanking'] = SIGMortality.prototype.getProbabilityOfMortalityFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getProbabilityOfMortalityFlanking'] = SIGMortality.prototype.getProbabilityOfMortalityFlanking = function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1(self, probabilityUnits); -};; +}; -SIGMortality.prototype['getScorchHeight'] = SIGMortality.prototype.getScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScorchHeight'] = SIGMortality.prototype.getScorchHeight = function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeight_1(self, scorchHeightUnits); -};; +}; -SIGMortality.prototype['getScorchHeightBacking'] = SIGMortality.prototype.getScorchHeightBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScorchHeightBacking'] = SIGMortality.prototype.getScorchHeightBacking = function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeightBacking_1(self, scorchHeightUnits); -};; +}; -SIGMortality.prototype['getScorchHeightFlanking'] = SIGMortality.prototype.getScorchHeightFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getScorchHeightFlanking'] = SIGMortality.prototype.getScorchHeightFlanking = function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeightFlanking_1(self, scorchHeightUnits); -};; +}; -SIGMortality.prototype['getTotalPrefireTrees'] = SIGMortality.prototype.getTotalPrefireTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTotalPrefireTrees'] = SIGMortality.prototype.getTotalPrefireTrees = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getTotalPrefireTrees_0(self); -};; +}; -SIGMortality.prototype['getTreeCrownLengthScorched'] = SIGMortality.prototype.getTreeCrownLengthScorched = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownLengthScorched'] = SIGMortality.prototype.getTreeCrownLengthScorched = function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1(self, treeCrownLengthScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownLengthScorchedBacking'] = SIGMortality.prototype.getTreeCrownLengthScorchedBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownLengthScorchedBacking'] = SIGMortality.prototype.getTreeCrownLengthScorchedBacking = function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1(self, treeCrownLengthScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownLengthScorchedFlanking'] = SIGMortality.prototype.getTreeCrownLengthScorchedFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownLengthScorchedFlanking'] = SIGMortality.prototype.getTreeCrownLengthScorchedFlanking = function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1(self, treeCrownLengthScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownVolumeScorched'] = SIGMortality.prototype.getTreeCrownVolumeScorched = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownVolumeScorched'] = SIGMortality.prototype.getTreeCrownVolumeScorched = function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1(self, getTreeCrownVolumeScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownVolumeScorchedBacking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownVolumeScorchedBacking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedBacking = function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1(self, getTreeCrownVolumeScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeCrownVolumeScorchedFlanking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeCrownVolumeScorchedFlanking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedFlanking = function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1(self, getTreeCrownVolumeScorchedUnits); -};; +}; -SIGMortality.prototype['getTreeDensityPerUnitArea'] = SIGMortality.prototype.getTreeDensityPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeDensityPerUnitArea'] = SIGMortality.prototype.getTreeDensityPerUnitArea = function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1(self, areaUnits); -};; +}; -SIGMortality.prototype['getTreeHeight'] = SIGMortality.prototype.getTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getTreeHeight'] = SIGMortality.prototype.getTreeHeight = function(treeHeightUnits) { var self = this.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; return _emscripten_bind_SIGMortality_getTreeHeight_1(self, treeHeightUnits); -};; +}; -SIGMortality.prototype['postfireCanopyCover'] = SIGMortality.prototype.postfireCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['postfireCanopyCover'] = SIGMortality.prototype.postfireCanopyCover = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_postfireCanopyCover_0(self); -};; +}; -SIGMortality.prototype['prefireCanopyCover'] = SIGMortality.prototype.prefireCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['prefireCanopyCover'] = SIGMortality.prototype.prefireCanopyCover = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_prefireCanopyCover_0(self); -};; +}; -SIGMortality.prototype['getBarkEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getBarkEquationNumberAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBarkEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getBarkEquationNumberAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getBarkEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getBarkEquationNumberFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getBarkEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getBarkEquationNumberFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getCrownCoefficientCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownCoefficientCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownCoefficientCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownCoefficientCodeAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getCrownCoefficientCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownCoefficientCodeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownCoefficientCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownCoefficientCodeFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getCrownScorchOrBoleCharEquationNumber'] = SIGMortality.prototype.getCrownScorchOrBoleCharEquationNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getCrownScorchOrBoleCharEquationNumber'] = SIGMortality.prototype.getCrownScorchOrBoleCharEquationNumber = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0(self); -};; +}; -SIGMortality.prototype['getMortalityEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getMortalityEquationNumberAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getMortalityEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getMortalityEquationNumberAtSpeciesTableIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1(self, index); -};; +}; -SIGMortality.prototype['getMortalityEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getMortalityEquationNumberFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getMortalityEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getMortalityEquationNumberFromSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['getNumberOfRecordsInSpeciesTable'] = SIGMortality.prototype.getNumberOfRecordsInSpeciesTable = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getNumberOfRecordsInSpeciesTable'] = SIGMortality.prototype.getNumberOfRecordsInSpeciesTable = function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0(self); -};; +}; -SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCode'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesNameCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCode'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCode = function(speciesNameCode) { var self = this.ptr; ensureCache.prepare(); if (speciesNameCode && typeof speciesNameCode === 'object') speciesNameCode = speciesNameCode.ptr; else speciesNameCode = ensureString(speciesNameCode); return _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1(self, speciesNameCode); -};; +}; -SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesNameCode, equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = function(speciesNameCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesNameCode && typeof speciesNameCode === 'object') speciesNameCode = speciesNameCode.ptr; else speciesNameCode = ensureString(speciesNameCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2(self, speciesNameCode, equationType); -};; +}; -SIGMortality.prototype['setAirTemperature'] = SIGMortality.prototype.setAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(airTemperature, temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setAirTemperature'] = SIGMortality.prototype.setAirTemperature = function(airTemperature, temperatureUnits) { var self = this.ptr; if (airTemperature && typeof airTemperature === 'object') airTemperature = airTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_SIGMortality_setAirTemperature_2(self, airTemperature, temperatureUnits); -};; +}; -SIGMortality.prototype['setBeetleDamage'] = SIGMortality.prototype.setBeetleDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(beetleDamage) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setBeetleDamage'] = SIGMortality.prototype.setBeetleDamage = function(beetleDamage) { var self = this.ptr; if (beetleDamage && typeof beetleDamage === 'object') beetleDamage = beetleDamage.ptr; _emscripten_bind_SIGMortality_setBeetleDamage_1(self, beetleDamage); -};; +}; -SIGMortality.prototype['setBoleCharHeight'] = SIGMortality.prototype.setBoleCharHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeight, boleCharHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setBoleCharHeight'] = SIGMortality.prototype.setBoleCharHeight = function(boleCharHeight, boleCharHeightUnits) { var self = this.ptr; if (boleCharHeight && typeof boleCharHeight === 'object') boleCharHeight = boleCharHeight.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; _emscripten_bind_SIGMortality_setBoleCharHeight_2(self, boleCharHeight, boleCharHeightUnits); -};; +}; -SIGMortality.prototype['setCambiumKillRating'] = SIGMortality.prototype.setCambiumKillRating = /** @suppress {undefinedVars, duplicate} @this{Object} */function(cambiumKillRating) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setCambiumKillRating'] = SIGMortality.prototype.setCambiumKillRating = function(cambiumKillRating) { var self = this.ptr; if (cambiumKillRating && typeof cambiumKillRating === 'object') cambiumKillRating = cambiumKillRating.ptr; _emscripten_bind_SIGMortality_setCambiumKillRating_1(self, cambiumKillRating); -};; +}; -SIGMortality.prototype['setCrownDamage'] = SIGMortality.prototype.setCrownDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownDamage) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setCrownDamage'] = SIGMortality.prototype.setCrownDamage = function(crownDamage) { var self = this.ptr; if (crownDamage && typeof crownDamage === 'object') crownDamage = crownDamage.ptr; _emscripten_bind_SIGMortality_setCrownDamage_1(self, crownDamage); -};; +}; -SIGMortality.prototype['setCrownRatio'] = SIGMortality.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setCrownRatio'] = SIGMortality.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGMortality_setCrownRatio_2(self, crownRatio, crownRatioUnits); -};; +}; -SIGMortality.prototype['setDBH'] = SIGMortality.prototype.setDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbh, diameterUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setDBH'] = SIGMortality.prototype.setDBH = function(dbh, diameterUnits) { var self = this.ptr; if (dbh && typeof dbh === 'object') dbh = dbh.ptr; if (diameterUnits && typeof diameterUnits === 'object') diameterUnits = diameterUnits.ptr; _emscripten_bind_SIGMortality_setDBH_2(self, dbh, diameterUnits); -};; +}; -SIGMortality.prototype['setEquationType'] = SIGMortality.prototype.setEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(equationType) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setEquationType'] = SIGMortality.prototype.setEquationType = function(equationType) { var self = this.ptr; if (equationType && typeof equationType === 'object') equationType = equationType.ptr; _emscripten_bind_SIGMortality_setEquationType_1(self, equationType); -};; +}; -SIGMortality.prototype['setFireSeverity'] = SIGMortality.prototype.setFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireSeverity) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFireSeverity'] = SIGMortality.prototype.setFireSeverity = function(fireSeverity) { var self = this.ptr; if (fireSeverity && typeof fireSeverity === 'object') fireSeverity = fireSeverity.ptr; _emscripten_bind_SIGMortality_setFireSeverity_1(self, fireSeverity); -};; +}; -SIGMortality.prototype['setFirelineIntensity'] = SIGMortality.prototype.setFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFirelineIntensity'] = SIGMortality.prototype.setFirelineIntensity = function(firelineIntensity, firelineIntensityUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setFirelineIntensity_2(self, firelineIntensity, firelineIntensityUnits); -};; +}; -SIGMortality.prototype['setFlameLength'] = SIGMortality.prototype.setFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFlameLength'] = SIGMortality.prototype.setFlameLength = function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGMortality_setFlameLength_2(self, flameLength, flameLengthUnits); -};; +}; -SIGMortality.prototype['setFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.setFlameLengthOrScorchHeightSwitch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightSwitch) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.setFlameLengthOrScorchHeightSwitch = function(flameLengthOrScorchHeightSwitch) { var self = this.ptr; if (flameLengthOrScorchHeightSwitch && typeof flameLengthOrScorchHeightSwitch === 'object') flameLengthOrScorchHeightSwitch = flameLengthOrScorchHeightSwitch.ptr; _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1(self, flameLengthOrScorchHeightSwitch); -};; +}; -SIGMortality.prototype['setFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.setFlameLengthOrScorchHeightValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.setFlameLengthOrScorchHeightValue = function(flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits) { var self = this.ptr; if (flameLengthOrScorchHeightValue && typeof flameLengthOrScorchHeightValue === 'object') flameLengthOrScorchHeightValue = flameLengthOrScorchHeightValue.ptr; if (flameLengthOrScorchHeightUnits && typeof flameLengthOrScorchHeightUnits === 'object') flameLengthOrScorchHeightUnits = flameLengthOrScorchHeightUnits.ptr; _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2(self, flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits); -};; +}; -SIGMortality.prototype['setMidFlameWindSpeed'] = SIGMortality.prototype.setMidFlameWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(midFlameWindSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setMidFlameWindSpeed'] = SIGMortality.prototype.setMidFlameWindSpeed = function(midFlameWindSpeed, windSpeedUnits) { var self = this.ptr; if (midFlameWindSpeed && typeof midFlameWindSpeed === 'object') midFlameWindSpeed = midFlameWindSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2(self, midFlameWindSpeed, windSpeedUnits); -};; +}; -SIGMortality.prototype['setGACCRegion'] = SIGMortality.prototype.setGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setGACCRegion'] = SIGMortality.prototype.setGACCRegion = function(region) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; _emscripten_bind_SIGMortality_setGACCRegion_1(self, region); -};; +}; -SIGMortality.prototype['setScorchHeight'] = SIGMortality.prototype.setScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeight, scorchHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setScorchHeight'] = SIGMortality.prototype.setScorchHeight = function(scorchHeight, scorchHeightUnits) { var self = this.ptr; if (scorchHeight && typeof scorchHeight === 'object') scorchHeight = scorchHeight.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; _emscripten_bind_SIGMortality_setScorchHeight_2(self, scorchHeight, scorchHeightUnits); -};; +}; -SIGMortality.prototype['setSpeciesCode'] = SIGMortality.prototype.setSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSpeciesCode'] = SIGMortality.prototype.setSpeciesCode = function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); _emscripten_bind_SIGMortality_setSpeciesCode_1(self, speciesCode); -};; +}; -SIGMortality.prototype['setSurfaceFireFirelineIntensity'] = SIGMortality.prototype.setSurfaceFireFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFirelineIntensity'] = SIGMortality.prototype.setSurfaceFireFirelineIntensity = function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2(self, value, firelineIntensityUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFirelineIntensityBacking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFirelineIntensityBacking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityBacking = function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2(self, value, firelineIntensityUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFirelineIntensityFlanking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFirelineIntensityFlanking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityFlanking = function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2(self, value, firelineIntensityUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFlameLength'] = SIGMortality.prototype.setSurfaceFireFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFlameLength'] = SIGMortality.prototype.setSurfaceFireFlameLength = function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2(self, value, lengthUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFlameLengthBacking'] = SIGMortality.prototype.setSurfaceFireFlameLengthBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFlameLengthBacking'] = SIGMortality.prototype.setSurfaceFireFlameLengthBacking = function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2(self, value, lengthUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireFlameLengthFlanking'] = SIGMortality.prototype.setSurfaceFireFlameLengthFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireFlameLengthFlanking'] = SIGMortality.prototype.setSurfaceFireFlameLengthFlanking = function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2(self, value, lengthUnits); -};; +}; -SIGMortality.prototype['setSurfaceFireScorchHeight'] = SIGMortality.prototype.setSurfaceFireScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setSurfaceFireScorchHeight'] = SIGMortality.prototype.setSurfaceFireScorchHeight = function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2(self, value, lengthUnits); -};; +}; -SIGMortality.prototype['setTreeDensityPerUnitArea'] = SIGMortality.prototype.setTreeDensityPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(numberOfTrees, areaUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setTreeDensityPerUnitArea'] = SIGMortality.prototype.setTreeDensityPerUnitArea = function(numberOfTrees, areaUnits) { var self = this.ptr; if (numberOfTrees && typeof numberOfTrees === 'object') numberOfTrees = numberOfTrees.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2(self, numberOfTrees, areaUnits); -};; +}; -SIGMortality.prototype['setTreeHeight'] = SIGMortality.prototype.setTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeight, treeHeightUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setTreeHeight'] = SIGMortality.prototype.setTreeHeight = function(treeHeight, treeHeightUnits) { var self = this.ptr; if (treeHeight && typeof treeHeight === 'object') treeHeight = treeHeight.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; _emscripten_bind_SIGMortality_setTreeHeight_2(self, treeHeight, treeHeightUnits); -};; +}; -SIGMortality.prototype['setUserProvidedWindAdjustmentFactor'] = SIGMortality.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setUserProvidedWindAdjustmentFactor'] = SIGMortality.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -};; +}; -SIGMortality.prototype['setWindHeightInputMode'] = SIGMortality.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setWindHeightInputMode'] = SIGMortality.prototype.setWindHeightInputMode = function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGMortality_setWindHeightInputMode_1(self, windHeightInputMode); -};; +}; -SIGMortality.prototype['setWindSpeed'] = SIGMortality.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setWindSpeed'] = SIGMortality.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGMortality_setWindSpeed_2(self, windSpeed, windSpeedUnits); -};; +}; -SIGMortality.prototype['setWindSpeedAndWindHeightInputMode'] = SIGMortality.prototype.setWindSpeedAndWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['setWindSpeedAndWindHeightInputMode'] = SIGMortality.prototype.setWindSpeedAndWindHeightInputMode = function(windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor) { var self = this.ptr; if (windwindSpeed && typeof windwindSpeed === 'object') windwindSpeed = windwindSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4(self, windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor); -};; +}; - SIGMortality.prototype['__destroy__'] = SIGMortality.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGMortality.prototype['__destroy__'] = SIGMortality.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGMortality___destroy___0(self); }; -// WindSpeedUtility -/** @suppress {undefinedVars, duplicate} @this{Object} */function WindSpeedUtility() { + +// Interface: WindSpeedUtility + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function WindSpeedUtility() { this.ptr = _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0(); getCache(WindSpeedUtility)[this.ptr] = this; -};; +}; + WindSpeedUtility.prototype = Object.create(WrapperObject.prototype); WindSpeedUtility.prototype.constructor = WindSpeedUtility; WindSpeedUtility.prototype.__class__ = WindSpeedUtility; WindSpeedUtility.__cache__ = {}; Module['WindSpeedUtility'] = WindSpeedUtility; - -WindSpeedUtility.prototype['windSpeedAtMidflame'] = WindSpeedUtility.prototype.windSpeedAtMidflame = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTwentyFeet, windAdjustmentFactor) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WindSpeedUtility.prototype['windSpeedAtMidflame'] = WindSpeedUtility.prototype.windSpeedAtMidflame = function(windSpeedAtTwentyFeet, windAdjustmentFactor) { var self = this.ptr; if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windAdjustmentFactor && typeof windAdjustmentFactor === 'object') windAdjustmentFactor = windAdjustmentFactor.ptr; return _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2(self, windSpeedAtTwentyFeet, windAdjustmentFactor); -};; +}; -WindSpeedUtility.prototype['windSpeedAtTwentyFeetFromTenMeter'] = WindSpeedUtility.prototype.windSpeedAtTwentyFeetFromTenMeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTenMeters) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WindSpeedUtility.prototype['windSpeedAtTwentyFeetFromTenMeter'] = WindSpeedUtility.prototype.windSpeedAtTwentyFeetFromTenMeter = function(windSpeedAtTenMeters) { var self = this.ptr; if (windSpeedAtTenMeters && typeof windSpeedAtTenMeters === 'object') windSpeedAtTenMeters = windSpeedAtTenMeters.ptr; return _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1(self, windSpeedAtTenMeters); -};; +}; - WindSpeedUtility.prototype['__destroy__'] = WindSpeedUtility.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +WindSpeedUtility.prototype['__destroy__'] = WindSpeedUtility.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_WindSpeedUtility___destroy___0(self); }; -// SIGFineDeadFuelMoistureTool -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGFineDeadFuelMoistureTool() { + +// Interface: SIGFineDeadFuelMoistureTool + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGFineDeadFuelMoistureTool() { this.ptr = _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0(); getCache(SIGFineDeadFuelMoistureTool)[this.ptr] = this; -};; +}; + SIGFineDeadFuelMoistureTool.prototype = Object.create(WrapperObject.prototype); SIGFineDeadFuelMoistureTool.prototype.constructor = SIGFineDeadFuelMoistureTool; SIGFineDeadFuelMoistureTool.prototype.__class__ = SIGFineDeadFuelMoistureTool; SIGFineDeadFuelMoistureTool.__cache__ = {}; Module['SIGFineDeadFuelMoistureTool'] = SIGFineDeadFuelMoistureTool; - -SIGFineDeadFuelMoistureTool.prototype['calculate'] = SIGFineDeadFuelMoistureTool.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['calculate'] = SIGFineDeadFuelMoistureTool.prototype.calculate = function() { var self = this.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setTimeOfDayIndex'] = SIGFineDeadFuelMoistureTool.prototype.setTimeOfDayIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeOfDayIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setTimeOfDayIndex'] = SIGFineDeadFuelMoistureTool.prototype.setTimeOfDayIndex = function(timeOfDayIndex) { var self = this.ptr; if (timeOfDayIndex && typeof timeOfDayIndex === 'object') timeOfDayIndex = timeOfDayIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1(self, timeOfDayIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setSlopeIndex'] = SIGFineDeadFuelMoistureTool.prototype.setSlopeIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setSlopeIndex'] = SIGFineDeadFuelMoistureTool.prototype.setSlopeIndex = function(slopeIndex) { var self = this.ptr; if (slopeIndex && typeof slopeIndex === 'object') slopeIndex = slopeIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1(self, slopeIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setShadingIndex'] = SIGFineDeadFuelMoistureTool.prototype.setShadingIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(shadingIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setShadingIndex'] = SIGFineDeadFuelMoistureTool.prototype.setShadingIndex = function(shadingIndex) { var self = this.ptr; if (shadingIndex && typeof shadingIndex === 'object') shadingIndex = shadingIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1(self, shadingIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setAspectIndex'] = SIGFineDeadFuelMoistureTool.prototype.setAspectIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspectIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setAspectIndex'] = SIGFineDeadFuelMoistureTool.prototype.setAspectIndex = function(aspectIndex) { var self = this.ptr; if (aspectIndex && typeof aspectIndex === 'object') aspectIndex = aspectIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1(self, aspectIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setRHIndex'] = SIGFineDeadFuelMoistureTool.prototype.setRHIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(relativeHumidityIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setRHIndex'] = SIGFineDeadFuelMoistureTool.prototype.setRHIndex = function(relativeHumidityIndex) { var self = this.ptr; if (relativeHumidityIndex && typeof relativeHumidityIndex === 'object') relativeHumidityIndex = relativeHumidityIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1(self, relativeHumidityIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setElevationIndex'] = SIGFineDeadFuelMoistureTool.prototype.setElevationIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setElevationIndex'] = SIGFineDeadFuelMoistureTool.prototype.setElevationIndex = function(elevationIndex) { var self = this.ptr; if (elevationIndex && typeof elevationIndex === 'object') elevationIndex = elevationIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1(self, elevationIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setDryBulbIndex'] = SIGFineDeadFuelMoistureTool.prototype.setDryBulbIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dryBulbIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setDryBulbIndex'] = SIGFineDeadFuelMoistureTool.prototype.setDryBulbIndex = function(dryBulbIndex) { var self = this.ptr; if (dryBulbIndex && typeof dryBulbIndex === 'object') dryBulbIndex = dryBulbIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1(self, dryBulbIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['setMonthIndex'] = SIGFineDeadFuelMoistureTool.prototype.setMonthIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(monthIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['setMonthIndex'] = SIGFineDeadFuelMoistureTool.prototype.setMonthIndex = function(monthIndex) { var self = this.ptr; if (monthIndex && typeof monthIndex === 'object') monthIndex = monthIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1(self, monthIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getFineDeadFuelMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getFineDeadFuelMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getFineDeadFuelMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getFineDeadFuelMoisture = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1(self, desiredUnits); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getSlopeIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getSlopeIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getSlopeIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getSlopeIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getElevationIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getElevationIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getElevationIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getElevationIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getMonthIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getMonthIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getMonthIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getMonthIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getDryBulbTemperatureIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getDryBulbTemperatureIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getDryBulbTemperatureIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getDryBulbTemperatureIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getReferenceMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getReferenceMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getReferenceMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getReferenceMoisture = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1(self, desiredUnits); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoistureTool.prototype.calculateByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoistureTool.prototype.calculateByIndex = function(aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex) { var self = this.ptr; if (aspectIndex && typeof aspectIndex === 'object') aspectIndex = aspectIndex.ptr; if (dryBulbIndex && typeof dryBulbIndex === 'object') dryBulbIndex = dryBulbIndex.ptr; @@ -12988,384 +13988,555 @@ SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoist if (slopeIndex && typeof slopeIndex === 'object') slopeIndex = slopeIndex.ptr; if (timeOfDayIndex && typeof timeOfDayIndex === 'object') timeOfDayIndex = timeOfDayIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8(self, aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getTimeOfDayIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getTimeOfDayIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getTimeOfDayIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getTimeOfDayIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getCorrectionMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getCorrectionMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getCorrectionMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getCorrectionMoisture = function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1(self, desiredUnits); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getAspectIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getAspectIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getAspectIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getAspectIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getShadingIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getShadingIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getShadingIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getShadingIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0(self); -};; +}; -SIGFineDeadFuelMoistureTool.prototype['getRelativeHumidityIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getRelativeHumidityIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['getRelativeHumidityIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getRelativeHumidityIndexSize = function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0(self); -};; +}; + - SIGFineDeadFuelMoistureTool.prototype['__destroy__'] = SIGFineDeadFuelMoistureTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGFineDeadFuelMoistureTool.prototype['__destroy__'] = SIGFineDeadFuelMoistureTool.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0(self); }; -// SIGSlopeTool -/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSlopeTool() { + +// Interface: SIGSlopeTool + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SIGSlopeTool() { this.ptr = _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0(); getCache(SIGSlopeTool)[this.ptr] = this; -};; +}; + SIGSlopeTool.prototype = Object.create(WrapperObject.prototype); SIGSlopeTool.prototype.constructor = SIGSlopeTool; SIGSlopeTool.prototype.__class__ = SIGSlopeTool; SIGSlopeTool.__cache__ = {}; Module['SIGSlopeTool'] = SIGSlopeTool; - -SIGSlopeTool.prototype['getCentimetersPerKilometerAtIndex'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getCentimetersPerKilometerAtIndex'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getCentimetersPerKilometerAtRepresentativeFraction'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getCentimetersPerKilometerAtRepresentativeFraction'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistance'] = SIGSlopeTool.prototype.getHorizontalDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(horizontalDistanceIndex, mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistance'] = SIGSlopeTool.prototype.getHorizontalDistance = function(horizontalDistanceIndex, mapDistanceUnits) { var self = this.ptr; if (horizontalDistanceIndex && typeof horizontalDistanceIndex === 'object') horizontalDistanceIndex = horizontalDistanceIndex.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2(self, horizontalDistanceIndex, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceAtIndex'] = SIGSlopeTool.prototype.getHorizontalDistanceAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceAtIndex'] = SIGSlopeTool.prototype.getHorizontalDistanceAtIndex = function(index, mapDistanceUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2(self, index, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceFifteen'] = SIGSlopeTool.prototype.getHorizontalDistanceFifteen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceFifteen'] = SIGSlopeTool.prototype.getHorizontalDistanceFifteen = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceFourtyFive'] = SIGSlopeTool.prototype.getHorizontalDistanceFourtyFive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceFourtyFive'] = SIGSlopeTool.prototype.getHorizontalDistanceFourtyFive = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceMaxSlope'] = SIGSlopeTool.prototype.getHorizontalDistanceMaxSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceMaxSlope'] = SIGSlopeTool.prototype.getHorizontalDistanceMaxSlope = function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1(self, slopeUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceNinety'] = SIGSlopeTool.prototype.getHorizontalDistanceNinety = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceNinety'] = SIGSlopeTool.prototype.getHorizontalDistanceNinety = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceSeventy'] = SIGSlopeTool.prototype.getHorizontalDistanceSeventy = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceSeventy'] = SIGSlopeTool.prototype.getHorizontalDistanceSeventy = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceSixty'] = SIGSlopeTool.prototype.getHorizontalDistanceSixty = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceSixty'] = SIGSlopeTool.prototype.getHorizontalDistanceSixty = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceThirty'] = SIGSlopeTool.prototype.getHorizontalDistanceThirty = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceThirty'] = SIGSlopeTool.prototype.getHorizontalDistanceThirty = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getHorizontalDistanceZero'] = SIGSlopeTool.prototype.getHorizontalDistanceZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getHorizontalDistanceZero'] = SIGSlopeTool.prototype.getHorizontalDistanceZero = function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1(self, mapDistanceUnits); -};; +}; -SIGSlopeTool.prototype['getInchesPerMileAtIndex'] = SIGSlopeTool.prototype.getInchesPerMileAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getInchesPerMileAtIndex'] = SIGSlopeTool.prototype.getInchesPerMileAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getInchesPerMileAtRepresentativeFraction'] = SIGSlopeTool.prototype.getInchesPerMileAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getInchesPerMileAtRepresentativeFraction'] = SIGSlopeTool.prototype.getInchesPerMileAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['getKilometersPerCentimeterAtIndex'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getKilometersPerCentimeterAtIndex'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getKilometersPerCentimeterAtRepresentativeFraction'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getKilometersPerCentimeterAtRepresentativeFraction'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['getMilesPerInchAtIndex'] = SIGSlopeTool.prototype.getMilesPerInchAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getMilesPerInchAtIndex'] = SIGSlopeTool.prototype.getMilesPerInchAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getMilesPerInchAtRepresentativeFraction'] = SIGSlopeTool.prototype.getMilesPerInchAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getMilesPerInchAtRepresentativeFraction'] = SIGSlopeTool.prototype.getMilesPerInchAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['getSlopeElevationChangeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeElevationChangeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeElevationChangeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeElevationChangeFromMapMeasurements = function(elevationUnits) { var self = this.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1(self, elevationUnits); -};; +}; -SIGSlopeTool.prototype['getSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurements = function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1(self, slopeUnits); -};; +}; -SIGSlopeTool.prototype['getSlopeHorizontalDistanceFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeHorizontalDistanceFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(distanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeHorizontalDistanceFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeHorizontalDistanceFromMapMeasurements = function(distanceUnits) { var self = this.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1(self, distanceUnits); -};; +}; -SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInDegrees'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInDegrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInDegrees'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInDegrees = function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0(self); -};; +}; -SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInPercent'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInPercent = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInPercent'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInPercent = function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0(self); -};; +}; -SIGSlopeTool.prototype['getNumberOfHorizontalDistances'] = SIGSlopeTool.prototype.getNumberOfHorizontalDistances = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getNumberOfHorizontalDistances'] = SIGSlopeTool.prototype.getNumberOfHorizontalDistances = function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0(self); -};; +}; -SIGSlopeTool.prototype['getNumberOfRepresentativeFractions'] = SIGSlopeTool.prototype.getNumberOfRepresentativeFractions = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getNumberOfRepresentativeFractions'] = SIGSlopeTool.prototype.getNumberOfRepresentativeFractions = function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0(self); -};; +}; -SIGSlopeTool.prototype['getRepresentativeFractionAtIndex'] = SIGSlopeTool.prototype.getRepresentativeFractionAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getRepresentativeFractionAtIndex'] = SIGSlopeTool.prototype.getRepresentativeFractionAtIndex = function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1(self, index); -};; +}; -SIGSlopeTool.prototype['getRepresentativeFractionAtRepresentativeFraction'] = SIGSlopeTool.prototype.getRepresentativeFractionAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['getRepresentativeFractionAtRepresentativeFraction'] = SIGSlopeTool.prototype.getRepresentativeFractionAtRepresentativeFraction = function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1(self, representativeFraction); -};; +}; -SIGSlopeTool.prototype['calculateHorizontalDistance'] = SIGSlopeTool.prototype.calculateHorizontalDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['calculateHorizontalDistance'] = SIGSlopeTool.prototype.calculateHorizontalDistance = function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0(self); -};; +}; -SIGSlopeTool.prototype['calculateSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.calculateSlopeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['calculateSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.calculateSlopeFromMapMeasurements = function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0(self); -};; +}; -SIGSlopeTool.prototype['setCalculatedMapDistance'] = SIGSlopeTool.prototype.setCalculatedMapDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(calculatedMapDistance, distanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setCalculatedMapDistance'] = SIGSlopeTool.prototype.setCalculatedMapDistance = function(calculatedMapDistance, distanceUnits) { var self = this.ptr; if (calculatedMapDistance && typeof calculatedMapDistance === 'object') calculatedMapDistance = calculatedMapDistance.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2(self, calculatedMapDistance, distanceUnits); -};; +}; -SIGSlopeTool.prototype['setContourInterval'] = SIGSlopeTool.prototype.setContourInterval = /** @suppress {undefinedVars, duplicate} @this{Object} */function(contourInterval, contourUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setContourInterval'] = SIGSlopeTool.prototype.setContourInterval = function(contourInterval, contourUnits) { var self = this.ptr; if (contourInterval && typeof contourInterval === 'object') contourInterval = contourInterval.ptr; if (contourUnits && typeof contourUnits === 'object') contourUnits = contourUnits.ptr; _emscripten_bind_SIGSlopeTool_setContourInterval_2(self, contourInterval, contourUnits); -};; +}; -SIGSlopeTool.prototype['setMapDistance'] = SIGSlopeTool.prototype.setMapDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistance, distanceUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setMapDistance'] = SIGSlopeTool.prototype.setMapDistance = function(mapDistance, distanceUnits) { var self = this.ptr; if (mapDistance && typeof mapDistance === 'object') mapDistance = mapDistance.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; _emscripten_bind_SIGSlopeTool_setMapDistance_2(self, mapDistance, distanceUnits); -};; +}; -SIGSlopeTool.prototype['setMapRepresentativeFraction'] = SIGSlopeTool.prototype.setMapRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapRepresentativeFraction) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setMapRepresentativeFraction'] = SIGSlopeTool.prototype.setMapRepresentativeFraction = function(mapRepresentativeFraction) { var self = this.ptr; if (mapRepresentativeFraction && typeof mapRepresentativeFraction === 'object') mapRepresentativeFraction = mapRepresentativeFraction.ptr; _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1(self, mapRepresentativeFraction); -};; +}; -SIGSlopeTool.prototype['setMaxSlopeSteepness'] = SIGSlopeTool.prototype.setMaxSlopeSteepness = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxSlopeSteepness) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setMaxSlopeSteepness'] = SIGSlopeTool.prototype.setMaxSlopeSteepness = function(maxSlopeSteepness) { var self = this.ptr; if (maxSlopeSteepness && typeof maxSlopeSteepness === 'object') maxSlopeSteepness = maxSlopeSteepness.ptr; _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1(self, maxSlopeSteepness); -};; +}; -SIGSlopeTool.prototype['setNumberOfContours'] = SIGSlopeTool.prototype.setNumberOfContours = /** @suppress {undefinedVars, duplicate} @this{Object} */function(numberOfContours) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['setNumberOfContours'] = SIGSlopeTool.prototype.setNumberOfContours = function(numberOfContours) { var self = this.ptr; if (numberOfContours && typeof numberOfContours === 'object') numberOfContours = numberOfContours.ptr; _emscripten_bind_SIGSlopeTool_setNumberOfContours_1(self, numberOfContours); -};; +}; - SIGSlopeTool.prototype['__destroy__'] = SIGSlopeTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SIGSlopeTool.prototype['__destroy__'] = SIGSlopeTool.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool___destroy___0(self); }; -// VaporPressureDeficitCalculator -/** @suppress {undefinedVars, duplicate} @this{Object} */function VaporPressureDeficitCalculator() { + +// Interface: VaporPressureDeficitCalculator + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function VaporPressureDeficitCalculator() { this.ptr = _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0(); getCache(VaporPressureDeficitCalculator)[this.ptr] = this; -};; +}; + VaporPressureDeficitCalculator.prototype = Object.create(WrapperObject.prototype); VaporPressureDeficitCalculator.prototype.constructor = VaporPressureDeficitCalculator; VaporPressureDeficitCalculator.prototype.__class__ = VaporPressureDeficitCalculator; VaporPressureDeficitCalculator.__cache__ = {}; Module['VaporPressureDeficitCalculator'] = VaporPressureDeficitCalculator; - -VaporPressureDeficitCalculator.prototype['runCalculation'] = VaporPressureDeficitCalculator.prototype.runCalculation = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['runCalculation'] = VaporPressureDeficitCalculator.prototype.runCalculation = function() { var self = this.ptr; _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0(self); -};; +}; -VaporPressureDeficitCalculator.prototype['setTemperature'] = VaporPressureDeficitCalculator.prototype.setTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperature, units) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['setTemperature'] = VaporPressureDeficitCalculator.prototype.setTemperature = function(temperature, units) { var self = this.ptr; if (temperature && typeof temperature === 'object') temperature = temperature.ptr; if (units && typeof units === 'object') units = units.ptr; _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2(self, temperature, units); -};; +}; -VaporPressureDeficitCalculator.prototype['setRelativeHumidity'] = VaporPressureDeficitCalculator.prototype.setRelativeHumidity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(relativeHumidity, units) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['setRelativeHumidity'] = VaporPressureDeficitCalculator.prototype.setRelativeHumidity = function(relativeHumidity, units) { var self = this.ptr; if (relativeHumidity && typeof relativeHumidity === 'object') relativeHumidity = relativeHumidity.ptr; if (units && typeof units === 'object') units = units.ptr; _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2(self, relativeHumidity, units); -};; +}; -VaporPressureDeficitCalculator.prototype['getVaporPressureDeficit'] = VaporPressureDeficitCalculator.prototype.getVaporPressureDeficit = /** @suppress {undefinedVars, duplicate} @this{Object} */function(units) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['getVaporPressureDeficit'] = VaporPressureDeficitCalculator.prototype.getVaporPressureDeficit = function(units) { var self = this.ptr; if (units && typeof units === 'object') units = units.ptr; return _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1(self, units); -};; +}; - VaporPressureDeficitCalculator.prototype['__destroy__'] = VaporPressureDeficitCalculator.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +VaporPressureDeficitCalculator.prototype['__destroy__'] = VaporPressureDeficitCalculator.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_VaporPressureDeficitCalculator___destroy___0(self); }; -// RelativeHumidityTool -/** @suppress {undefinedVars, duplicate} @this{Object} */function RelativeHumidityTool() { + +// Interface: RelativeHumidityTool + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function RelativeHumidityTool() { this.ptr = _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0(); getCache(RelativeHumidityTool)[this.ptr] = this; -};; +}; + RelativeHumidityTool.prototype = Object.create(WrapperObject.prototype); RelativeHumidityTool.prototype.constructor = RelativeHumidityTool; RelativeHumidityTool.prototype.__class__ = RelativeHumidityTool; RelativeHumidityTool.__cache__ = {}; Module['RelativeHumidityTool'] = RelativeHumidityTool; - -RelativeHumidityTool.prototype['calculate'] = RelativeHumidityTool.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['calculate'] = RelativeHumidityTool.prototype.calculate = function() { var self = this.ptr; _emscripten_bind_RelativeHumidityTool_calculate_0(self); -};; +}; -RelativeHumidityTool.prototype['getDryBulbTemperature'] = RelativeHumidityTool.prototype.getDryBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getDryBulbTemperature'] = RelativeHumidityTool.prototype.getDryBulbTemperature = function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1(self, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['getSiteElevation'] = RelativeHumidityTool.prototype.getSiteElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getSiteElevation'] = RelativeHumidityTool.prototype.getSiteElevation = function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getSiteElevation_1(self, lengthUnits); -};; +}; -RelativeHumidityTool.prototype['getWetBulbTemperature'] = RelativeHumidityTool.prototype.getWetBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getWetBulbTemperature'] = RelativeHumidityTool.prototype.getWetBulbTemperature = function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1(self, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['getDewPointTemperature'] = RelativeHumidityTool.prototype.getDewPointTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getDewPointTemperature'] = RelativeHumidityTool.prototype.getDewPointTemperature = function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1(self, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['getRelativeHumidity'] = RelativeHumidityTool.prototype.getRelativeHumidity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fractionUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getRelativeHumidity'] = RelativeHumidityTool.prototype.getRelativeHumidity = function(fractionUnits) { var self = this.ptr; if (fractionUnits && typeof fractionUnits === 'object') fractionUnits = fractionUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1(self, fractionUnits); -};; +}; -RelativeHumidityTool.prototype['getWetBulbDepression'] = RelativeHumidityTool.prototype.getWetBulbDepression = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['getWetBulbDepression'] = RelativeHumidityTool.prototype.getWetBulbDepression = function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1(self, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['setDryBulbTemperature'] = RelativeHumidityTool.prototype.setDryBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dryBulbTemperature, temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['setDryBulbTemperature'] = RelativeHumidityTool.prototype.setDryBulbTemperature = function(dryBulbTemperature, temperatureUnits) { var self = this.ptr; if (dryBulbTemperature && typeof dryBulbTemperature === 'object') dryBulbTemperature = dryBulbTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2(self, dryBulbTemperature, temperatureUnits); -};; +}; -RelativeHumidityTool.prototype['setSiteElevation'] = RelativeHumidityTool.prototype.setSiteElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(siteElevation, lengthUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['setSiteElevation'] = RelativeHumidityTool.prototype.setSiteElevation = function(siteElevation, lengthUnits) { var self = this.ptr; if (siteElevation && typeof siteElevation === 'object') siteElevation = siteElevation.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_RelativeHumidityTool_setSiteElevation_2(self, siteElevation, lengthUnits); -};; +}; -RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.prototype.setWetBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(wetBulbTemperature, temperatureUnits) { +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.prototype.setWetBulbTemperature = function(wetBulbTemperature, temperatureUnits) { var self = this.ptr; if (wetBulbTemperature && typeof wetBulbTemperature === 'object') wetBulbTemperature = wetBulbTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2(self, wetBulbTemperature, temperatureUnits); -};; +}; - RelativeHumidityTool.prototype['__destroy__'] = RelativeHumidityTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +RelativeHumidityTool.prototype['__destroy__'] = RelativeHumidityTool.prototype.__destroy__ = function() { var self = this.ptr; _emscripten_bind_RelativeHumidityTool___destroy___0(self); }; + +// Interface: SafeSeparationDistanceCalculator + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +function SafeSeparationDistanceCalculator() { + this.ptr = _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0(); + getCache(SafeSeparationDistanceCalculator)[this.ptr] = this; +}; + +SafeSeparationDistanceCalculator.prototype = Object.create(WrapperObject.prototype); +SafeSeparationDistanceCalculator.prototype.constructor = SafeSeparationDistanceCalculator; +SafeSeparationDistanceCalculator.prototype.__class__ = SafeSeparationDistanceCalculator; +SafeSeparationDistanceCalculator.__cache__ = {}; +Module['SafeSeparationDistanceCalculator'] = SafeSeparationDistanceCalculator; +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['calculate'] = SafeSeparationDistanceCalculator.prototype.calculate = function() { + var self = this.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getBurningCondition'] = SafeSeparationDistanceCalculator.prototype.getBurningCondition = function() { + var self = this.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSlopeClass'] = SafeSeparationDistanceCalculator.prototype.getSlopeClass = function() { + var self = this.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSpeedClass'] = SafeSeparationDistanceCalculator.prototype.getSpeedClass = function() { + var self = this.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSafeSeparationDistance'] = SafeSeparationDistanceCalculator.prototype.getSafeSeparationDistance = function(lengthUnits) { + var self = this.ptr; + if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1(self, lengthUnits); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSafetyZoneSize'] = SafeSeparationDistanceCalculator.prototype.getSafetyZoneSize = function(areaUnits) { + var self = this.ptr; + if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1(self, areaUnits); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.getVegetationHeight = function(lengthUnits) { + var self = this.ptr; + if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1(self, lengthUnits); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['getSafetyCondition'] = SafeSeparationDistanceCalculator.prototype.getSafetyCondition = function() { + var self = this.ptr; + return _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0(self); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['setBurningCondition'] = SafeSeparationDistanceCalculator.prototype.setBurningCondition = function(condition) { + var self = this.ptr; + if (condition && typeof condition === 'object') condition = condition.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1(self, condition); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['setSlopeClass'] = SafeSeparationDistanceCalculator.prototype.setSlopeClass = function(slope) { + var self = this.ptr; + if (slope && typeof slope === 'object') slope = slope.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1(self, slope); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['setSpeedClass'] = SafeSeparationDistanceCalculator.prototype.setSpeedClass = function(speed) { + var self = this.ptr; + if (speed && typeof speed === 'object') speed = speed.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1(self, speed); +}; + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['setVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.setVegetationHeight = function(height, lengthUnits) { + var self = this.ptr; + if (height && typeof height === 'object') height = height.ptr; + if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2(self, height, lengthUnits); +}; + + +/** @suppress {undefinedVars, duplicate} @this{Object} */ +SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistanceCalculator.prototype.__destroy__ = function() { + var self = this.ptr; + _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0(self); +}; + (function() { function setupEnums() { - - // AreaUnits_AreaUnitsEnum +// $AreaUnits_AreaUnitsEnum Module['AreaUnits']['SquareFeet'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet(); @@ -13380,24 +14551,21 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['AreaUnits']['SquareKilometers'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers(); - - // BasalAreaUnits_BasalAreaUnitsEnum +// $BasalAreaUnits_BasalAreaUnitsEnum Module['BasalAreaUnits']['SquareFeetPerAcre'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre(); Module['BasalAreaUnits']['SquareMetersPerHectare'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare(); - - // FractionUnits_FractionUnitsEnum +// $FractionUnits_FractionUnitsEnum Module['FractionUnits']['Fraction'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction(); Module['FractionUnits']['Percent'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent(); - - // LengthUnits_LengthUnitsEnum +// $LengthUnits_LengthUnitsEnum Module['LengthUnits']['Feet'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet(); @@ -13416,8 +14584,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['LengthUnits']['Kilometers'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers(); - - // LoadingUnits_LoadingUnitsEnum +// $LoadingUnits_LoadingUnitsEnum Module['LoadingUnits']['PoundsPerSquareFoot'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot(); @@ -13428,8 +14595,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['LoadingUnits']['KilogramsPerSquareMeter'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter(); - - // SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum +// $SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum Module['SurfaceAreaToVolumeUnits']['SquareFeetOverCubicFeet'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet(); @@ -13440,8 +14606,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['SurfaceAreaToVolumeUnits']['SquareCentimetersOverCubicCentimeters'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters(); - - // SpeedUnits_SpeedUnitsEnum +// $SpeedUnits_SpeedUnitsEnum Module['SpeedUnits']['FeetPerMinute'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute(); @@ -13456,8 +14621,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['SpeedUnits']['KilometersPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour(); - - // PressureUnits_PressureUnitsEnum +// $PressureUnits_PressureUnitsEnum Module['PressureUnits']['Pascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal(); @@ -13478,40 +14642,35 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['PressureUnits']['PoundPerSquareInch'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch(); - - // SlopeUnits_SlopeUnitsEnum +// $SlopeUnits_SlopeUnitsEnum Module['SlopeUnits']['Degrees'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees(); Module['SlopeUnits']['Percent'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent(); - - // DensityUnits_DensityUnitsEnum +// $DensityUnits_DensityUnitsEnum Module['DensityUnits']['PoundsPerCubicFoot'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot(); Module['DensityUnits']['KilogramsPerCubicMeter'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter(); - - // HeatOfCombustionUnits_HeatOfCombustionUnitsEnum +// $HeatOfCombustionUnits_HeatOfCombustionUnitsEnum Module['HeatOfCombustionUnits']['BtusPerPound'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound(); Module['HeatOfCombustionUnits']['KilojoulesPerKilogram'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram(); - - // HeatSinkUnits_HeatSinkUnitsEnum +// $HeatSinkUnits_HeatSinkUnitsEnum Module['HeatSinkUnits']['BtusPerCubicFoot'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot(); Module['HeatSinkUnits']['KilojoulesPerCubicMeter'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter(); - - // HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum +// $HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum Module['HeatPerUnitAreaUnits']['BtusPerSquareFoot'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot(); @@ -13520,8 +14679,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['HeatPerUnitAreaUnits']['KilowattSecondsPerSquareMeter'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter(); - - // HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum +// $HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum Module['HeatSourceAndReactionIntensityUnits']['BtusPerSquareFootPerMinute'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute(); @@ -13534,8 +14692,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['HeatSourceAndReactionIntensityUnits']['KilowattsPerSquareMeter'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter(); - - // FirelineIntensityUnits_FirelineIntensityUnitsEnum +// $FirelineIntensityUnits_FirelineIntensityUnitsEnum Module['FirelineIntensityUnits']['BtusPerFootPerSecond'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond(); @@ -13548,8 +14705,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['FirelineIntensityUnits']['KilowattsPerMeter'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter(); - - // TemperatureUnits_TemperatureUnitsEnum +// $TemperatureUnits_TemperatureUnitsEnum Module['TemperatureUnits']['Fahrenheit'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit(); @@ -13558,8 +14714,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TemperatureUnits']['Kelvin'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin(); - - // TimeUnits_TimeUnitsEnum +// $TimeUnits_TimeUnitsEnum Module['TimeUnits']['Minutes'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes(); @@ -13568,16 +14723,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TimeUnits']['Hours'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours(); - - // ContainTactic_ContainTacticEnum +// $ContainTactic_ContainTacticEnum Module['HeadAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack(); Module['RearAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack(); - - // ContainStatus_ContainStatusEnum +// $ContainStatus_ContainStatusEnum Module['Unreported'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported(); @@ -13598,8 +14751,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TimeLimitExceeded'] = _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded(); - - // ContainFlank_ContainFlankEnum +// $ContainFlank_ContainFlankEnum Module['LeftFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank(); @@ -13610,16 +14762,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['NeitherFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank(); - - // ContainMode +// $ContainMode Module['Default'] = _emscripten_enum_ContainMode_Default(); Module['ComputeWithOptimalResource'] = _emscripten_enum_ContainMode_ComputeWithOptimalResource(); - - // IgnitionFuelBedType_IgnitionFuelBedTypeEnum +// $IgnitionFuelBedType_IgnitionFuelBedTypeEnum Module['PonderosaPineLitter'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter(); @@ -13638,8 +14788,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['PeatMoss'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss(); - - // LightningCharge_LightningChargeEnum +// $LightningCharge_LightningChargeEnum Module['Negative'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Negative(); @@ -13648,16 +14797,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['Unknown'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown(); - - // SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum +// $SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum Module['CLOSED'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED(); Module['OPEN'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN(); - - // SpotTreeSpecies_SpotTreeSpeciesEnum +// $SpotTreeSpecies_SpotTreeSpeciesEnum Module['ENGELMANN_SPRUCE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE(); @@ -13688,8 +14835,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['LOBLOLLY_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE(); - - // SpotFireLocation_SpotFireLocationEnum +// $SpotFireLocation_SpotFireLocationEnum Module['MIDSLOPE_WINDWARD'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD(); @@ -13700,16 +14846,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['RIDGE_TOP'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP(); - - // FuelLifeState_FuelLifeStateEnum +// $FuelLifeState_FuelLifeStateEnum Module['Dead'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead(); Module['Live'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live(); - - // FuelConstantsEnum_FuelConstantsEnum +// $FuelConstantsEnum_FuelConstantsEnum Module['MaxLifeStates'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates(); @@ -13724,16 +14868,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['MaxFuelModels'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels(); - - // AspenFireSeverity_AspenFireSeverityEnum +// $AspenFireSeverity_AspenFireSeverityEnum Module['Low'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low(); Module['Moderate'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate(); - - // ChaparralFuelType_ChaparralFuelTypeEnum +// $ChaparralFuelType_ChaparralFuelTypeEnum Module['NotSet'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet(); @@ -13742,16 +14884,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['MixedBrush'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush(); - - // ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum +// $ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum Module['DirectFuelLoad'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad(); Module['FuelLoadFromDepthAndChaparralType'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType(); - - // MoistureInputMode_MoistureInputModeEnum +// $MoistureInputMode_MoistureInputModeEnum Module['BySizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass(); @@ -13764,8 +14904,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['MoistureScenario'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario(); - - // MoistureClassInput_MoistureClassInputEnum +// $MoistureClassInput_MoistureClassInputEnum Module['OneHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour(); @@ -13782,16 +14921,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['LiveAggregate'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate(); - - // SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum +// $SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum Module['FromIgnitionPoint'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint(); Module['FromPerimeter'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter(); - - // TwoFuelModelsMethod_TwoFuelModelsMethodEnum +// $TwoFuelModelsMethod_TwoFuelModelsMethodEnum Module['NoMethod'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod(); @@ -13802,16 +14939,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TwoDimensional'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional(); - - // WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum +// $WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum Module['Unsheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered(); Module['Sheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered(); - - // WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum +// $WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum Module['UserInput'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput(); @@ -13820,16 +14955,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['DontUseCrownRatio'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio(); - - // WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum +// $WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum Module['RelativeToUpslope'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope(); Module['RelativeToNorth'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth(); - - // WindHeightInputMode_WindHeightInputModeEnum +// $WindHeightInputMode_WindHeightInputModeEnum Module['DirectMidflame'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame(); @@ -13838,16 +14971,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['TenMeter'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter(); - - // WindUpslopeAlignmentMode +// $WindUpslopeAlignmentMode Module['NotAligned'] = _emscripten_enum_WindUpslopeAlignmentMode_NotAligned(); Module['Aligned'] = _emscripten_enum_WindUpslopeAlignmentMode_Aligned(); - - // SurfaceRunInDirectionOf +// $SurfaceRunInDirectionOf Module['MaxSpread'] = _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread(); @@ -13856,8 +14987,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['HeadingBackingFlanking'] = _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking(); - - // FireType_FireTypeEnum +// $FireType_FireTypeEnum Module['Surface'] = _emscripten_enum_FireType_FireTypeEnum_Surface(); @@ -13868,8 +14998,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['Crowning'] = _emscripten_enum_FireType_FireTypeEnum_Crowning(); - - // BeetleDamage +// $BeetleDamage Module['not_set'] = _emscripten_enum_BeetleDamage_not_set(); @@ -13878,16 +15007,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['yes'] = _emscripten_enum_BeetleDamage_yes(); - - // CrownFireCalculationMethod +// $CrownFireCalculationMethod Module['rothermel'] = _emscripten_enum_CrownFireCalculationMethod_rothermel(); Module['scott_and_reinhardt'] = _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt(); - - // CrownDamageEquationCode +// $CrownDamageEquationCode Module['not_set'] = _emscripten_enum_CrownDamageEquationCode_not_set(); @@ -13914,8 +15041,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['douglas_fir'] = _emscripten_enum_CrownDamageEquationCode_douglas_fir(); - - // CrownDamageType +// $CrownDamageType Module['not_set'] = _emscripten_enum_CrownDamageType_not_set(); @@ -13926,8 +15052,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['crown_kill'] = _emscripten_enum_CrownDamageType_crown_kill(); - - // EquationType +// $EquationType Module['not_set'] = _emscripten_enum_EquationType_not_set(); @@ -13938,8 +15063,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['crown_damage'] = _emscripten_enum_EquationType_crown_damage(); - - // FireSeverity +// $FireSeverity Module['not_set'] = _emscripten_enum_FireSeverity_not_set(); @@ -13948,16 +15072,14 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['low'] = _emscripten_enum_FireSeverity_low(); - - // FlameLengthOrScorchHeightSwitch +// $FlameLengthOrScorchHeightSwitch Module['flame_length'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length(); Module['scorch_height'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height(); - - // GACC +// $GACC Module['NotSet'] = _emscripten_enum_GACC_NotSet(); @@ -13980,8 +15102,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['Southwest'] = _emscripten_enum_GACC_Southwest(); - - // RequiredFieldNames +// $RequiredFieldNames Module['region'] = _emscripten_enum_RequiredFieldNames_region(); @@ -14012,8 +15133,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['num_inputs'] = _emscripten_enum_RequiredFieldNames_num_inputs(); - - // FDFMToolAspectIndex_AspectIndexEnum +// $FDFMToolAspectIndex_AspectIndexEnum Module['NORTH'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH(); @@ -14024,8 +15144,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['WEST'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST(); - - // FDFMToolDryBulbIndex_DryBulbIndexEnum +// $FDFMToolDryBulbIndex_DryBulbIndexEnum Module['TEN_TO_TWENTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F(); @@ -14040,8 +15159,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F(); - - // FDFMToolElevationIndex_ElevationIndexEnum +// $FDFMToolElevationIndex_ElevationIndexEnum Module['BELOW_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT(); @@ -14050,8 +15168,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['ABOVE_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT(); - - // FDFMToolMonthIndex_MonthIndexEnum +// $FDFMToolMonthIndex_MonthIndexEnum Module['MAY_JUNE_JULY'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY(); @@ -14060,8 +15177,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['NOV_DEC_JAN'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN(); - - // FDFMToolRHIndex_RHIndexEnum +// $FDFMToolRHIndex_RHIndexEnum Module['ZERO_TO_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT(); @@ -14106,24 +15222,21 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['ONE_HUNDRED_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT(); - - // FDFMToolShadingIndex_ShadingIndexEnum +// $FDFMToolShadingIndex_ShadingIndexEnum Module['EXPOSED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED(); Module['SHADED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED(); - - // FDFMToolSlopeIndex_SlopeIndexEnum +// $FDFMToolSlopeIndex_SlopeIndexEnum Module['ZERO_TO_THIRTY_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT(); Module['GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT(); - - // FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum +// $FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum Module['EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE(); @@ -14138,8 +15251,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET(); - - // RepresentativeFraction_RepresentativeFractionEnum +// $RepresentativeFraction_RepresentativeFractionEnum Module['NINTEEN_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY(); @@ -14178,8 +15290,7 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY(); - - // HorizontalDistanceIndex_HorizontalDistanceIndexEnum +// $HorizontalDistanceIndex_HorizontalDistanceIndexEnum Module['UPSLOPE_ZERO_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES(); @@ -14195,10 +15306,45 @@ RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.p Module['CROSS_SLOPE_NINETY_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES(); + +// $BurningCondition_BurningConditionEnum + + Module['Low'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Low(); + + Module['Moderate'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Moderate(); + + Module['Extreme'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme(); + + +// $SlopeClass_SlopeClassEnum + + Module['Flat'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Flat(); + + Module['Moderate'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Moderate(); + + Module['Steep'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Steep(); + + +// $SpeedClass_SpeedClassEnum + + Module['Light'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Light(); + + Module['Moderate'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Moderate(); + + Module['High'] = _emscripten_enum_SpeedClass_SpeedClassEnum_High(); + + +// $SafetyCondition_SafetyConditionEnum + + Module['Low'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low(); + + Module['Moderate'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate(); + + Module['Extreme'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme(); + } if (runtimeInitialized) setupEnums(); else addOnInit(setupEnums); })(); +// end include: /Users/rsheperd/code/sig/behave-app/behave-lib/include/js/glue.js - -// end include: /home/kcheung/work/code/behave-polylith/behave-lib/include/js/glue.js diff --git a/projects/behave/resources/public/js/behave-min.wasm b/projects/behave/resources/public/js/behave-min.wasm index e37d96b9..b808131a 100755 Binary files a/projects/behave/resources/public/js/behave-min.wasm and b/projects/behave/resources/public/js/behave-min.wasm differ diff --git a/projects/behave/src/cljs/behave/lib/enums.cljs b/projects/behave/src/cljs/behave/lib/enums.cljs index ba38a06f..2e4e0e69 100644 --- a/projects/behave/src/cljs/behave/lib/enums.cljs +++ b/projects/behave/src/cljs/behave/lib/enums.cljs @@ -36,6 +36,12 @@ ["BasalAreaUnits::SquareFeetPerAcre" "BasalAreaUnits::SquareMetersPerHectare"])) +(def burning-condition + (enum "BurningCondition_BurningConditionEnum" + ["BurningCondition::Low" + "BurningCondition::Moderate" + "BurningCondition::Extreme"])) + (def beetle-damage (enum "BeetleDamage" ["BeetleDamage::not_set" @@ -300,11 +306,29 @@ "GACC::SouthernArea" "GACC::Southwest"])) +(def safety-condition + (enum "SafetyCondition_SafetyConditionEnum" + ["SafetyCondition::Low" + "SafetyCondition::Moderate" + "SafetyCondition::Extreme"])) + +(def slope-class + (enum "SlopeClass_SlopeClassEnum" + ["SlopeClass::Flat" + "SlopeClass::Moderate" + "SlopeClass::Steep"])) + (def slope-units (enum "SlopeUnits_SlopeUnitsEnum" ["SlopeUnits::Degrees" "SlopeUnits::Percent"])) +(def speed-class + (enum "SpeedClass_SpeedClassEnum" + ["SpeedClass::Light" + "SpeedClass::Moderate" + "SpeedClass::High"])) + (def speed-units (enum "SpeedUnits_SpeedUnitsEnum" ["SpeedUnits::FeetPerMinute" diff --git a/projects/behave/src/cljs/behave/lib/safe_separation_distance_calculator.cljs b/projects/behave/src/cljs/behave/lib/safe_separation_distance_calculator.cljs new file mode 100644 index 00000000..9b3befb0 --- /dev/null +++ b/projects/behave/src/cljs/behave/lib/safe_separation_distance_calculator.cljs @@ -0,0 +1,50 @@ +(ns behave.lib.safe-separation-distance-calculator) + +;; Auto-generated by hatchet 🪓 + +(defn init [] + (js/Module.SafeSeparationDistanceCalculator.)) + +;; Calculate + +(defn calculate [self] + (.calculate self)) + +;; Getters + +(defn getBurningCondition [self] + (.getBurningCondition self)) + +(defn getSafeSeparationDistance [self lengthUnits] + (.getSafeSeparationDistance self lengthUnits)) + +(defn getSafetyCondition [self] + (.getSafetyCondition self)) + +(defn getSafetyZoneSize [self areaUnits] + (.getSafetyZoneSize self areaUnits)) + +(defn getSlopeClass [self] + (.getSlopeClass self)) + +(defn getSpeedClass [self] + (.getSpeedClass self)) + +(defn getVegetationHeight [self lengthUnits] + (.getVegetationHeight self lengthUnits)) + +;; Setters + +(defn setSpeedClass [self speed] + (.setSpeedClass self speed)) + +(defn setSlopeClass [self slope] + (.setSlopeClass self slope)) + +(defn setBurningCondition [self condition] + (.setBurningCondition self condition)) + +(defn setVegetationHeight [self height lengthUnits] + (.setVegetationHeight self height lengthUnits)) + +(def ^:export ns-public-fns (update-keys (ns-publics 'behave.lib.safe-separation-distance-calculator) name)) diff --git a/projects/behave/src/cljs/behave/tool/solver.cljs b/projects/behave/src/cljs/behave/tool/solver.cljs index d630b43a..b615e842 100644 --- a/projects/behave/src/cljs/behave/tool/solver.cljs +++ b/projects/behave/src/cljs/behave/tool/solver.cljs @@ -9,6 +9,7 @@ [behave.lib.fine-dead-fuel-moisture-tool] [behave.lib.slope-tool] [behave.lib.relative-humidity] + [behave.lib.safe-separation-distance-calculator] [behave.lib.vapor-pressure-deficit-calculator])) (defn kebab->snake diff --git a/projects/behave/src/cljs/behave/tool/subs.cljs b/projects/behave/src/cljs/behave/tool/subs.cljs index ec2d1beb..8d45c572 100644 --- a/projects/behave/src/cljs/behave/tool/subs.cljs +++ b/projects/behave/src/cljs/behave/tool/subs.cljs @@ -49,7 +49,9 @@ (fn [_ [_ subtool-uuid]] (let [subtool (d/pull @@s/vms-conn '[* {:subtool/variables [* {:variable/_subtool-variables - [* {:variable/list [* {:list/options [*]}]}]}]}] + [* {:variable/list + [* {:list/options + [* {:list-option/color-tag-ref [*]}]}]}]}]}] [:bp/uuid subtool-uuid])] (->> (:subtool/variables subtool) (mapv enrich-subtool-variable) diff --git a/projects/behave/src/cljs/behave/tool/views.cljs b/projects/behave/src/cljs/behave/tool/views.cljs index 690c626d..52d1b7ff 100644 --- a/projects/behave/src/cljs/behave/tool/views.cljs +++ b/projects/behave/src/cljs/behave/tool/views.cljs @@ -4,6 +4,8 @@ [behave.translate :refer [kebab]] [re-frame.core :as rf])) @@ -23,6 +25,22 @@ :order idx}) tools)}]}])) +(defn luminance [r g b] + (let [srgb (fn [component] + (let [c (/ component 255.0)] + (if (<= c 0.03928) + (/ c 12.92) + (js/Math.pow (/ (+ c 0.055) 1.055) 2.4))))] + (+ (* 0.2126 (srgb r)) + (* 0.7152 (srgb g)) + (* 0.0722 (srgb b))))) + +(defn hex-to-rgb [hex] + (let [r (parse-int (subs hex 1 3) 16) + g (parse-int (subs hex 3 5) 16) + b (parse-int (subs hex 5 7) 16)] + [r g b])) + (defmulti #^{:private true} tool-input (fn [{:keys [variable]}] (:variable/kind variable))) @@ -122,11 +140,15 @@ :options (concat [{:label @(option options))}])])) -(defn- tool-output +(defmulti #^{:private true} tool-output + (fn [{:keys [variable]}] (:variable/kind variable))) + +(defmethod tool-output :continuous [{:keys [variable tool-uuid subtool-uuid auto-compute?]}] (let [{sv-uuid :bp/uuid domain-uuid :variable/domain-uuid var-name :variable/name + var-kind :variable/kind dimension-uuid :variable/dimension-uuid native-unit-uuid :variable/native-unit-uuid english-unit-uuid :variable/english-unit-uuid @@ -156,6 +178,32 @@ % auto-compute?])]])) +(defmethod tool-output :discrete + [{:keys [variable tool-uuid subtool-uuid auto-compute?]}] + (let [{sv-uuid :bp/uuid + var-name :variable/name + list :variable/list + help-key :subtool-variable/help-key} variable + value (rf/subscribe [:tool/output-value tool-uuid subtool-uuid sv-uuid]) + list-options (index-by :list-option/value (:list/options list)) + matching-option (get list-options @value) + background (get-in matching-option [:list-option/color-tag-ref :tag/color] "#FFFFFF") + lum-bg (apply luminance (hex-to-rgb background)) + black-contrast (/ (+ lum-bg 0.05) 0.05) + white-contrast (/ 1.05 (+ lum-bg 0.05)) + font-color (if (> white-contrast black-contrast) "#FFFFFF" "#000000")] + [:div + [:div.tool-output + {:on-mouse-over #(rf/dispatch [:help/highlight-section help-key])} + [:div.tool-output__output + {:on-mouse-over #(prn [:help/highlight-section help-key])} + [c/text-input {:id sv-uuid + :disabled? true + :label var-name + :background background + :font-color font-color + :value (get matching-option :list-option/name "")}]]]])) + (defn- auto-compute-subtool [tool-uuid subtool-uuid] (rf/dispatch [:tool/solve tool-uuid subtool-uuid]) (let [variables (rf/subscribe [:subtool/encriched-subtool-variables subtool-uuid])]