docker: production image + Gitea Actions for monthly refresh
Image rebuild (skip scrape) / build (push) Failing after 1h37m12s
Image rebuild (skip scrape) / build (push) Failing after 1h37m12s
Dockerfile: self-contained image with corpus + Chroma + BM25 baked in. Drawbar's compose pulls + runs without volume mounts. Built from sources.json (labels schema), PRODUCT_NAME=crop_chem by default, HYBRID_SEARCH=true (always-on for production quality). RERANK_URL + OLLAMA_URL get set at compose time. .gitea/workflows/refresh.yml: monthly cron (1st @ 06:00 UTC) does full scrape → reindex → image push. Scrapes Bayer (~30 min) + EPA PPLS row-crop filtered (~7h). Skips reindex+push if no corpus diff. Tags pushed: :latest, :<sha12>, :corpus-<YYYY.MM.DD>. .gitea/workflows/image-only.yml: on-demand or auto on code-only pushes to main (paths: docs_mcp/, rag/, scrape/, requirements.txt, Dockerfile, sources.json). Reindexes from committed corpus, builds image, pushes. ~10 min vs ~9h full refresh. .gitignore: corpus/ now COMMITTED (4,159 labels, 265 MB of .md + sidecars). Lets image-only.yml rebuild indexes without re-scraping. chroma/ + bm25/ still gitignored (regenerable binary indexes). .dockerignore: drops venv, eval results, PLAN/README/CLAUDE.md, deploy/, .git/ — keeps the image lean. corpus + chroma + bm25 explicitly NOT in dockerignore (those go INTO the image). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,27 @@
|
|||||||
|
# Don't ship dev cruft into the image.
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*.egg-info/
|
||||||
|
.pytest_cache/
|
||||||
|
.mypy_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
|
||||||
|
# Eval artifacts — keep the harness code (eval/*.py + queries.jsonl)
|
||||||
|
# but not the markdown results (re-runnable locally).
|
||||||
|
eval/results/
|
||||||
|
|
||||||
|
# Git + IDE
|
||||||
|
.git/
|
||||||
|
.github/
|
||||||
|
.gitea/
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
|
||||||
|
# Documentation / planning — not needed in runtime image
|
||||||
|
PLAN.md
|
||||||
|
README.md
|
||||||
|
CLAUDE.md
|
||||||
|
deploy/
|
||||||
@@ -1,34 +1,32 @@
|
|||||||
name: Image rebuild (skip scrape)
|
name: Image rebuild (skip scrape)
|
||||||
|
|
||||||
# Fast path for code-only changes. Skips the scrape and goes straight to:
|
# Fast path for code-only changes. Skips the scrape and goes straight
|
||||||
# rebuild indexes (from corpus already committed on main) + image build
|
# to: rebuild indexes (from corpus already committed on main) + image
|
||||||
# + push. Runtime is ~18 min vs ~40 min for the full refresh.
|
# build + push. Runtime ~10 min vs ~9 h for the full monthly refresh.
|
||||||
#
|
#
|
||||||
# Use when a PR only changes code/config — anything where the upstream
|
# Use when a PR only changes code/config — anything where the upstream
|
||||||
# corpus hasn't moved but we want the new Python in the running image.
|
# corpus hasn't moved but we want the new Python in the running image.
|
||||||
#
|
|
||||||
# IMPORTANT: fetch-depth: 0 is required for the digest-history step
|
|
||||||
# to find commits to walk. Don't change to 1.
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- "docs_mcp/**"
|
||||||
|
- "rag/**"
|
||||||
|
- "scrape/**"
|
||||||
|
- "requirements.txt"
|
||||||
|
- "Dockerfile"
|
||||||
|
- "sources.json"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY_PUSH: <lan-host>:<port>
|
REGISTRY_PUSH: git.jpaul.io
|
||||||
REGISTRY_PULL: <public-registry-hostname>
|
REGISTRY_PULL: git.jpaul.io
|
||||||
# Image name derives from the actual repo at runtime, so a clone
|
|
||||||
# doesn't need to find/replace anything. e.g. justin/my-product-docs.
|
|
||||||
# github.* context is Gitea Actions' inherited GitHub-Actions namespace
|
|
||||||
# — values come from the Gitea server, not github.com.
|
|
||||||
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||||
OLLAMA_URL: http://<gpu-host>:11434
|
OLLAMA_URL: http://192.168.0.2:11434,http://192.168.0.2:11435,http://192.168.0.125:11434
|
||||||
EMBED_MODEL: nomic-embed-text
|
EMBED_MODEL: nomic-embed-text
|
||||||
# PRODUCT_NAME defaults to the repo name so a clone works without
|
PRODUCT_NAME: crop_chem
|
||||||
# editing. Override here if you want a different identifier (e.g.
|
|
||||||
# repo "my-product-docs" → PRODUCT_NAME "myproduct"). Used as the
|
|
||||||
# Chroma collection name, BM25 db filename, and MCP server name —
|
|
||||||
# see docs_mcp/server.py.
|
|
||||||
PRODUCT_NAME: ${{ github.event.repository.name }}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@@ -39,8 +37,6 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
# Full history (not shallow) so the digest-history step can
|
|
||||||
# walk git log up to --history-days back.
|
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
@@ -53,46 +49,34 @@ jobs:
|
|||||||
python -m pip install -q --upgrade pip
|
python -m pip install -q --upgrade pip
|
||||||
python -m pip install -q -r requirements.txt
|
python -m pip install -q -r requirements.txt
|
||||||
|
|
||||||
- name: Refresh digest history
|
|
||||||
# Cheap (a few seconds); doesn't touch corpus content.
|
|
||||||
# Without this step, a code-only deploy would ship an
|
|
||||||
# increasingly-stale digest history relative to git.
|
|
||||||
run: |
|
|
||||||
mkdir -p corpus/.digest
|
|
||||||
python -m scrape.changelog \
|
|
||||||
--history-out corpus/.digest/history.jsonl \
|
|
||||||
--history-days 120
|
|
||||||
|
|
||||||
- name: Verify committed corpus is present
|
- name: Verify committed corpus is present
|
||||||
run: |
|
run: |
|
||||||
test -d corpus || { echo "ERROR: corpus/ missing on this ref"; exit 1; }
|
test -d corpus || { echo "ERROR: corpus/ missing on this ref"; exit 1; }
|
||||||
echo "corpus: $(du -sh corpus | cut -f1), $(find corpus -name '*.md' | wc -l) markdown files"
|
n_md=$(find corpus -name '*.md' | wc -l)
|
||||||
|
n_json=$(find corpus -name '*.json' | wc -l)
|
||||||
|
echo "corpus: $(du -sh corpus | cut -f1) on disk, ${n_md} .md / ${n_json} .json"
|
||||||
|
test "$n_md" -gt 100 || { echo "ERROR: corpus has fewer than 100 labels — was the rename committed?"; exit 1; }
|
||||||
|
|
||||||
- name: Rebuild indexes from existing corpus
|
- name: Rebuild indexes from committed corpus
|
||||||
run: python -m rag.index --rebuild
|
run: python -m rag.index --rebuild
|
||||||
|
|
||||||
- name: Log in to registry (LAN endpoint)
|
- name: Log in to Gitea container registry
|
||||||
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login "${REGISTRY_PUSH}" -u "${{ github.repository_owner }}" --password-stdin
|
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login "${REGISTRY_PUSH}" -u "${{ github.repository_owner }}" --password-stdin
|
||||||
|
|
||||||
- name: Build & push image
|
- name: Build & push image
|
||||||
run: |
|
run: |
|
||||||
SHA_TAG=$(echo "$GITHUB_SHA" | cut -c1-12)
|
SHA_TAG=$(echo "$GITHUB_SHA" | cut -c1-12)
|
||||||
DATE_TAG=$(date -u +%Y.%m.%d)
|
CORPUS_TAG="corpus-$(date -u +%Y.%m.%d)"
|
||||||
docker build \
|
docker build \
|
||||||
-t "${REGISTRY_PUSH}/${IMAGE}:latest" \
|
-t "${REGISTRY_PUSH}/${IMAGE}:latest" \
|
||||||
-t "${REGISTRY_PUSH}/${IMAGE}:${SHA_TAG}" \
|
-t "${REGISTRY_PUSH}/${IMAGE}:${SHA_TAG}" \
|
||||||
-t "${REGISTRY_PUSH}/${IMAGE}:${DATE_TAG}" \
|
-t "${REGISTRY_PUSH}/${IMAGE}:${CORPUS_TAG}" \
|
||||||
.
|
.
|
||||||
docker push "${REGISTRY_PUSH}/${IMAGE}:latest"
|
docker push "${REGISTRY_PUSH}/${IMAGE}:latest"
|
||||||
docker push "${REGISTRY_PUSH}/${IMAGE}:${SHA_TAG}"
|
docker push "${REGISTRY_PUSH}/${IMAGE}:${SHA_TAG}"
|
||||||
docker push "${REGISTRY_PUSH}/${IMAGE}:${DATE_TAG}"
|
docker push "${REGISTRY_PUSH}/${IMAGE}:${CORPUS_TAG}"
|
||||||
|
|
||||||
- name: Link container package to this repo
|
- name: Link container package to this repo
|
||||||
# Gitea container packages are owned by a USER, not a repo —
|
|
||||||
# they don't auto-appear under the repo's Packages tab.
|
|
||||||
# This API call creates the association. One-time-effective:
|
|
||||||
# re-running returns 400 once linked, which we swallow.
|
|
||||||
# Endpoint requires Gitea 1.21+.
|
|
||||||
env:
|
env:
|
||||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
@@ -105,7 +89,7 @@ jobs:
|
|||||||
echo "link http=$CODE body=$(cat "$BODY")"
|
echo "link http=$CODE body=$(cat "$BODY")"
|
||||||
case "$CODE" in
|
case "$CODE" in
|
||||||
201) echo "linked package to ${OWNER}/${PKG}" ;;
|
201) echo "linked package to ${OWNER}/${PKG}" ;;
|
||||||
400) echo "already linked (re-link returns 400) — ok" ;;
|
400) echo "already linked — ok" ;;
|
||||||
*) echo "unexpected status $CODE"; exit 1 ;;
|
*) echo "unexpected status $CODE"; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -116,5 +100,5 @@ jobs:
|
|||||||
python scripts/registry_gc.py \
|
python scripts/registry_gc.py \
|
||||||
--owner "${{ github.repository_owner }}" \
|
--owner "${{ github.repository_owner }}" \
|
||||||
--package "${{ github.event.repository.name }}" \
|
--package "${{ github.event.repository.name }}" \
|
||||||
--keep-days 90 \
|
--keep-days 180 \
|
||||||
--keep-latest 5
|
--keep-latest 6
|
||||||
|
|||||||
@@ -1,45 +1,43 @@
|
|||||||
name: Weekly docs refresh
|
name: Monthly corpus refresh
|
||||||
|
|
||||||
# Runs the full pipeline: scrape upstream → rebuild indexes → push
|
# Runs the full pipeline: scrape all sources → rebuild indexes →
|
||||||
# image. Cron'd weekly (Mondays). Skip the reindex + image-push if the
|
# push image. Cron'd once a month (1st @ 06:00 UTC). Skip the
|
||||||
# scrape produced no diff against the committed corpus.
|
# reindex + image-push if the scrape produced no diff against the
|
||||||
|
# committed corpus.
|
||||||
#
|
#
|
||||||
# IMPORTANT: actions/checkout@v4 fetch-depth: 0 is required because
|
# Bayer takes ~30 min; EPA PPLS takes ~7 h with row-crop +
|
||||||
# the digest-history step walks git log up to --history-days back.
|
# registrant filters. The whole monthly job is ~8-9 h end-to-end.
|
||||||
# With a shallow checkout the history file ships empty.
|
# If that's too long for the runner you can:
|
||||||
|
# - Run just one source: workflow_dispatch with sources="bayer"
|
||||||
|
# - Limit EPA at the scraper: edit the step to add "--limit 5000"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 6 * * 1" # Mondays 06:00 UTC
|
- cron: "0 6 1 * *" # 1st of each month, 06:00 UTC
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
force_build:
|
force_build:
|
||||||
description: "Rebuild indexes + push image even if corpus is unchanged"
|
description: "Rebuild indexes + push image even if corpus is unchanged"
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
sources:
|
||||||
|
description: "Sources to scrape (comma-separated, blank = all)"
|
||||||
|
type: string
|
||||||
|
default: ""
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# If your registry sits behind Cloudflare with its 100 MB body cap,
|
# Self-hosted Gitea registry on the same LAN as the runner.
|
||||||
# use a LAN endpoint for pushes (bypasses CF) and the public hostname
|
REGISTRY_PUSH: git.jpaul.io
|
||||||
# for pulls (response bodies aren't capped).
|
REGISTRY_PULL: git.jpaul.io
|
||||||
REGISTRY_PUSH: <lan-host>:<port>
|
|
||||||
REGISTRY_PULL: <public-registry-hostname>
|
|
||||||
# Image name derives from the actual repo at runtime, so a clone
|
|
||||||
# doesn't need to find/replace anything. e.g. justin/my-product-docs.
|
|
||||||
# github.* context is Gitea Actions' inherited GitHub-Actions namespace
|
|
||||||
# — values come from the Gitea server, not github.com.
|
|
||||||
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||||
|
|
||||||
# Embedder. One URL per GPU; the indexer round-robins.
|
# Embedder pool for the reindex step. Two Ollama instances on the
|
||||||
OLLAMA_URL: http://<gpu-host>:11434
|
# Gitea/runner host (one per GPU) + the Windows Ollama. Trashpanda's
|
||||||
|
# Ollama is production-shared; CI doesn't hit it.
|
||||||
|
OLLAMA_URL: http://192.168.0.2:11434,http://192.168.0.2:11435,http://192.168.0.125:11434
|
||||||
EMBED_MODEL: nomic-embed-text
|
EMBED_MODEL: nomic-embed-text
|
||||||
|
|
||||||
# PRODUCT_NAME defaults to the repo name so a clone works without
|
PRODUCT_NAME: crop_chem
|
||||||
# editing. Override here if you want a different identifier (e.g.
|
|
||||||
# repo "my-product-docs" → PRODUCT_NAME "myproduct"). Used as the
|
|
||||||
# Chroma collection name, BM25 db filename, and MCP server name —
|
|
||||||
# see docs_mcp/server.py.
|
|
||||||
PRODUCT_NAME: ${{ github.event.repository.name }}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
refresh:
|
refresh:
|
||||||
@@ -50,9 +48,6 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
# Full history — required for the digest-history step to
|
|
||||||
# walk git log. Default fetch-depth: 1 silently produces a
|
|
||||||
# 0-byte history file.
|
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
@@ -66,52 +61,33 @@ jobs:
|
|||||||
python -m pip install -q -r requirements.txt
|
python -m pip install -q -r requirements.txt
|
||||||
|
|
||||||
# ---- Phase 1: scrape ---------------------------------------
|
# ---- Phase 1: scrape ---------------------------------------
|
||||||
- name: Refresh bundle catalog
|
- name: Scrape Bayer
|
||||||
run: python -m scrape.bundles
|
if: ${{ inputs.sources == '' || contains(inputs.sources, 'bayer') }}
|
||||||
|
run: python -m scrape.runner --source bayer --force
|
||||||
|
|
||||||
- name: Re-scrape all bundles
|
- name: Scrape EPA PPLS
|
||||||
# --force re-fetches every page so we actually see upstream
|
if: ${{ inputs.sources == '' || contains(inputs.sources, 'epa_ppls') }}
|
||||||
# edits. Without it the runner skips pages already on disk.
|
# Row-crop + registrant filters keep this to ~16K PDFs / ~7h.
|
||||||
run: python -m scrape.runner --all --force --concurrency 6
|
# Pass --no-row-crop-filter or --no-registrant-filter to broaden.
|
||||||
|
run: python -m scrape.runner --source epa_ppls --force
|
||||||
|
|
||||||
# ---- Build the digest history BEFORE committing ------------
|
# ---- Commit corpus changes + retry-on-race -----------------
|
||||||
# See PLAN.md Phase 13. Walks recent corpus-touching commits
|
|
||||||
# and writes corpus/.digest/history.jsonl. The current refresh
|
|
||||||
# gets added on the NEXT run's history (one-week lag is fine).
|
|
||||||
- name: Build digest history
|
|
||||||
run: |
|
|
||||||
mkdir -p corpus/.digest
|
|
||||||
python -m scrape.changelog \
|
|
||||||
--history-out corpus/.digest/history.jsonl \
|
|
||||||
--history-days 120
|
|
||||||
|
|
||||||
# ---- Commit + retry-on-race --------------------------------
|
|
||||||
- name: Commit corpus changes (if any)
|
- name: Commit corpus changes (if any)
|
||||||
id: commit
|
id: commit
|
||||||
run: |
|
run: |
|
||||||
git config user.name "<product>-docs-refresh"
|
git config user.name "crop-chem-docs-refresh"
|
||||||
git config user.email "actions@<your-domain>"
|
git config user.email "actions@jpaul.io"
|
||||||
git add bundles.json corpus
|
git add sources.json corpus
|
||||||
if git diff --cached --quiet; then
|
if git diff --cached --quiet; then
|
||||||
echo "no corpus changes — skipping reindex and image build"
|
echo "no corpus changes — skipping reindex and image build"
|
||||||
echo "changed=false" >> "$GITHUB_OUTPUT"
|
echo "changed=false" >> "$GITHUB_OUTPUT"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
echo "changed=true" >> "$GITHUB_OUTPUT"
|
echo "changed=true" >> "$GITHUB_OUTPUT"
|
||||||
python -m scrape.changelog --cached > /tmp/changelog.txt
|
|
||||||
summary=$(head -1 /tmp/changelog.txt)
|
|
||||||
ts=$(date -u +"%Y-%m-%dT%H:%MZ")
|
ts=$(date -u +"%Y-%m-%dT%H:%MZ")
|
||||||
{
|
n_bayer=$(find corpus/bayer -name '*.json' 2>/dev/null | wc -l)
|
||||||
echo "weekly refresh: ${ts} — ${summary}"
|
n_epa=$(find corpus/epa_ppls -name '*.json' 2>/dev/null | wc -l)
|
||||||
echo ""
|
git commit -m "monthly refresh: ${ts} — bayer=${n_bayer} epa_ppls=${n_epa}"
|
||||||
cat /tmp/changelog.txt
|
|
||||||
} > /tmp/commitmsg.txt
|
|
||||||
git commit -F /tmp/commitmsg.txt
|
|
||||||
# Retry on race: if main moved while we were scraping (a
|
|
||||||
# human merged a PR during the run), `git push` rejects
|
|
||||||
# with "fetch first". Rebase our corpus commit onto new
|
|
||||||
# main and retry. Corpus + code paths are disjoint, so
|
|
||||||
# the rebase is trivially clean.
|
|
||||||
attempt=1
|
attempt=1
|
||||||
while [ $attempt -le 3 ]; do
|
while [ $attempt -le 3 ]; do
|
||||||
if git push; then
|
if git push; then
|
||||||
@@ -119,47 +95,41 @@ jobs:
|
|||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
if [ $attempt -eq 3 ]; then
|
if [ $attempt -eq 3 ]; then
|
||||||
echo "push still failing after 3 attempts — bailing"
|
echo "push still failing after 3 attempts"; exit 1
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
git fetch origin main
|
git fetch origin main
|
||||||
git rebase origin/main || { echo "rebase conflict — bailing"; exit 1; }
|
git rebase origin/main || { echo "rebase conflict"; exit 1; }
|
||||||
attempt=$((attempt + 1))
|
attempt=$((attempt + 1))
|
||||||
done
|
done
|
||||||
|
|
||||||
# ---- Reindex Chroma + BM25 ---------------------------------
|
# ---- Rebuild Chroma + BM25 ---------------------------------
|
||||||
- name: Rebuild indexes
|
- name: Rebuild indexes
|
||||||
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
||||||
run: python -m rag.index --rebuild
|
run: python -m rag.index --rebuild
|
||||||
|
|
||||||
# ---- Build & push image ------------------------------------
|
# ---- Build & push image ------------------------------------
|
||||||
- name: Log in to registry (LAN endpoint)
|
- name: Log in to Gitea container registry
|
||||||
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
||||||
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login "${REGISTRY_PUSH}" -u "${{ github.repository_owner }}" --password-stdin
|
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login "${REGISTRY_PUSH}" -u "${{ github.repository_owner }}" --password-stdin
|
||||||
|
|
||||||
- name: Build & push image
|
- name: Build & push image
|
||||||
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
||||||
# Runner shell is /bin/sh — use cut instead of ${VAR::N}.
|
# Tags: :latest (Watchtower target), :<sha12> (rollback pin),
|
||||||
# Three tags: :latest (Watchtower target), :<sha12>
|
# :corpus-<YYYY.MM.DD> (links image to corpus version so
|
||||||
# (rollback pin), :<YYYY.MM.DD> (human-readable).
|
# Drawbar can pin to a specific corpus snapshot).
|
||||||
run: |
|
run: |
|
||||||
SHA_TAG=$(echo "$GITHUB_SHA" | cut -c1-12)
|
SHA_TAG=$(echo "$GITHUB_SHA" | cut -c1-12)
|
||||||
DATE_TAG=$(date -u +%Y.%m.%d)
|
CORPUS_TAG="corpus-$(date -u +%Y.%m.%d)"
|
||||||
docker build \
|
docker build \
|
||||||
-t "${REGISTRY_PUSH}/${IMAGE}:latest" \
|
-t "${REGISTRY_PUSH}/${IMAGE}:latest" \
|
||||||
-t "${REGISTRY_PUSH}/${IMAGE}:${SHA_TAG}" \
|
-t "${REGISTRY_PUSH}/${IMAGE}:${SHA_TAG}" \
|
||||||
-t "${REGISTRY_PUSH}/${IMAGE}:${DATE_TAG}" \
|
-t "${REGISTRY_PUSH}/${IMAGE}:${CORPUS_TAG}" \
|
||||||
.
|
.
|
||||||
docker push "${REGISTRY_PUSH}/${IMAGE}:latest"
|
docker push "${REGISTRY_PUSH}/${IMAGE}:latest"
|
||||||
docker push "${REGISTRY_PUSH}/${IMAGE}:${SHA_TAG}"
|
docker push "${REGISTRY_PUSH}/${IMAGE}:${SHA_TAG}"
|
||||||
docker push "${REGISTRY_PUSH}/${IMAGE}:${DATE_TAG}"
|
docker push "${REGISTRY_PUSH}/${IMAGE}:${CORPUS_TAG}"
|
||||||
|
|
||||||
- name: Link container package to this repo
|
- name: Link container package to this repo
|
||||||
# Gitea container packages are owned by a USER, not a repo —
|
|
||||||
# they don't auto-appear under the repo's Packages tab.
|
|
||||||
# This API call creates the association. One-time-effective:
|
|
||||||
# re-running returns 400 once linked, which we swallow.
|
|
||||||
# Endpoint requires Gitea 1.21+.
|
|
||||||
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
||||||
env:
|
env:
|
||||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
@@ -173,11 +143,10 @@ jobs:
|
|||||||
echo "link http=$CODE body=$(cat "$BODY")"
|
echo "link http=$CODE body=$(cat "$BODY")"
|
||||||
case "$CODE" in
|
case "$CODE" in
|
||||||
201) echo "linked package to ${OWNER}/${PKG}" ;;
|
201) echo "linked package to ${OWNER}/${PKG}" ;;
|
||||||
400) echo "already linked (re-link returns 400) — ok" ;;
|
400) echo "already linked — ok" ;;
|
||||||
*) echo "unexpected status $CODE"; exit 1 ;;
|
*) echo "unexpected status $CODE"; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# ---- Registry GC -------------------------------------------
|
|
||||||
- name: Prune old container versions
|
- name: Prune old container versions
|
||||||
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
||||||
env:
|
env:
|
||||||
@@ -186,5 +155,5 @@ jobs:
|
|||||||
python scripts/registry_gc.py \
|
python scripts/registry_gc.py \
|
||||||
--owner "${{ github.repository_owner }}" \
|
--owner "${{ github.repository_owner }}" \
|
||||||
--package "${{ github.event.repository.name }}" \
|
--package "${{ github.event.repository.name }}" \
|
||||||
--keep-days 90 \
|
--keep-days 180 \
|
||||||
--keep-latest 5
|
--keep-latest 6
|
||||||
|
|||||||
+4
-2
@@ -2,10 +2,12 @@
|
|||||||
venv/
|
venv/
|
||||||
.venv/
|
.venv/
|
||||||
|
|
||||||
# Regenerable from corpus + CI
|
# Regenerable from corpus (committed) + CI
|
||||||
corpus/
|
|
||||||
chroma/
|
chroma/
|
||||||
bm25/
|
bm25/
|
||||||
|
# corpus/ IS committed — the scraped .md + sidecars are text and let
|
||||||
|
# the image-only.yml workflow rebuild indexes without re-scraping.
|
||||||
|
# Chroma + BM25 indexes are large binaries; always rebuilt from corpus.
|
||||||
|
|
||||||
# Python detritus
|
# Python detritus
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
|||||||
+16
-4
@@ -1,4 +1,4 @@
|
|||||||
# Docs MCP server — production image.
|
# crop-chem-docs MCP server — production image.
|
||||||
#
|
#
|
||||||
# Structure: copy code first, then the regenerable indexes last so a
|
# Structure: copy code first, then the regenerable indexes last so a
|
||||||
# code-only change doesn't invalidate the corpus COPY layer.
|
# code-only change doesn't invalidate the corpus COPY layer.
|
||||||
@@ -6,6 +6,14 @@
|
|||||||
# The container runs the MCP server via streamable-http on PORT 8000.
|
# The container runs the MCP server via streamable-http on PORT 8000.
|
||||||
# Override via MCP_HOST / MCP_PORT env if you front it with a different
|
# Override via MCP_HOST / MCP_PORT env if you front it with a different
|
||||||
# reverse-proxy setup.
|
# reverse-proxy setup.
|
||||||
|
#
|
||||||
|
# Image is self-contained — corpus, Chroma collection, and BM25 db are
|
||||||
|
# all baked in. Drawbar's docker-compose pulls the image and runs it;
|
||||||
|
# no host volume mounts required for serve.
|
||||||
|
#
|
||||||
|
# RERANK_URL is set at compose time (points at the llama.cpp sidecar
|
||||||
|
# on trashpanda's Tesla P4). OLLAMA_URL is set at compose time too
|
||||||
|
# (the embed-pool of Ollama instances). Defaults are commented inline.
|
||||||
|
|
||||||
FROM python:3.12-slim
|
FROM python:3.12-slim
|
||||||
|
|
||||||
@@ -20,8 +28,8 @@ COPY scrape /app/scrape
|
|||||||
COPY rag /app/rag
|
COPY rag /app/rag
|
||||||
COPY docs_mcp /app/docs_mcp
|
COPY docs_mcp /app/docs_mcp
|
||||||
|
|
||||||
# Catalog. Written by the scraper at CI time.
|
# Source catalog. Lists the corpus sources (Bayer + EPA PPLS today).
|
||||||
COPY bundles.json /app/
|
COPY sources.json /app/
|
||||||
|
|
||||||
# Regenerable indexes. CI builds these from corpus/ in the same job
|
# Regenerable indexes. CI builds these from corpus/ in the same job
|
||||||
# that builds the image. Listed last so code changes don't invalidate
|
# that builds the image. Listed last so code changes don't invalidate
|
||||||
@@ -34,9 +42,13 @@ COPY chroma /app/chroma
|
|||||||
COPY bm25 /app/bm25
|
COPY bm25 /app/bm25
|
||||||
|
|
||||||
ENV PYTHONUNBUFFERED=1 \
|
ENV PYTHONUNBUFFERED=1 \
|
||||||
|
PRODUCT_NAME=crop_chem \
|
||||||
MCP_TRANSPORT=streamable-http \
|
MCP_TRANSPORT=streamable-http \
|
||||||
MCP_HOST=0.0.0.0 \
|
MCP_HOST=0.0.0.0 \
|
||||||
MCP_PORT=8000
|
MCP_PORT=8000 \
|
||||||
|
HYBRID_SEARCH=true
|
||||||
|
# RERANK_URL set at deploy time, e.g. http://llama-rerank:8080
|
||||||
|
# OLLAMA_URL set at deploy time, comma-separated list
|
||||||
|
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,63 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "42-s-thiram-fungicide",
|
||||||
|
"epa_reg_no": "264-929",
|
||||||
|
"product_name": "42-S Thiram Seed Treatment Fungicide",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Thiram",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/42-S_Thiram1_Fungicide_Labelpdf",
|
||||||
|
"filename": "42-S_Thiram1_Fungicide_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-12T15:01:42+00:00",
|
||||||
|
"page_count": 9,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "42-S THIRAM FUNGICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/42-S_Thiram_Fungicide1ip_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-12T14:55:17+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "42-S THIRAM FUNGICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/42-S_Thiram_Fungicide1pi_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-12T14:59:48+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use On Deciduous Tree Seed",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/42-S_Thiram_Fungicide_(013106_Mtfor_Use_On_Deciduous_Tree_Seed)_2eepdf",
|
||||||
|
"last_modified": "2026-01-12T14:50:56+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Use On Coriander Seed (For Export Only, & for Use on Seed Planted to Produce Coriander Grown for Seed in the State of Oregon)",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/42-S_Thiram_Fungicide1u_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-12T14:55:00+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Use On Celery Seeds - For Export Only",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/42-S_Thiram_Fungicide_(021808_Ca-970027_for_Use_On_Celery_Seeds_-_For_Export_Only)_Section_24Cpdf",
|
||||||
|
"last_modified": "2026-01-12T14:45:25+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/42-s-thiram-fungicide-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:14:59.745923+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,392 @@
|
|||||||
|
# 42-S Thiram Seed Treatment Fungicide
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-929
|
||||||
|
- **Active ingredients:** Thiram
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/42-s-thiram-fungicide-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/42-S_Thiram1_Fungicide_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
5.1875"
|
||||||
|
5.875"
|
||||||
|
Fungicide
|
||||||
|
42-S Thiram
|
||||||
|
US80852495C 180515C 05/18
|
||||||
|
US80852495C (180515) 42-S Thiram no net partial Drum - TEXT 5/17/18
|
||||||
|
colors: cmyk
|
||||||
|
|
||||||
|
Intended for use by professional applicators only.
|
||||||
|
Contains 4 lbs. thiram per gallon.
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Thiram (Tetramethylthiuram disulfide) . . . . . . . . . . . . . . . . . 42%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58%
|
||||||
|
TOTAL: 100%
|
||||||
|
EPA Reg. No. 264-929
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER
|
||||||
|
(1-866-992-2937)
|
||||||
|
Please refer to booklet for additional precautionary
|
||||||
|
statements and directions for use.
|
||||||
|
Produced for:
|
||||||
|
Bayer CropScience LP
|
||||||
|
P .O . Box 12014, 2 T .W . Alexander Drive
|
||||||
|
Research Triangle Park, North Carolina 27709
|
||||||
|
©2018 Bayer CropScience
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
1
|
||||||
|
FIRST AID
|
||||||
|
IF SWALLOWED: • Call a poison control center or doctor immediately for treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control center or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
IF ON SKIN
|
||||||
|
OR CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, and then give artificial respiration, preferably mouth-to-
|
||||||
|
mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for 15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then continue rinsing eye.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency Response Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling a poison control center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed. Harmful if absorbed through skin. Harmful if inhaled. Avoid contact with eyes, skin, or clothing. Avoid breathing
|
||||||
|
spray mist or vapor . Prolonged or frequently repeated skin contact may cause allergic reactions in some individuals .
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Some materials that are chemical-resistant to this product are made of any waterproof material. If you want more options, follow the
|
||||||
|
instructions for category A on an EPA chemical resistance category selection chart .
|
||||||
|
All mixers/loaders, applicators and other handlers must wear:
|
||||||
|
- long-sleeved shirt and long pants,
|
||||||
|
- shoes plus socks,
|
||||||
|
- chemical resistant gloves,
|
||||||
|
- chemical resistant apron when mixing, loading, participating in dip treatments, cleaning up spills, cleaning equipment, or otherwise
|
||||||
|
exposed to the concentrate .
|
||||||
|
NOTE: Persons involved in bagging treated seed, sewing or moving bags of treated seed, or cleaning up bagging areas or seed treatment
|
||||||
|
equipment are pesticide handlers and must wear the PPE required on this label for pesticide handlers.
|
||||||
|
USER SAFETY REQUIREMENTS
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for washables exist, use detergent and hot
|
||||||
|
water. Keep and wash PPE separately from other laundry.
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
2
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Users should wash hands before eating, drinking, chewing gum, using tobacco or using the toilet.
|
||||||
|
Users should remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly and put on clean clothing.
|
||||||
|
Users should remove PPE immediately after handling this product. Wash the outside of gloves before removing. As soon as possible,
|
||||||
|
wash thoroughly and change into clean clothing.
|
||||||
|
ENDANGERED SPECIES
|
||||||
|
This bag contains seed treated with thiram. This product may have effects on federally listed threatened endangered species or their
|
||||||
|
critical habitat in some counties. It is a violation of federal law to kill, harm or harass listed animal species without authorization. To
|
||||||
|
limit the potential for such impacts when using this product, consult and follow the instructions provided in the EPA Endangered Species
|
||||||
|
Bulletin for the County or Parish in which you are applying the seed. To determine whether your County or Parish has a Bulletin consult
|
||||||
|
http://www.epa.gov/espp before each season’s use of this product.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is toxic to fish, aquatic invertebrates, oysters, and shrimp. Do not apply directly to water, or to areas where surface water is
|
||||||
|
present or to intertidal areas below the mean high water mark. Drift and runoff from treated areas may be hazardous to aquatic organisms
|
||||||
|
in neighboring areas. Do not contaminate water when disposing of equipment washwater or rinsate or by disposal of wastes.
|
||||||
|
Treated seeds and bulbs are hazardous to fish, birds and mammals. Do not plant treated seeds or bulbs by broadcasting to the soil surface.
|
||||||
|
Ensure that all seeds and bulbs are thoroughly covered with soil, especially in turn areas. If seeds or bulbs are not thoroughly incorporated
|
||||||
|
by the planter during planting, additional incorporation may be required to thoroughly cover exposed seeds or bulbs.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with its labeling.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons. Only protected handlers may be in the area during application.
|
||||||
|
For any requirements specific to your State or Tribe, consult the agency responsible for pesticide regulation.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection Standard, 40 CFR part 170. This Standard contains
|
||||||
|
requirements for the protection of agricultural workers on farms, forests, nurseries, and greenhouses, and handlers of agricultural
|
||||||
|
pesticides . It contains requirements for training, decontamination, notification, and emergency assistance . It also contains specific
|
||||||
|
instructions and exceptions pertaining to the statements on this label about personal protective equipment (PPE), and restricted-entry
|
||||||
|
interval. The requirements in this box only apply to uses of this product that are covered by the Worker Protection Standard. Do not
|
||||||
|
enter or allow worker entry into treated areas during the restricted entry interval (REI) of 24 hours.
|
||||||
|
Exception: Once treated seeds or bulbs are planted in soil or other planting media, the Worker Protection Standard allows workers to
|
||||||
|
enter the treated area without restriction, if there will be no contact with the treated seeds or bulbs. PPE required for early reentry to
|
||||||
|
treated areas that is permitted under the Worker Protection Standard and that involves contact with anything that has been treated, such
|
||||||
|
as plants, soil, or water, is: coveralls, shoes plus socks, chemical-resistant gloves made of any waterproof material, and protective
|
||||||
|
eyewear.
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
3
|
||||||
|
TREATED SEED
|
||||||
|
Seeds or Bulbs that are treated with this product and are then packaged or bagged for future use by growers or researchers must
|
||||||
|
contain the following labeling on the outside of the seed or bulb package or bag:
|
||||||
|
• This bag contains seeds or bulbs treated with thiram fungicide (42-S Thiram). When opening this bag or loading/pouring the
|
||||||
|
treated seeds or bulbs wear long-sleeved shirt, long pants, shoes, socks and chemical resistant gloves.
|
||||||
|
• Treated seeds or bulbs. Do Not Use for Food, Feed or Oil Purposes.
|
||||||
|
• Store treated seed away from food and feedstuffs.
|
||||||
|
• Do not allow children, pets or livestock to have access to treated seeds.
|
||||||
|
• Treated seeds exposed on soil surface may be hazardous to wildlife. Cover or collect treated seeds spilled during loading and planting.
|
||||||
|
• Dispose of all excess treated seed by burying seed away from bodies of water.
|
||||||
|
• Dispose of seed packaging or containers in accordance with local requirements.
|
||||||
|
• “Endangered Species” section of this label must be included on the seed tag.
|
||||||
|
• After the seeds or bulbs have been planted, do not enter or allow worker entry into treated areas during the restricted-entry
|
||||||
|
interval (REI) of 24 hours. Exception: Once the seeds or bulbs are planted in soil or other planting media, the Worker Protection
|
||||||
|
Standard allows workers to enter the treated area without restriction if there will be no worker contact with the seeds or bulbs.
|
||||||
|
• Treated seeds or bulbs are hazardous to fish, birds and mammals. Do not plant treated seeds or bulbs by broadcasting to the soil
|
||||||
|
surface. Ensure that all seeds or bulbs are thoroughly covered with soil, especially in turn areas. If seeds or bulbs are not
|
||||||
|
thoroughly incorporated by the planter during planting, additional incorporation may be required to thoroughly cover exposed seeds or
|
||||||
|
bulbs. Do not apply directly to water, or to areas where surface water is present or to intertidal areas below the mean high water mark.
|
||||||
|
Do not contaminate water when disposing of planting equipment washwater or rinsate or by disposal of wastes.
|
||||||
|
• Plant cotton, wheat, barley, oats, and sugar beet seed a minimum of 1 inch deep.
|
||||||
|
Seeds or Bulbs that are treated with this product and are then packaged or bagged for future use by homeowners or other residential users
|
||||||
|
must contain the following labeling on the outside of the seed or bulb package or bag:
|
||||||
|
USE PRECAUTIONS AND RESTRICTIONS
|
||||||
|
When using formulations that do not contain dye, to comply with 40 CFR 153.155, all seed treated with an economic poison must be
|
||||||
|
colored to distinguish and prevent subsequent inadvertent use as a food for man or feed for animals.
|
||||||
|
For Treatment of Coniferous Seed
|
||||||
|
Damping-off protection: Use 2 quarts of 42-S Thiram per 100 pounds of seed. Slowly add to the seed while turning in a tumbler such as a
|
||||||
|
concrete mixer. Tumble seed for approximately 2 minutes and then spread coated seed on a screen to dry.
|
||||||
|
For the Treatment of Ornamental Bulbs, Corms and Tubers:
|
||||||
|
Treat any time after drying. Dip in a suspension made by mixing 1-1/2 pints of 42-S Thiram in 8 gallons of water. Agitate the suspension.
|
||||||
|
If bulbs are to be stored, spread out to dry. Bulbs or tubers that are treated with this product must bear distinct labeling that instructs:
|
||||||
|
CAUTION: Treated with thiram. Wear rubber gloves and protective clothing when handling products treated with thiram. Direct exposure
|
||||||
|
to skin may result in severe dermatitis .
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
4
|
||||||
|
Cotton Seed: The maximum application rate for cotton seed is 1.6 oz ai/cwt (1,000 ppm). Plant treated cotton seed a minimum of 1 inch deep.
|
||||||
|
Barley Seed: Plant barley seed a minimum of 1 inch deep.
|
||||||
|
Oat Seed: Plant oat seed a minimum of 1 inch deep .
|
||||||
|
Sugar Beet Seed: Plant sugar beet seed a minimum of 1 inch deep.
|
||||||
|
Wheat Seed: Plant wheat seed a minimum of 1 inch deep.
|
||||||
|
Onion Seed: When 1.5 lbs ai/cwt is used, the onion seed must undergo pelletized treatment.
|
||||||
|
RECOMMENDATIONS FOR USE AS A COMMERCIAL SEED TREATMENT
|
||||||
|
42-S Thiram Fungicide is a liquid fungicide recommended for the treatment of seeds listed in the following table. Used according to
|
||||||
|
directions, 42-S Thiram will usually increase stands and yields by reducing losses from seed decay, damping-off and seedling blights
|
||||||
|
caused by many seedborne and soilborne organisms. 42-S Thiram will usually control covered smuts or bunt of wheat, barley and rye
|
||||||
|
and covered kernel smut of sorghum and will usually prevent basal rot and decay of ornamental bulbs and tubers. 42-S Thiram aids in
|
||||||
|
the control of Alternaria and Phoma on canola. 42-S Thiram aids in the control of seedborne conidia produced from the honeydew
|
||||||
|
inoculum from field infection of Claviceps africana (ergot) on sorghum seed .
|
||||||
|
For Slurry-Type Treater: 42-S Thiram should be applied with water as a suspension in the slurry-type treater specifically designed and
|
||||||
|
approved for this purpose .
|
||||||
|
For Film-Coating Operations: 42-S Thiram has demonstrated good to excellent compatibility with most commercial film-coating products.
|
||||||
|
Coating procedures identified by polymer/coating companies and film-coating equipment manufacturers should be followed when
|
||||||
|
preparing coating preparations containing 42-S Thiram. If it is desirable to prepare slurries in large containers for addition to the slurry
|
||||||
|
tank, entire contents should be thoroughly agitated before withdrawing any of the slurry.
|
||||||
|
SEEDS
|
||||||
|
42-S Thiram Treating Rate
|
||||||
|
Fluid Ounces Per Bushel
|
||||||
|
Or 100 pound Weight
|
||||||
|
Barley, Millet, Oats**, Rye, Sorghum, Triticale**, Wheat 2/Bu .
|
||||||
|
Beans (Lima) and Peas 3/100 lbs.
|
||||||
|
Beans (Snap & Dry, Soybeans, Cowpeas) 2/100 lbs.
|
||||||
|
Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Turnip 8/100 lbs.
|
||||||
|
Beet (Garden), Swiss Chard 8/100 lbs.
|
||||||
|
Canola** 6.4/100 lbs.
|
||||||
|
Cantaloupe, Cucumber, Pumpkin, Squash, Watermelon 4.5/100 lbs.
|
||||||
|
Carrot, Endive, Lettuce, Pepper, Radish, Spinach 8/100 lbs.
|
||||||
|
Castor beans** 4.5/100 lbs.
|
||||||
|
Chicory** 5.2/100 lbs.
|
||||||
|
Corn (Field) 1 .5/Bu .
|
||||||
|
Corn (Sweet) 5/100 lbs.
|
||||||
|
Cotton – acid – delinted 3/100 lbs.
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
5
|
||||||
|
SEEDS
|
||||||
|
42-S Thiram Treating Rate
|
||||||
|
Fluid Ounces Per Bushel
|
||||||
|
Or 100 pound Weight
|
||||||
|
Cotton – reginned and fuzzy 3/100 lbs.
|
||||||
|
Eggplant 6.5/100 lbs.
|
||||||
|
Flax 3/Bu .
|
||||||
|
Grasses 8/100 lbs.
|
||||||
|
Okra 6/100 lbs.
|
||||||
|
Onion 6/100 lbs.
|
||||||
|
Ornamental flower seed 8/100 lbs.
|
||||||
|
Peanuts* 3/100 lbs.
|
||||||
|
Rice (see For the Treatment of Rice Seed in CA specific directions) 1 .5/Bu .
|
||||||
|
Safflower, Sunflower 2/Bu .
|
||||||
|
Sesame 3/100 lbs.
|
||||||
|
Small seed legumes 8/100 lbs.
|
||||||
|
Sugar beets 8/100 lbs.
|
||||||
|
Tomato 6/100 lbs.
|
||||||
|
*Note: In the treatment of peanuts, do not dilute with water
|
||||||
|
**Not registered for use in California
|
||||||
|
For the Treatment of Rice Seed in California
|
||||||
|
42-S Thiram Fungicide is a liquid fungicide recommended for the treatment of rice seed in California . Used according to directions, 42-S
|
||||||
|
Thiram will usually increase stands and yields by reducing losses from seed decay, damping-off and seedling blights caused by seedborne
|
||||||
|
and soilborne organisms.
|
||||||
|
42-S Thiram is recommended for use on well cured rice seed in California prior to pre-plant soaking. 42-S Thiram should be
|
||||||
|
used with water as a suspension in treaters suitable for adequate mixing and accurate application to the seed. If it is
|
||||||
|
desirable to prepare slurries in large containers for addition to treater tanks, entire contents should be thoroughly agitated before
|
||||||
|
withdrawing any of the slurry for seed treatment.
|
||||||
|
How to Use: Rice seed treatment in California
|
||||||
|
SLURRY TREATERS:
|
||||||
|
Treater Tank Concentration Application Rate
|
||||||
|
Mix 1 gallon of 42-S with 1 gallon of water 4 fluid ounces per 100 pounds seed
|
||||||
|
MIST-O-MATIC TREATER:
|
||||||
|
Treater Tank Concentration Application Rate
|
||||||
|
Mix 1 gallon of 42-S with 1 gallon of water. 4 fluid ounces per 100 pounds seed
|
||||||
|
Note: To prevent water contamination in irrigation or drainage canals soak water should be retained in settling basins.
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
6
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage or disposal.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in a cool place. Keep container tightly closed to prevent evaporation. Stir before using. DO NOT SUBJECT TO TEMPERATURES
|
||||||
|
BELOW 32°F .
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
Pesticide wastes are toxic. Improper disposal of excess pesticide, spray mixture, or rinsate is a violation of Federal law. If these wastes
|
||||||
|
cannot be disposed of by use according to label instructions, contact your State Pesticide or Environmental Control Agency, or Hazardous
|
||||||
|
Waste representative at the nearest EPA Regional Office for guidance .
|
||||||
|
CONTAINER DISPOSAL
|
||||||
|
Rigid, Non-refillable containers small enough to shake (i.e., with capacities equal to or less than 5 gallons).
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Offer for recycling, if available. Triple rinse container (or equivalent) promptly
|
||||||
|
after emptying. Triple rinse as follows: Empty the remaining contents into application equipment or a mix tank and drain for 10 seconds
|
||||||
|
after the flow begins to drip. Fill the container 1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into application equipment
|
||||||
|
or a mix tank or store rinsate for later use or disposal. Drain for 10 seconds after the flow begins to drip. Repeat this procedure two more
|
||||||
|
times. Then offer for recycling or reconditioning or puncture and dispose of in a sanitary landfill, or incineration or, if allowed by state and
|
||||||
|
local authorities, by burning. If burned, stay out of smoke.
|
||||||
|
Rigid Non-refillable containers that are too large to shake (i.e., with capacities greater than 5 gallons or 50 lbs).
|
||||||
|
50 gal and 200 gal
|
||||||
|
Non-refillable container. Do not reuse or refill this container. After emptying product from container, contact Bayer CropScience Customer
|
||||||
|
Service Center (1-800-527-4781) with return authorization for container return instructions.
|
||||||
|
Cleaning the container before final disposal is the responsibility of the person disposing of the container. Offer for recycling, if available.
|
||||||
|
Dispose of rinsed empty container in a sanitary landfill or by incineration, or if allowed by state and local authorities, by burning. If burned
|
||||||
|
stay out of smoke .
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability before using this product. If terms
|
||||||
|
are not acceptable, return the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties and Limitations of Liability.
|
||||||
|
Treatment of highly mechanically damaged seed, or seed of known low vigor and poor quality, may result in reduced germination
|
||||||
|
and/or reduction of seed and seedling vigor. Treat and conduct germination tests on a small portion of seed before committing the total
|
||||||
|
seed lot to a selected chemical treatment. Due to seed quality conditions beyond the control of Bayer CropScience, no claims are made
|
||||||
|
to guarantee germination of carry-over seed .
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
7
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must be followed carefully. However, it is
|
||||||
|
impossible to eliminate all risks associated with the use of this product. Crop injury, ineffectiveness or other unintended consequences
|
||||||
|
may result because of such factors as weather conditions, presence of other materials, or the manner of use or application, all of which are
|
||||||
|
beyond the control of Bayer CropScience LP . All such risks shall be assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE LP MAKES NO
|
||||||
|
WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A PARTICULAR PURPOSE OR OTHERWISE, THAT
|
||||||
|
EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience LP is authorized to make any warranties
|
||||||
|
beyond those contained herein or to modify the warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE LAW,
|
||||||
|
BAYER CROPSCIENCE LP DISCLAIMS ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
|
||||||
|
RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER
|
||||||
|
FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT, WHETHER IN
|
||||||
|
CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR
|
||||||
|
AT BAYER CROPSCIENCE LP’S ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
|
||||||
|
13.125”
|
||||||
|
5.1875”
|
||||||
|
Lot No. ________________ Net Contents __________________
|
||||||
|
Fungicide
|
||||||
|
42-S Thiram
|
||||||
|
US80852495C (180515) 42-S Thiram no net partial Drum - BASE COLORS: CMYK
|
||||||
|
|
||||||
|
US80852495C 180515C 05/18
|
||||||
|
42-S Thiram Fungicide
|
||||||
|
Intended for use by professional applicators only.
|
||||||
|
Contains 4 lbs. thiram per gallon.
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Thiram (Tetramethylthiuram disulfide) . . . . . . . . . . . . . . . . . . . . . . . . . . . . .42%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .58%
|
||||||
|
TOTAL: 100%
|
||||||
|
EPA Reg. No. 264-929
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY Call 24 Hours A Day
|
||||||
|
1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Please refer to booklet for additional precautionary statements and
|
||||||
|
directions for use.
|
||||||
|
FIRST AID
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center or doctor immediately for
|
||||||
|
treatment advice .
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison
|
||||||
|
control center or doctor .
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
IF ON SKIN
|
||||||
|
OR CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, and then give
|
||||||
|
artificial respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice .
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for 15-20
|
||||||
|
minutes .
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then
|
||||||
|
continue rinsing eye .
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency
|
||||||
|
Response Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling a poison control
|
||||||
|
center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed. Harmful if absorbed through skin. Harmful if inhaled.
|
||||||
|
Avoid contact with eyes, skin, or clothing. Avoid breathing spray mist or vapor.
|
||||||
|
Prolonged or frequently repeated skin contact may cause allergic reactions in
|
||||||
|
some individuals .
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with
|
||||||
|
its labeling.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage or disposal.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in a cool place. Keep container tightly closed to prevent evaporation. Stir
|
||||||
|
before using. DO NOT SUBJECT TO TEMPERATURES BELOW 32°F .
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
Pesticide wastes are toxic. Improper disposal of excess pesticide, spray
|
||||||
|
mixture, or rinsate is a violation of Federal law. If these wastes cannot be
|
||||||
|
disposed of by use according to label instructions, contact your State Pesticide
|
||||||
|
or Environmental Control Agency, or Hazardous Waste representative at the
|
||||||
|
nearest EPA Regional Office for guidance .
|
||||||
|
CONTAINER DISPOSAL
|
||||||
|
Rigid, Non-refillable containers small enough to shake (i.e., with capacities equal
|
||||||
|
to or less than 5 gallons) .
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Offer for recycling,
|
||||||
|
if available. Triple rinse container (or equivalent) promptly after emptying. Triple
|
||||||
|
rinse as follows: Empty the remaining contents into application equipment or a
|
||||||
|
mix tank and drain for 10 seconds after the flow begins to drip. Fill the container
|
||||||
|
1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into application
|
||||||
|
equipment or a mix tank or store rinsate for later use or disposal . Drain for 10
|
||||||
|
seconds after the flow begins to drip. Repeat this procedure two more times.
|
||||||
|
Then offer for recycling or reconditioning or puncture and dispose of in a
|
||||||
|
sanitary landfill, or incineration or, if allowed by state and local authorities, by
|
||||||
|
burning. If burned, stay out of smoke.
|
||||||
|
Rigid Non-refillable containers that are too large to shake (i.e., with capacities
|
||||||
|
greater than 5 gallons or 50 lbs).
|
||||||
|
50 gal and 200 gal
|
||||||
|
Non-refillable container. Do not reuse or refill this container. After emptying
|
||||||
|
product from container, contact Bayer CropScience Customer Service Center
|
||||||
|
(1-800-527-4781) with return authorization for container return instructions.
|
||||||
|
Cleaning the container before final disposal is the responsibility of the person
|
||||||
|
disposing of the container. Offer for recycling, if available. Dispose of rinsed
|
||||||
|
empty container in a sanitary landfill or by incineration, or if allowed by state and
|
||||||
|
local authorities, by burning. If burned stay out of smoke.
|
||||||
|
Bayer CropScience LP
|
||||||
|
P .O . Box 12014, 2 T .W . Alexander Drive
|
||||||
|
Research Triangle Park, North Carolina 27709
|
||||||
|
©2018 Bayer CropScience
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "absolute-maxx",
|
||||||
|
"epa_reg_no": "264-849",
|
||||||
|
"product_name": "Absolute Maxx Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Trifloxystrobin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Tebuconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/ABSOLUTE_Maxx_Label1ippdf",
|
||||||
|
"filename": "ABSOLUTE_Maxx_Label1ippdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:12:24+00:00",
|
||||||
|
"page_count": 17,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ABSOLUTE MAXX MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/ABSOLUTE_Maxx_MSDS1jupdf",
|
||||||
|
"last_modified": "2026-01-30T14:22:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ABSOLUTE MAXX MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/ABSOLUTE_Maxx_MSDS1ujpdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:24+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Absolute Maxx - Eastern US - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Absolute-Maxx_EasternUS_2026pdf",
|
||||||
|
"last_modified": "2026-05-15T20:07:49+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Absolute Maxx Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Absolute-Maxx_2025pdf",
|
||||||
|
"last_modified": "2026-05-15T20:06:33+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/absolute-maxx-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:01:13.729899+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "acceleron-seed-applied-solutions",
|
||||||
|
"epa_reg_no": null,
|
||||||
|
"product_name": "Acceleron® Seed Applied Solutions",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Acceleron_Downstream-Soybeans_2026pdf",
|
||||||
|
"filename": "Acceleron_Downstream-Soybeans_2026pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-05-20T00:35:28+00:00",
|
||||||
|
"page_count": 2,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Acceleron Soybean Offerings",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Acceleron_Soybean-Offerings_2026pdf",
|
||||||
|
"last_modified": "2026-05-20T00:35:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Acceleron Cotton Offerings",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Acceleron_Cotton-Offerings_2026pdf",
|
||||||
|
"last_modified": "2026-05-20T00:36:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Acceleron Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Acceleron_N-314_2025pdf",
|
||||||
|
"last_modified": "2026-05-20T00:33:40+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/acceleron-seed-applied-solutions-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:14:37.505932+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,153 @@
|
|||||||
|
# Acceleron® Seed Applied Solutions
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** (unknown)
|
||||||
|
- **Active ingredients:** (unknown)
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/acceleron-seed-applied-solutions-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Acceleron_Downstream-Soybeans_2026pdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
2026 Downstream Soybean Seed Treatment Sell Sheet
|
||||||
|
1
|
||||||
|
Data is internal Bayer year over year comparison from the 2026 Acceleron
|
||||||
|
®
|
||||||
|
Downstream Soybean offerings
|
||||||
|
2
|
||||||
|
THIS DOCUMENT IS NOT AN OFFER. This tool is for planning purposes only. Program documents supercedes this document.
|
||||||
|
Rebate percentages represent the maximum rebate potential. Refer to Programs for official program eligibility and qualification criteria
|
||||||
|
/// PRODUCT IMPROVEMENTS
|
||||||
|
1
|
||||||
|
• Improved product stabililty and flowabililty
|
||||||
|
• Increased rate of Metalaxyl for enhanced
|
||||||
|
Pythium and Phytophthora control
|
||||||
|
• Active ingredients that are compatible and
|
||||||
|
provide broad spectrum control
|
||||||
|
• Multiple Modes of Action to fight against
|
||||||
|
disease and pests
|
||||||
|
/// PRODUCT PERFORMANCE
|
||||||
|
Pythium Phytopthora Rhizoctonia Fusarium Nematodes SDS Early Soy
|
||||||
|
Aphids Wireworm Bean Leaf
|
||||||
|
Beetle
|
||||||
|
+
|
||||||
|
ILEVO
|
||||||
|
®
|
||||||
|
Seed Treatment
|
||||||
|
E E E E VG E E VG E
|
||||||
|
P=Poor F=Fair G=Good VG=Very Good E=Excellent NA=Not Labeled
|
||||||
|
/// PRICING AND PROGRAM INCENTIVE OPPORTUNITY
|
||||||
|
2
|
||||||
|
Price/Unit *Early Order by
|
||||||
|
11/30/25 Potential
|
||||||
|
Support & Earn
|
||||||
|
Potential Incentive
|
||||||
|
$3.50 $0.25 $1.00
|
||||||
|
$5.50 $0.25 $1.00
|
||||||
|
Competitive low net that is easy to calculate
|
||||||
|
*There are 2 early order dates, 11/30/25: $0.25 per unit and Early Order 12/1/25-1/5/26: $0.10 per unit.
|
||||||
|
See official program for program details.
|
||||||
|
60
|
||||||
|
72
|
||||||
|
70
|
||||||
|
68
|
||||||
|
66
|
||||||
|
64
|
||||||
|
62
|
||||||
|
Untreated
|
||||||
|
69
|
||||||
|
Acceleron ® Standard
|
||||||
|
bu/A
|
||||||
|
64
|
||||||
|
ACCELERON
|
||||||
|
®
|
||||||
|
SOLUTIONS PERFORMANCE IN THE FIELD:
|
||||||
|
ACCELERON
|
||||||
|
®
|
||||||
|
ST ANDARD SOYBEAN BLEND DEMONSTRA TES
|
||||||
|
COMPETITIVE YIELD VERSUS COMPETITION
|
||||||
|
*Data collected September-November 2023 from single replication strip
|
||||||
|
trials in 57 trials across IL, IA, NE, ND, SD, MS, AR, TN, NY , OH, IN, WI,
|
||||||
|
GA, NC, MO. Acceleron Standard: metalaxyl, prothioconazole, penflufen,
|
||||||
|
imidacloprid. Competitor: mefenoxam, sedaxane, fludionoxil, picarbutrazox,
|
||||||
|
thiamethoxam
|
||||||
|
Increased emergence and vigor*
|
||||||
|
PLANT HEAL TH
|
||||||
|
Bean leaf beetles, early-season
|
||||||
|
soybean aphids and seedcorn maggots
|
||||||
|
INSECTICIDE
|
||||||
|
Pythium and early season Phytophthora, with
|
||||||
|
more complete and consistent protection
|
||||||
|
from Rhizoctonia and Fusarium*FUNGICIDE
|
||||||
|
Increased emergence and vigor*
|
||||||
|
Pythium and early season Phytophthora, with
|
||||||
|
more complete and consistent protection
|
||||||
|
from Rhizoctonia and Fusarium*FUNGICIDE
|
||||||
|
PLANT HEAL TH
|
||||||
|
|
||||||
|
No dicamba may be used in-crop with seed with Roundup Ready® Xtend Technology, unless and until approved or specifically permitted, and no dicamba formulations are currently registered for such use in the 2025 season. Please
|
||||||
|
follow www.roundupreadyxtend.com/pages/xtendimax-updates.aspx for status updates. Dicamba may harm crops that are not tolerant to dicamba.
|
||||||
|
Bayer is a member of Excellence Through Stewardship® (ETS). Bayer products are commercialized in accordance with ETS Product Launch Stewardship Guidance, and in compliance with Bayer’s Policy for Commercialization of
|
||||||
|
Biotechnology-Derived Plant Products in Commodity Crops. Commercialized products have been approved for import into key export markets with functioning regulatory systems. Any crop or material produced from this product can
|
||||||
|
only be exported to, or used, processed or sold in countries where all applicable regulatory approvals have been granted. It is a violation of national and international law to move material containing biotech traits across boundaries
|
||||||
|
into nations where import is not permitted. Growers should talk to their grain handler or product purchaser to confirm their buying position for this product. Excellence Through Stewardship® is a registered trademark of Excellence
|
||||||
|
Through Stewardship.
|
||||||
|
ALWAYS READ AND FOLLOW PESTICIDE LABEL DIRECTIONS.
|
||||||
|
It is a violation of federal and state law to use any pesticide product other than in accordance with its labeling. NOT ALL formulations of dicamba or glyphosate are approved for in-crop use with Roundup Ready 2 Xtend® soybeans.
|
||||||
|
NOT ALL formulations of dicamba, glyphosate or glufosinate are approved for in-crop use with products with XtendFlex® Technology. ONLY USE FORMULATIONS THAT ARE SPECIFICALLY LABELED FOR SUCH USES AND
|
||||||
|
APPROVED FOR SUCH USE IN THE STATE OF APPLICATION. Contact the U.S. EPA and your state pesticide regulatory agency with any questions about the approval status of dicamba herbicide products for in-crop use with products
|
||||||
|
with XtendFlex® Technology.
|
||||||
|
FOR SOYBEAN SEED TREATMENT PRODUCTS APPLIED DOWNSTREAM, EACH ACCELERON® SOLUTIONS OFFERING is a combination of separate individually registered products containing the active ingredients: BASIC Offering:
|
||||||
|
metalaxyl, penflufen, and prothioconazole. STANDARD Offering: metalaxyl, penflufen, prothioconazole and imidacloprid.
|
||||||
|
Not all products are registered in all states and may be subject to use restrictions. The distribution, sale, or use of an unregistered pesticide is a violation of federal and/or state law and is strictly prohibited.
|
||||||
|
Roundup Ready® Technology contains genes that confer tolerance to glyphosate. Roundup Ready® 2 Technology contains genes that confer tolerance to glyphosate. Roundup Ready 2 Xtend® soybeans contain genes that confer
|
||||||
|
tolerance to glyphosate and dicamba. Products with XtendFlex® Technology contains genes that confer tolerance to glyphosate, glufosinate and dicamba. Plants that are not tolerant to glyphosate may be damaged or killed if
|
||||||
|
exposed to those herbicides. Plants that are not tolerant to glyphosate, dicamba, and/or glufosinate may be damaged or killed if exposed to those herbicides. Plants that are not tolerant to dicamba may be damaged or killed if
|
||||||
|
exposed to those herbicides. Contact your seed brand dealer or refer to the Bayer Technology Use Guide for recommended weed control programs.
|
||||||
|
Acceleron®, Bayer, Bayer Cross, Roundup Ready 2 Xtend®, Roundup Ready 2 Yield® and Roundup Ready® are registered trademarks of Bayer Group. ILeVO®, LibertyLink logo® and LibertyLink® are trademarks of BASF Corporation.
|
||||||
|
©2025 Bayer Group. All rights reserved.
|
||||||
|
/// ACCELERON
|
||||||
|
®
|
||||||
|
SOLUTIONS EARL Y ORDER PROGRAM
|
||||||
|
/// ACCELERON
|
||||||
|
®
|
||||||
|
SUPPORT AND EARN INCENTIVE PROGRAM
|
||||||
|
/// DOWNSTREAM SOYBEAN REPLANT PROGRAM
|
||||||
|
Order Dates Incentive
|
||||||
|
September 1, 2025 - November 30, 2025
|
||||||
|
On shipped and invoiced Early Order units:
|
||||||
|
$0.25 on Acceleron
|
||||||
|
®
|
||||||
|
Basic and/or Standard
|
||||||
|
$0.08 on Acceleron
|
||||||
|
®
|
||||||
|
E-007
|
||||||
|
$0.75 on ILEVO
|
||||||
|
®
|
||||||
|
Seed T reatment
|
||||||
|
December 2, 2025 - January 15, 2026 On shipped and invoiced Early Order units:
|
||||||
|
$0.10 on Acceleron
|
||||||
|
®
|
||||||
|
Basic and/or Standard
|
||||||
|
Seed treating dealers will receive a $1.00 incentive per Acceleron purchased units* provided they
|
||||||
|
apply the qualifying product(s) to at least 50% of their Bayer traited soybean net sales
|
||||||
|
+ = $1
|
||||||
|
INCENTIVE
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*All Bayer soybean traits included in program eligibility (XtendFlex
|
||||||
|
®
|
||||||
|
Soybeans, Roundup Ready 2
|
||||||
|
Xtend
|
||||||
|
®
|
||||||
|
Soybeans, Roundup Ready 2 Yield
|
||||||
|
®
|
||||||
|
Soybeans)
|
||||||
|
The Bayer Downstream Soybean Replant Program is designed to offer treating dealers a refund
|
||||||
|
on their Acceleron offerings in the case that a replant is required. Bayer will reimburse 100% of
|
||||||
|
the downstream treatment cost on replants when replanted unit is treated with equal or greater
|
||||||
|
level of program level offerings.
|
||||||
|
1
|
||||||
|
Reference full program documents for complete information
|
||||||
|
Eligible Offerings:
|
||||||
|
Soybean Programs
|
||||||
|
1
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "adament-50-wg",
|
||||||
|
"epa_reg_no": "264-1052",
|
||||||
|
"product_name": "Adament 50 WG Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Tebuconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Trifloxystrobin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Adament_50_WG_Fungicide1d_Labelpdf",
|
||||||
|
"filename": "Adament_50_WG_Fungicide1d_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:35:41+00:00",
|
||||||
|
"page_count": 18,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ADAMENT 50 WG FUNGICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Adament_50_WG1er_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:54:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ADAMENT 50 WG FUNGICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Adament_50_WG2e_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ADAMENT 50 WG FUNGICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Adament_50_WG1re_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:34+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ADAMENT 50 WG FUNGICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Adament_50_WG2s_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Red Leaf Blotch in Almonds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Adament_50_WG_Fungicide_2EE1jpdf",
|
||||||
|
"last_modified": "2026-01-30T13:35:07+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Adement 50 WG Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Adament_2025pdf",
|
||||||
|
"last_modified": "2026-05-20T00:46:44+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/adament-50-wg-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:04:00.113872+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,743 @@
|
|||||||
|
# Adament 50 WG Fungicide
|
||||||
|
|
||||||
|
- **Product class:** fungicide
|
||||||
|
- **EPA Reg No:** 264-1052
|
||||||
|
- **Active ingredients:** Tebuconazole, Trifloxystrobin
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/fungicide/adament-50-wg-fungicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Adament_50_WG_Fungicide1d_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Net Contents:
|
||||||
|
1 LB. 4 OZ. (20 OZ.)
|
||||||
|
50 WG Fungicide
|
||||||
|
TM
|
||||||
|
Adament
|
||||||
|
US79419457F 220811F 05/23
|
||||||
|
US79419457F (220811F) ADAMENT 20 OZ ETL - 05/24/23
|
||||||
|
Colors: cmyk Label Coordinator: Mark Schmidt
|
||||||
|
Produced for: Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
ADAMENTTM is a trademark of Bayer Group.
|
||||||
|
©2023 Bayer Group. All rights reserved.
|
||||||
|
For control of certain diseases on almonds,
|
||||||
|
pistachio, and tree nuts
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Tebuconazole ....................... 25.0%
|
||||||
|
Trifloxystrobin ...................... 25.0%
|
||||||
|
OTHER INGREDIENTS: ................ 50.0%
|
||||||
|
TOTAL: 100.0%
|
||||||
|
EPA Reg. No. 264-1052
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
See Back Panel for First Aid Instructions
|
||||||
|
and Booklet for Complete Precautionary
|
||||||
|
Statements and Directions for Use.
|
||||||
|
For MEDICAL And TRANSPORTATION
|
||||||
|
Emergencies ONLY Call 24 Hours A Day
|
||||||
|
1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call
|
||||||
|
1-866-99BAYER (1-866-992-2937)
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
3
|
||||||
|
11
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
TEBUCONAZOLE
|
||||||
|
TRIFLOXYSTROBIN
|
||||||
|
3.0”
|
||||||
|
3.5”
|
||||||
|
2.75”
|
||||||
|
3.25”
|
||||||
|
live
|
||||||
|
live
|
||||||
|
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for 15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then
|
||||||
|
continue rinsing eye.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center or doctor immediately for treatment advice.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control
|
||||||
|
center or doctor.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not give anything to an unconscious person.
|
||||||
|
IF ON SKIN: • Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15 - 20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency Response
|
||||||
|
Telephone No. 1-800-334-7577. Have a product container or label with you when
|
||||||
|
calling a poison control center or doctor, or going for treatment.
|
||||||
|
NOTE TO PHYSICIAN: No specific antidote. Treat Symptomatically.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Causes moderate eye irritation. Harmful if swallowed, inhaled or absorbed through skin.
|
||||||
|
Avoid contact with skin, eyes, and clothing. Avoid breathing vapor or spray mist. Wash
|
||||||
|
thoroughly with soap and water after handling and before eating, drinking, chewing gum,
|
||||||
|
or using tobacco. Remove and wash contaminated clothing before reuse.
|
||||||
|
1
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
Personal Protective Equipment (PPE)
|
||||||
|
Applicators and other handlers must wear:
|
||||||
|
• Long-sleeved shirt and long pants
|
||||||
|
• Shoes plus socks
|
||||||
|
• Chemical resistant gloves made of any waterproof material
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for
|
||||||
|
washables, use detergent and hot water. Keep and wash PPE separately from other laundry.
|
||||||
|
ENGINEERING CONTROL STATEMENTS
|
||||||
|
When handlers use closed systems, enclosed cabs, or aircraft in a manner that meets the
|
||||||
|
requirements listed in the Worker Protection Standard (WPS) for agricultural pesticides
|
||||||
|
40 CFR 170.240(d)(4-6), the handler PPE requirements may be reduced or modified as
|
||||||
|
specified in the WPS.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Users should:
|
||||||
|
• Wash hands before eating, drinking, chewing gum, using tobacco, or using the toilet.
|
||||||
|
• Remove clothing immediately if pesticide gets inside. Then wash thoroughly and
|
||||||
|
put on clean clothing.
|
||||||
|
• Remove PPE immediately after handling this product. Wash the outside of gloves before
|
||||||
|
removing. As soon as possible, wash thoroughly and change into clean clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is toxic to mammals, fish and aquatic invertebrates. Applying this product when
|
||||||
|
rain is not predicted for the next 24 hours will help reduce potential risk to aquatic invertebrates
|
||||||
|
by reducing pesticide runoff from the treatment area into water bodies. Do not apply directly to
|
||||||
|
water, or to areas where surface water is present, or to intertidal areas below the mean high
|
||||||
|
water mark. Drift and runoff may be hazardous to aquatic organisms in water adjacent to treated
|
||||||
|
areas. Do not contaminate water when disposing of equipment wash water or rinsate.
|
||||||
|
Ground Water Advisory:
|
||||||
|
Several trifloxystrobin degradates have properties and characteristics associated with chemicals
|
||||||
|
detected in ground water. The use of this chemical in areas where soils are permeable,
|
||||||
|
particularly where the water table is shallow, may result in ground water contamination.
|
||||||
|
Tebuconazole is known to leach through soil into ground under certain conditions as a result of
|
||||||
|
label use. Use of this chemical in areas where soils are permeable, particularly where the water
|
||||||
|
table is shallow, may result in ground-water contamination.
|
||||||
|
2
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
Surface Water Advisory:
|
||||||
|
This product may contaminate water through drift of spray in wind. This product has a
|
||||||
|
high potential for runoff for several months or more after application. Poorly draining soils
|
||||||
|
and soils with shallow water tables are more prone to runoff that contains this product.
|
||||||
|
A level, well maintained vegetative buffer strip between areas to which this product is
|
||||||
|
applied and surface water features such as ponds, streams, and springs will reduce the
|
||||||
|
potential for contamination of water from rainfall-runoff. Runoff of this product will be
|
||||||
|
reduced by avoiding applications when rainfall is forecasted within 48 hours.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of federal law to use this product in a manner inconsistent with its labeling.
|
||||||
|
Do not use this product until you have read the entire label.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons, either
|
||||||
|
directly or through drift. Only protected handlers may be in the area during application.
|
||||||
|
For any requirements specific to your State or Tribe, consult the agency responsible for
|
||||||
|
pesticide regulation.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection
|
||||||
|
Standard, 40 CFR part 170. This Standard contains requirements for the protection
|
||||||
|
of agricultural workers on farms, forests, nurseries, and greenhouses, and handlers
|
||||||
|
of agricultural pesticides. It contains requirements for training, decontamination,
|
||||||
|
notification, and emergency assistance. It also contains specific instructions and
|
||||||
|
exceptions pertaining to the statements on this label about personal protective
|
||||||
|
equipment (PPE) and restricted-entry interval. The requirements in this box only apply
|
||||||
|
to uses of this product that are covered by the Worker Protection Standard.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted-entry interval
|
||||||
|
(REI) of 12 hours.
|
||||||
|
PPE required for early entry to treated areas that is permitted under the Worker
|
||||||
|
Protection Standard and that involves contact with anything that has been treated,
|
||||||
|
such as plants, soil, or water, is:
|
||||||
|
• Coveralls
|
||||||
|
• Chemical-resistant gloves made of any waterproof material
|
||||||
|
• Shoes plus socks
|
||||||
|
3
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
ADAMENTTM 50 WG Fungicide is a broad spectrum fungicide for the control of certain
|
||||||
|
diseases of almonds, pistachio, and tree nuts. ADAMENT 50 WG Fungicide works by
|
||||||
|
interfering with both energy and cell membrane production in plant pathogenic fungi.
|
||||||
|
UNDER CERTAIN CONDITIONS CONDUCIVE TO EXTENDED INFECTION PERIODS,
|
||||||
|
ADDITIONAL FUNGICIDE APPLICATIONS BEYOND THE NUMBER ALLOWED BY THIS LABEL
|
||||||
|
MAY BE NEEDED. UNDER THESE CONDITIONS, USE ANOTHER FUNGICIDE REGISTERED
|
||||||
|
FOR THE CROP/DISEASE.
|
||||||
|
FUNGICIDE RESISTANCE MANAGEMENT (FRAC) RECOMMENDATIONS
|
||||||
|
For resistance management, please note that ADAMENT 50 WG Fungicide contains both a
|
||||||
|
Group 3 and Group 11 fungicide. Any fungal population may contain individuals naturally
|
||||||
|
resistant to ADAMENT 50 WG Fungicide and other Group 3 or Group 11 fungicides. A gradual
|
||||||
|
or total loss of pest control may occur over time if these (fungicides) are used repeatedly
|
||||||
|
in the same fields. Appropriate resistance-management strategies should be followed.
|
||||||
|
To delay fungicide resistance, take one or more of the following steps:
|
||||||
|
• Rotate the use of ADAMENT 50 WG Fungicide or other Group 3 or Group 11 fungicides
|
||||||
|
within a growing season sequence with different groups that control the same pathogens.
|
||||||
|
• Use tank mixtures with fungicide from a different group that are equally effective on
|
||||||
|
the target pest when such use is permitted. Use at least the minimum application rate
|
||||||
|
as labeled by the manufacturer.
|
||||||
|
• Adopt an integrated disease management program for fungicide use that includes
|
||||||
|
scouting, uses historical information related to pesticide use, and crop rotation, and
|
||||||
|
which considers host plant resistance, impact of environmental conditions on disease
|
||||||
|
development, disease thresholds, as well as cultural, biological and other chemical
|
||||||
|
control practices.
|
||||||
|
• Where possible, make use of predictive disease models to effectively time fungicide
|
||||||
|
applications. Note that using predictive models alone is not sufficient to manage resistance.
|
||||||
|
• Monitor treated fungal/bacterial populations for resistance development.
|
||||||
|
• Contact your local extension specialist or certified crop advisor for any additional
|
||||||
|
pesticide resistance-management and/or IPM recommendations for specific crops
|
||||||
|
and pathogens.
|
||||||
|
• For further information or to report suspected resistance contact Bayer CropScience
|
||||||
|
at 1-866-99BAYER (1-866-992-2937). You can also contact your pesticide distributor
|
||||||
|
or university extension specialist to report resistance.
|
||||||
|
4
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
SPRAY EQUIPMENT
|
||||||
|
Thorough coverage is necessary to provide good disease control. Applications using
|
||||||
|
sufficient water volume to provide thorough and uniform coverage generally provide
|
||||||
|
the most effective disease control. For ground application equipment, use a minimum
|
||||||
|
of 10 gal./A.
|
||||||
|
Broadcast Ground Sprayers
|
||||||
|
Equip sprayers with nozzles that provide accurate and uniform application. Be certain
|
||||||
|
that nozzles are the same size and uniformly spaced across the boom. Calibrate the
|
||||||
|
sprayer before use.
|
||||||
|
Use a pump with the capacity to: (1) maintain a minimum of 35 psi at nozzles, and (2)
|
||||||
|
provide sufficient agitation in the tank to keep the mixture in suspension; this requires
|
||||||
|
recirculation of 10% of the tank volume per minute. Use jet agitators or a liquid sparge
|
||||||
|
tube for vigorous agitation.
|
||||||
|
Use screens to protect the pump and to prevent nozzles from clogging. Screens placed
|
||||||
|
on the suction side of the pump should be 16-mesh or coarser. Do not place a screen in
|
||||||
|
the recirculation line. Use 50-mesh screens at the nozzles. Check nozzle manufacturer’s
|
||||||
|
recommendations.
|
||||||
|
For information on spray equipment and calibration, consult sprayer manufacturer’s and/
|
||||||
|
or state recommendations.
|
||||||
|
For specific local spray schedules, consult the current state agricultural experiment
|
||||||
|
station recommendations.
|
||||||
|
AERIAL APPLICATION
|
||||||
|
Do not apply this product by aerial application.
|
||||||
|
CHEMIGATION
|
||||||
|
Do not apply this product through any type of irrigation system.
|
||||||
|
MIXING PROCEDURES
|
||||||
|
Prepare no more spray mixture than is needed for the immediate operation. Thoroughly
|
||||||
|
clean spray equipment before using this product. Vigorous agitation is necessary for
|
||||||
|
proper dispersal of the product. Maintain maximum agitation throughout the spraying
|
||||||
|
operation. Do not let the spray mixture stand overnight in the spray tank. Flush the
|
||||||
|
spray equipment thoroughly following each use and apply the rinsate to a previously
|
||||||
|
treated area.
|
||||||
|
5
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
ADAMENT 50 WG Fungicide Alone: Add approximately 1/2 of the required amount of water
|
||||||
|
to the mix tank. With the agitator running, add the ADAMENT 50 WG Fungicide to the
|
||||||
|
tank. Continue agitation while adding the remainder of the water. Begin application of the
|
||||||
|
solution after the ADAMENT 50 WG Fungicide has completely and uniformly dispersed into
|
||||||
|
the mix water. Maintain agitation until all of the mixture has been applied.
|
||||||
|
ADAMENT 50 WG Fungicide + Tank Mix Partners: Add approximately 1/2 of the required
|
||||||
|
amount of water to the mix tank. Start the agitator running before adding any tank mix
|
||||||
|
partners. In general, tank mix partners should be added in this order: products packaged
|
||||||
|
in watersoluble packaging*, wettable powders, wettable granules (dry flowables), liquid
|
||||||
|
flowables, liquids, and emulsifiable concentrates. Always allow each tank mix partner to
|
||||||
|
become fully and uniformly dispersed before adding the next product. Provide sufficient
|
||||||
|
agitation while adding the remainder of the water. Maintain agitation until all of the
|
||||||
|
mixture has been applied.
|
||||||
|
* Note: When using ADAMENT 50 WG Fungicide in tank mixtures, all products in
|
||||||
|
water-soluble packaging should be added to the tank before any other tank mix partner,
|
||||||
|
including ADAMENT 50 WG Fungicide. Allow the water-soluble packaging to completely
|
||||||
|
dissolve and the product(s) to completely disperse before adding any other tank-mix
|
||||||
|
partner to the tank. If using ADAMENT 50 WG Fungicide in a tank mixture, observe all
|
||||||
|
directions for use, crop/sites, use rates, dilution ratios, precautions, and limitations
|
||||||
|
which appear on the tank mix partner product label. No label dosage rate may be
|
||||||
|
exceeded, and the most restrictive label precautions and limitations must be followed.
|
||||||
|
This product must not be mixed with any product which prohibits such mixing. Tank
|
||||||
|
mixtures or other applications of products referenced on this label are permitted only
|
||||||
|
in those states in which the referenced products are registered.
|
||||||
|
ADAMENT 50 WG Fungicide is compatible with most insecticide, fungicide, and foliar
|
||||||
|
nutrient products. However, the physical compatibility of ADAMENT 50 WG Fungicide with
|
||||||
|
tank mix partners should be tested before use. To determine the physical compatibility
|
||||||
|
of ADAMENT 50 WG Fungicide with other products, use a jar test, as described below.
|
||||||
|
Using a quart jar, add the proportionate amounts of the products to 1 quart of water. Add
|
||||||
|
wettable powders and water-dispersible granular products first, then liquid flowables, and
|
||||||
|
emulsifiable concentrates last. After thoroughly mixing, let stand for at least 5 minutes.
|
||||||
|
If the combination remains mixed or can be remixed readily, it is physically compatible.
|
||||||
|
Once compatibility has been proven, use the same procedure for adding required
|
||||||
|
ingredients to the spray tank.
|
||||||
|
6
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
The crop safety of all potential tank mixes, including additives and other pesticides,
|
||||||
|
on all crops has not been tested. Before applying any tank mixture not specifically
|
||||||
|
recommended on this label, the safety to the target crop should be confirmed. To test for
|
||||||
|
crop safety, apply the tank mixture to the target crop in a small area and in accordance
|
||||||
|
with label instructions for the target crop.
|
||||||
|
SPRAY DRIFT
|
||||||
|
Airblast applications
|
||||||
|
• Sprays must be directed into the canopy.
|
||||||
|
• Do not apply when wind speeds exceed 15 miles per hour at the application site.
|
||||||
|
• User must turn off outward pointing nozzles at row ends and when spraying
|
||||||
|
outer row.
|
||||||
|
• Do not apply during temperature inversions.
|
||||||
|
Ground Boom Applications
|
||||||
|
• Apply with the nozzle height recommended by the manufacturer, but no more than
|
||||||
|
4 feet above the ground or crop canopy.
|
||||||
|
• Applicators are required to use a medium or coarser droplet size (ASABE S572. I).
|
||||||
|
• Do not apply when wind speeds exceed 15 miles per hour at the application site.
|
||||||
|
• Do not apply during temperature inversions.
|
||||||
|
SPRAY DRIFT ADVISORIES
|
||||||
|
THE APPLICATOR IS RESPONSIBLE FOR AVOIDING OFF-SITE SPRAY DRIFT BE AWARE OF
|
||||||
|
NEARBY NON-TARGET SITES AND ENVIRONMENTAL CONDITIONS.
|
||||||
|
IMPORTANCE OF DROPLET SIZE
|
||||||
|
An effective way to reduce spray drift is to apply large droplets. Use the largest droplets
|
||||||
|
that provide target pest control. While applying larger droplets will reduce spray drift, the
|
||||||
|
potential for drift will be greater if applications are made improperly or under unfavorable
|
||||||
|
environmental conditions.
|
||||||
|
Controlling Droplet Size -Ground Boom
|
||||||
|
• Volume - Increasing the spray volume so that larger droplets are produced will reduce
|
||||||
|
spray drift. Use the highest practical spray volume for the application. If a greater
|
||||||
|
spray volume is needed, consider using a nozzle with a higher flow rate.
|
||||||
|
• Pressure - Use the lowest spray pressure recommended for the nozzle to produce the
|
||||||
|
target spray volume and droplet size.
|
||||||
|
• Spray Nozzle - Use a spray nozzle that is designed for the intended application.
|
||||||
|
Consider using nozzles designed to reduce drift.
|
||||||
|
7
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
BOOM HEIGHT-Ground Boom
|
||||||
|
For ground equipment, the boom should remain level with the crop and have minimal bounce.
|
||||||
|
SHIELDED SPRAYERS
|
||||||
|
Shielding the boom or individual nozzles can reduce spray drift. Consider using shielded
|
||||||
|
sprayers. Verify that the shields are not interfering with the uniform deposition of the
|
||||||
|
spray on the target area.
|
||||||
|
TEMPERATURE AND HUMIDITY
|
||||||
|
When making applications in hot and dry conditions, use larger droplets to reduce effects
|
||||||
|
of evaporation.
|
||||||
|
TEMPERATURE INVERSIONS
|
||||||
|
Drift potential is high during a temperature inversion. Temperature inversions are
|
||||||
|
characterized by increasing temperature with altitude and are common on nights with
|
||||||
|
limited cloud cover and light to no wind. The presence of an inversion can be indicated
|
||||||
|
by ground fog or by the movement of smoke from a ground source or an aircraft smoke
|
||||||
|
generator. Smoke that layers and moves laterally in a concentrated cloud (under low wind
|
||||||
|
conditions) indicates an inversion, while smoke that moves upward and rapidly dissipates
|
||||||
|
indicates good vertical air mixing. A void applications during temperature inversions.
|
||||||
|
WIND
|
||||||
|
Drift potential generally increases with wind speed. AVOID APPLICATIONS DURING GUSTY
|
||||||
|
WIND CONDITIONS.
|
||||||
|
Applicators need to be familiar with local wind patterns and terrain that could affect
|
||||||
|
spray drift.
|
||||||
|
Handheld Technology Applications:
|
||||||
|
• Take precautions to minimize spray drift.
|
||||||
|
RAINFASTNESS
|
||||||
|
ADAMENT 50 WG Fungicide is rainfast when dry, generally in 2 hours, and dependent on
|
||||||
|
local weather conditions, such as humidity and wind.
|
||||||
|
8
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
USE DIRECTIONS FOR SPECIFIC CROPS
|
||||||
|
ADAMENT 50 WG Fungicide provides control or suppression of several important diseases
|
||||||
|
of almonds, pistachio, and tree nuts. When reference is made to disease suppression,
|
||||||
|
suppression can mean either erratic control from good to fair, or consistent control at a
|
||||||
|
level below that obtained with the best commercial disease control products.
|
||||||
|
Almonds
|
||||||
|
Disease Control
|
||||||
|
Rate
|
||||||
|
(oz./acre) Application Timing
|
||||||
|
Brown Rot Blossom Blight
|
||||||
|
(Monilinia laxa, M. fructicola)
|
||||||
|
Jacket Rot, Green Fruit Rot
|
||||||
|
(Botrytis cinerea)
|
||||||
|
Alternaria
|
||||||
|
(Alternaria alternata)
|
||||||
|
Anthracnose
|
||||||
|
(Colletotrichum acutatum)
|
||||||
|
Shot Hole
|
||||||
|
(Wilsonomyces carpophilus)
|
||||||
|
6.0 to 8.0 Begin applications when
|
||||||
|
conditions are favorable for
|
||||||
|
disease but before infection.
|
||||||
|
Apply on a 7- to 14-day
|
||||||
|
spray schedule.
|
||||||
|
Use higher rates and shorter
|
||||||
|
intervals when disease
|
||||||
|
pressure is severe.
|
||||||
|
Refer to University and/or
|
||||||
|
extension guidelines for best
|
||||||
|
application timings.Powdery Mildew
|
||||||
|
(Podosphaera tridactyla,
|
||||||
|
Sphaerotheca pannosa)
|
||||||
|
Scab
|
||||||
|
(Cladosporium carpophilum)
|
||||||
|
Rust
|
||||||
|
(Tranzschelia discolor)
|
||||||
|
Restrictions:
|
||||||
|
Do not apply more than 32 oz. of ADAMENT 50 WG FUNGICIDE per acre per season. Do
|
||||||
|
not make more than 4 total applications of ADAMENT 50 WG FUNGICIDE per season. Do
|
||||||
|
not apply ADAMENT 50 WG FUNGICIDE within 35 days of harvest. Do not cut cover crops
|
||||||
|
in treated areas for feed, or allow livestock to graze treated areas. ADAMENT 50 WG
|
||||||
|
FUNGICIDE is a mixture of a Group 11 and a Group 3 fungicide. To limit the potential for the
|
||||||
|
development of resistance, do not apply more than 2 sequential applications of ADAMENT
|
||||||
|
50 WG FUNGICIDE or other Group 11-containing fungicides.
|
||||||
|
9
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
Pistachios
|
||||||
|
Disease Control
|
||||||
|
Rate
|
||||||
|
(oz./acre) Application Timing
|
||||||
|
Blossom & Shoot Blight
|
||||||
|
(Botrytis cinerea)
|
||||||
|
Alternaria Late Blight
|
||||||
|
(Alternaria alternata)
|
||||||
|
6.0 to 8.0 Begin applications when
|
||||||
|
conditions are favorable for
|
||||||
|
disease but before infection.
|
||||||
|
Apply on a 14- to 21-day
|
||||||
|
spray schedule.
|
||||||
|
Use higher rates and shorter
|
||||||
|
intervals when disease
|
||||||
|
pressure is severe.
|
||||||
|
Botryosphaeria Panicle &
|
||||||
|
Shoot Blight
|
||||||
|
(Botryosphaeria dothidea)
|
||||||
|
Septoria Leaf Spot
|
||||||
|
(Septoria pistaciarum)
|
||||||
|
6.0 to 8.0 Begin applications when
|
||||||
|
conditions are favorable for
|
||||||
|
disease but before infection.
|
||||||
|
Apply on a 14- to 21-day
|
||||||
|
spray schedule.
|
||||||
|
Use higher rates and shorter
|
||||||
|
intervals when disease
|
||||||
|
pressure is severe.
|
||||||
|
Restrictions:
|
||||||
|
Do not apply more than 24 oz. of ADAMENT 50 WG FUNGICIDE per acre per season. Do not
|
||||||
|
make more than 4 total applications of ADAMENT 50 WG FUNGICIDE per season. Do not apply
|
||||||
|
ADAMENT 50 WG FUNGICIDE within 35 days of harvest or after hull split. Do not cut cover
|
||||||
|
crops in treated areas for feed, or allow livestock to graze treated areas. ADAMENT 50 WG
|
||||||
|
FUNGICIDE is a mixture of a Group 11 and a Group 3 fungicide. To limit the potential for the
|
||||||
|
development of resistance, do not apply more than 2 sequential applications of ADAMENT 50
|
||||||
|
WG FUNGICIDE or other Group 11-containing fungicides.
|
||||||
|
10
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
Tree Nuts: beechnuts, brazil nuts, butternuts, cashews, chinquapins, filberts, hickory
|
||||||
|
nuts, macadamia nuts, pecans, walnuts
|
||||||
|
(See Specific Use Directions for almonds and pistachios)
|
||||||
|
Disease Control
|
||||||
|
Rate
|
||||||
|
(oz./acre) Application Timing
|
||||||
|
Jacket Rot, Green Fruit Rot,
|
||||||
|
Blossom & Shoot Blight
|
||||||
|
(Botrytis cinerea)
|
||||||
|
Alternaria
|
||||||
|
(Alternaria alternata)
|
||||||
|
Anthracnose
|
||||||
|
(Colletotrichum acutatum,
|
||||||
|
Glomerella cingulata)
|
||||||
|
Shot Hole
|
||||||
|
(Wilsonomyces carpophilus)
|
||||||
|
Powdery Mildew
|
||||||
|
(Podosphaera tridactyla,
|
||||||
|
Sphaerotheca pannosa)
|
||||||
|
Scab
|
||||||
|
(Cladosporium carpophilum,
|
||||||
|
Cladosporium caryigenum)
|
||||||
|
Eastern Filbert Blight
|
||||||
|
(Anisogramma anomala)
|
||||||
|
Rust
|
||||||
|
(Tranzschelia discolor)
|
||||||
|
6.0 to 8.0 Begin applications when
|
||||||
|
conditions are favorable for
|
||||||
|
disease but before infection.
|
||||||
|
Apply on a 7- to 14-day
|
||||||
|
spray schedule.
|
||||||
|
Use higher rates and
|
||||||
|
shorter intervals when
|
||||||
|
disease pressure is severe.
|
||||||
|
Refer to University and/
|
||||||
|
or extension guidelines for
|
||||||
|
best application timings.
|
||||||
|
Botryosphaeria Panicle &
|
||||||
|
Shoot Blight
|
||||||
|
(Botryosphaeria dothidea)
|
||||||
|
Septoria Leaf Spot
|
||||||
|
(Septoria pistaciarum)
|
||||||
|
6.0 to 8.0 Begin applications when
|
||||||
|
conditions are favorable for
|
||||||
|
disease but before infection.
|
||||||
|
Apply on a 14- to 21-day
|
||||||
|
spray schedule.
|
||||||
|
Use higher rates and
|
||||||
|
shorter intervals when
|
||||||
|
disease pressure is severe.
|
||||||
|
11
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
Restrictions:
|
||||||
|
Do not apply more than 32 oz. of ADAMENT 50 WG FUNGICIDE per acre per season. Do not
|
||||||
|
make more than 4 total applications of ADAMENT 50 WG FUNGICIDE per season. Do not
|
||||||
|
apply ADAMENT 50 WG FUNGICIDE within 60 days of harvest or after hull split. Do not cut
|
||||||
|
cover crops in treated areas for feed, or allow livestock to graze treated areas. ADAMENT 50
|
||||||
|
WG FUNGICIDE is a mixture of a Group 11 and a Group 3 fungicide. To limit the potential for
|
||||||
|
the development of resistance, do not apply more than 2 sequential applications of ADAMENT
|
||||||
|
50 WG FUNGICIDE or other Group 11 -containing fungicides.
|
||||||
|
ROTATIONAL RESTRICTIONS
|
||||||
|
Treated areas may be replanted immediately following harvest with any crop listed on this
|
||||||
|
label. For crops not listed on this label, do not plant back within 120 days of last application.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal.
|
||||||
|
Pesticide Storage: Store in a cool, dry place and in such a manner as to prevent
|
||||||
|
cross-contamination with other pesticides, fertilizers, food, and feed. Store in original
|
||||||
|
container and out of the reach of children, preferably in a locked storage area.
|
||||||
|
Handle and open container in a manner as to prevent spillage. If container is leaking or material
|
||||||
|
spilled for any reason or cause, carefully sweep material into a pile. Refer to Precautionary
|
||||||
|
Statements on label for hazards associated with the handling of this material. Do not walk
|
||||||
|
through spilled material. Dispose of pesticide as directed. In spill or leak incidents, keep
|
||||||
|
unauthorized people away. You may contact the Bayer CropScience Emergency Response Team
|
||||||
|
for decontamination procedures or any other assistance that may be necessary. The Bayer
|
||||||
|
CropScience Emergency Response telephone number is 1-800-334-7577.
|
||||||
|
Pesticide Disposal: Wastes resulting from the use of this product may be disposed of on
|
||||||
|
site or at an approved waste disposal facility.
|
||||||
|
Container Handling: Non-refillable container. Do not reuse or refill this container. Triple
|
||||||
|
rinse or pressure rinse container (or equivalent) promptly after emptying.
|
||||||
|
Triple rinse as follows: Empty the remaining contents into application equipment or a
|
||||||
|
mix tank. Fill the container ¼ full with water and recap. Shake for 10 seconds. Pour
|
||||||
|
rinsate into application equipment or a mix tank or store rinsate for later use or disposal.
|
||||||
|
Drain for 10 seconds after the flow begins to drip. Repeat this procedure two more times.
|
||||||
|
12
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application equipment
|
||||||
|
or a mix tank. Hold container upside down over application equipment or mix tank or
|
||||||
|
collect rinsate for later use or disposal. Insert pressure rinsing nozzle in the side of the
|
||||||
|
container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10 seconds after
|
||||||
|
the flow begins to drip.
|
||||||
|
Offer for recycling, if available. If not recycled, then puncture and dispose of in a sanitary
|
||||||
|
landfill or by incineration, or, if allowed by State and local authorities, by burning. If
|
||||||
|
burned, stay out of smoke.
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of
|
||||||
|
Liability before using this product. If terms are not acceptable, return the unopened
|
||||||
|
product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of
|
||||||
|
Warranties and Limitations of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must
|
||||||
|
be followed carefully. However, it is impossible to eliminate all risks associated with the use
|
||||||
|
of this product. Crop injury, ineffectiveness or other unintended consequences may result
|
||||||
|
because of such factors as weather conditions, presence of other materials, or the manner
|
||||||
|
of use or application, all of which are beyond the control of Bayer CropScience. To the
|
||||||
|
extent consistent with applicable law, all such risks shall be assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW,
|
||||||
|
BAYER CROPSCIENCE MAKES NO OTHER WARRANTIES, EXPRESS OR IMPLIED, OF
|
||||||
|
MERCHANTABILITY OR OF FITNESS FOR A PARTICULAR PURPOSE OR OTHERWISE, THAT
|
||||||
|
EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience
|
||||||
|
is authorized to make any warranties beyond those contained herein or to modify the
|
||||||
|
warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER
|
||||||
|
CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR
|
||||||
|
CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, THE EXCLUSIVE
|
||||||
|
REMEDY OF THE USER OR BUYER FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING
|
||||||
|
FROM THE USE OR HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY, TORT,
|
||||||
|
NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID,
|
||||||
|
OR AT BAYER CROPSCIENCE’S ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
Adament, Bayer and Bayer Cross are trademarks of Bayer Group.
|
||||||
|
13
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
14
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
15
|
||||||
|
3.0”
|
||||||
|
2.75”
|
||||||
|
Copy Area
|
||||||
|
3.5”3.25”
|
||||||
|
0.125” 0.125”
|
||||||
|
|
||||||
|
US79419457F 220811F 05/23
|
||||||
|
ADAMENTTM 50 WG Fungicide
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Tebuconazole ........................................................... 25.0%
|
||||||
|
Trifloxystrobin ........................................................... 25.0%
|
||||||
|
OTHER INGREDIENTS: .................................................... 50.0%
|
||||||
|
TOTAL: 100.0%
|
||||||
|
EPA Reg. No. 264-1052
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
See Back Panel for First Aid Instructions and Booklet for Complete Precautionary
|
||||||
|
Statements and Directions for Use.
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Causes moderate eye irritation. Harmful if swallowed, inhaled or absorbed through skin. Avoid
|
||||||
|
contact with skin, eyes, and clothing. Avoid breathing vapor or spray mist. Wash thoroughly
|
||||||
|
with soap and water after handling and before eating, drinking, chewing gum, or using
|
||||||
|
tobacco. Remove and wash contaminated clothing before reuse.
|
||||||
|
Net Contents: 1 LB. 4 OZ. (20 OZ.)
|
||||||
|
For control of certain diseases on almonds, pistachio, and tree nuts
|
||||||
|
Produced for:
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
ADAMENTTM is a trademark of Bayer Group.
|
||||||
|
©2023 Bayer Group. All rights reserved.
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
3
|
||||||
|
11
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
TEBUCONAZOLE
|
||||||
|
TRIFLOXYSTROBIN
|
||||||
|
2.5”
|
||||||
|
3.25”
|
||||||
|
BASE
|
||||||
|
3.5”
|
||||||
|
live
|
||||||
|
3.5”
|
||||||
|
live
|
||||||
|
|
||||||
|
ADAMENTTM 50 WG Fungicide
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently
|
||||||
|
with water for 15 - 20 minutes. • Remove contact lenses, if
|
||||||
|
present, after the first 5 minutes, then continue rinsing eye.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF SWALLOWED: • Call a poison control center or doctor
|
||||||
|
immediately for treatment advice. • Do not induce
|
||||||
|
vomiting unless told to do so by a poison control center
|
||||||
|
or doctor. • Have person sip a glass of water if able to
|
||||||
|
swallow. • Do not give anything to an unconscious person.
|
||||||
|
IF ON SKIN: • Take off contaminated clothing. • Rinse skin
|
||||||
|
immediately with plenty of water for 15 - 20 minutes.• Call
|
||||||
|
a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air. • If person is not
|
||||||
|
breathing, call 911 or an ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to-mouth if possible. • Call a
|
||||||
|
poison control center or doctor for further treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience
|
||||||
|
Emergency Response Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling
|
||||||
|
a poison control center or doctor, or going for treatment.
|
||||||
|
NOTE TO PHYSICIAN: No specific antidote. Treat
|
||||||
|
Symptomatically.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of federal law to use this product in a
|
||||||
|
manner inconsistent with its labeling.
|
||||||
|
Do not use this product until you have read
|
||||||
|
the entire label.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or
|
||||||
|
disposal.
|
||||||
|
Pesticide Storage: Store in a cool, dry place and in such
|
||||||
|
a manner as to prevent cross-contamination with other
|
||||||
|
pesticides, fertilizers, food, and feed. Store in original container
|
||||||
|
and out of the reach of children, preferably in a locked storage area.
|
||||||
|
Handle and open container in a manner as to prevent spillage. If
|
||||||
|
container is leaking or material spilled for any reason or cause,
|
||||||
|
carefully sweep material into a pile. Refer to Precautionary
|
||||||
|
Statements on label for hazards associated with the handling of
|
||||||
|
this material. Do not walk through spilled material. Dispose of
|
||||||
|
pesticide as directed. In spill or leak incidents, keep unauthorized
|
||||||
|
people away. You may contact the Bayer CropScience Emergency
|
||||||
|
Response Team for decontamination procedures or any other
|
||||||
|
assistance that may be necessary. The Bayer CropScience
|
||||||
|
Emergency Response telephone number is 1-800-334-7577.
|
||||||
|
Pesticide Disposal: Wastes resulting from the use of this product
|
||||||
|
may be disposed of on site or at an approved waste disposal facility.
|
||||||
|
Container Handling: Non-refillable container. Do not reuse or refill
|
||||||
|
this container. Triple rinse or pressure rinse container (or equivalent)
|
||||||
|
promptly after emptying.
|
||||||
|
Triple rinse as follows: Empty the remaining contents into
|
||||||
|
application equipment or a mix tank. Fill the container ¼ full
|
||||||
|
with water and recap. Shake for 10 seconds. Pour rinsate into
|
||||||
|
application equipment or a mix tank or store rinsate for later use or
|
||||||
|
disposal. Drain for 10 seconds after the flow begins to drip. Repeat
|
||||||
|
this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into
|
||||||
|
application equipment or a mix tank. Hold container upside down
|
||||||
|
over application equipment or mix tank or collect rinsate for later
|
||||||
|
use or disposal. Insert pressure rinsing nozzle in the side of the
|
||||||
|
container, and rinse at about 40 PSI for at least 30 seconds. Drain
|
||||||
|
for 10 seconds after the flow begins to drip.
|
||||||
|
Offer for recycling, if available. If not recycled, then puncture and
|
||||||
|
dispose of in a sanitary landfill or by incineration, or, if allowed by
|
||||||
|
State and local authorities, by burning. If burned, stay out of smoke.
|
||||||
|
US79424531F 220811F 05/23
|
||||||
|
US79424531F (220811F) ADAMENT 05/24/23
|
||||||
|
color: black Label Coordinator: Mark Schmidt
|
||||||
|
BACK BASE LABEL
|
||||||
|
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
3
|
||||||
|
11
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
TEBUCONAZOLE
|
||||||
|
TRIFLOXYSTROBIN
|
||||||
|
3.25”
|
||||||
|
BASE
|
||||||
|
3.5”
|
||||||
|
3.5”3.25”
|
||||||
|
live
|
||||||
|
live
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "adament-flow",
|
||||||
|
"epa_reg_no": "264-849",
|
||||||
|
"product_name": "Adament FLOW",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Tebuconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Trifloxystrobin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Adament-Flow-Labelpdf",
|
||||||
|
"filename": "Adament-Flow-Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-04-07T19:50:57+00:00",
|
||||||
|
"page_count": 22,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/adament-flow-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:03:51.153917+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,141 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "admire-pro-systemic-protectant",
|
||||||
|
"epa_reg_no": "264-827-ZA",
|
||||||
|
"product_name": "Admire Pro Systemic Protectant Insecticide",
|
||||||
|
"product_class": "insecticide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Imidacloprid",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_Label1iupdf",
|
||||||
|
"filename": "Admire_Pro_Systemic_Protectant_Label1iupdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:24:10+00:00",
|
||||||
|
"page_count": 53,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ADMIRE PRO SYSTEMIC PROTECTANT MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic1j_Protectant_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-23T14:03:43+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ADMIRE PRO SYSTEMIC PROTECTANT MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic1i_Protectant_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-23T13:49:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Use Alone or in Tank Mixes for Control of Japanese Beetle & Multicolored Asian Lady Beetle Management in Grape",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_2EE3bpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:25+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "Leafhoppers on Furrow Irrigated Citrus Only",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_(Ca-060017_08-04-06_leafhoppers_On_Furrow_Irrigated_Citrus_Only)_Section_24C0pdf",
|
||||||
|
"last_modified": "2026-01-30T14:28:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Dry Bulk Fertilizer",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_2EE1epdf",
|
||||||
|
"last_modified": "2026-01-30T14:08:09+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tank Mixture with Maxim 4FS for Use on Potatoes",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_2EE3gpdf",
|
||||||
|
"last_modified": "2026-01-30T14:26:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Transplant/Setting Water Root Zone Application of Admire Pro plus Previcur Flex",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_2EE5gpdf",
|
||||||
|
"last_modified": "2026-01-30T14:08:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Provide for Alternative Application Methods for Pest Management in HI Banana & Tropical Fruit",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_(032607_Hi_provide_For_Alternative_Application_Methods_For_Pest_Management_In_Hi_-zuWaaWG15Npdf",
|
||||||
|
"last_modified": "2026-01-30T14:32:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Use Alone or in Tank Mixes for Control of Japanese Beetle & Multicolored Asian Lady Beetle Management in Grape",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_2EE3apdf",
|
||||||
|
"last_modified": "2026-01-30T14:06:24+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For control of Black Vine Weevil in Cranberry",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant1o_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:43+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Citrus to Suppress Citrus Bacterial Spot & Citrus Canker",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_2EE5fpdf",
|
||||||
|
"last_modified": "2026-01-30T14:22:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Basal Tree Applications to Suppress the Transmission of Huanglongbing Disease (Citrus Greening) by Asian Citrus Psyllid in Young Citrus Groves & Replants",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_Section_24c1ippdf",
|
||||||
|
"last_modified": "2026-01-30T14:09:50+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Post-Transplant Suppression of Wireworm & White Grub Infestations in Sweet Potato Utilizing a Reduced Pre-Harvest Interval",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic_Protectant_Section_24c7hpdf",
|
||||||
|
"last_modified": "2026-01-30T14:27:51+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tank Mixture with Maxim 4FS for Use on Potatoes",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/ADMIRE_PRO_Systemic_Protectant_2EE3fpdf",
|
||||||
|
"last_modified": "2026-01-30T14:25:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Banana & Plantain",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire_Pro_Systemic1n_Protectant_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:24+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Admire Pro - Vegetables - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire-Pro_Vegetables_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T23:30:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Admire Pro - Citrus - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire-Pro_Citrus_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T23:29:06+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Admire Pro Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Admire-Pro_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T23:27:14+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/insecticide/admire-pro-systemic-protectant-insecticide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:07:32.761887+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,92 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "aeris-seed-applied-insecticide-nematicide",
|
||||||
|
"epa_reg_no": "264-1057",
|
||||||
|
"product_name": "Aeris Seed-Applied Insecticide-Nematicide",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Thiodicarb",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Imidacloprid",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/AERIS_Seed-Applied_InsecticideNematicide_Label1ppdf",
|
||||||
|
"filename": "AERIS_Seed-Applied_InsecticideNematicide_Label1ppdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:19:37+00:00",
|
||||||
|
"page_count": 1,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "AERIS SEED-APPLIED INSECTICIDE-NEMATICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/AERIS_Seed-Applied_InsecticideNematicide_MSDS1dtpdf",
|
||||||
|
"last_modified": "2026-01-30T14:26:24+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "AERIS SEED-APPLIED INSECTICIDE-NEMATICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/AERIS_Seed-Applied_InsecticideNematicide_MSDS1tdpdf",
|
||||||
|
"last_modified": "2026-01-30T14:22:42+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "18133 Cotton Aeris TechSheet.indd",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/aeris/Aeris Technical Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-02T18:03:10+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "18134 08 COTTON Aeris_Q&A.indd",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/aeris/Aeris QxA.pdf",
|
||||||
|
"last_modified": "2022-12-02T18:03:09+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Aeris National Tech Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/aeris/Aeris National Tech Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-02T18:03:09+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "18135 Cotton Aeris TechSheet_SW.indd",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/aeris/Aeris Southwest Technical Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-02T18:03:09+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Aeris Product Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/aeris/Aeris Product Bulletin.PDF",
|
||||||
|
"last_modified": "2022-12-02T18:03:09+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "18135 Cotton Aeris TechSheet_SE_MidAtl.indd",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/aeris/Aeris Southeast and Mid-Atlantic Technical Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-02T18:03:09+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "18135 Cotton Aeris TechSheet_MidSouth_V2.indd",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/aeris/Aeris Mid-South Technical Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-02T18:03:09+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/aeris-seed-applied-insecticide-nematicide-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:21:20.393893+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,306 @@
|
|||||||
|
# Aeris Seed-Applied Insecticide-Nematicide
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-1057
|
||||||
|
- **Active ingredients:** Thiodicarb, Imidacloprid
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/aeris-seed-applied-insecticide-nematicide-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/AERIS_Seed-Applied_InsecticideNematicide_Label1ppdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
DIRECTIONS FOR SEED TREATMENT
|
||||||
|
All seed treated with this product must be colored with an EPA-approved dye
|
||||||
|
or colorant that imparts an unnatural color to the seed to help prevent the
|
||||||
|
inadvertent use of treated seed for food, feed, or oil purposes.
|
||||||
|
COTTON (Delinted Seed Only)
|
||||||
|
For Early Season Protection Against Certain Sucking and Lepidopteran
|
||||||
|
Insects and Certain Nematodes:
|
||||||
|
AERIS Seed-Applied Insecticide will provide protection of cotton seedlings
|
||||||
|
against injury by early season thrips, aphids, lygus, fleahoppers, cutworms
|
||||||
|
and reniform and root knot nematodes. Where the specific application rate is
|
||||||
|
desired on an individual seed basis apply 0.375 mg. imidacloprid a.i. (active
|
||||||
|
ingredient) and 0.375 mg. thiodicarb a.i. per seed prior to planting as a slurry
|
||||||
|
treatment so as to ensure thorough coverage. Otherwise apply 25.6 fluid ounces
|
||||||
|
product per hundred pounds of seed. Do not apply more than 25.6 fluid ounces
|
||||||
|
per hundredweight of seed.
|
||||||
|
Do not exceed a total of 5.4 pounds thiodicarb a.i. per acre per season for
|
||||||
|
seed treatment applications. In Arizona and California, do not exceed a
|
||||||
|
total of 1.8 pounds thiodicarb a.i. per acre per season for seed treatment
|
||||||
|
applications.
|
||||||
|
Do not exceed a total of 0.5 pounds imidacloprid a.i. per acre per season for
|
||||||
|
seed treatment, soil, and foliar applications combined.
|
||||||
|
SEED BAG LABEL REQUIREMENTS
|
||||||
|
The Federal Seed Act requires that bags containing treated seeds shall be
|
||||||
|
labeled with the following statements:
|
||||||
|
• This seed has been treated with thiodicarb and imidacloprid.
|
||||||
|
• Do not use for food, feed or oil purposes.
|
||||||
|
In addition, the U.S. Environmental Protection Agency requires the following
|
||||||
|
statements on bags containing seed treated with AERIS Seed-Applied
|
||||||
|
Insecticide/Nematicide:
|
||||||
|
• Store away from food and feedstuffs.
|
||||||
|
• Do not allow children, pets, or livestock to have access to treated seeds.
|
||||||
|
• Wear long-sleeved shirt, long pants, and chemical resistant gloves made
|
||||||
|
out of any waterproof material when handling treated seed.
|
||||||
|
• For cotton, growers must not exceed a total of 5.4 pounds thiodicarb a.i.
|
||||||
|
(active ingredient) per acre per season for seed treatment. In Arizona and
|
||||||
|
California, do not exceed a total of 1.8 pounds thiodicarb a.i. per acre per
|
||||||
|
season for seed treatment. Growers must not exceed a total of 0.5 pounds
|
||||||
|
imidacloprid a.i. per acre per season for seed treatment, soil, and foliar
|
||||||
|
applications combined.
|
||||||
|
• Treated seed must be planted into the soil at a depth greater than 1 inch.
|
||||||
|
Treated seeds exposed on soil surface may be hazardous to birds or other
|
||||||
|
wildlife. Cover or collect treated seeds that are spilled during loading and
|
||||||
|
in areas such as row ends.
|
||||||
|
• Dispose of all excess treated seed by burial away from bodies of water.
|
||||||
|
• Dispose of seed packaging in accordance with local requirements.
|
||||||
|
• Do not contaminate bodies of water when disposing of planting equipment
|
||||||
|
wash water.
|
||||||
|
• Plant AERIS Seed-Applied Insecticide/Nematicide treated seed based upon
|
||||||
|
local production and Best Management Practices as recommended by your
|
||||||
|
state’s Crop Specialist, IPM Coordinator or Extension Nematologist.
|
||||||
|
• Always calibrate planters prior to planting to ensure the desired seeding rate.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage or disposal.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store unused product in a cool, ventilated, dry area. Do not allow prolonged
|
||||||
|
storage in areas where temperatures frequently exceed 115°F (46°C)
|
||||||
|
or go below 35°F (2°C). NEVER TRANSFER THIS PRODUCT TO ANOTHER
|
||||||
|
CONTAINER FOR STORAGE.
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
Improper disposal of excess pesticides or rinsate is a violation of federal law.
|
||||||
|
If these wastes cannot be disposed of by use according to label instructions,
|
||||||
|
contact your state pesticide or environmental control agency or the hazardous
|
||||||
|
waste representative at the nearest EPA regional office for guidance.
|
||||||
|
FIRST AID
|
||||||
|
Thiodicarb is an N-methyl carbamate.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison
|
||||||
|
control center or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
IF ON SKIN
|
||||||
|
OR CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give
|
||||||
|
artificial respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment
|
||||||
|
advice.
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for
|
||||||
|
15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes,
|
||||||
|
then continue rinsing.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison
|
||||||
|
control center or doctor or going for treatment.
|
||||||
|
SIGNS AND SYMPTOMS OF OVEREXPOSURE
|
||||||
|
Salivation, Muscle tremors, Nausea, Watery eyes, Difficult breathing, Vomiting,
|
||||||
|
Pinpoint eye pupils, Excessive sweating, Diarrhea, Blurred vision, Abdominal
|
||||||
|
cramps, Weakness, Headache.
|
||||||
|
IN SEVERE CASES, CONVULSIONS, UNCONSCIOUSNESS, AND RESPIRATORY
|
||||||
|
FAILURE MAY OCCUR.
|
||||||
|
ANTIDOTE STATEMENT: ATROPINE SULFATE IS HIGHLY EFFECTIVE AS AN
|
||||||
|
ANTIDOTE. See NOTE TO PHYSICIAN.
|
||||||
|
GENERAL
|
||||||
|
Contact a physician immediately in all cases of suspected poisoning. If breathing
|
||||||
|
stops, establish an airway, start artificial respiration, and provide oxygen. Make
|
||||||
|
certain to remove all sources of continuing contamination. Remove clothing
|
||||||
|
and wash skin and hair immediately with large amounts of water. Transport the
|
||||||
|
patient to a physician or hospital immediately and SHOW A COPY OF THIS LABEL
|
||||||
|
TO THE PHYSICIAN. If poisoning is suspected in animals, contact a veterinarian.
|
||||||
|
NOTE TO PHYSICIAN
|
||||||
|
All treatments should be based on observed signs and symptoms of distress in
|
||||||
|
the patient. Overexposure to materials other than this product may have occurred.
|
||||||
|
This product contains an N-methyl carbamate insecticide, which is a
|
||||||
|
cholinesterase inhibitor. Overexposure to this substance may cause toxic signs
|
||||||
|
and symptoms due to stimulation of the cholinergic nervous system. These
|
||||||
|
effects of overexposure are spontaneously and rapidly reversible. Gastric
|
||||||
|
lavage may be used if this product has been swallowed. AERIS ® Seed-Applied
|
||||||
|
Insecticide/Nematicide poisoning may occur rapidly after ingestion and prompt
|
||||||
|
removal of stomach contents is indicated.
|
||||||
|
Specific treatment consists of parenteral atropine sulfate. Caution should be
|
||||||
|
maintained to prevent over atropinization. Mild cases may be given 1 to 2 mg
|
||||||
|
intramuscularly every 10 minutes until full atropinization has been achieved
|
||||||
|
and repeated thereafter whenever symptoms reappear. Severe cases should
|
||||||
|
be given 2 to 4 mg intravenously every 10 minutes until fully atropinized, then
|
||||||
|
intramuscularly every 30 to 60 minutes as needed to maintain the effect for at
|
||||||
|
least 12 hours. Dosages for children should be appropriately reduced. Complete
|
||||||
|
recovery from overexposure is to be expected within 24 hours.
|
||||||
|
Narcotics and other sedatives should not be used. Further, drugs like 2-PAM
|
||||||
|
(pyridine-2-aldoxime methiodide) are NOT recommended unless organophosphate
|
||||||
|
intoxication is also suggested.
|
||||||
|
To aid in confirmation of a diagnosis, urine samples should be obtained within
|
||||||
|
24 hours of exposure and immediately frozen. Analyses will be arranged by
|
||||||
|
Bayer CropScience.
|
||||||
|
Consultation on therapy can be obtained at all hours by calling the Bayer
|
||||||
|
CropScience emergency number: 1-800-334-7577.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed, absorbed through skin, or inhaled. Causes moderate eye
|
||||||
|
irritation. Avoid contact with eyes, skin, or clothing. Avoid breathing fumes.
|
||||||
|
Prolonged or frequently repeated skin contact may cause allergic reaction in
|
||||||
|
some individuals. Remove contaminated clothing and wash before reuse.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Workers involved with treating the seed (e.g. connecting and disconnecting
|
||||||
|
hoses and transfer pumps, mixing, equipment calibration, etc.) and others
|
||||||
|
exposed to the concentrate, and cleaners/repairers of seed treatment
|
||||||
|
equipment must wear a long-sleeve shirt and long pants, shoes plus socks,
|
||||||
|
chemical resistant gloves made out of any waterproof material, and a dust/mist
|
||||||
|
filtering respirator (MSHA/NIOSH approval number prefix TC-21C) or a NIOSH
|
||||||
|
approved respirator with any R, P , or HE filter.
|
||||||
|
Baggers and bag sewers must wear a long-sleeve shirt and long pants,
|
||||||
|
shoes plus socks, chemical resistant gloves made out of any waterproof
|
||||||
|
material, and a dust/mist filtering respirator (MSHA/NIOSH approval number
|
||||||
|
prefix TC-21C) or a NIOSH approved respirator with any R, P , or HE filter.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
• Users should wash hands before eating, drinking, chewing gum, using
|
||||||
|
tobacco or using the toilet.
|
||||||
|
• Users should remove clothing immediately if pesticide gets inside.
|
||||||
|
Then wash thoroughly and put on clean clothing.
|
||||||
|
• Users should remove PPE immediately after handling this product.
|
||||||
|
Wash the outside of gloves before removing. As soon as possible, wash
|
||||||
|
thoroughly and change into clean clothing.
|
||||||
|
• Discard clothing and other absorbent materials that have been
|
||||||
|
drenched or heavily contaminated with this product’s concentrate. Do
|
||||||
|
not reuse them.
|
||||||
|
• Follow manufacturer’s instructions for cleaning/maintaining PPE. If no
|
||||||
|
such instructions for washables, use detergent and hot water. Keep
|
||||||
|
and wash PPE separately from other laundry.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This product is highly toxic to birds and aquatic invertebrates and toxic to
|
||||||
|
fish and mammals. Do not contaminate water when disposing of equipment
|
||||||
|
washwater or rinsate.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
It is a violation of Federal Law to use this product in a manner
|
||||||
|
inconsistent with its labeling.
|
||||||
|
PRODUCT DIRECTIONS
|
||||||
|
For use only in commercial seed treatment equipment. Not for use in
|
||||||
|
hopper box, planter box, slurry box, or other farmer-applied applications.
|
||||||
|
Read the entire label and observe all label directions and precautions
|
||||||
|
before use. Do not use this product except as directed on this label or on
|
||||||
|
other Bayer CropScience supplemental labeling for this product.
|
||||||
|
COMPATIBILITY
|
||||||
|
It is essential that before using AERIS Seed-Applied Insecticide/Nematicide
|
||||||
|
in any tank mixture the compatibility of the mixture be established. Add
|
||||||
|
AERIS Seed-Applied Insecticide/Nematicide at the recommended label rate
|
||||||
|
to a clean quart jar containing approximately one-half the amount of water
|
||||||
|
intended for a final slurry application rate. Next, follow with all other tank
|
||||||
|
mix components that will be used in the total slurry application. Add last the
|
||||||
|
remaining balance of water. The total amount of volume is determined by
|
||||||
|
the seed size and how much is necessary to ensure complete and uniform
|
||||||
|
coverage and distribution on the seed, as well as the type of commercial
|
||||||
|
seed treating application equipment that will be used
|
||||||
|
DO NOT USE MIXTURES THAT CURDLE, PRECIPITATE, OR GEL. FOR BEST
|
||||||
|
RESULTS, TANK MIXTURES SHOULD BE USED IMMEDIATELY AFTER MIXING
|
||||||
|
WITH ADEQUATE AGITATION.
|
||||||
|
NOTE: Thiodicarb is hydrolytically sensitive to degradation of active ingredient
|
||||||
|
by strong acids AND strong bases. DO NOT ADD AERIS SEED-APPLIED
|
||||||
|
INSECTICIDE/NEMATICIDE TO WATER WITH pH VALUES BELOW 3.0 OR ABOVE
|
||||||
|
8.5. If necessary, water should be buffered within this range before adding
|
||||||
|
AERIS Seed-Applied Insecticide/Nematicide. Degradation can cause reduced
|
||||||
|
effectiveness, plant phytotoxicity and increased handling hazards.
|
||||||
|
CONTAINER HANDLING
|
||||||
|
Non-refillable container. Do not reuse or refill this container. After emptying
|
||||||
|
product from container, either return container to Bayer CropScience per
|
||||||
|
instructions from Bayer CropScience Customer Service Center (1-800-527-4781),
|
||||||
|
or rinse and either recycle or dispose of the container as follows:
|
||||||
|
Bottom Discharge IBC (e.g. – Schuetz Caged IBC or Snyder Square
|
||||||
|
Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of
|
||||||
|
the person disposing of the container. To pressure rinse the container before
|
||||||
|
final disposal, empty the remaining contents from the IBC into application
|
||||||
|
equipment or mix tank. Raise the bottom of the IBC by 1.5 inch on the side
|
||||||
|
which is opposite of the bottom discharge valve to promote more complete
|
||||||
|
product removal. Completely remove the top lid of the IBC. Use water
|
||||||
|
pressurized to at least 40 PSI to rinse all interior portions. Continuously
|
||||||
|
pump or drain rinsate into application equipment or rinsate collection
|
||||||
|
system while pressure rinsing. Continue pressure rinsing for 2 minutes or
|
||||||
|
until rinsate becomes clear. Replace the lid and close bottom valve.
|
||||||
|
Top Discharge IBC, Drums, Kegs (e.g.– Snyder 120 Next Gen, Bonar B120,
|
||||||
|
Drums, and Kegs).
|
||||||
|
Triple rinsing the container before final disposal is the responsibility of the
|
||||||
|
person disposing of the container. To triple rinse the container before final
|
||||||
|
disposal, empty the remaining contents from this container into application
|
||||||
|
equipment or mix tank. Fill the container at least 10 percent full with water.
|
||||||
|
Agitate vigorously or recirculate water with the pump for 2 minutes. Rinse
|
||||||
|
all interior surfaces. Pour or pump rinsate into application equipment or
|
||||||
|
rinsate collection system. Repeat this procedure two more times.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and
|
||||||
|
dispose of in a sanitary landfill, or by incineration.
|
||||||
|
ACCIDENTS: In case of a major spill of AERIS Seed-Applied Insecticide/
|
||||||
|
Nematicide TELEPHONE (24 HOURS A DAY) IN THE U.S.A. 1-800-334-7577.
|
||||||
|
WARRANTY STATEMENT
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability before using this product. If terms are not acceptable,
|
||||||
|
return the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions,
|
||||||
|
Disclaimer of Warranties and Limitations of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be
|
||||||
|
adequate and must be followed carefully. However, it is impossible to
|
||||||
|
eliminate all risks associated with the use of this product. Crop injury,
|
||||||
|
ineffectiveness or other unintended consequences may result because
|
||||||
|
of such factors as weather conditions, presence of other materials, or the
|
||||||
|
manner of use or application, all of which are beyond the control of Bayer
|
||||||
|
CropScience. All such risks shall be assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, BAYER CROPSCIENCE MAKES NO OTHER WARRANTIES,
|
||||||
|
EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE
|
||||||
|
STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience is
|
||||||
|
authorized to make any warranties beyond those contained herein or to
|
||||||
|
modify the warranties contained herein. TO THE EXTENT CONSISTENT
|
||||||
|
WITH APPLICABLE LAW, BAYER CROPSCIENCE DISCLAIMS ANY LIABILITY
|
||||||
|
WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
|
||||||
|
RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER FOR ANY AND ALL
|
||||||
|
LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING OF
|
||||||
|
THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT
|
||||||
|
LIABILITY OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR
|
||||||
|
AT BAYER CROPSCIENCE’S ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
This product contains a chemical known to the state of California to cause cancer.
|
||||||
|
Aeris, Bayer and Bayer Cross are registered trademarks of Bayer Group.
|
||||||
|
©2025 Bayer Group. All rights reserved.
|
||||||
|
For Use Only in Commercial Seed Treatment Equipment
|
||||||
|
ACTIVE INGREDIENTS
|
||||||
|
THIODICARB: Dimethyl N, N' [thiobis[(methylimino)carbonyloxy]]bis
|
||||||
|
[ethanimidothioate] .................................................... 24% by wt.
|
||||||
|
IMIDACLOPRID: 1-[(6-Chloro-3-pyridinyl)methyl]-N-nitro-2-
|
||||||
|
imidazolidinimine] ..................................................... 24% by wt.
|
||||||
|
OTHER INGREDIENTS: .................................................... 52% by wt.
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 2.5 pounds active imidacloprid per U.S. gallon
|
||||||
|
Contains 2.5 pounds active thiodicarb per U.S. gallon
|
||||||
|
EPA Reg. No. 264-1057
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
©2025 Bayer Group. All rights reserved.
|
||||||
|
US86273071B 140707Bv3 06/25
|
||||||
|
Net Contents:
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
Due to Avian, Aquatic and Small Mammal Toxicity
|
||||||
|
For retail sale to and use only by Certified Applicators or persons under their direct supervision
|
||||||
|
and only for those uses covered by the Certified Applicator’s Certification.
|
||||||
|
Seed-Applied Insecticide/Nematicide
|
||||||
|
US86273071B (140707Bv3) AERIS No Net label 18’’ x 9’’ 06/02/2025
|
||||||
|
Colors: CMYK (Label Coordinator: Mark Schmidt)
|
||||||
|
Escanee el código QR para español
|
||||||
|
Scan QR Code for Spanish
|
||||||
|
18.0’’
|
||||||
|
17.5’’ COPY AREA
|
||||||
@@ -0,0 +1,189 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "aliette-wdg",
|
||||||
|
"epa_reg_no": "264-516-ZB",
|
||||||
|
"product_name": "Aliette WDG Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Aluminum tris",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG1f_Fungicide_Labelpdf",
|
||||||
|
"filename": "Aliette_WDG1f_Fungicide_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:06:37+00:00",
|
||||||
|
"page_count": 29,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALIETTE WDG FUNGICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG2s_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALIETTE WDG FUNGICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_MSDS1mipdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:53+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALIETTE WDG FUNGICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG2e_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALIETTE WDG FUNGICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_MSDS1impdf",
|
||||||
|
"last_modified": "2026-01-30T14:03:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Aerial Application on Hops for Downy Mildew Control",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_Section_24c3pdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Suppression of Alternaria Brown Spot & for Control of Phytophthora Foot & Root Rot with a Reduce Pre-Harvest Interval",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_Section_24c1ewpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Suppression of Citrus Greening / HLB in Bearing & Non-Bearing Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_2EEfl7pdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Suppression of Alternaria Brown Spot & for Control of Phytophthora Foot & Root Rot with a Reduce Pre-Harvest Interval",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1fv_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:41+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Use on Strawberries to Control Red Stele & Leather Rot",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1b_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Rates for Application on Bearing & Non-Bearing Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_2EE1hpdf",
|
||||||
|
"last_modified": "2026-01-30T14:06:35+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Foliar Spray to Apples for the Suppression of Alternaria Leaf Spot",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1c_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Alternaria Brown Spot & Phytophthora Foot & Root Rot",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1po_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T13:55:13+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use in Tomato Transplant Water",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1d_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:10+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Tomatoes for Suppression of Bacterial Spot",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1b_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:10+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Use on Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_Section_24c1fpdf",
|
||||||
|
"last_modified": "2026-01-30T13:58:31+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "Aerial Application for Control of Phytophthora Root Rot on Bearing Avocado",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1a_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:52+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Banana/Plantain",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1f_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:15:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use in Cucurbit Transplant Water",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1e_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:08:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Rates for Application on Bearing & Non-Bearing Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1a_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:06:20+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Use on Almonds, Kiwi, Peaches, Plums, Prunes, Walnuts to Control Crown Rot & Aerial Phytophthora",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:17+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tractor-Mounted Boom-Type Sprayer Application on Bearing & Non-Bearing Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1g_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:59+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "To Allow for the ALIETTE WDG Fungicide Application to Dry Fertilizer for Soil Use",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_2EE1gepdf",
|
||||||
|
"last_modified": "2026-01-30T14:03:22+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Rates for Application on Bearing & Non-Bearing Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide1_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:06:27+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Suppression of Citrus Canker in Bearing & Non-Bearing Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_WDG_Fungicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:04:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Aliette California Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_California_2025pdf",
|
||||||
|
"last_modified": "2026-05-20T00:51:52+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Aliette Citrus Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Aliette_Citrus_2025pdf",
|
||||||
|
"last_modified": "2026-05-20T00:49:09+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/aliette-wdg-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:02:10.737929+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,111 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "alion",
|
||||||
|
"epa_reg_no": "264-1106",
|
||||||
|
"product_name": "Alion Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Indaziflam",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_Label1qpdf",
|
||||||
|
"filename": "Alion_Herbicide_Label1qpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00",
|
||||||
|
"page_count": 66,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALION HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_MSDS1xfpdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Label",
|
||||||
|
"title": "ALION HERBICIDE Label",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_Label1bvpdf",
|
||||||
|
"last_modified": "2026-01-30T13:43:37+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALION HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide2h_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALION HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_MSDS1fxpdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:11+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALION HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide2j_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "Application in Citrus Groves to Trees Established less than one Year",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_Section_24c1typdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "Application in Citrus Groves to Trees Established Less than One Year",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_Section_24clpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "Application in citrus groves to trees established less than one year",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_Section_24cigpdf",
|
||||||
|
"last_modified": "2026-01-30T13:44:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Broadleaf & Grass Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_2EE1cpdf",
|
||||||
|
"last_modified": "2026-01-30T13:49:48+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Citrus, Grape, Pistachio, Pome Fruit, Stone Fruit, and Tree Nuts",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_2EE3pdf",
|
||||||
|
"last_modified": "2026-01-30T13:43:42+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "Application in Citrus Groves to Trees Established less than one Year",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_Section_24c1fpdf",
|
||||||
|
"last_modified": "2026-01-30T13:54:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For the Use of Alion Herbicide on Dormant Highbush Blueberry in Sandy Soils containing greater than 1% Organic Matter",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_Herbicide_Section_24c1oppdf",
|
||||||
|
"last_modified": "2026-01-30T13:49:16+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Alion Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Alion_2026pdf",
|
||||||
|
"last_modified": "2026-05-15T15:36:33+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/alion-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:58:25.513970+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,69 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "allegiance-fl-seed-treatment-fungicide",
|
||||||
|
"epa_reg_no": "264-935",
|
||||||
|
"product_name": "Allegiance FL Seed Treatment Fungicide",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Metalaxyl",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Allegiance_FL_Seed_Treatment1d_Fungicide_Labelpdf",
|
||||||
|
"filename": "Allegiance_FL_Seed_Treatment1d_Fungicide_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00",
|
||||||
|
"page_count": 13,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "Label",
|
||||||
|
"title": "ALLEGIANCE FL SEED TREATMENT FUNGICIDE Label",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Allegiance_FL_Seed_Treatment_Fungicide_Label1ehpdf",
|
||||||
|
"last_modified": "2026-01-30T13:49:15+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALLEGIANCE FL SEED TREATMENT FUNGICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Allegiance_FL1hc_Seed_Treatment_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALLEGIANCE FL SEED TREATMENT FUNGICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Allegiance_FL_Seed_Treatment1tg_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:52:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALLEGIANCE FL SEED TREATMENT FUNGICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Allegiance_FL1lc_Seed_Treatment_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "ALLEGIANCE FL SEED TREATMENT FUNGICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Allegiance_FL_Seed_Treatment1gt_Fungicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:34+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "Only for Use in Commercial Seed Treating Establishments",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Allegiance_FL_Seed_Treatment_Fungicide_Supplemental_Label2pdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/allegiance-fl-seed-treatment-fungicide-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:20:26.433922+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,838 @@
|
|||||||
|
# Allegiance FL Seed Treatment Fungicide
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-935
|
||||||
|
- **Active ingredients:** Metalaxyl
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/allegiance-fl-seed-treatment-fungicide-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Allegiance_FL_Seed_Treatment1d_Fungicide_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
4.50”
|
||||||
|
4.25”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Seed Treatment FungicideNet
|
||||||
|
Contents:
|
||||||
|
2.5 Gallons
|
||||||
|
GROUP 4 FUNGICIDEMETALAXYL
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
ALLEGIANCE® is a registered trademark of Bayer.
|
||||||
|
©2020 Bayer CropScience
|
||||||
|
|
||||||
|
US61379981D 200214D 03/20
|
||||||
|
SMARTLINE US61379981D (200214D) LABMC ALLEGIANCE FL 2.5 GAL ETL cmyk 3/27/20
|
||||||
|
A SEED TREATMENT CHEMICAL FOR CONTROL OF SEED ROT
|
||||||
|
AND DAMPING-OFF DISEASES OF CERTAIN CROPS
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Metalaxyl: N-(2,6-dimethylphenyl)-N-(methoxyacetyl)alanine
|
||||||
|
methyl ester .................................................... 28.35%
|
||||||
|
OTHER INGREDIENTS: ........................................... 71.65%
|
||||||
|
Contains 2.6 pounds Metalaxyl per gallon. TOTAL: 100.00%
|
||||||
|
EPA Reg. No. 264-935
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
WARNING
|
||||||
|
AVISO
|
||||||
|
Si usted no entiende la etiqueta, busque a alguien para que se
|
||||||
|
la explique a usted en detalle.
|
||||||
|
(If you do not understand the label, find someone to explain it to you in detail.)
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Please refer to booklet for additional precautionary statements and directions for use.
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 1US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 1 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
1
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
FIRST AID
|
||||||
|
IF ON SKIN OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison
|
||||||
|
control center or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for
|
||||||
|
15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes,
|
||||||
|
then continue rinsing.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency
|
||||||
|
Response Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling a poison control
|
||||||
|
center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
WARNING
|
||||||
|
Causes skin irritation. Harmful if swallowed or absorbed through skin. Causes
|
||||||
|
moderate eye irritation. Do not get on skin or on clothing. Avoid contact with eyes.
|
||||||
|
Wash thoroughly with soap and water after handling and before eating, drinking,
|
||||||
|
chewing gum, using tobacco, or using the toilet. Remove contaminated clothing
|
||||||
|
and wash before reuse.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Some materials that are chemical-resistant to this product are: (barrier laminate,
|
||||||
|
butyl rubber ≥14 mils, nitrile rubber ≥14 mills, polyvinyl chloride (PVC) ≥14 mils,
|
||||||
|
and viton ≥14 mills).
|
||||||
|
Applicators and other handlers must wear: Coveralls over short-sleeved shirt
|
||||||
|
and short pants, socks and chemical-resistant footwear and chemical-resistant
|
||||||
|
gloves (barrier laminate, butyl rubber ≥14 mils, nitrile rubber ≥14 mills, polyvinyl
|
||||||
|
chloride (PVC) ≥14 mils, and viton ≥14 mills).
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such
|
||||||
|
instructions for washables exist, use detergent and hot water. Keep and wash
|
||||||
|
PPE separately from other laundry.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Users should: Wash hands thoroughly with soap and water after handling and
|
||||||
|
before eating, drinking, chewing gum, using tobacco, or using the toilet.
|
||||||
|
• Remove clothing/PPE immediately if pesticide gets inside. Then wash
|
||||||
|
thoroughly and change into clean clothing.
|
||||||
|
• Remove PPE immediately after handling this product. Wash the outside of
|
||||||
|
gloves before removing. As soon as possible, wash thoroughly and change
|
||||||
|
clothing.
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 1US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 1 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
2
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
For terrestrial uses, do not apply directly to water, or to areas where surface water
|
||||||
|
is present or to intertidal areas below the mean high water mark. Do not apply when
|
||||||
|
weather conditions favor drift from treated areas. Do not contaminate water when
|
||||||
|
disposing of equipment wash water or rinsate.
|
||||||
|
Groundwater Advisory: This chemical is known to leach through soil into
|
||||||
|
groundwater under certain conditions as a result of agricultural use. Use of this
|
||||||
|
chemical in areas where soils are permeable, particularly where the water table is
|
||||||
|
shallow, may result in groundwater contamination.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner
|
||||||
|
inconsistent with its labeling.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons, either
|
||||||
|
directly or through drift. Only protected handlers may be in the area during
|
||||||
|
application. For any requirements specific to your State or Tribe, consult the
|
||||||
|
agency responsible for pesticide regulation.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker
|
||||||
|
Protection Standard, 40 CFR Part 170. This Standard contains requirements
|
||||||
|
for the protection of agricultural workers on farms, forests, nurseries, and
|
||||||
|
greenhouses, and handlers of agricultural pesticides. It contains requirements
|
||||||
|
for training, decontamination, notification, and emergency assistance. It also
|
||||||
|
contains specific instructions and exceptions pertaining to the statements on
|
||||||
|
this label about personal protective equipment (PPE), and restricted-entry
|
||||||
|
interval. The requirements in this box only apply to uses of this product that are
|
||||||
|
covered by the Worker Protection Standard.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted entry
|
||||||
|
interval (REI) of 24 hours.
|
||||||
|
Exception: if the seed is treated with the product and the treated seed is
|
||||||
|
soil-injected or soil-incorporated, the Worker Protection Standard, under certain
|
||||||
|
circumstances, allows workers to enter the treated area if there will be no
|
||||||
|
contact with anything that has been treated.
|
||||||
|
PPE required for early entry to treated areas that is permitted under the Worker
|
||||||
|
Protection Standard and that involves contact with anything that has been
|
||||||
|
treated, such as plants, soil, or water, is: coveralls, socks and chemical resistant
|
||||||
|
footwear, chemical resistant gloves, barrier laminate or butyl rubber ≥14 mils,
|
||||||
|
nitrile rubber ≥14 mills, polyvinyl chloride (PVC) ≥14 mils, and viton ≥14 mills or
|
||||||
|
Viton and protective eyewear.
|
||||||
|
In California – Only for use in commercial seed treating establishments. Not
|
||||||
|
allowed for “on-farm” use.
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide is a systemic fungicide seed
|
||||||
|
dressing specifically for control of systemic downy mildews, Pythium, and
|
||||||
|
Phytophthora spp.
|
||||||
|
SEED BAG LABELING REQUIREMENT
|
||||||
|
Federal Seed Act requires that containers containing treated seeds shall be
|
||||||
|
labeled with the following information.
|
||||||
|
• This seed has been treated with ALLEGIANCE®-FL Seed Treatment Fungicide,
|
||||||
|
a fungicide containing Metalaxyl.
|
||||||
|
• Do not use for feed, food or oil purposes.
|
||||||
|
(continued)
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 2US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 2 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
3
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
The U.S. Environmental Protection Agency requires the following statements
|
||||||
|
on containers containing seed treated with ALLEGIANCE ®-FL Seed Treatment
|
||||||
|
Fungicide:
|
||||||
|
• Store away from feeds and foodstuffs.
|
||||||
|
• Do not allow children, pets, or livestock to have access to treated seeds.
|
||||||
|
• Wear long pants, long-sleeved shirt and protective gloves when handling
|
||||||
|
treated seed.
|
||||||
|
• Treated seeds exposed on the soil surface may be hazardous to wildlife. Cover or
|
||||||
|
collect treated seeds spilled during loading and planting (such as in row ends).
|
||||||
|
• Dispose of all excess treated seed by burying seed away from bodies of water.
|
||||||
|
• Do not contaminate bodies of water when disposing of planting equipment
|
||||||
|
wash water.
|
||||||
|
• Dispose of seed packaging or containers in accordance with local requirements.
|
||||||
|
• Excess treated seed may be used for ethanol production if (1) by-products are
|
||||||
|
not used for livestock feed and (2) no measurable residues of pesticide remain
|
||||||
|
in ethanol by-products that are used in agronomic practice.
|
||||||
|
• ALLEGIANCE-FL Seed Treatment Fungicide is a systemic fungicide seed
|
||||||
|
dressing specifically for control of systemic downy mildews, Pythium, and
|
||||||
|
Phytophthora spp. Do not use with other seed treatment products unless
|
||||||
|
previous experience assures compatibility.
|
||||||
|
RESISTANCE MANAGEMENT RECOMMENDATION
|
||||||
|
For resistance management, ALLEGIANCE-FL Seed Treatment Fungicide
|
||||||
|
contains a Group 4 fungicide. Any fungal population may contain individuals
|
||||||
|
naturally resistant to ALLEGIANCE-FL Seed Treatment Fungicide and other
|
||||||
|
Group 4 fungicides. A gradual or total loss of pest control may occur over time if
|
||||||
|
these fungicides are used repeatedly in the same fields. Appropriate resistance-
|
||||||
|
management strategies should be followed.
|
||||||
|
COMPATIBILITY TESTING AND TANK MIX PARTNERS
|
||||||
|
May be used in combination with other registered Bayer CropScience seed
|
||||||
|
treatment fungicides and insecticides. Pre-test for compatibility with other seed
|
||||||
|
treatment products.
|
||||||
|
Compatibility
|
||||||
|
It is essential that before using ALLEGIANCE-FL Seed Treatment Fungicide in any
|
||||||
|
tank mixture the compatibility of the mixture be established. Add ALLEGIANCE-FL
|
||||||
|
Seed Treatment Fungicide at the labeled rate to a clean quart jar containing
|
||||||
|
approximately one-half the amount of water intended for a final slurry application
|
||||||
|
rate. Next, follow with all other tank mix components that will be used in the total
|
||||||
|
slurry application.
|
||||||
|
Add last the remaining balance of water. The total amount of volume is determined
|
||||||
|
by the seed size and how much is necessary to ensure complete and uniform
|
||||||
|
coverage and distribution on the seed, as well as the type of commercial seed
|
||||||
|
treating application equipment that will be used.
|
||||||
|
DO NOT USE MIXTURES THAT CURDLE, PRECIPITATE, OR GEL. USE TANK
|
||||||
|
MIXTURES IMMEDIATELY AFTER MIXING WITH ADEQUATE AGITATION.
|
||||||
|
Mixing Instructions
|
||||||
|
1. When applied with seed treatment application equipment designed to treat
|
||||||
|
seed utilizing a treatment slurry mixture, add approximately 1/2 to 2/3 of the
|
||||||
|
required water to the treatment slurry tank followed by the accompanying
|
||||||
|
seed treatment products and ALLEGIANCE-FL Seed Treatment Fungicide.
|
||||||
|
(continued)
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 3US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 3 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
4
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
2. The order of product addition is dependent on the accompanying seed
|
||||||
|
treatment products and application equipment used.
|
||||||
|
3. Allow each slurry component to disperse completely prior to the next addition
|
||||||
|
until a uniform suspension is obtained.
|
||||||
|
4. After all slurry components have been added and dispersed completely add
|
||||||
|
the remaining 1/2 to 1/3 of required water for proper slurry volume and mix
|
||||||
|
until uniform.
|
||||||
|
5. Do not store mixed slurries for greater than 72 hours.
|
||||||
|
6. Maintain adequate agitation until treatment slurry is applied.
|
||||||
|
For additional instructions for use, slurry component mixing order, and other
|
||||||
|
application suggestions contact your Bayer CropScience representative.
|
||||||
|
Follow more restrictive labeling of any tank mix partner. Do not tank mix with any
|
||||||
|
product, which contains a prohibition on tank mixing.
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide may be applied as a water based
|
||||||
|
slurry with other registered seed treatment insecticides and fungicides through
|
||||||
|
standard slurry or mist-type commercial seed treatment equipment.
|
||||||
|
It is the pesticide user’s responsibility to ensure that all products are registered
|
||||||
|
for the intended use. Read and follow the applicable restrictions and limitations
|
||||||
|
and directions for use on all product labels involved in tank mixing. Users must
|
||||||
|
follow the most restrictive directions for use and precautionary statements of
|
||||||
|
each product in the tank mixture. Excess treated seed may be used for ethanol
|
||||||
|
production only if (1) by-products are not used for livestock feed and (2) no
|
||||||
|
measurable residues of pesticide remain in ethanol byproducts that are used in
|
||||||
|
agronomic practice.
|
||||||
|
RESTRICTIONS
|
||||||
|
• Seed treated with this product must be visually identifiable from untreated
|
||||||
|
seed by the use of an approved colorant or dye to prevent accidental use of
|
||||||
|
treated seed as food for humans or feed for animals. Refer to 21 CFR, Part
|
||||||
|
2.25. Any colorant or dye added to treated seed must be cleared for use in
|
||||||
|
accordance with 40 CFR, Part 153.155(c).
|
||||||
|
• Maximum usage when applying both metalaxyl- and mefenoxam-containing
|
||||||
|
products to the same crop within the same season: Do not apply more than
|
||||||
|
the maximum yearly total application rate for the active ingredient as stated
|
||||||
|
on the label of the product containing the lowest yearly total on that crop. The
|
||||||
|
maximum application rate for metalaxyl and mefenoxam-containing products
|
||||||
|
(including seed treatments, foliar applications, soil application) is 12.3 lb per
|
||||||
|
acre per calendar year. DO NOT apply more than 12.3 lb of active ingredient
|
||||||
|
metalaxyl per acre per calendar year.
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 4US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 4 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
5
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
CROP USE DIRECTIONS
|
||||||
|
Canola*
|
||||||
|
Mustard seed*
|
||||||
|
Rapeseed*
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.25 - 0.5 fl oz per 100 lbs of seed.
|
||||||
|
*Use not permitted in California.
|
||||||
|
Peanuts* For Pythium seed rot and damping-off control: Apply ALLEGIANCE-FL Seed
|
||||||
|
Treatment Fungicide as a seed treatment at 0.75 fl oz per 100 lbs of seed.
|
||||||
|
*Use not permitted in California.
|
||||||
|
Sorghum For control of Pythium damping-off, apply 0.375 - 0.75 fl oz of ALLEGIANCE-FL
|
||||||
|
Seed Treatment Fungicide per 100 lbs of seed applied as a seed treatment.
|
||||||
|
For control of systemic downy mildew (races susceptible to chemical control),
|
||||||
|
apply 0.75 - 1.5 fl oz ALLEGIANCE-FL Seed Treatment Fungicide per 100
|
||||||
|
lbs of seed on cultivars which possess sorghum downy mildew resistance. To
|
||||||
|
those cultivars, which do not possess resistance to a particular race of sorghum
|
||||||
|
downy mildew in heavily infected areas with recent severe history, apply 1.5 -
|
||||||
|
3.0 fl oz of ALLEGIANCE-FL Seed Treatment Fungicide per 100 lbs of seed
|
||||||
|
as a seed treatment. Only high quality sorghum seed (90% germination and
|
||||||
|
above) should be treated with ALLEGIANCE-FL Seed Treatment Fungicide.
|
||||||
|
Sunflowers For control of systemic downy mildew: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at the rate of 1.5 - 3.0 fl oz per 100 lbs of seed.
|
||||||
|
Forage
|
||||||
|
Legumes
|
||||||
|
Alfalfa, clover, lespedeza, beans (for forage), soybeans (for forage), soybean
|
||||||
|
hay, peanuts (for forage), peanut hay, peas (for forage), pea vine hay,
|
||||||
|
cowpeas (for forage), cowpea hay, trefoil, vetch, and velvet beans (for forage).
|
||||||
|
For Pythium damping-off and early season Phytophthora control: Apply
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide as a seed treatment at the rate
|
||||||
|
of 0.75 - 1.5 fl oz per 100 lbs of seed.
|
||||||
|
Grain Crops Wheat, barley, rye, oats, millet, milo, corn (field corn, sweet corn, and popcorn),
|
||||||
|
buckwheat, and triticale.
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at the rate of 0.75 fl oz per 100 lbs of seed. For
|
||||||
|
systemic downy mildew control of sweet corn: Apply ALLEGIANCE-FL Seed
|
||||||
|
Treatment Fungicide as a seed treatment at the rate of 1.5 fl oz per 100 lbs of seed.
|
||||||
|
Rice* For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at the rate of 0.75 - 1.5 fl oz per 100 lbs
|
||||||
|
of seed. Note: If using ALLEGIANCE-FL Seed Treatment Fungicide treated
|
||||||
|
rice, do not use Ridomil for control of Pythium in water-seeded rice.
|
||||||
|
Restrictions:
|
||||||
|
Container bags containing ALLEGIANCE-FL Seed Treatment Fungicide
|
||||||
|
treated rice must be labeled with the following restriction: “For rice seed, do
|
||||||
|
not use Ridomil for control of Pythium in water-seeded rice.”
|
||||||
|
*Use not permitted in California.
|
||||||
|
Seed and
|
||||||
|
Pod
|
||||||
|
Vegetables
|
||||||
|
Black-eyed peas, chickpeas (Garbanzos), cowpeas, dill, edible soybeans,
|
||||||
|
field beans, field peas, garden peas, green beans, kidney beans, lima beans,
|
||||||
|
lupines, navy beans, okra, peas, pole beans, snap beans, string beans, wax
|
||||||
|
beans, and lentils. For Pythium damping-off control: Apply ALLEGIANCE-FL
|
||||||
|
Seed Treatment Fungicide as a seed treatment at the rate of 0.75 fl oz per
|
||||||
|
100 lbs of seed. For early season Phytophthora control: Apply ALLEGIANCE-FL
|
||||||
|
Seed Treatment Fungicide as a seed treatment at the rate of 0.75 fl oz per
|
||||||
|
100 lbs of seed. For control of Pythium damping-off and systemic downy
|
||||||
|
mildew of peas: Apply ALLEGIANCE-FL Seed Treatment Fungicide as a
|
||||||
|
seed treatment at the rate of 1.5 fl oz per 100 lbs of seed.
|
||||||
|
Turf Grasses For Pythium damping-off control on golf courses, home lawns reclamation
|
||||||
|
and erosion control projects: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treated at the rate of 1.5 fl oz per 100 lbs of seed.
|
||||||
|
Forage
|
||||||
|
Grasses
|
||||||
|
Grasses grown for hay, grazing or silage, corn (fodder or silage), sorghum
|
||||||
|
(hay or silage), and small grain grown for hay, grazing or silage. For Pythium
|
||||||
|
damping-off control: Apply ALLEGIANCE-FL Seed Treatment Fungicide as a
|
||||||
|
seed treatment at the rate of 0.75 fl oz per 100 lbs of seed.
|
||||||
|
(continued)
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 5US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 5 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
6
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Brassica
|
||||||
|
(Cole) Leafy
|
||||||
|
Vegetables*
|
||||||
|
Broccoli (Chinese and raab), Brussels sprouts, cabbage (Chinese bok choy,
|
||||||
|
Chinese napa and mustard), cauliflower, cavalo broccoli, collards, kale, kohlrabi,
|
||||||
|
mizuna, mustard greens, mustard spinach, and rape greens
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at the rate of 0.75 fl oz per 100 lbs of seed.
|
||||||
|
*Use not permitted in California.
|
||||||
|
Cucurbit
|
||||||
|
Vegetables*
|
||||||
|
Chayote (fruit), Chinese waxgourd, citron melon, cucumber, gherkin, edible
|
||||||
|
gourd (hyotan, cucuzza, Chinese okra, and hechima), Momordica spp.
|
||||||
|
(balsam apple, balsam pear, bitter melon, Chinese cucumber), muskmelon
|
||||||
|
(true cantaloupe, cantaloupe, casaba, Crenshaw melon, golden pershaw
|
||||||
|
melon, honeydew melon, honey balls, mango melon, Persian melon,
|
||||||
|
pineapple melon, Santa Claus melon, and snake melon), pumpkin, summer
|
||||||
|
squash (crookneck squash, scallop squash, straightneck squash, vegetable
|
||||||
|
marrow, zucchini), winter squash (butternut squash, calabaza, hubbard
|
||||||
|
squash), Cucumis mixta, Cucumis pepo (acorn squash, spaghetti squash),
|
||||||
|
watermelon (hybrids and/or varieties of Citrullus lanatus.)
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 fl oz per 100 lbs of seed.
|
||||||
|
*Use not permitted in California.
|
||||||
|
Leafy
|
||||||
|
Vegetables*
|
||||||
|
Amaranth (leafy, Chinese spinach, tampala), cardoon, celery (Chinese),
|
||||||
|
celtuce, chervil, chrysanthemum (edible-leaved and garland), corn salad,
|
||||||
|
cress (garden and upland), dandelion, dock, endivefennel (finochio), lettuce
|
||||||
|
(head and leaf), orach, parsley, purslane (garden and winter), radicchio,
|
||||||
|
rhubarb, spinach* (New Zealand and vine), and Swiss chard.
|
||||||
|
Restrictions:
|
||||||
|
Do not apply ALLEGIANCE-FL Seed Treatment Fungicide to spinach which
|
||||||
|
is destined to be grown in the greenhouse. Containers or bags containing
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide treated spinach seed must be
|
||||||
|
labeled with the following restriction: “Do not grow spinach in greenhouses.”
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 fl oz per 100 lbs of seed.
|
||||||
|
*Use not permitted in California.
|
||||||
|
Fruiting
|
||||||
|
Vegetables*
|
||||||
|
Eggplant, ground cherry, pepino, pepper (bell pepper, chili pepper, cooking
|
||||||
|
pepper, pimento, sweet pepper), tomatillo, and tomato
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 fl oz per 100 lbs of seed.
|
||||||
|
*Use not permitted in California.
|
||||||
|
Onions* Onion (dry bulb and green)
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 fl oz per 100 lbs of seed.
|
||||||
|
*Use not permitted in California.
|
||||||
|
Root and
|
||||||
|
Tuber
|
||||||
|
Vegetables*
|
||||||
|
(except
|
||||||
|
potatoes)
|
||||||
|
Arracacha, arrowroot, artichoke (Chinese and Jerusalem), beet (garden and
|
||||||
|
sugar), burdock (edible), canna (edible), carrot, cassava (bitter and sweet),
|
||||||
|
celery root, chayote, chervil, chicory, chufa, dasheen, ginger, ginseng,
|
||||||
|
horseradish, leren, parsley (turnip-rooted), parsnip, radish (oriental dalkon),
|
||||||
|
rutabaga, salsify (black and Spanish), skirret, sweet potato, tanier, turmeric,
|
||||||
|
turnip, yam bean (jicama, manioc pea), yam
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 fl oz per 100 lbs of seed.
|
||||||
|
Restrictions:
|
||||||
|
Do not apply ALLEGIANCE-FL Seed Treatment Fungicide to potatoes.
|
||||||
|
*Use not permitted in California.
|
||||||
|
(continued)
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 6US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 6 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
7
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Cotton For Pythium seed rot and damping-off. Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment:
|
||||||
|
ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide Application rate
|
||||||
|
|
||||||
|
Maximum Planting rate - seeds/A*
|
||||||
|
seeds/lb fl oz/CWT mg AI/seed @ 0.75 fl oz/CWT @ 1.5 fl oz/CWT
|
||||||
|
3600 0.75 - 1.5 0.019 - 0.038 96,320 48,160
|
||||||
|
4400 0.75 - 1.5 0.015 - 0.031 117,700 58,860
|
||||||
|
5200 0.75 - 1.5 0.013 - 0.026 139,100 69,560
|
||||||
|
6000 0.75 - 1.5 0.011 - 0.023 160,500 80,270
|
||||||
|
Restrictions:
|
||||||
|
*Do not apply by seed treatment more than 0.004 pounds of Metalaxyl (0.2 fl. oz.
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide) per acre per year.
|
||||||
|
Soybean** For Pythium damping-off and early season Phytophthora control apply ALLEGIANCE-FL
|
||||||
|
Seed Treatment Fungicide as a seed treatment. To protect against Phytophthora
|
||||||
|
seed and early seedling blight from planting to emergence use the lower specified
|
||||||
|
rates, 0.20 - 0.375 fl oz per 100 pound of seeds. Applying the higher specified use
|
||||||
|
rate of ALLEGIANCE-FL Seed Treatment Fungicide to provide both increased
|
||||||
|
levels of control along with a longer time of activity. A use rate of 0.75 to 1.5 fl
|
||||||
|
oz per 100 pounds of seed of ALLEGIANCE-FL Seed Treatment Fungicide on
|
||||||
|
soybean seed is required for acceptable control of Phytophthora seedling blight.
|
||||||
|
ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide Application rate
|
||||||
|
|
||||||
|
Maximum Planting rate - seeds/A*
|
||||||
|
|
||||||
|
seeds/lb
|
||||||
|
|
||||||
|
fl oz/CWT
|
||||||
|
fl oz/140,000
|
||||||
|
seed unit
|
||||||
|
|
||||||
|
mg AI/seed
|
||||||
|
@ 0.20
|
||||||
|
fl oz/CWT
|
||||||
|
@ 0.375
|
||||||
|
fl oz/CWT
|
||||||
|
@ 0.75
|
||||||
|
fl oz/CWT
|
||||||
|
@ 1.5
|
||||||
|
fl oz/CWT
|
||||||
|
2000 0.20 - 1.5 0.14 - 1.05 0.0095 - 0.068 832,875 444,200 222,100 111,000
|
||||||
|
2400 0.20 - 1.5 0.12 - 0.88 0.0079 - 0.057 999,375 533,000 266,500 133,200
|
||||||
|
2800 0.20 - 1.5 0.10 - 0.75 0.0068 - 0.048 1,165,875 621,800 310,900 155,400
|
||||||
|
3200 0.20 - 1.5 0.09 - 0.66 0.0059 - 0.042 1,332,375 710,600 355,300 177,700
|
||||||
|
3600 0.20 - 1.5 0.08 - 0.58 0.0053 - 0.038 1,498,875 799,400 399,700 199,900
|
||||||
|
Restrictions:
|
||||||
|
*Do not apply by seed treatment more than 0.0166 pounds of Metalaxyl (0.83 fl oz
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide) per acre per year.
|
||||||
|
**Use not permitted in California.
|
||||||
|
Use the higher specified rate of ALLEGIANCE-FL Seed Treatment Fungicide when
|
||||||
|
disease pressure is above what is usual. Apply the higher specified use rate of
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide to provide both increased levels of
|
||||||
|
control along with a longer time of activity.
|
||||||
|
DIRECTIONS FOR USE AT REDUCED RATES IN COMBINATION WITH OTHER
|
||||||
|
FUNGICIDES
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide is a systemic fungicide seed dressing
|
||||||
|
which may be applied in combination with other EPA-registered fungicides to aid
|
||||||
|
in control of Pythium. ALLEGIANCE-FL Seed Treatment Fungicide may be applied
|
||||||
|
as a water based slurry through standard slurry or mist-type commercial seed
|
||||||
|
treatment equipment.
|
||||||
|
Corn
|
||||||
|
(Field)
|
||||||
|
To aid in the control of seed decay and damping-off caused by Pythium.
|
||||||
|
Apply ALLEGIANCE-FL Seed Treatment Fungicide as a commercial seed
|
||||||
|
treatment. Apply in combination with EPA registered rates of broad-spectrum
|
||||||
|
seed treatment fungicides.
|
||||||
|
ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide Application rate
|
||||||
|
Maximum Planting rate -
|
||||||
|
seeds/A*
|
||||||
|
|
||||||
|
seeds/lb
|
||||||
|
|
||||||
|
fl oz/CWT
|
||||||
|
fl oz/80,000
|
||||||
|
seed unit
|
||||||
|
|
||||||
|
mg AI/seed
|
||||||
|
@ 0.1
|
||||||
|
fl oz/CWT
|
||||||
|
@ 0.375
|
||||||
|
fl oz/CWT
|
||||||
|
1200 0.1 - 0.375 0.07 - 0.25 0.008 - 0.028 457,500 122,000
|
||||||
|
1600 0.1 - 0.375 0.05 - 0.19 0.006 - 0.021 610,000 162,700
|
||||||
|
2000 0.1 - 0.375 0.04 - 0.15 0.005 - 0.017 762,500 203,300
|
||||||
|
2400 0.1 - 0.375 0.03 - 0.13 0.004 - 0.014 915,000 244,000
|
||||||
|
Restrictions:
|
||||||
|
*Do not apply by seed treatment more than 0.0076 pounds of Metalaxyl (0.46
|
||||||
|
fl oz ALLEGIANCE-FL Seed Treatment Fungicide) per acre per year.
|
||||||
|
(continued)
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 7US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 7 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
8
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Wheat, Oats,
|
||||||
|
Barley, Rye
|
||||||
|
To aid in the control of seed decay and damping-off caused by Pythium:
|
||||||
|
Apply ALLEGIANCE-FL Seed Treatment Fungicide as a commercial seed
|
||||||
|
treatment at the rate of 0.10-0.375 fl oz per 100 lbs of seed. Apply in
|
||||||
|
combination with EPA registered rates of broad-spectrum seed treatment
|
||||||
|
fungicides.
|
||||||
|
Soybeans, Field
|
||||||
|
beans, Kidney
|
||||||
|
beans, Navy
|
||||||
|
beans, Pinto
|
||||||
|
beans, Lentils,
|
||||||
|
Peas
|
||||||
|
To aid in the control of seed decay and damping-off caused by Pythium:
|
||||||
|
Apply ALLEGIANCE-FL Seed Treatment Fungicide as a commercial seed
|
||||||
|
treatment at the rate of 0.10 - 0.375 fl oz per 100 lbs of seed. Apply in
|
||||||
|
combination with EPA registered rates of broad-spectrum seed treatment
|
||||||
|
fungicides.
|
||||||
|
Sunflowers To aid in the control of seed decay and damping-off caused by Pythium:
|
||||||
|
Apply ALLEGIANCE-FL Seed Treatment Fungicide as a commercial seed
|
||||||
|
treatment at the rate of 0.10 - 0.375 fl oz per 100 lbs of seed. Apply in
|
||||||
|
combination with EPA registered rates of broad-spectrum seed treatment
|
||||||
|
fungicides.
|
||||||
|
Peanuts* To aid in the control of seed decay and damping-off caused by Pythium:
|
||||||
|
Apply ALLEGIANCE-FL Seed Treatment Fungicide as a commercial seed
|
||||||
|
treatment at the rate of 0.10 - 0.375 fl oz per 100 lbs of seed. Apply in
|
||||||
|
combination with EPA registered rates of broad-spectrum seed treatment
|
||||||
|
fungicides. *Use not permitted in California.
|
||||||
|
Rice* To aid in the control of seed decay and damping-off caused by Pythium:
|
||||||
|
Apply ALLEGIANCE-FL Seed Treatment Fungicide as a commercial seed
|
||||||
|
treatment at the rate of 0.10 - 0.375 fl oz per 100 lbs of seed. Apply in
|
||||||
|
combination with EPA registered rates of broad-spectrum seed treatment
|
||||||
|
fungicides. *Use not permitted in California.
|
||||||
|
SEED TREATMENT-EXPORT USE ONLY
|
||||||
|
NOT FOR DOMESTIC SALES OR USE.
|
||||||
|
For treatment of the following seed for export only to countries requiring treatment
|
||||||
|
with Metalaxyl before importation.
|
||||||
|
Brassica (Cole)
|
||||||
|
Leafy Vegetables
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at the rate of 0.75-1.50 fl oz per 100 lbs
|
||||||
|
of seed.
|
||||||
|
Canola For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at the rate of 0.50 - 1.70 fl oz per 100 lbs of
|
||||||
|
seed. (32 – 110 ml per 100 kg of seed)
|
||||||
|
Corn For Pythium damping –off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 - 1.50 fl oz per 100 lbs of seed. For
|
||||||
|
systemic downy mildew control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 3.0 fl oz per 100 lbs of seed.
|
||||||
|
Cucurbit
|
||||||
|
Vegetables
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 fl oz per 100 lbs of seed.
|
||||||
|
Fruiting
|
||||||
|
Vegetables
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 - 1.50 fl oz per 100 lbs of seed.
|
||||||
|
Leafy
|
||||||
|
Vegetables
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 - 1.50 fl oz per 100 lbs of seed.
|
||||||
|
Onions For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 - 1.50 fl oz per 100 lbs of seed.
|
||||||
|
Millet For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 - 1.50 fl oz per 100 lbs of seed. For
|
||||||
|
systemic downy mildew control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 2.5 fl oz per 100 lbs of seed.
|
||||||
|
Peas For Pythium damping-off and early season Phytophthora control: Apply
|
||||||
|
ALLEGIANCE-FL Seed Treatment Fungicide as a seed treatment at 3.5 fl
|
||||||
|
oz per 100 lbs of seed.
|
||||||
|
(continued)
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 8US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 8 3/27/2020 10:10:15 AM3/27/2020 10:10:15 AM
|
||||||
|
|
||||||
|
9
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Root and Tuber
|
||||||
|
Vegetables
|
||||||
|
For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 - 1.50 fl oz per 100 lbs of seed.
|
||||||
|
Restrictions:
|
||||||
|
Do not apply ALLEGIANCE-FL Seed Treatment Fungicide to potatoes.
|
||||||
|
Sorghum For Pythium damping-off control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 0.75 - 1.50 fl oz per 100 lbs of seed. For
|
||||||
|
systemic downy mildew control: Apply ALLEGIANCE-FL Seed Treatment
|
||||||
|
Fungicide as a seed treatment at 5.25 fl oz per 100 lbs of seed.
|
||||||
|
Sunflowers For systemic downy mildew control: Apply ALLEGIANCE-FL Seed
|
||||||
|
Treatment Fungicide as a seed treatment at 9.0 fl oz per 100 lbs of seed.
|
||||||
|
Seed treated in accordance with the export use pattern must be labeled as follows:
|
||||||
|
FOR EXPORT ONLY
|
||||||
|
NOT FOR DOMESTIC SALES OR USE.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in a cool dry location. Do not store in direct hot sunlight. Do not store above
|
||||||
|
90°F for prolonged periods of time. After prolonged storage in intense cold, allow
|
||||||
|
product to return to approximately 75°F before using.
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
Wastes resulting from the use of this product may be disposed of on site or at an
|
||||||
|
approved waste disposal facility.
|
||||||
|
CONTAINER HANDLING
|
||||||
|
Rigid, Non-refillable containers small enough to shake (i.e., with capacities
|
||||||
|
equal to or less than 5 gallons).
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Offer for recycling,
|
||||||
|
if available. Triple rinse or pressure rinse container (or equivalent) promptly after
|
||||||
|
emptying.
|
||||||
|
Triple rinse as follows: Empty the remaining contents into application equipment or
|
||||||
|
a mix tank and drain for 10 seconds after the flow begins to drip. Fill the container
|
||||||
|
1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into application
|
||||||
|
equipment or a mix tank or store rinsate for later use or disposal. Drain for 10
|
||||||
|
seconds after the flow begins to drip. Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application
|
||||||
|
equipment or a mix tank and continue to drain for 10 seconds after the flow begins
|
||||||
|
to drip. Hold container upside down over application equipment or mix tank or
|
||||||
|
collect rinsate for later use or disposal. Insert pressure-rinsing nozzle in the side
|
||||||
|
of the container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10
|
||||||
|
seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available, or puncture and dispose
|
||||||
|
of in a sanitary landfill or incineration, or if allowed by state and local authorities,
|
||||||
|
by burning. If burned stay out of smoke.
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 9US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 9 3/27/2020 10:10:16 AM3/27/2020 10:10:16 AM
|
||||||
|
|
||||||
|
10
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
CONDITIONS OF SALE AND LIMITATIONS OF WARRANTY AND LIABILITY
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability before using this product. If terms are not acceptable, return
|
||||||
|
the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer
|
||||||
|
of Warranties and Limitations of Liability.
|
||||||
|
Treatment of highly mechanically damaged seed, or seed of known low vigor
|
||||||
|
and poor quality, may result in reduced germination and/or reduction of seed and
|
||||||
|
seedling vigor. Treat and conduct germination tests on a small portion of seed
|
||||||
|
before committing the total seed lot to a selected chemical treatment. Due to seed
|
||||||
|
quality conditions beyond the control of Bayer CropScience, no claims are made
|
||||||
|
to guarantee germination of carry-over seed.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate
|
||||||
|
and must be followed carefully. However, it is impossible to eliminate all risks
|
||||||
|
associated with the use of this product. Crop injury, ineffectiveness or other
|
||||||
|
unintended consequences may result because of such factors as weather
|
||||||
|
conditions, presence of other materials, or the manner of use or application, all
|
||||||
|
of which are beyond the control of Bayer CropScience. All such risks shall be
|
||||||
|
assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, BAYER CROPSCIENCE MAKES NO WARRANTIES,
|
||||||
|
EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE
|
||||||
|
STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience is
|
||||||
|
authorized to make any warranties beyond those contained herein or to modify the
|
||||||
|
warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, BAYER CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR
|
||||||
|
SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING FROM
|
||||||
|
THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER FOR
|
||||||
|
ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE
|
||||||
|
OR HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY,
|
||||||
|
TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, SHALL NOT
|
||||||
|
EXCEED THE PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE’S
|
||||||
|
ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 10US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 10 3/27/2020 10:10:16 AM3/27/2020 10:10:16 AM
|
||||||
|
|
||||||
|
11
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 11US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 11 3/27/2020 10:10:16 AM3/27/2020 10:10:16 AM
|
||||||
|
|
||||||
|
PLACE BAR CODE HERE
|
||||||
|
(01) 0 0785740 11797 2
|
||||||
|
5.50”
|
||||||
|
BASE LABEL
|
||||||
|
4.125”0.875” 0.50”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
GROUP 4 FUNGICIDEMETALAXYL
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or
|
||||||
|
disposal.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in a cool dry location. Do not store in direct hot
|
||||||
|
sunlight. Do not store above 90°F for prolonged periods
|
||||||
|
of time. After prolonged storage in intense cold, allow
|
||||||
|
product to return to approximately 75°F before using.
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
Wastes resulting from the use of this product may be
|
||||||
|
disposed of on site or at an approved waste disposal
|
||||||
|
facility.
|
||||||
|
CONTAINER HANDLING
|
||||||
|
Rigid, Non-refillable containers small enough to
|
||||||
|
shake (i.e., with capacities equal to or less than 5
|
||||||
|
gallons).
|
||||||
|
Non-refillable container. Do not reuse or refill this
|
||||||
|
container. Offer for recycling, if available. Triple rinse or
|
||||||
|
pressure rinse container (or equivalent) promptly after
|
||||||
|
emptying.
|
||||||
|
Triple rinse as follows: Empty the remaining contents
|
||||||
|
into application equipment or a mix tank and drain for 10
|
||||||
|
seconds after the flow begins to drip. Fill the container
|
||||||
|
1/4 full with water and recap. Shake for 10 seconds. Pour
|
||||||
|
rinsate into application equipment or a mix tank or store
|
||||||
|
rinsate for later use or disposal. Drain for 10 seconds
|
||||||
|
after the flow begins to drip. Repeat this procedure two
|
||||||
|
more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents
|
||||||
|
into application equipment or a mix tank and continue to
|
||||||
|
drain for 10 seconds after the flow begins to drip. Hold
|
||||||
|
container upside down over application equipment or
|
||||||
|
mix tank or collect rinsate for later use or disposal. Insert
|
||||||
|
pressure-rinsing nozzle in the side of the container, and
|
||||||
|
rinse at about 40 PSI for at least 30 seconds. Drain for 10
|
||||||
|
seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available,
|
||||||
|
or puncture and dispose of in a sanitary landfill or
|
||||||
|
incineration, or if allowed by state and local authorities,
|
||||||
|
by burning. If burned stay out of smoke.
|
||||||
|
ALLEGIANCE® is a registered trademark of Bayer.
|
||||||
|
©2020 Bayer CropScience.
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
1-866-99BAYER (1-866-992-2937)
|
||||||
|
US61379981D 200214D 03/20
|
||||||
|
FIRST AID
|
||||||
|
IF ON SKIN
|
||||||
|
OR CLOTHING:
|
||||||
|
• Take off contaminated
|
||||||
|
clothing.
|
||||||
|
• Rinse skin immediately with
|
||||||
|
plenty of water for 15-20
|
||||||
|
minutes.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center
|
||||||
|
or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
• Have person sip a glass of
|
||||||
|
water if able to swallow.
|
||||||
|
• Do not induce vomiting unless
|
||||||
|
told to do so by a poison
|
||||||
|
control center or doctor.
|
||||||
|
• Do not give anything by mouth
|
||||||
|
to an unconscious person.
|
||||||
|
IF IN EYES: • Hold eye open and rinse
|
||||||
|
slowly and gently with water
|
||||||
|
for 15-20 minutes.
|
||||||
|
• Remove contact lenses,
|
||||||
|
if present, after the first 5
|
||||||
|
minutes, then continue rinsing.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer
|
||||||
|
CropScience Emergency Response Telephone
|
||||||
|
No. 1-800-334-7577. Have a product container
|
||||||
|
or label with you when calling a poison control
|
||||||
|
center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC
|
||||||
|
ANIMALS
|
||||||
|
WARNING
|
||||||
|
Causes skin irritation. Harmful if swallowed or
|
||||||
|
absorbed through skin. Causes moderate eye
|
||||||
|
irritation. Do not get on skin or on clothing. Avoid
|
||||||
|
contact with eyes. Wash thoroughly with soap and
|
||||||
|
water after handling and before eating, drinking,
|
||||||
|
chewing gum, using tobacco, or using the toilet.
|
||||||
|
Remove contaminated clothing and wash before
|
||||||
|
reuse.
|
||||||
|
ALLEGIANCE®-FL Seed Treatment Fungicide
|
||||||
|
A SEED TREATMENT CHEMICAL FOR CONTROL OF SEED ROT AND DAMPING-OFF
|
||||||
|
DISEASES OF CERTAIN CROPS
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Metalaxyl: N-(2,6-dimethylphenyl)-N-(methoxyacetyl)alanine methyl ester ..................... 28.35%
|
||||||
|
OTHER INGREDIENTS: ............................................................ 71.65%
|
||||||
|
Contains 2.6 pounds Metalaxyl per gallon. TOTAL: 100.00%
|
||||||
|
EPA Reg. No. 264-935
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
WARNING
|
||||||
|
AVISO
|
||||||
|
Si usted no entiende la etiqueta, busque a alguien para que se la explique a usted en detalle.
|
||||||
|
(If you do not understand the label, find someone to explain it to you in detail.)
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Please refer to booklet for additional precautionary statements and directions for use.
|
||||||
|
US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 12US61379981D (200214D) ALLEGIANCE FL 2.5 GAL ETL 0320.indd 12 3/27/2020 10:10:16 AM3/27/2020 10:10:16 AM
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "autumn-super-51-wdg",
|
||||||
|
"epa_reg_no": "264-1134",
|
||||||
|
"product_name": "Autumn Super 51 WDG Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Iodosulfuron-Methyl Sodium",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Thiencarbazone-methyl",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Autumn_Super_51_WDG1h_Herbicide_Labelpdf",
|
||||||
|
"filename": "Autumn_Super_51_WDG1h_Herbicide_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:17:58+00:00",
|
||||||
|
"page_count": 9,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "AUTUMN SUPER 51 WDG HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Autumn_Super_51_WDG1p_Herbicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:55:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "AUTUMN SUPER 51 WDG HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Autumn_Super_51_WDG1i_Herbicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:57:36+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Reduced Use Rates in Fall Applications",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Autumn_Super_51_WDG1c_Herbicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T13:55:37+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rates on High pH Soils where Soybeans are the Next Planted Rotational Crop the Following Spring",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Autumn_Super_51_WDG_Herbicide_2EE1qpdf",
|
||||||
|
"last_modified": "2026-01-30T14:03:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Suppression of Various Grasses",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Autumn_Super_51_WDG_Herbicide_2EE2apdf",
|
||||||
|
"last_modified": "2026-01-30T14:11:06+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Autumn Super Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Autumn-Super_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T21:12:40+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/autumn-super-51-wdg-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:59:29.769934+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,726 @@
|
|||||||
|
# Autumn Super 51 WDG Herbicide
|
||||||
|
|
||||||
|
- **Product class:** herbicide
|
||||||
|
- **EPA Reg No:** 264-1134
|
||||||
|
- **Active ingredients:** Iodosulfuron-Methyl Sodium, Thiencarbazone-methyl
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/herbicide/autumn-super-51-wdg-herbicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Autumn_Super_51_WDG1h_Herbicide_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
234 mm
|
||||||
|
246 mm
|
||||||
|
7 5
|
||||||
|
150 mm
|
||||||
|
US80496869G (200925G) AUTUMN SUPER 51 WDG 20 OZ ETL 10/27/20 (Label Coordinator: Mark Schmidt)
|
||||||
|
ACTIVE INGREDIENTS*: Iodosulfuron-methyl
|
||||||
|
Sodium (CAS Number 144550-36-7) . . . . . . . . . . . . . . 6.00%
|
||||||
|
Thiencarbazone-methyl
|
||||||
|
(CAS Number 317815-83-1) . . . . . . . . . . . . . . . . . . . . . 45.00%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . 49.00%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
*This product is a water-dispersible granule (WDG)
|
||||||
|
containing 51% of the active ingredients by weight.
|
||||||
|
EPA Reg No. 264-1134 EPA Est. No. 000264-DEU-001
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies
|
||||||
|
ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER
|
||||||
|
(1-866-992-2937)
|
||||||
|
See Back Panel for First Aid Instructions and Booklet for Complete
|
||||||
|
Precautionary Statements and Directions for Use.
|
||||||
|
Produced for:
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
AUTUMN is a trademark of Bayer Group.
|
||||||
|
©2020 Bayer Group
|
||||||
|
Product of Germany US80496869G 200925G 10/20
|
||||||
|
Net Contents: 51 WDG HERBICIDE
|
||||||
|
1 lb. 4 oz. (20 oz.)
|
||||||
|
For Postharvest
|
||||||
|
Burndown Application
|
||||||
|
Prior to Planting Field
|
||||||
|
Corn and Soybean.
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
2
|
||||||
|
2
|
||||||
|
HERBICIDE
|
||||||
|
HERBICIDE
|
||||||
|
IODOSULFURON-METHYL SODIUM
|
||||||
|
THIENCARBAZONE-METHYL
|
||||||
|
|
||||||
|
1
|
||||||
|
234 mm
|
||||||
|
242 mm
|
||||||
|
3 5
|
||||||
|
150 mm
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for 15 – 20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then continue
|
||||||
|
rinsing eye.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center or doctor immediately for treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control center
|
||||||
|
or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
IF ON SKIN
|
||||||
|
OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15 – 20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison control center or
|
||||||
|
doctor or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed or absorbed through skin. Causes moderate eye irritation. Avoid
|
||||||
|
contact with skin, eyes, or clothing.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Applicators and other handlers must wear: Long-sleeved shirt and long pants, chemical-
|
||||||
|
resistant gloves made out of any waterproof material and shoes plus socks. Follow
|
||||||
|
manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for washables
|
||||||
|
exist, use detergent and hot water. Keep and wash PPE separately from other laundry.
|
||||||
|
ENGINEERING CONTROL STATEMENT
|
||||||
|
When handlers use closed systems or enclosed cabs in a manner that meets the requirements
|
||||||
|
listed in the Worker Protection Standard (WPS) for agricultural pesticides [40 CFR §170.240(d)
|
||||||
|
(4-6)], the handler PPE requirements may be reduced or modified as specified in the WPS.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Wash thoroughly with soap and water after handling. Users should wash hands before
|
||||||
|
eating, drinking, chewing gum, using tobacco or using the toilet. Remove clothing/PPE
|
||||||
|
immediately if pesticide gets inside. Then wash thoroughly and put on clean clothing.
|
||||||
|
Remove PPE immediately after handling this product. Wash the outside of gloves before
|
||||||
|
removing. As soon as possible, wash thoroughly and change into clean clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This product is toxic to non-target plants. Do not apply when conditions favor drift from
|
||||||
|
treated areas. Do not apply directly to water, to areas where surface water is present or to
|
||||||
|
intertidal areas below the mean high water mark. Do not contaminate water when cleaning
|
||||||
|
equipment or disposing of equipment washwaters or rinsate.
|
||||||
|
Surface Water Advisory
|
||||||
|
This product may impact surface water quality due to runoff of rain water. This is especially
|
||||||
|
true for poorly draining soils and soils with shallow ground water. This product is classified
|
||||||
|
as having high potential for reaching surface water via runoff for weeks after application.
|
||||||
|
A level, well-maintained vegetative buffer strip between areas to which this product is
|
||||||
|
applied and surface water features such as ponds, streams, and springs will reduce the
|
||||||
|
potential loading of iodosulfuron-methyl-sodium from runoff water and sediment. Runoff
|
||||||
|
of this product will be greatly reduced by avoiding applications when rainfall or irrigation is
|
||||||
|
expected to occur within 48 hours.
|
||||||
|
Ground Water Advisory
|
||||||
|
This chemical has properties and characteristics associated with chemicals detected in
|
||||||
|
groundwater. This chemical may leach into groundwater if used in areas where soils are
|
||||||
|
permeable, particularly where the water table is shallow.
|
||||||
|
Non-Target Organism Advisory Statement
|
||||||
|
This product is toxic to plants and may adversely impact the forage and habitat of non-
|
||||||
|
target organisms, including pollinators, in areas adjacent to the treated area. Protect the
|
||||||
|
forage and habitat of non-target organisms by minimizing spray drift. For further guidance
|
||||||
|
and instructions on how to minimize spray drift, refer to the Spray Drift Management
|
||||||
|
section of this label.
|
||||||
|
ENDANGERED SPECIES PROTECTION REQUIREMENTS
|
||||||
|
This product may have effects on federally listed threatened or endangered species
|
||||||
|
or their critical habitat in some locations. When using this product, you must follow the
|
||||||
|
measures contained in the Endangered Species Protection Bulletin for the county or
|
||||||
|
parish in which you are applying the pesticide. To determine whether your county or
|
||||||
|
parish has a Bulletin, and to obtain that Bulletin, consult http://www.epa.gov/espp/, or call
|
||||||
|
1-800-447-3813 no more than 6 months before using this product. Applicators must use
|
||||||
|
Bulletins that are in effect in the month in which the pesticide will be applied. New Bulletins
|
||||||
|
will generally be available from the above sources 6 months prior to their effective dates.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with
|
||||||
|
its labeling.
|
||||||
|
Read entire label before using this product.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons, either directly
|
||||||
|
or through drift. Only protected handlers may be in the same area during application.
|
||||||
|
For any requirements specific to your State or Tribe, consult the agency responsible for
|
||||||
|
pesticide regulation.
|
||||||
|
|
||||||
|
2
|
||||||
|
234 mm
|
||||||
|
242 mm
|
||||||
|
3 5
|
||||||
|
150 mm
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection
|
||||||
|
Standard, 40 CFR part 170. This standard contains requirements for the protection of
|
||||||
|
agricultural workers on farms, forests, nurseries, and greenhouses, and handlers of
|
||||||
|
agricultural pesticides. It contains requirements for training, decontamination, notification
|
||||||
|
and emergency assistance. It also contains specific instructions and exceptions
|
||||||
|
pertaining to the statements on this label about Personal Protective Equipment (PPE)
|
||||||
|
and restricted entry intervals. The requirements in this box only apply to uses of this
|
||||||
|
product that are covered by the Worker Protection Standard.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted entry interval
|
||||||
|
(REI) of 12 hours.
|
||||||
|
PPE required for early entry to treated areas that is permitted under the Worker
|
||||||
|
Protection Standard and that involves contact with anything that has been treated such
|
||||||
|
as plants, soil or water, is coveralls over long-sleeved shirt and long pants, socks and
|
||||||
|
shoes and chemical resistant gloves made of any waterproof material.
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
Autumn Super 51 WDG Herbicide may be used for burndown of existing vegetation and
|
||||||
|
residual weed control when applied to no-till or conservation tillage fields anytime after the
|
||||||
|
fall harvest but prior to planting field corn or soybeans the following spring. Do not apply to
|
||||||
|
frozen ground. Weed growth ceases within hours after Autumn Super 51 WDG Herbicide
|
||||||
|
is applied. Symptoms progress from yellowing to necrosis resulting in eventual plant death
|
||||||
|
within 1-4 weeks after application.
|
||||||
|
Autumn Super 51 WDG Herbicide alone will not provide season-long preemergence control
|
||||||
|
of annual grass and broadleaf weeds but should be applied as the first herbicide in an
|
||||||
|
integrated weed control program that includes tank mixtures and/or in-season sequential
|
||||||
|
applications with additional herbicide products.
|
||||||
|
WEEDS CONTROLLED
|
||||||
|
Autumn Super 51 WDG Herbicide effectively controls a broad array of important grass and
|
||||||
|
broadleaf weeds when applied at rates of 0.3 to 0.5 ounces of product per acre in crop
|
||||||
|
stubble. For best control, broadleaf weeds should be no greater than 3 inches in height and
|
||||||
|
annual grasses no greater than 1 inch in height. Weeds controlled are listed below in Table 1:
|
||||||
|
Table 1. Broadleaf and Grass Weeds Controlled by Autumn Super 51 WDG Herbicide
|
||||||
|
Weeds Controlled Scientific Name
|
||||||
|
Alfalfa Medicago sativa
|
||||||
|
Barley, little* Hordeum pusillum
|
||||||
|
Bluegrass, annual* Poa annua
|
||||||
|
Brome, downy* Bromus tectorum
|
||||||
|
Burcumber Sicyos angulatus
|
||||||
|
Burdock Arctium spp.
|
||||||
|
Buttercup Ranunculus spp.
|
||||||
|
Canola, volunteer Brassica rapa
|
||||||
|
Carrot, wild Daucas carota
|
||||||
|
Chamomile, scentless Matricaria inodora
|
||||||
|
Chickweed, common Stellaria media
|
||||||
|
Chickweed, mouse-ear Cerastium vulgatum
|
||||||
|
Dandelion, common Taraxacum officinale
|
||||||
|
Foxtail, Carolina* Alopecurus carolinianus
|
||||||
|
Deadnettle, purple Lamium purpureum
|
||||||
|
Garlic, wild* Allium vineale
|
||||||
|
Groundsel, cressleaf Packera glabella
|
||||||
|
Hemlock, poison Conium maculatum
|
||||||
|
Hempnettle Galeopsis spp.
|
||||||
|
Henbit Lamium amplexicaule
|
||||||
|
Horsenettle Solanum carolinense
|
||||||
|
Marestail (including glyphosate resistant) Conyza canadensis
|
||||||
|
Mustard, blue Chorispora tenella
|
||||||
|
Mustard, tansy Descurainia pinnata
|
||||||
|
Mustard, wild Sinapis arvensis
|
||||||
|
Pansy, field Viola rafinesquil
|
||||||
|
Pennycress, field Thlaspi arvense
|
||||||
|
Pigweed, redroot Amaranthus retroflexus
|
||||||
|
Plantain, broadleaf Plantago major
|
||||||
|
Pokeweed, common* Phytolacca americana
|
||||||
|
Radish, wild Raphanus raphanistrum
|
||||||
|
Ryegrass, Italian* Lolium multiflorum
|
||||||
|
Shepherd’s-purse Capsella bursa-pastoris
|
||||||
|
Thistle, Canada Cirsium arvense
|
||||||
|
Turnipweed Rapistrum rugosum
|
||||||
|
*These weeds will be partially controlled. Partially controlled weeds will be stunted in
|
||||||
|
growth and/or be reduced in number as compared to non-treated areas; performance
|
||||||
|
may not be commercially acceptable. The degree of weed control will vary with weed size,
|
||||||
|
density, spray coverage, and/or growing conditions.
|
||||||
|
|
||||||
|
3
|
||||||
|
234 mm
|
||||||
|
242 mm
|
||||||
|
3 5
|
||||||
|
150 mm
|
||||||
|
HERBICIDE RESISTANCE MANAGEMENT (WSSA) RECOMMENDATIONS
|
||||||
|
For resistance management, Autumn Super 51 WDG Herbicide is a Group 2 herbicide.
|
||||||
|
Any weed population may contain or develop plants naturally resistant to Autumn Super
|
||||||
|
51 WDG Herbicide and other Group 2 herbicides. The resistant biotypes may dominate
|
||||||
|
the weed population if these herbicides are used repeatedly in the same field. Appropriate
|
||||||
|
resistance management strategies should be followed.
|
||||||
|
To delay herbicide resistance take one or more of the following steps:
|
||||||
|
• Rotate the use of Autumn Super 51 WDG Herbicide or other Group 2 herbicides within a
|
||||||
|
growing season sequence or among growing seasons with different herbicide groups that
|
||||||
|
control the same weeds in a field.
|
||||||
|
• Use tank mixtures with herbicides from a different group if such use is permitted; where
|
||||||
|
information on resistance in target weed species is available, use the less resistance-
|
||||||
|
prone partner at a rate that will control the target weed(s) equally as well as the more
|
||||||
|
resistance-prone partner. Consult your local extension service or certified crop advisor if
|
||||||
|
you are unsure as to which active ingredient is currently less prone to resistance.
|
||||||
|
• Adopt an integrated weed-management program for herbicide use that includes scouting
|
||||||
|
and uses historical information related to herbicide use and crop rotation, and that considers
|
||||||
|
tillage ( or other mechanical control methods), cultural ( e.g., higher crop seeding rates;
|
||||||
|
precision fertilizer application method and timing to favor the crop and not the weeds),
|
||||||
|
biological (weed-competitive crops or varieties) and other management practices.
|
||||||
|
• Scout after herbicide application to monitor weed populations for early signs of resistance
|
||||||
|
development. Indicators of possible herbicide resistance include: (1) failure to control
|
||||||
|
a weed species normally controlled by the herbicide at the dose applied, especially if
|
||||||
|
control is achieved on adjacent weeds; (2) a spreading patch of non-controlled plants
|
||||||
|
of a particular weed species; (3) surviving plants mixed with controlled individuals of the
|
||||||
|
same species. If resistance is suspected, prevent weed seed production in the affected
|
||||||
|
area by an alternative herbicide from a different group or by a mechanical method such
|
||||||
|
as hoeing or tillage. Prevent movement of resistant weed seeds to other fields by cleaning
|
||||||
|
harvesting and tillage equipment when moving between fields, and planting clean seed.
|
||||||
|
• If a weed pest population continues to progress after treatment with this product,
|
||||||
|
discontinue use of this product, and switch to another management strategy or herbicide
|
||||||
|
with a different mode of action, if available.
|
||||||
|
• Contact your local extension specialist or certified crop advisors for additional pesticide
|
||||||
|
resistance-management and/or integrated weed-management recommendations for
|
||||||
|
specific crops and weed biotypes.
|
||||||
|
• For further information or to report suspected resistance contact Bayer CropScience at
|
||||||
|
1-866-99BAYER (1-866-992-2937). You can also contact your pesticide distributor or
|
||||||
|
university extension specialist to report resistance.
|
||||||
|
ROTATIONAL CROP RESTRICTIONS
|
||||||
|
The following rotational crops (Table 2) may be planted after applying Autumn Super 51 WDG
|
||||||
|
at the directed rates. Planting earlier than the specified interval may result in crop injury. These
|
||||||
|
intervals are based on crops grown under favorable growing conditions. Crops grown under less
|
||||||
|
than favorable environmental conditions (drought, nutrient deficiencies, pest pressure, etc.) may
|
||||||
|
demonstrate reduced tolerance to crop protection products.
|
||||||
|
TABLE 2: ROTATIONAL CROP RESTRICTIONS
|
||||||
|
Crop Minimum Precipitation Requirement1 Minimum Plant Back Interval
|
||||||
|
Barley2 15 inches 9 months
|
||||||
|
Cotton2 15 inches 10 months
|
||||||
|
Corn (Yellow field corn, White field corn)2 1 month
|
||||||
|
Corn (sweet, popcorn)2,4 15 inches 9 months
|
||||||
|
Soybean2,3 2 months
|
||||||
|
Wheat (Spring)2 3 months
|
||||||
|
Wheat (Winter)2 3 months
|
||||||
|
All other crops4 30 inches 18 months
|
||||||
|
1 The amount of cumulative precipitation required before planting of a rotational crop is in addition to the required rotational interval given in months. Furrow or flood irrigation not to be
|
||||||
|
included in total. No more than 7 inches of overhead irrigation included in total.
|
||||||
|
2 Crop varieties planted back at intervals of one year or less should not have known acute sensitivity to ALS-inhibiting and/or SU herbicides.
|
||||||
|
3 When soil pH is 7.5 or above, soybean plant back should be delayed to the 9 month interval. If STS soybeans are to be planted on these soils, then the rotational interval is 4 months.
|
||||||
|
4 When soil pH is 7.5 or above, crop plant back is delayed to 18 months for crops listed in the 9-10 month interval, and to 24 months for crops listed in the 18 month interval.
|
||||||
|
|
||||||
|
4
|
||||||
|
234 mm
|
||||||
|
242 mm
|
||||||
|
3 5
|
||||||
|
150 mm
|
||||||
|
OTHER CROPS
|
||||||
|
All other crops may be seeded only after the completion of a successful field bioassay after an
|
||||||
|
Autumn Super 51 WDG Herbicide application. Refer to the “Field Bioassay” section.
|
||||||
|
FIELD BIOASSAY
|
||||||
|
A field bioassay must be completed before rotating to crops other than those specified in the
|
||||||
|
“Rotational Crop Restrictions” section of this label. To conduct an effective field bioassay,
|
||||||
|
grow strips of the crop you intend to grow in the following season in a field previously treated
|
||||||
|
with Autumn Super 51 WDG Herbicide. The test strip should include low areas and knolls, and
|
||||||
|
include variations in soil such as type and pH. Crop response to the bioassay will determine if the
|
||||||
|
crop(s) grown in the test strips can be grown safely in the areas previously treated with Autumn
|
||||||
|
Super 51 WDG Herbicide.
|
||||||
|
SPRAY DRIFT MANAGEMENT
|
||||||
|
Autumn Super 51 WDG Herbicide is not volatile. Damage to sensitive crops can occur as a result
|
||||||
|
of spray drift. Spray drift can be managed by several application factors and by spraying under
|
||||||
|
appropriate climatic conditions. Consequently, avoidance of spray drift is the responsibility of the
|
||||||
|
applicator.
|
||||||
|
SPRAY DRIFT
|
||||||
|
Ground Boom Applications
|
||||||
|
• Apply with the nozzle height recommended by the manufacturer, but no more than 3 feet
|
||||||
|
above the ground or crop canopy unless making a turf, pasture, or rangeland application, in
|
||||||
|
which case applicators may apply with a nozzle height no more than 4 feet above the ground.
|
||||||
|
• For applications prior to the emergence of crops and target weeds, applicators are required
|
||||||
|
to use a Coarse or coarser droplet size (ASABE S572.1).
|
||||||
|
• For all other applications, applicators are required to use a Medium or coarser droplet size
|
||||||
|
(ASABE S572.1).
|
||||||
|
• Do not apply when wind speeds exceed 10 miles per hour at the application site.
|
||||||
|
• Do not apply during temperature inversions.
|
||||||
|
SENSITIVE AREAS
|
||||||
|
The pesticide must only be applied when the potential for drift to adjacent sensitive areas (e.g.,
|
||||||
|
residential areas, bodies of water, known habitats for threatened or endangered species, non-
|
||||||
|
target crops) is minimal (e.g., when wind is blowing away from the sensitive areas).
|
||||||
|
Avoiding spray drift at the application site is the responsibility of the applicator. The interaction of
|
||||||
|
many equipment-and-weather-related factors determine the potential or spray drift. The applicator
|
||||||
|
and the grower are responsible for considering all these factors when making decisions.
|
||||||
|
Do not apply under circumstances where possible drift to unprotected persons or to food,
|
||||||
|
forage or other plantings that might be damaged or crops thereof rendered unfit for sale, use or
|
||||||
|
consumption can occur.
|
||||||
|
To avoid potential adverse effects to non-target areas, you must maintain a 25 foot buffer
|
||||||
|
between the point of direct application and the closest downwind edge of sensitive terrestrial
|
||||||
|
habitats (including grasslands, forested areas, shelter belts, woodlots, hedgerows, riparian areas
|
||||||
|
and shrub lands), sensitive freshwater habitats (including lakes, rivers, sloughs, ponds, creeks,
|
||||||
|
marshes, streams, reservoirs and wetlands) and estuarine/marine habitats.
|
||||||
|
INFORMATION ON DROPLET SIZE
|
||||||
|
The most effective way to reduce drift potential is to apply large droplets. The best drift
|
||||||
|
management strategy is to apply the largest droplets that provide sufficient coverage and control.
|
||||||
|
Applying larger droplets reduces drift potential, but will not prevent drift, if applications are
|
||||||
|
made improperly, or under unfavorable environmental conditions (see Wind, Temperature and
|
||||||
|
Humidity, and Temperature inversions below).
|
||||||
|
Uniform, thorough spray coverage is important to achieve consistent weed control. Select nozzles
|
||||||
|
and pressure that deliver COARSE spray droplets as indicated in nozzle manufacturer’s catalogs
|
||||||
|
and in accordance with ASAE Standard S-572.1. Nozzles that deliver COARSE spray droplets
|
||||||
|
help minimize spray drift. Spray volume per acre (GPA) must be adequate to maintain thorough
|
||||||
|
coverage of weeds.
|
||||||
|
SPRAY DRIFT ADVISORIES
|
||||||
|
THE APPLICATOR IS RESPONSIBLE FOR AVOIDING OFF-SITE SPRAY DRIFT. BE AWARE
|
||||||
|
OF NEARBY NON-TARGET SITES AND ENVIRONMENTAL CONDITIONS.
|
||||||
|
IMPORTANCE OF DROPLET SIZE
|
||||||
|
An effective way to reduce spray drift is to apply large droplets. Use the largest droplets that provide
|
||||||
|
target pest control. While applying larger droplets will reduce spray drift, the potential for drift will
|
||||||
|
be greater if applications are made improperly or under unfavorable environmental conditions.
|
||||||
|
GROUND BOOM
|
||||||
|
Controlling Droplet Size
|
||||||
|
• Volume – Increasing the spray volume so that larger droplets are produced will reduce spray
|
||||||
|
drift. Use the highest practical spray volume for the application. If a greater spray volume is
|
||||||
|
needed, consider using a nozzle with a higher flow rate.
|
||||||
|
• Pressure – Use the lowest spray pressure recommended for the nozzle to produce the target
|
||||||
|
spray volume and droplet size.
|
||||||
|
• Number of Nozzles – Use the minimum number of nozzles that provide uniform coverage.
|
||||||
|
• Nozzle Orientation – Orienting nozzles so that the spray is released parallel to the air stream
|
||||||
|
produces larger droplets than other orientations and is the recommended practice. Significant
|
||||||
|
deflection from horizontal will reduce droplet size and increase drift potential.
|
||||||
|
• Spray Nozzle - Use a spray nozzle that is designed for the intended application. Consider
|
||||||
|
using nozzles designed to reduce drift.
|
||||||
|
Boom Length
|
||||||
|
For some use patterns, reducing the effective boom length may further reduce drift without
|
||||||
|
reducing swath width.
|
||||||
|
Boom Height
|
||||||
|
Use the lowest boom height that is compatible with the spray nozzles that will provide uniform
|
||||||
|
coverage. For ground equipment, the boom should remain level with the crop and have minimal
|
||||||
|
bounce.
|
||||||
|
Swath Adjustment
|
||||||
|
When applications are made with a crosswind, the swath will be displaced downwind. Therefore,
|
||||||
|
on the up and downwind edges of the field, the applicator must compensate for this displacement
|
||||||
|
by adjusting the path of the sprayer upwind. Swath adjustment distance should increase, with
|
||||||
|
increasing drift potential (higher wind, smaller drops, etc.).
|
||||||
|
|
||||||
|
5
|
||||||
|
234 mm
|
||||||
|
242 mm
|
||||||
|
3 5
|
||||||
|
150 mm
|
||||||
|
Wind
|
||||||
|
Drift potential generally increases with wind speed. AVOID APPLICATIONS DURING GUSTY
|
||||||
|
WIND CONDITIONS.
|
||||||
|
Applicators need to be familiar with local wind patterns and terrain that could affect spray drift.
|
||||||
|
Temperature and Humidity
|
||||||
|
When making applications in hot and dry conditions, use larger droplets to reduce effects of
|
||||||
|
evaporation.
|
||||||
|
Temperature Inversions
|
||||||
|
Drift potential is high during a temperature inversion. Temperature inversions are characterized
|
||||||
|
by increasing temperature with altitude and are common on nights with limited cloud cover and
|
||||||
|
light to no wind. The presence of an inversion can be indicated by ground fog or by the movement
|
||||||
|
of smoke from a ground source or an aircraft smoke generator. Smoke that layers and moves
|
||||||
|
laterally in a concentrated cloud (under low wind conditions) indicates an inversion, while smoke
|
||||||
|
that moves upward and rapidly dissipates indicates good vertical air mixing. Avoid applications
|
||||||
|
during temperature inversions.
|
||||||
|
Windblown Soil Particles Advisory
|
||||||
|
WINDBLOWN SOIL PARTICLES: Autumn Super 51 WDG Herbicide has the potential to move
|
||||||
|
off-site due to wind erosion. Soils that are subject to wind erosion usually have a high silt and/or
|
||||||
|
fine to very fine sand fractions and low organic matter content. Other factors which can affects
|
||||||
|
the movement of windblown soil include the intensity and direction of prevailing winds, vegetative
|
||||||
|
cover, site slope, rainfall, and drainage patterns. Avoid applying Autumn Super 51 WDG Herbicide
|
||||||
|
if prevailing local conditions may be expected to result in off-site movement.
|
||||||
|
APPLICATION INFORMATION
|
||||||
|
Autumn Super 51 WDG Herbicide may be applied by ground application only. Do not apply
|
||||||
|
Autumn Super 51 WDG Herbicide by air or through any type of irrigation system.
|
||||||
|
Autumn Super 51 WDG Herbicide may be applied as a broadcast treatment in a minimum of 10
|
||||||
|
gallons of water per acre. For weed control in dense weed populations, control of weeds under
|
||||||
|
adverse growing conditions, control of mature weeds or control of weeds in fields with heavy crop
|
||||||
|
residues remaining on the soil surface, use higher spray volumes from 15 to 30 gallons per acre.
|
||||||
|
Uniform, thorough spray coverage is important to achieve consistent weed control. Select
|
||||||
|
spray nozzles and pressure that deliver COARSE spray droplets as indicated in nozzle
|
||||||
|
manufacturer’s catalogs and in accordance with ASAE Standard S-572.1. Nozzles that
|
||||||
|
deliver COARSE spray droplets may be used to reduce spray drift provided spray volume
|
||||||
|
per acre (GPA) is increased to maintain coverage of weeds.
|
||||||
|
Do not use nozzles that produce FINE (e.g. – Cone) or EXTRA COARSE (e.g. – Flood jet)
|
||||||
|
spray droplets.
|
||||||
|
COMPATIBILITY
|
||||||
|
If Autumn Super 51 WDG Herbicide is to be tank-mixed with other pesticides not listed
|
||||||
|
specifically on this label, compatibility should be tested prior to mixing. To test for
|
||||||
|
compatibility, use a small container and mix a small amount (0.5 to 1qt) of spray, combining
|
||||||
|
all ingredients in the same ratio as the anticipated use. If any indications of physical
|
||||||
|
incompatibility develop (precipitation, settling, changes in color) do not use this mixture for
|
||||||
|
spraying. Indications of incompatibility may occur within 5-15 minutes after mixing. Read
|
||||||
|
and follow the label of each tank mix product used for precautionary statements, directions
|
||||||
|
for use, geographic and other restrictions.
|
||||||
|
MIXING INSTRUCTIONS
|
||||||
|
Autumn Super 51 WDG Herbicide must be applied with clean and properly calibrated
|
||||||
|
equipment. Prior to adding Autumn Super 51 WDG Herbicide, ensure that the spray tank,
|
||||||
|
filters and nozzles have been thoroughly cleaned.
|
||||||
|
1. Fill spray tank with 25% of the required volume of water, and begin agitation prior to the
|
||||||
|
addition of Autumn Super 51 WDG Herbicide.
|
||||||
|
2. Continue agitation to ensure full dispersion of Autumn Super 51 WDG Herbicide.
|
||||||
|
3. If Autumn Super 51 WDG Herbicide is applied in a tank mixture with other pesticides,
|
||||||
|
add Autumn Super 51 WDG Herbicide to the spray tank first and ensure it is thoroughly
|
||||||
|
dispersed before adding other pesticides.
|
||||||
|
4. Continue to fill the spray tank with water to the desired volume and agitate while adding
|
||||||
|
spray adjuvants and nitrogen fertilizers.
|
||||||
|
5. Continue agitation during application to ensure a uniform spray mixture. (If Autumn Super
|
||||||
|
51 WDG Herbicide is added to a partial tank of spray solution, pre-slurry Autumn Super
|
||||||
|
51 WDG Herbicide with clean water prior to adding to the spray tank).
|
||||||
|
If ammonium sulfate (AMS) is the nitrogen fertilizer source, it is preferred that the AMS
|
||||||
|
go into the spray tank prior to Autumn Super 51 WDG Herbicide.
|
||||||
|
RE-SUSPENDING WDG PRODUCTS IN SPRAY SOLUTION
|
||||||
|
Like other water dispersible granules or suspension concentrates (SC’s), Autumn Super 51
|
||||||
|
WDG Herbicide will settle if left standing without agitation. If the spray solution is allowed
|
||||||
|
to settle for one hour or more, re-agitate the spray solution for a minimum of 10 minutes
|
||||||
|
before application.
|
||||||
|
SPRAY ADDITIVES
|
||||||
|
Autumn Super 51 WDG Herbicide is a water dispersible granule that requires the use of an
|
||||||
|
external adjuvant and nitrogen fertilizer.
|
||||||
|
• The addition of Crop Oil Concentrate (COC), Methylated Seed Oil (MSO) or equivalent oil
|
||||||
|
blend at 1% v/v (1 gallon per 100 gallons of final spray volume) is required.
|
||||||
|
• The addition of nitrogen fertilizer (28 or 32% Urea Ammonium Nitrate at 1.5-2 qts/A or
|
||||||
|
Spray Grade Ammonium Sulfate at 1.5-3.0 lb/A) is required.
|
||||||
|
TANK CLEANUP PROCEDURE
|
||||||
|
1. Drain the tank completely, then wash out tank, boom, and hoses with clean water. Drain again.
|
||||||
|
2. Fill the tank half full with clean water and add ammonia (i.e., 3% domestic ammonia
|
||||||
|
solution) at a dilution rate of 1% (i.e., 1 gallon of domestic ammonia for every 100 gallons
|
||||||
|
of rinsate). Completely fill the tank with water. Agitate/recirculate and flush through boom
|
||||||
|
and hoses. Leave agitation on for 10 minutes. Drain tank completely.
|
||||||
|
3. Repeat Step 2.
|
||||||
|
4. Remove nozzles and screens and soak them in a 1% ammonia solution. Inspect nozzles
|
||||||
|
and screens and remove visible residues.
|
||||||
|
5. Flush tank, boom, and hoses with clean water. Inspect tank for visible residues. If
|
||||||
|
present, repeat Step 2
|
||||||
|
|
||||||
|
6
|
||||||
|
234 mm
|
||||||
|
242 mm
|
||||||
|
3 5
|
||||||
|
150 mm
|
||||||
|
SPECIFIC CROP USE DIRECTIONS AND RATES
|
||||||
|
Autumn Super 51 WDG Herbicide may be used for burndown control of existing vegetation
|
||||||
|
and residual weed control when applied to no-till or conservation tillage fields anytime
|
||||||
|
after the fall harvest and at least 30 days prior to planting field corn, white corn, and corn
|
||||||
|
grown for seed, 60 days prior to planting soybean and 90 days prior to planting wheat.
|
||||||
|
Use rates of Autumn Super 51 WDG Herbicide range from 0.3 to 0.5 oz./A and will vary
|
||||||
|
according to geographic location, application timing and soil pH. For soybeans, if residual
|
||||||
|
ALS-containing products were applied the growing season before and are planned to be
|
||||||
|
applied in the spring following an Autumn Super application, it is recommended to plant
|
||||||
|
a STS soybean variety. Do not apply to frozen ground. Best results are obtained when
|
||||||
|
applications are made to actively growing weeds. Autumn Super 51 WDG Herbicide will
|
||||||
|
affect weeds that are larger than the listed height, however, speed of activity and control
|
||||||
|
may be reduced. Autumn Super 51 WDG Herbicide will provide short term residual of
|
||||||
|
small seeded broadleaf weeds.
|
||||||
|
TABLE 3: USE RATES
|
||||||
|
Autumn Super 51 WDG Herbicide may be applied at use rates ranging from 0.3 to 0.5
|
||||||
|
oz./A, depending upon geographic location, application timing and soil pH.
|
||||||
|
Time of
|
||||||
|
Year
|
||||||
|
Geographical
|
||||||
|
Use Location
|
||||||
|
Application
|
||||||
|
Timing
|
||||||
|
Autumn Super 51 WDG Herbicide
|
||||||
|
Use Rate (Oz/A)
|
||||||
|
Soil pH 6.8 or less Soil pH 6.8 to 8.01
|
||||||
|
Fall Areas North of
|
||||||
|
Interstate 70
|
||||||
|
After Fall Harvest,
|
||||||
|
Prior to Nov.1,
|
||||||
|
Before ground
|
||||||
|
freeze
|
||||||
|
0.5 0.3
|
||||||
|
After Fall Harvest,
|
||||||
|
After Nov. 1,
|
||||||
|
Before ground
|
||||||
|
freeze
|
||||||
|
0.3 0.3
|
||||||
|
Areas South of
|
||||||
|
Interstate 70
|
||||||
|
After Fall Harvest,
|
||||||
|
Before ground
|
||||||
|
freeze
|
||||||
|
0.5 0.3
|
||||||
|
Spring East of Mississippi
|
||||||
|
River,
|
||||||
|
South of Interstate 64
|
||||||
|
After ground has
|
||||||
|
become unfrozen,
|
||||||
|
Prior to planting2
|
||||||
|
0.3 Do Not Use
|
||||||
|
1 DO NOT apply to soils with pH > 8.0
|
||||||
|
2 Must comply with minimum plant back intervals shown in Table 2 of the EPA registered
|
||||||
|
label for Autumn Super 51 WDG Herbicide.
|
||||||
|
USE RESTRICTIONS
|
||||||
|
1. Autumn Super 51 WDG Herbicide contains two active ingredients; Iodosulfuron and
|
||||||
|
Thiencarbazone-methyl. When Autumn Super 51 WDG Herbicide is used as a post-
|
||||||
|
harvest burndown application at the 0.5 oz/A (0.022 lb AIs/A) product rate, no additional
|
||||||
|
iodosulfuron active ingredient and 0.026 lb of additional Thiencarbazone-methyl may be
|
||||||
|
applied during the same 365 day period on the same acreage. No additional post-harvest
|
||||||
|
burndown application with Thiencarbazone-methyl is allowed.
|
||||||
|
2. DO NOT apply when wind causes drift to off-site vegetation, as injury may occur. Small
|
||||||
|
amounts of Autumn Super 51 WDG Herbicide delivered via drift or spray tank combinations
|
||||||
|
can damage other plants. Carefully manage spray drift and tank cleanout.
|
||||||
|
3. DO NOT apply this product by air or through any type of irrigation system.
|
||||||
|
4. For field corn, use as a post-harvest burndown application in the fall at least 30 days prior
|
||||||
|
to planting.
|
||||||
|
5. For soybeans, use as a post-harvest burndown application in the fall at least 60 days prior
|
||||||
|
to planting.
|
||||||
|
6. DO NOT graze livestock within 45 days of application of Autumn Super 51 WDG Herbicide.
|
||||||
|
7. A 25 foot buffer for ground applications must be maintained between the point of direct
|
||||||
|
application and the closest downwind edge of sensitive terrestrial habitats (including
|
||||||
|
grasslands, forested areas, shelter belts, woodlots, hedgerows, riparian areas and shrub
|
||||||
|
lands), sensitive freshwater habitats (including lakes, rivers, sloughs, ponds, creeks,
|
||||||
|
marshes, streams, reservoirs and wetlands) and estuarine/marine habitats.
|
||||||
|
USE PRECAUTIONS
|
||||||
|
1. Rainfall within 2 hours may result in reduced weed control. Established weeds should be
|
||||||
|
actively growing when the herbicide application is made. Weed control may be reduced if
|
||||||
|
application is made when weeds are dust covered or in the presence of heavy dew, fog, and
|
||||||
|
mist/rain or when weeds are under stress due to drought.
|
||||||
|
2. Apply Autumn Super 51 WDG Herbicide spray mixtures within 24 hours of mixing to avoid
|
||||||
|
product degradation.
|
||||||
|
3. Autumn Super 51 WDG Herbicide will not provide season-long preemergence control of
|
||||||
|
annual grass and broadleaf weeds. The length of residual weed control is generally rate
|
||||||
|
dependent with greater residual control with higher use rates.
|
||||||
|
4. Application of an ALS-containing herbicide during the growing season following an Autumn
|
||||||
|
Super 51 WDG Herbicide application may increase the injury potential to soybeans when
|
||||||
|
planted as the next rotational crop. In situations where extreme dry and cold environmental
|
||||||
|
conditions follow a fall Autumn Super 51 WDG Herbicide application, it is recommended
|
||||||
|
to plant a STS soybean cultivar if one is using additional spring-applied ALS-containing
|
||||||
|
herbicides in soybeans.
|
||||||
|
|
||||||
|
7
|
||||||
|
234 mm
|
||||||
|
242 mm
|
||||||
|
3 5
|
||||||
|
150 mm
|
||||||
|
TANK MIX APPLICATION DIRECTIONS
|
||||||
|
Autumn Super 51 WDG Herbicide may be tank mixed with additional products such as 2,4-D,
|
||||||
|
glyphosate, dicamba, paraquat or metribuzin for enhanced burndown activity. For fields to be
|
||||||
|
planted to corn, Autumn Super 51 WDG Herbicide can be tank mixed with simazine or atrazine.
|
||||||
|
Refer to tank mix partner labels for additional precautionary statements, restrictions, weeds
|
||||||
|
controlled, weed heights and rates.
|
||||||
|
SEQUENTIAL APPLICATION DIRECTIONS
|
||||||
|
Autumn Super 51 WDG Herbicide will not provide season-long preemergence control of annual
|
||||||
|
grass and broadleaf weeds but should be applied as the first herbicide in an integrated weed
|
||||||
|
control program that includes sequential applications including but not limited to, the following
|
||||||
|
herbicide products:
|
||||||
|
• For extended residual control in corn, follow Autumn Super 51 WDG Herbicide with sequential
|
||||||
|
programs based on targeted weeds. Such programs may include Balance® Flexx, Corvus®,
|
||||||
|
Capreno™ and Laudis®.
|
||||||
|
• For season long control in soybean, follow Autumn Super 51 WDG Herbicide with a sequential
|
||||||
|
program based on targeted weeds.
|
||||||
|
Refer to individual product labels for precautionary statements, restrictions, rates, weeds
|
||||||
|
controlled, etc.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage or disposal.
|
||||||
|
PESTICIDE STORAGE:
|
||||||
|
Keep container tightly closed when not in use. Avoid cross contamination with other
|
||||||
|
pesticides.
|
||||||
|
PESTICIDE DISPOSAL:
|
||||||
|
Wastes resulting from the use of this product must be disposed of on site or at an approved
|
||||||
|
waste disposal facility.
|
||||||
|
CONTAINER DISPOSAL:
|
||||||
|
Non-refillable Containers
|
||||||
|
Rigid Non-refillable containers with capacities less than 5 gallons
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Offer for recycling, if available.
|
||||||
|
Triple rinse container (or equivalent) promptly after emptying. Triple rinse as follows: Empty
|
||||||
|
the remaining contents into application equipment or a mix tank and drain for 10 seconds
|
||||||
|
after the flow begins to drip. Fill the container 1/4 full with water and recap. Shake for 10
|
||||||
|
seconds. Pour rinsate into application equipment or a mix tank or store rinsate for later use
|
||||||
|
or disposal. Drain for 10 seconds after the flow begins to drip. Repeat this procedure two
|
||||||
|
more times. Then puncture and dispose of in a sanitary landfill.
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of
|
||||||
|
Liability before using this product. If terms are not acceptable, return the unopened product
|
||||||
|
container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of
|
||||||
|
Warranties and Limitations of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must
|
||||||
|
be followed carefully. However, it is impossible to eliminate all risks associated with the use
|
||||||
|
of this product. Ineffectiveness or other unintended consequences may result because of
|
||||||
|
such factors as weather conditions, presence of other materials, or the manner of use or
|
||||||
|
application, all of which are beyond the control of Bayer CropScience. All such risks shall be
|
||||||
|
assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, BAYER CROPSCIENCE MAKES NO OTHER WARRANTIES, EXPRESS OR
|
||||||
|
IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A PARTICULAR PURPOSE OR
|
||||||
|
OTHERWISE, THAT EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL. No
|
||||||
|
agent of Bayer CropScience is authorized to make any warranties beyond those contained
|
||||||
|
herein or to modify the warranties contained herein. TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, BAYER CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER
|
||||||
|
FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING FROM
|
||||||
|
THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW,
|
||||||
|
THE EXCLUSIVE REMEDY OF THE USER OR BUYER FOR ANY AND ALL LOSSES,
|
||||||
|
INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS
|
||||||
|
PRODUCT, WHETHER IN CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT
|
||||||
|
LIABILITY OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR
|
||||||
|
AT BAYER CROPSCIENCE ‘S ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
Balance®Flexx, Corvus® and Laudis® are registered trademarks of Bayer Group.
|
||||||
|
Capreno™ is a trademark of Bayer Group.
|
||||||
|
|
||||||
|
234 mm
|
||||||
|
242 mm
|
||||||
|
3 5
|
||||||
|
150 mm
|
||||||
|
AUTUMN™ SUPER 51 WDG HERBICIDE
|
||||||
|
For postharvest burndown application prior to planting field corn and
|
||||||
|
soybean.
|
||||||
|
ACTIVE INGREDIENTS*: Iodosulfuron-methyl Sodium
|
||||||
|
(CAS Number 144550-36-7) ........................................ 6.00%
|
||||||
|
Thiencarbazone-methyl (CAS Number 317815-83-1) ..................... 45.00%
|
||||||
|
OTHER INGREDIENTS: .......................................... 49.00%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
*This product is a water-dispersible granule (WDG) containing 51% of the active
|
||||||
|
ingredients by weight.
|
||||||
|
EPA Reg No. 264-1134 EPA Est. No. 000264-DEU-001
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES:
|
||||||
|
|
||||||
|
• Hold eye open and rinse slowly and gently with water for 15 - 20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then
|
||||||
|
continue rinsing eye.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
|
||||||
|
• Call a poison control center or doctor immediately for treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control center or
|
||||||
|
doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
IF ON
|
||||||
|
SKIN OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15 – 20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison control
|
||||||
|
center or doctor or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed or absorbed through skin. Causes moderate eye irritation. Avoid
|
||||||
|
contact with skin, eyes, or clothing.
|
||||||
|
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with its labeling.
|
||||||
|
Read entire label before using this product.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage or disposal.
|
||||||
|
PESTICIDE STORAGE: Keep container tightly closed when not in use. Avoid cross
|
||||||
|
contamination with other pesticides.
|
||||||
|
PESTICIDE DISPOSAL: Wastes resulting from the use of this product must be disposed of
|
||||||
|
on site or at an approved waste disposal facility.
|
||||||
|
CONTAINER DISPOSAL: Non-refillable Containers
|
||||||
|
Rigid Non-refillable containers with capacities less than 5 gallons
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Offer for recycling, if available.
|
||||||
|
Triple rinse container (or equivalent) promptly after emptying. Triple rinse as follows: Empty
|
||||||
|
the remaining contents into application equipment or a mix tank and drain for 10 seconds
|
||||||
|
after the flow begins to drip. Fill the container 1/4 full with water and recap. Shake for 10
|
||||||
|
seconds. Pour rinsate into application equipment or a mix tank or store rinsate for later use
|
||||||
|
or disposal. Drain for 10 seconds after the flow begins to drip. Repeat this procedure two
|
||||||
|
more times. Then puncture and dispose of in a sanitary landfill.
|
||||||
|
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
AUTUMN is a trademark of Bayer Group.
|
||||||
|
©2020 Bayer Group US80496869G 200925G 10/20
|
||||||
|
Net Contents: 1 lb. 4 oz. (20 oz.)
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
2
|
||||||
|
2
|
||||||
|
HERBICIDE
|
||||||
|
HERBICIDE
|
||||||
|
IODOSULFURON-METHYL SODIUM
|
||||||
|
THIENCARBAZONE-METHYL
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "axiom-df",
|
||||||
|
"epa_reg_no": "264-766",
|
||||||
|
"product_name": "Axiom DF Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Flufenacet",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Metribuzin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Axiom_DF1h_Herbicide_Labelpdf",
|
||||||
|
"filename": "Axiom_DF1h_Herbicide_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00",
|
||||||
|
"page_count": 29,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "Label",
|
||||||
|
"title": "AXIOM DF HERBICIDE Label",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Axiom_DF_Herbicide_Label1fepdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:03+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "AXIOM DF HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Axiom_DF_Herbicide_MSDS1ipdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "AXIOM DF HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Axiom_DF_Herbicide_MSDS1hpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Weeds in Christmas Tree Plantations (Douglas-Fir & True Firs)",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Axiom_DF_1fHerbicide_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:14:37+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Preemergent Control of Weeds in Wildflowers",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Axiom_DF_Herbicide_Section_24clpdf",
|
||||||
|
"last_modified": "2026-01-30T14:14:37+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/axiom-df-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:59:04.113903+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,177 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "balance-flexx",
|
||||||
|
"epa_reg_no": "264-1067",
|
||||||
|
"product_name": "Balance Flexx Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Isoxaflutole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide2i_Labelpdf",
|
||||||
|
"filename": "Balance_Flexx_Herbicide2i_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2025-12-15T14:06:20+00:00",
|
||||||
|
"page_count": 17,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "Label",
|
||||||
|
"title": "BALANCE FLEXX HERBICIDE Label",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_Label1mnpdf",
|
||||||
|
"last_modified": "2026-01-30T14:32:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "BALANCE FLEXX HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx1dp_Herbicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-16T13:55:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "BALANCE FLEXX HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx1pd_Herbicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-16T13:54:33+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "For Weed Control in Field Corn, Seed Corn, & Corn Silage",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_Supplemental_Label1npdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "For Weed Control in Field Corn, Seed Corn, & Corn Silage",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_Supplemental_Label1jpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Broadleaf Weeds & Grasses in Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx2n_Herbicide_Section_24cpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Broadleaf Weeds & Grasses in Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx2d_Herbicide_Section_24cpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Broadleaf Weeds & Grasses in Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide1v_Section_24cpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "For Weed Control in Field Corn, Seed Corn, & Corn Silage",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_Supplemental_Label1mnpdf",
|
||||||
|
"last_modified": "2026-01-30T14:28:09+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "For Weed Control in Field Corn, Seed Corn, & Corn Silage",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_Supplemental_Label1nmpdf",
|
||||||
|
"last_modified": "2026-01-30T14:27:48+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Balance Flexx plus Atrazine plus Dicamba Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_2EE1mpdf",
|
||||||
|
"last_modified": "2026-01-30T14:27:53+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Balance Flexx + Atrazine + Dicamba Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_2EE1ipdf",
|
||||||
|
"last_modified": "2026-01-30T14:23:03+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Instructions for Impregnation & Application on Dry Fertilizer",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:11+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Broadleaf Weeds & Grasses in Field Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_Section_24c1tpdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:16+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Broadleaf Weeds & Grasses in Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_Section_24c1pdf",
|
||||||
|
"last_modified": "2026-01-30T14:20:28+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Balance Flexx plus Atrazine plus Glyphosate Tank Mixture for Early Postemergent Control of Broadleaf & Glyphosate-Resistant Weeds in Glyphosate-Tolerant Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_2EE3sdpdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Balance Flexx plus Glyphosate Tank Mixture for Early Postemergent Control of Broadleaf & Glyphosate-Resistant Weeds in Glyphosate-Tolerant Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_2EE1sdpdf",
|
||||||
|
"last_modified": "2026-01-30T14:33:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Balance Flexx + Atrazine + Glyphosate Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_2EE2ipdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Balance Flexx plus Atrazine plus Dicamba Tank Mixture for Early Postemergent Control of Broadleaf & Glyphosate-Resistant Weeds in Glyphosate-Tolerant Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_2EE2sdpdf",
|
||||||
|
"last_modified": "2026-01-30T14:29:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Balance Flexx plus Atrazine plus Glyphosate Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance_Flexx_Herbicide_2EE2pdf",
|
||||||
|
"last_modified": "2026-01-30T14:22:24+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "SCH Two Pass Product Bulletin (Balance Flexx & DiFlexx DUO)",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/balance-flexx/SCH-Two-Pass-Product-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:48:07+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Balance Flexx Application Card",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/balance-flexx/2010 Balance Flexx Application Card.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:48:07+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "SCH Flexible Two Pass Product Bulletin (Balance Flexx & Capreno)",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/balance-flexx/SCH-Flexible-Two-Pass-Product-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:48:07+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Balance Flexx Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Balance-Flexx_2025pdf",
|
||||||
|
"last_modified": "2026-05-15T15:42:04+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/balance-flexx-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:58:09.329889+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,177 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "baythroid-xl",
|
||||||
|
"epa_reg_no": "264-840",
|
||||||
|
"product_name": "Baythroid XL Insecticide",
|
||||||
|
"product_class": "insecticide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "BETA-CYFLUTHRIN",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL1t_Labelpdf",
|
||||||
|
"filename": "Baythroid_XL1t_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:01:58+00:00",
|
||||||
|
"page_count": 41,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "BAYTHROID XL MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_MSDS1fvpdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:41+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "BAYTHROID XL MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_MSDS1vfpdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Tomato & Pepper",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE4apdf",
|
||||||
|
"last_modified": "2026-01-30T14:20:29+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE3epdf",
|
||||||
|
"last_modified": "2026-01-30T14:14:36+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Grape",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_Xl_(06-19-07_Ca_for_Use_On_Grape)_2eepdf",
|
||||||
|
"last_modified": "2026-01-30T14:28:19+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Stone Fruit to Control Spotted Wing Drosophila",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE4wpdf",
|
||||||
|
"last_modified": "2026-01-30T14:14:22+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Cole, Cucurbit, Fruiting, & Leafy Vegetables",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_Xl_(03-12-06_Ny_for_Use_On_Cole_Cucurbit_Fruiting__Leafy_Vegetables)_2eepdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:00+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For the Control of Boll Weevil in Sugarcane & Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE1ippdf",
|
||||||
|
"last_modified": "2026-01-30T14:25:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Brown Marmorated Stink Bug (BMSB) in Citrus, Grape, & Potato",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE1npdf",
|
||||||
|
"last_modified": "2026-01-30T14:28:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Pome Fruit to Control Spotted Wing Drosophila",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE4zpdf",
|
||||||
|
"last_modified": "2026-01-30T14:22:50+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Pome Fruit, Grape & Stone Fruit to Control Spotted Wing Drosophila",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE7updf",
|
||||||
|
"last_modified": "2026-01-30T14:25:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Brassica (COLE) Leafy Vegetables Crop Group 5 & Leafy Vegetables Crop Group 4",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_Xl_(04-11-07_Ca_brassica_cole_Leafy_Vegetables_Crop_Group_5__Leafy_Vegetables_Crop_Group_4)_2eepdf",
|
||||||
|
"last_modified": "2026-01-30T14:16:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For use on Grape, Potato and other Tuberous and Corm Vegetables to control Brown Marmorated Stink Bug",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EEny6pdf",
|
||||||
|
"last_modified": "2026-01-30T14:20:26+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Grape to Control Spotted Wing Drosophila",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE4vpdf",
|
||||||
|
"last_modified": "2026-01-30T14:22:50+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "To Add the Control of the Pest Wireworm to existing 2(ee) for the Control of Cabbage Maggot, Garden Symphylan, & Seed Corn Maggot in Brassica & Leafy Vegetables",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE2llpdf",
|
||||||
|
"last_modified": "2026-01-30T14:26:06+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Use on Christmas Trees",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_Section_24c1updf",
|
||||||
|
"last_modified": "2026-01-30T14:30:05+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Asian Citrus Psyllid on Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_Section1ge_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:20:02+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on BRASSICA (Cole) Leafy Vegetables & Leafy Vegetables",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_Xl_(02-07-07_Ca_for_Use_On_Brassica_cole_Leafy_Vegetables__Leafy_Vegetables)_2eepdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:53+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Asian Citrus Psyllid on Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_Section_24c1ipdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:26+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Brown Marmorated Stink Bug (BMSB) in Grape & Potato",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE1vpdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Use Directions for Hessian Fly Control on Wheat",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE4pdf",
|
||||||
|
"last_modified": "2026-01-30T14:29:01+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Grape, Potato, & other Tuberous and Corm Vegetables to Control Brown Marmorated Stink Bug",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid_XL_2EE4opdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Baythroid XL California - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid-XL_California_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T23:47:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Baythroid XL Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Baythroid-XL_2026pdf",
|
||||||
|
"last_modified": "2026-05-21T23:41:40+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/insecticide/baythroid-xl-insecticide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:07:59.673937+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,69 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "buteo-start",
|
||||||
|
"epa_reg_no": "264-1142",
|
||||||
|
"product_name": "BUTEO Start Insecticide",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Flupyradifurone",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/BUTEO_start_Labelpdf",
|
||||||
|
"filename": "BUTEO_start_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:07:26+00:00",
|
||||||
|
"page_count": 11,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "BUTEO START MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/BUTEO_start1h_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:21:22+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "BUTEO START MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/BUTEO_start1i_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:23:59+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "BCS_SDS_REACH",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Buteo-start-Safety-Data-Sheetpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Label",
|
||||||
|
"title": "BUTEO start US Label",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/BUTEO-start-US-Labelpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "US64343163A Buteo Start Tag US 201015A",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Buteo-start-Tagpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "BUTEO Start Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/BUTEO-Start_2026pdf",
|
||||||
|
"last_modified": "2026-05-20T00:38:35+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/buteo-start-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:11:08.401870+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,486 @@
|
|||||||
|
# BUTEO Start Insecticide
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-1142
|
||||||
|
- **Active ingredients:** Flupyradifurone
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/buteo-start-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/BUTEO_start_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
5.1875"
|
||||||
|
5.875"
|
||||||
|
®
|
||||||
|
USXXXXXXXXA 200925A 09/20
|
||||||
|
USXXXXXXXXA (200925A) Buteo Start 30 Gal Drum - ECL 09/29 colors: cmyk
|
||||||
|
(Labeling Coordinator: Bradley DeBlanc
|
||||||
|
A systemic seed treatment insecticide for use on
|
||||||
|
Canola (including Brassica napus and Brassica
|
||||||
|
rapa) and Rapeseed; Soybean for the control of
|
||||||
|
listed insect pests.
|
||||||
|
ACTIVE INGREDIENT(S):
|
||||||
|
FLUPYRADIFURONE: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .40.68%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .59.32%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 4 .01 pounds of flupyradifurone per U .S . gallon (480 grams AI/liter)
|
||||||
|
CAS No: 951659-40-8
|
||||||
|
EPA Reg. No. 264-1142
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER
|
||||||
|
(1-866-992-2937)
|
||||||
|
See Back Panel for First Aid Instructions and Booklet for
|
||||||
|
Complete Precautionary Statements and Directions for Use.
|
||||||
|
Produced for:
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N . Lindbergh Blvd .
|
||||||
|
St . Louis, MO 63167
|
||||||
|
©2020 Bayer Group
|
||||||
|
|
||||||
|
GROUPFLUPYRADIFURONE INSECTICIDE4D
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
1
|
||||||
|
FIRST AID
|
||||||
|
IF SWALLOWED: • Call a poison control center or doctor immediately for treatment advice .
|
||||||
|
• Have person sip a glass of water if able to swallow .
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control center or doctor .
|
||||||
|
• Do not give anything by mouth to an unconscious person .
|
||||||
|
IF ON SKIN
|
||||||
|
OR CLOTHING:
|
||||||
|
• Take off contaminated clothing .
|
||||||
|
• Rinse skin immediately with plenty of water for 15 to 20 minutes .
|
||||||
|
• Call a poison control center or doctor for treatment advice .
|
||||||
|
In case of emergency, call the toll-free Bayer CropScience Emergency Response telephone number: 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison control center or doctor, or going for treatment.
|
||||||
|
Note to Physician: No specific antidote is available . Treat the patient symptomatically .
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if swallowed .
|
||||||
|
• Harmful if absorbed through skin .
|
||||||
|
• Avoid contact with skin or clothing .
|
||||||
|
• Causes moderate eye irritation .
|
||||||
|
• Prolonged or frequently repeated skin contact may cause allergic reactions in some individuals .
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Applicators and other handlers must wear:
|
||||||
|
• Long sleeved shirt and long pants
|
||||||
|
• Chemical resistant gloves made of barrier laminate, butyl rubber ≥14 mils, nitrile rubber ≥14 mils, natural rubber ≥14 mils, neoprene
|
||||||
|
rubber ≥14 mils, polyethylene, polyvinyl chloride (PVC) ≥14 mils, or viton ≥14 mils .
|
||||||
|
• Shoes and socks
|
||||||
|
USER SAFETY REQUIREMENTS
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE . If no such instructions for washables exist, use detergent and hot
|
||||||
|
water . Keep and wash PPE separately from other laundry . Discard clothing and other absorbent materials that have been drenched or
|
||||||
|
heavily contaminated with this product’s concentrate . Do not reuse them .
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
• Users should wash hands before eating, drinking, chewing gum, using tobacco or using the toilet
|
||||||
|
• Users should remove clothing/PPE immediately if pesticide gets inside . Then wash thoroughly and put on clean clothing .
|
||||||
|
• Users should remove PPE immediately after handling this product .
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
2
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This product is toxic to aquatic invertebrates . Do not apply directly to water or to areas where surface water is present or to intertidal areas
|
||||||
|
below the mean high-water mark . Do not contaminate water when cleaning equipment or disposing of equipment washwaters . Treated seed
|
||||||
|
exposed on soil surface may be hazardous to birds or other wildlife . Cover or incorporate spilled treated seeds .
|
||||||
|
Non-Target Organism
|
||||||
|
Highly toxic to adult Megachile rotundata (alfalfa leafcutting bee) via direct contact exposure . Do not apply to foliage when managed alfalfa
|
||||||
|
leaf cutting bees are foraging in the treatment area . Toxic to adult bees in laboratory studies via oral exposure . Not toxic to honey bees or
|
||||||
|
bumble bees through contact exposure . Field studies conducted with this product have shown no effects on honeybee colony development .
|
||||||
|
Ground Water Advisory
|
||||||
|
This chemical has properties and characteristics associated with chemicals detected in ground water . This chemical may leach into ground
|
||||||
|
water if used in areas where soils are permeable, particularly where the water table is shallow .
|
||||||
|
CONDITIONS OF SALE AND LIMITATIONS OF WARRANTY AND LIABILITY
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability before using this product . If terms are
|
||||||
|
not acceptable, return the unopened product container at once .
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties and Limitations of Liability .
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must be followed carefully . However, it is impossible
|
||||||
|
to eliminate all risks associated with the use of this product . Crop injury, ineffectiveness or other unintended consequences may result
|
||||||
|
because of such factors as weather conditions, presence of other materials, or the manner of use or application, all of which are beyond the
|
||||||
|
control of Bayer CropScience . To the extent consistent with applicable law, all such risks shall be assumed by the user or buyer .
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE MAKES NO OTHER
|
||||||
|
WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A PARTICULAR PURPOSE OR OTHERWISE, THAT
|
||||||
|
EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL . No agent of Bayer CropScience is authorized to make any warranties beyond
|
||||||
|
those contained herein or to modify the warranties contained herein . TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER
|
||||||
|
CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING
|
||||||
|
FROM THE USE OR HANDLING OF THIS PRODUCT .
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER
|
||||||
|
FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT, WHETHER IN
|
||||||
|
CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR
|
||||||
|
AT BAYER CROPSCIENCE’S ELECTION, THE REPLACEMENT OF PRODUCT .
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with its labeling
|
||||||
|
Read the entire label before using this product.
|
||||||
|
For use only in commercial seed treatment facilities . Not for use in hopper box, planter box, slurry box, or other on-farm seed treatment
|
||||||
|
applications .
|
||||||
|
Read the entire label and observe all label directions and precautions before use . Do not use this product except as directed on this label
|
||||||
|
or on other Bayer CropScience supplemental labeling for this product .
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
3
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
BUTEO® start:
|
||||||
|
• is a seed treatment insecticide that, when applied to seed, protects the seed and seedling against certain early season insects . As a result
|
||||||
|
of the protection, there is an improvement in plant vigor, which often results in more uniform plants and greater yields .
|
||||||
|
USE RESTRICTIONS
|
||||||
|
• Regardless of type of application (seed treatment or foliar), do not apply more than 0 .365 lb (Soybean) and 0 .274 lb (Canola including
|
||||||
|
Brassica napus and Brassica rapa and Rapeseed ) of active ingredient flupyradifurone per acre per season .
|
||||||
|
• Only for use in commercial seed treatment facilities . Not for use in hopper box, planter box, slurry box, or other on-farm seed treatment
|
||||||
|
applications .
|
||||||
|
• All seed treated with this product must be colored with an EPA-approved dye or colorant that imparts an unnatural color to the seed to
|
||||||
|
help prevent the inadvertent use of treated seed for food, feed, or oil purposes .
|
||||||
|
• Excess treated seed may be used for ethanol production only if (1) by-products are not used for livestock feed and (2) no measurable
|
||||||
|
residues of pesticide remain in ethanol by products that are used in agronomic practice .
|
||||||
|
APPLICATION INSTRUCTIONS
|
||||||
|
• All seed treated with this product must be colored with an EPA-approved dye or colorant that imparts an unnatural color to the seed to
|
||||||
|
help prevent the inadvertent use of treated seed for food, feed, or oil purposes .
|
||||||
|
• Apply BUTEO start as a commercial water-based slurry either alone or with other registered seed treatment insecticides or fungicides
|
||||||
|
through standard slurry or mist commercial seed treatment equipment . Follow the most restrictive of the labeling limitations and
|
||||||
|
precautions of all products used in mixtures . Treated seed must be labeled in accordance with the requirements of the Federal Seed Act .
|
||||||
|
• May be used in combination with other registered Bayer CropScience seed treatment fungicides and/or insecticides . Pre-test for
|
||||||
|
compatibility with other seed treatment products .
|
||||||
|
COMPATIBILITY TESTING AND TANK MIX PARTNERS
|
||||||
|
Compatibility
|
||||||
|
Application to seed must be done in commercial seed treatment facilities utilizing standard slurry treaters . It is essential that before using
|
||||||
|
BUTEO start seed treatment in any tank mixture the compatibility of the mixture be established . Add BUTEO start at the labeled rate to a
|
||||||
|
clean quart jar containing approximately one-half the amount of water intended for a final slurry application rate . Next, follow with all other
|
||||||
|
tank mix components that will be used in the total slurry application . Add last the remaining balance of water . The total amount of volume
|
||||||
|
is determined by the seed size and how much is necessary to ensure complete and uniform coverage and distribution on the seed, as well
|
||||||
|
as the type of commercial seed treating application equipment that will be used .
|
||||||
|
DO NOT USE MIXTURES THAT CURDLE, PRECIPITATE, OR GEL . USE TANK MIXTURES IMMEDIATELY AFTER MIXING WITH ADEQUATE
|
||||||
|
AGITATION .
|
||||||
|
Order of Mixing
|
||||||
|
1 . When applied with seed treatment application equipment designed to treat seed utilizing a treatment slurry mixture, add approximately
|
||||||
|
½ to 2/3 of the required water to the treatment slurry tank followed by the accompanying seed treatment products and BUTEO start .
|
||||||
|
The order of product addition is dependant on the accompanying seed treatment products and application equipment used .
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
4
|
||||||
|
2 . Allow each slurry component to disperse completely prior to the next addition until a uniform suspension is obtained .
|
||||||
|
3 . After all slurry components have been added and dispersed completely add the remaining ½ to 1/3 of required water for proper
|
||||||
|
slurry volume and mix until uniform . Do not store mixed slurries for greater than 72 hours .
|
||||||
|
4 . Maintain adequate agitation until treatment slurry is applied .
|
||||||
|
For additional instructions for use, slurry component mixing order, and other application suggestions contact your Bayer CropScience
|
||||||
|
representative .
|
||||||
|
INSECTICIDE RESISTANCE MANAGEMENT (IRAC) RECOMMENDATIONS
|
||||||
|
For resistance management, BUTEO start contains a Group 4D insecticide . Any insect population may contain individuals naturally resistant
|
||||||
|
to BUTEO start and other Group 4D insecticides . The resistant individuals may dominate the insect population if this group of insecticides
|
||||||
|
are used repeatedly in the same fields . Appropriate resistance-management strategies should be followed .
|
||||||
|
To delay insecticide resistance, take one or more of the following steps:
|
||||||
|
Rotate the use of BUTEO start or other Group 4D insecticides within a growing season, or among growing seasons, with different groups
|
||||||
|
that control the same pests .
|
||||||
|
• Use tank mixtures with insecticides from a different group that are equally effective on the target pest when such use is permitted . Do
|
||||||
|
not rely on the same mixture repeatedly for the same pest population . Consider any known cross-resistance issues (for the targeted
|
||||||
|
pests) between the individual components of a mixture . In addition, consider the following recommendations provided by the Insecticide
|
||||||
|
Resistance Action Committee (IRAC):
|
||||||
|
• Individual insecticides selected for use in mixtures should be highly effective and be applied at the rates at which they are
|
||||||
|
individually registered for use against the target species .
|
||||||
|
• Mixtures with components having the same IRAC mode of action classification are not recommended for insect resistance
|
||||||
|
management .
|
||||||
|
• When using mixtures, consider any known cross-resistance issues between the individual components for the targeted pest(s) .
|
||||||
|
• Mixtures become less effective if resistance is already developing to one or both active ingredients, but they may still provide pest
|
||||||
|
management benefits .
|
||||||
|
• The insect resistance management benefits of an insecticide mixture are greatest if the two components have similar periods
|
||||||
|
of residual insecticidal activity . Mixtures of insecticides with unequal periods of residual insecticide activity may offer an insect
|
||||||
|
resistance management benefit only for the period where both insecticides are active .
|
||||||
|
• Adopt an integrated pest management program for insecticide use that includes scouting, uses historical information related to pesticide
|
||||||
|
use, crop rotation, record keeping, and which considers cultural, biological and other chemical control practices .
|
||||||
|
• Monitor after application for unexpected target pest survival . If the level of survival suggests the presence of resistance, consult with
|
||||||
|
your local university specialist or certified pest control advisor .
|
||||||
|
• Contact your local extension specialist or certified crop advisors for any additional pesticide resistance-management and/or IPM
|
||||||
|
recommendations for the specific site and pest problems in your area .
|
||||||
|
• For further information or to report suspected resistance contact Bayer CropScience at 1-866-99BAYER (1-866-992-2937) .
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
5
|
||||||
|
SPECIFIC CROP DIRECTIONS
|
||||||
|
Soybean
|
||||||
|
Pest Controlled
|
||||||
|
Bean leaf beetle; Soybean aphid
|
||||||
|
Rate of BUTEO start
|
||||||
|
# seeds/kg
|
||||||
|
(# seeds/lb)
|
||||||
|
mL / 100 kg seed
|
||||||
|
(fl oz/100 lb seeds)
|
||||||
|
ml / 140,000 seed
|
||||||
|
(fl oz / 140,000 seeds) Mg ai / seed g a.i./A*
|
||||||
|
(lb/A)
|
||||||
|
6173
|
||||||
|
(2800)
|
||||||
|
57.87 - 87.45
|
||||||
|
(0.89 - 1.34)
|
||||||
|
13.13 - 19.83
|
||||||
|
(0.44 - 0.67) 0.045 - 0.068 6.3 – 9.52
|
||||||
|
(0.014 – 0.02)
|
||||||
|
Pest Suppressed
|
||||||
|
Thrips
|
||||||
|
Rate of BUTEO start
|
||||||
|
# seeds/kg
|
||||||
|
(# seeds/lb)
|
||||||
|
mL / 100 kg seed
|
||||||
|
(fl oz/100 lb seeds)
|
||||||
|
ml / 140,000 seed
|
||||||
|
(fl oz / 140,000 seeds) Mg ai / seed g a.i./A*
|
||||||
|
(lb/A)
|
||||||
|
6173
|
||||||
|
(2800)
|
||||||
|
57.87 - 87.45
|
||||||
|
(0.89 - 1.34)
|
||||||
|
13.13 - 19.83
|
||||||
|
(0.44 - 0.67) 0.045 - 0.068 3.83 - 5.78
|
||||||
|
(0.01 - 0.01)
|
||||||
|
Application Restrictions:
|
||||||
|
• Do not apply more than 0.365 Pound of Flupyradifurone per Acre per Per Year (including seed treatment, foliar, in-furrow or banded applications) .
|
||||||
|
• Above table application rate calculations is based on an average seed size of 2,800 seeds/lb (6,173 seeds/kg) .
|
||||||
|
• Thorough seed coverage is required for maximum protection of seed .
|
||||||
|
• Use the higher recommended rate when insect pressure is expected to be high .
|
||||||
|
• Under high insect pressures, a foliar insecticide may be required, therefore monitor crops regularly for insect infestation levels .
|
||||||
|
• *The total amount of active ingredient (a .i .) of Flupyradifurone is based on an average soybean seeding rate of 140,000 seeds/Acre .
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
6
|
||||||
|
Canola (including Brassica napus and Brassica rapa) and Rapeseed
|
||||||
|
Pest Controlled
|
||||||
|
Flea beetle
|
||||||
|
Rate of BUTEO start
|
||||||
|
# seeds/kg
|
||||||
|
(# seeds/lb)
|
||||||
|
mL / 100 kg seed
|
||||||
|
(fl oz/100 lb seeds)
|
||||||
|
mL/100,000 seed
|
||||||
|
(fl oz/100,000 seed) Mg ai / seed g a.i./A*
|
||||||
|
(lb/A)
|
||||||
|
220,000
|
||||||
|
(100,000)
|
||||||
|
625 – 1042
|
||||||
|
(9.6 – 16.0)
|
||||||
|
2.84 – 4.74
|
||||||
|
0.096 – 0.16 0.014 – 0.023 6.8 – 11.4
|
||||||
|
(0.015 – 0.025)
|
||||||
|
Application Restrictions:
|
||||||
|
• Do not apply more than 0 .274 Pound of Flupyradifurone per Acre Per Year (including seed treatment, foliar, in-furrow or banded applications .)
|
||||||
|
• Above table application rate calculations is based on an average seed size of 100,000 seeds/lb (220,000 seeds/kg) .
|
||||||
|
• Thorough seed coverage is required for maximum protection of seed .
|
||||||
|
• Use the higher recommended rate when insect pressure is expected to be high .
|
||||||
|
• Under high insect pressures, a foliar insecticide may be required, therefore monitor crops regularly for insect infestation levels .
|
||||||
|
• *The total amount of active ingredient (a .i .) of Flupyradifurone is based on an average Canola seeding rate of 500,000 seeds/Acre .
|
||||||
|
Seed Tag Labeling
|
||||||
|
The Federal Seed Act requires that the container of seed treated with flupyradifurone must be labeled with the following statements:
|
||||||
|
• This seed has been treated with BUTEO start, which contains flupyradifurone .
|
||||||
|
• Do not use treated seed for food, feed, or oil production .
|
||||||
|
In addition, the US Environmental Protection Agency requires the following statements on the container of seed treated with BUTEO start:
|
||||||
|
• Under high insect pressures, a foliar insecticide may be required, therefore monitor crops regularly for insect infestation levels .
|
||||||
|
• For soybeans, regardless of method of application (seed treatment or foliar), do not apply more than 0 .365 lb of active ingredient
|
||||||
|
Flupyradifurone per acre per year .
|
||||||
|
• For canola and rapeseeds, regardless of method of application (seed treatment or foliar), do not apply more than 0 .274 lb of active
|
||||||
|
ingredient Flupyradifurone per acre per year .
|
||||||
|
• Soybean treated at the rate of XX mL per 140,000 seeds will result in XX mg of Flupyradifurone per seed .
|
||||||
|
• Canola treated at the rate of XX mL per 100,000 seeds will result in XX mg of Flupyradifurone per seed .
|
||||||
|
• Rapeseed treated at the rate of XX mL per 100,000 seeds will result in XX mg of Flupyradifurone per seed .
|
||||||
|
• Store away from feeds and foodstuffs .
|
||||||
|
• Excess treated seed may be used for ethanol production only if (1) by-products are not used for livestock feed and (2) no measurable
|
||||||
|
residues of pesticide remain in ethanol by products that are used in agronomic practice .
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
7
|
||||||
|
• Wear long-sleeved shirt, long pants, shoes, socks, and chemical resistant gloves made out of barrier laminate, butyl rubber ≥14 mils,
|
||||||
|
nitrile rubber ≥14 mils, natural rubber ≥14 mils, neoprene rubber ≥14 mils, polyethylene, polyvinyl chloride (PVC) ≥14 mils, or viton ≥14
|
||||||
|
mils .
|
||||||
|
• Use planting equipment that will plant treated seed into the soil to a minimum depth of 0 .5 inch .
|
||||||
|
• Do not allow children, pets or livestock to have access to treated seed .
|
||||||
|
• Dispose of all excess treated seed . Left over treated seed may be double sown around the headland or buried away from water sources
|
||||||
|
in accordance with local requirements .
|
||||||
|
• This product is toxic to aquatic invertebrates . Do not apply directly to water or to areas where surface water is present or to intertidal
|
||||||
|
areas below the mean high-water mark . Do not contaminate water when cleaning equipment or disposing of equipment washwaters .
|
||||||
|
• Ground Water Advisory: This chemical has properties and characteristics associated with chemicals detected in ground water . This
|
||||||
|
chemical may leach into ground water if used in areas where soils are permeable, particularly where the water table is shallow .
|
||||||
|
• Highly toxic to adult Megachile rotundata (alfalfa leafcutting bee) via direct contact exposure . Do not apply to foliage when managed
|
||||||
|
alfalfa leaf cutting bees are foraging in the treatment area . Toxic to adult bees in laboratory studies via oral exposure . Not toxic to honey
|
||||||
|
bees or bumble bees through contact exposure . Field studies conducted with this product have shown no effects on honeybee colony
|
||||||
|
development .
|
||||||
|
• Treated seed exposed on soil surface may be hazardous to birds or other wildlife . Cover or collect treated seeds spilled during loading
|
||||||
|
and planting . Dispose of all excess treated seed by burying seed away from bodies of water .
|
||||||
|
• Do not re-use bags from treated seed to handle food or feed products .
|
||||||
|
• Rotational Crops Plant-Back Restrictions:
|
||||||
|
• Immediate Plant-back: Alfalfa; Brassica (cole) leafy vegetables; Bulb Vegetable Group 3-07 including: Chive (fresh leaves),
|
||||||
|
Chinese chive (fresh leaves), Daylily (bulb), Elegans hosta, Fritillaria (bulb and leaves), Garlic (common group, great-headed
|
||||||
|
group, serpent group), Kurrat group, Leek group (including common, lady’s, wild), Lily (bulb), Onion (bulb and green leaves
|
||||||
|
including: common group, Beltsville bunching, Chinese bulb, fresh, green, macrostem, Pearl group, potato onion group, tree
|
||||||
|
onion-tops, Welsh-tops), Shallot (bulb, fresh leaves), and cultivars, varieties, and/or hybrids of these .; Cereal grains (except rice);
|
||||||
|
Cilantro; Clover; Cotton; Cucurbit vegetables; Fruiting vegetables; Hop; Kava; Leafy vegetables; Legume vegetables (succulent or
|
||||||
|
dried); Peanut; Quinoa; Canola (including Brassica napus and Brassica rapa) and Rapeseed; Root vegetables (except sugarbeet);
|
||||||
|
Soybean (Glycine max); Tuberous and Corm vegetables
|
||||||
|
• 14 Day(s): Sugarcane (Florida only)
|
||||||
|
• 12 Months: Sugarcane (except Florida) and any other crops not listed above .
|
||||||
|
• 12-month plant-back: For crops not listed on this label, or for crops for which no tolerances for the active ingredients have been
|
||||||
|
established, the plant-back interval must be observed .
|
||||||
|
INSECTICIDE RESISTANCE MANAGEMENT (IRAC) RECOMMENDATIONS
|
||||||
|
For resistance management, BUTEO start contains a Group 4D insecticide . Any insect population may contain individuals naturally resistant
|
||||||
|
to BUTEO start and other Group 4D insecticides . The resistant individuals may dominate the insect population if this group of insecticides
|
||||||
|
are used repeatedly in the same fields . Appropriate resistance-management strategies should be followed .
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
8
|
||||||
|
To delay insecticide resistance, take one or more of the following steps:
|
||||||
|
Rotate the use of BUTEO start or other Group 4D insecticides within a growing season, or among growing seasons, with different groups
|
||||||
|
that control the same pests .
|
||||||
|
• Use tank mixtures with insecticides from a different group that are equally effective on the target pest when such use is permitted . Do
|
||||||
|
not rely on the same mixture repeatedly for the same pest population . Consider any known cross-resistance issues (for the targeted
|
||||||
|
pests) between the individual components of a mixture . In addition, consider the following recommendations provided by the Insecticide
|
||||||
|
Resistance Action Committee (IRAC):
|
||||||
|
• Individual insecticides selected for use in mixtures should be highly effective and be applied at the rates at which they are
|
||||||
|
individually registered for use against the target species .
|
||||||
|
• Mixtures with components having the same IRAC mode of action classification are not recommended for insect resistance
|
||||||
|
management .
|
||||||
|
• When using mixtures, consider any known cross-resistance issues between the individual components for the targeted pest(s) .
|
||||||
|
• Mixtures become less effective if resistance is already developing to one or both active ingredients, but they may still provide pest
|
||||||
|
management benefits .
|
||||||
|
• The insect resistance management benefits of an insecticide mixture are greatest if the two components have similar periods
|
||||||
|
of residual insecticidal activity . Mixtures of insecticides with unequal periods of residual insecticide activity may offer an insect
|
||||||
|
resistance management benefit only for the period where both insecticides are active .
|
||||||
|
• Adopt an integrated pest management program for insecticide use that includes scouting, uses historical information related to pesticide
|
||||||
|
use, crop rotation, record keeping, and which considers cultural, biological and other chemical control practices .
|
||||||
|
• Monitor after application for unexpected target pest survival . If the level of survival suggests the presence of resistance, consult with your
|
||||||
|
local university specialist or certified pest control advisor .
|
||||||
|
• Contact your local extension specialist or certified crop advisors for any additional pesticide resistance-management and/or IPM
|
||||||
|
recommendations for the specific site and pest problems in your area .
|
||||||
|
• For further information or to report suspected resistance contact Bayer CropScience at 1-866-99BAYER (1-866-992-2937) .
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal .
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in original container away from feed and food . Store in cool, dry area . Do not store in direct sunlight . Do not allow prolonged storage
|
||||||
|
in temperatures that exceed 95ºF (35ºC) or in temperatures that fall below 14ºF (-10ºC) .
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
To avoid wastes, use all material in this container by application according to label directions . If wastes cannot be avoided, offer remaining
|
||||||
|
product to a waste facility or pesticide disposal program (often such programs are run by state or local governments or by industry) .
|
||||||
|
CONTAINER HANDLING
|
||||||
|
Rigid Non-refillable containers that are too large to shake (i .e ., with capacities greater than 5 gallons or 50 lbs)
|
||||||
|
Non-refillable container . Do not reuse or refill this container . After emptying product from container, either return container to Bayer
|
||||||
|
|
||||||
|
5.875”
|
||||||
|
5.1875”
|
||||||
|
9
|
||||||
|
CropScience per instructions from Bayer CropScience Customer Service Center (1-800-527-4781), or rinse and either recycle or dispose
|
||||||
|
of the container as follows:
|
||||||
|
Bottom Discharge IBC (e .g . – Schuetz Caged IBC or Snyder Square Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of the person disposing of the container . To pressure rinse the
|
||||||
|
container before final disposal, empty the remaining contents from the IBC into application equipment or mix tank . Raise the bottom
|
||||||
|
of the IBC by 1 .5 inches on the side which is opposite of the bottom discharge valve to promote more complete product removal .
|
||||||
|
Completely remove the top lid of the IBC . Use water pressurized to at least 40 PSI to rinse all interior portions . Continuously pump or
|
||||||
|
drain rinsate into application equipment or rinsate collection system while pressure rinsing . Continue pressure rinsing for 2 minutes or
|
||||||
|
until rinsate becomes clear . Replace the lid and close bottom valve .
|
||||||
|
Top Discharge IBC, Drums, Kegs (e .g .– Snyder 120 Next Gen, Bonar B120, Drums, and Kegs)
|
||||||
|
Triple rinsing the container before final disposal is the responsibility of the person disposing of the container . To triple rinse the container
|
||||||
|
before final disposal, empty the remaining contents from this container into application equipment or mix tank . Fill the container at least
|
||||||
|
10 percent full with water . Agitate vigorously or recirculate water with the pump for 2 minutes . Rinse all interior surfaces . Pour or pump
|
||||||
|
rinsate into application equipment or rinsate collection system . Repeat this procedure two more times .
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill, or by incineration .
|
||||||
|
|
||||||
|
13.125”
|
||||||
|
5.1875”
|
||||||
|
Lot No. ________________ Net Contents __________________
|
||||||
|
®
|
||||||
|
USXXXXXXXXA (200925A) 42-S BUTEO start Drum - BASE COLORS: CMYK 09/29/20
|
||||||
|
(Labeling Coordinator: Bradley DeBlanc)
|
||||||
|
|
||||||
|
USXXXXXXXXA 200925A 09/20
|
||||||
|
GROUPFLUPYRADIFURONE INSECTICIDE4D BUTEO® start
|
||||||
|
A systemic seed treatment insecticide for use on Canola (including
|
||||||
|
Brassica napus and Brassica rapa) and Rapeseed; Soybean for the control
|
||||||
|
of listed insect pests.
|
||||||
|
ACTIVE INGREDIENT(S):
|
||||||
|
FLUPYRADIFURONE: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .40.68%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59.32%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 4 .01 pounds of flupyradifurone per U .S . gallon (480 grams AI/liter)
|
||||||
|
CAS No: 951659-40-8
|
||||||
|
EPA Reg. No. 264-1142
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours a Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
See Panel for First Aid Instructions and Booklet for Complete
|
||||||
|
Precautionary Statements and Directions for Use.
|
||||||
|
FIRST AID
|
||||||
|
If Swallowed: • Call a poison control center or doctor immediately for
|
||||||
|
treatment advice .
|
||||||
|
• Have person sip a glass of water if able to swallow .
|
||||||
|
• Do not induce vomiting unless told to do so by a poison
|
||||||
|
control center or doctor .
|
||||||
|
• Do not give anything by mouth to an unconscious person .
|
||||||
|
If on Skin or
|
||||||
|
Clothing:
|
||||||
|
• Take off contaminated clothing .
|
||||||
|
• Rinse skin immediately with plenty of water for 15 to 20
|
||||||
|
minutes .
|
||||||
|
• Call a poison control center or doctor for treatment advice .
|
||||||
|
In case of emergency, call the toll-free Bayer CropScience Emergency Response
|
||||||
|
telephone number: 1-800-334-7577. Have the product container or label with you
|
||||||
|
when calling a poison control center or doctor, or going for treatment.
|
||||||
|
Note to Physician: No specific antidote is available . Treat the patient symptomatically .
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if swallowed .
|
||||||
|
• Harmful if absorbed through skin .
|
||||||
|
• Avoid contact with skin or clothing .
|
||||||
|
• Causes moderate eye irritation .
|
||||||
|
• Prolonged or frequently repeated skin contact may cause allergic reactions in
|
||||||
|
some individuals .
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal .
|
||||||
|
Pesticide Storage
|
||||||
|
Store in original container away from feed and food . Store in cool, dry area . Do not
|
||||||
|
store in direct sunlight . Do not allow prolonged storage in temperatures that exceed
|
||||||
|
95ºF (35ºC) or in temperatures that fall below 14ºF (-10ºC) .
|
||||||
|
Pesticide Disposal
|
||||||
|
To avoid wastes, use all material in this container by application according to label
|
||||||
|
directions . If wastes cannot be avoided, offer remaining product to a waste facility
|
||||||
|
or pesticide disposal program (often such programs are run by state or local
|
||||||
|
governments or by industry) .
|
||||||
|
Container Handling
|
||||||
|
Rigid Non-refillable containers that are too large to shake (i .e ., with capacities
|
||||||
|
greater than 5 gallons or 50 lbs)
|
||||||
|
Non-refillable Container .
|
||||||
|
Do not reuse or refill this container . After emptying product from container, either
|
||||||
|
return container to Bayer CropScience per instructions from Bayer CropScience
|
||||||
|
Customer Service Center (1-800-527-4781), or rinse and either recycle or
|
||||||
|
dispose of the container as follows:
|
||||||
|
Bottom Discharge IBC (e .g . – Schuetz Caged IBC or Snyder Square Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of the
|
||||||
|
person disposing of the container . To pressure rinse the container before final
|
||||||
|
disposal, empty the remaining contents from the IBC into application equipment
|
||||||
|
or mix tank . Raise the bottom of the IBC by 1 .5 inches on the side which is
|
||||||
|
opposite of the bottom discharge valve to promote more complete product
|
||||||
|
removal . Completely remove the top lid of the IBC . Use water pressurized to
|
||||||
|
at least 40 PSI to rinse all interior portions . Continuously pump or drain rinsate
|
||||||
|
into application equipment or rinsate collection system while pressure rinsing .
|
||||||
|
Continue pressure rinsing for 2 minutes or until rinsate becomes clear . Replace
|
||||||
|
the lid and close bottom valve .
|
||||||
|
Top Discharge IBC, Drums, Kegs (e .g .– Snyder 120 Next Gen, Bonar B120,
|
||||||
|
Drums, and Kegs)
|
||||||
|
Triple rinsing the container before final disposal is the responsibility of the person
|
||||||
|
disposing of the container . To triple rinse the container before final disposal,
|
||||||
|
empty the remaining contents from this container into application equipment or
|
||||||
|
mix tank . Fill the container at least 10 percent full with water . Agitate vigorously
|
||||||
|
or recirculate water with the pump for 2 minutes . Rinse all interior surfaces . Pour
|
||||||
|
or pump rinsate into application equipment or rinsate collection system . Repeat
|
||||||
|
this procedure two more times .
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose
|
||||||
|
of in a sanitary landfill, or by incineration .
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N . Lindbergh Blvd .
|
||||||
|
St . Louis, MO 63167
|
||||||
|
©2020 Bayer Group
|
||||||
@@ -0,0 +1,122 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "capreno",
|
||||||
|
"epa_reg_no": "264-1063",
|
||||||
|
"product_name": "Capreno Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Thiencarbazone-methyl",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Tembotrione",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno1c_Herbicide_Labelpdf",
|
||||||
|
"filename": "Capreno1c_Herbicide_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:26:57+00:00",
|
||||||
|
"page_count": 33,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "CAPRENO HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_Herbicide1re_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-02T14:18:00+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "CAPRENO HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_Herbicide1er_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-02T14:21:59+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "For Use on Field Corn, Field Corn Grown for Silage, White Corn, & Seed Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_Herbicide_Supplemental_Labelpdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Aerial Application in Field & Silage Corn, Seed Corn, & White Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_Herbicide1ty_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:26:06+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tank Mix with Status for Improved Control of Broadleaf Weeds in Seed Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_Herbicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:25:10+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "To Allow Aerial Application in Field & Silage Corn, Seed Corn, & White Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_Herbicide_Section1fe_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:29:49+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "To Allow Aerial Application in Field and Silage Corn, Seed Corn, & White Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_Herbicide1ht_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:29:31+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "To Allow Aerial Application in Field & Silage Corn, Seed Corn, & White Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_Herbicide_Section_24c1htpdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:12+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tank Mixed with Liberty 280 SL or Glyphosate + Atrazine + Ammonium Sulfate for Post-Emergence Control of Grass & Broadleaf Weeds in Field Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno1_Herbicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:27:53+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Capreno Application Card",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/capreno/Capreno-Application-Card-Non-IFT.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:50:04+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Capreno Application Card",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/capreno/Capreno-Application-Card-IFT.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:50:03+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "SCH One Pass Post Product Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/capreno/SCH-One-Pass-Post-Product-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:50:04+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "SCH Flexible Two Pass Product Bulletin (Balance Flexx & Capreno)",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/capreno/SCH-Flexible-Two-Pass-Product-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:50:03+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Capreno Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Capreno_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T23:00:51+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/capreno-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:59:20.954927+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,128 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "corvus",
|
||||||
|
"epa_reg_no": "264-1066",
|
||||||
|
"product_name": "Corvus Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Thiencarbazone-methyl",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Isoxaflutole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_Label1mnpdf",
|
||||||
|
"filename": "Corvus_Herbicide_Label1mnpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:28:30+00:00",
|
||||||
|
"page_count": 17,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "CORVUS HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_MSDS1rtpdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:12+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "CORVUS HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_MSDS1trpdf",
|
||||||
|
"last_modified": "2026-01-30T13:57:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "For Weed Control in Field Corn, Seed Corn, & Corn Silage",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_Supplemental1nm_Labelpdf",
|
||||||
|
"last_modified": "2026-01-30T14:08:52+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "For Weed Control in Field Corn, Seed Corn, & Corn Silage",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_Supplemental1mn_Labelpdf",
|
||||||
|
"last_modified": "2026-01-30T13:58:22+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Fall or Spring Applications to Control Kochia, Puncturevine, & Russian Thistle in Fallow or Eco-Fallow Fields In UNION, QUAY, CURRY, ROSSEVELT, & LEA Counties Only",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_Section_24c1yipdf",
|
||||||
|
"last_modified": "2026-01-30T13:55:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Corvus + Atrazine + Dicamba Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus1g_Herbicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:25:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "CORVUS Herbicide + Atrazine + Dicamba Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide1n_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:19+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Fall or Spring Applications to Control Kochia, Puncturevine, & Russian Thistle in Fallow or Eco-Fallow Fields",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_Section_24c1impdf",
|
||||||
|
"last_modified": "2026-01-30T14:01:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Corvus + Atrazine + Dicamba Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_2EE1mpdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:22+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Fall or Spring Applications to Control Kochia, Puncturevine, & Russian Thistle in Fallow or Eco-Fallow Fields",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_Section_24c1lipdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:25+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Corvus + Atrazine + Glyphosate Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus1f_Herbicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:23:36+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Instructions for Impregnation & Application on Dry Fertilizer",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_2EE1epdf",
|
||||||
|
"last_modified": "2026-01-30T14:28:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "CORVUS Herbicide + Atrazine + Glyphosate Tank for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide1m_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:25+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Corvus + Atrazine + Glyphosate Tank Mixture for Early Postemergent Use in Corn to Control of Broadleaf & Glyphosate-Resistant Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_2EE1npdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:25+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Corvus Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Corvus_2025pdf",
|
||||||
|
"last_modified": "2026-05-15T20:15:31+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/corvus-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:57:06.689897+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,985 @@
|
|||||||
|
# Corvus Herbicide
|
||||||
|
|
||||||
|
- **Product class:** herbicide
|
||||||
|
- **EPA Reg No:** 264-1066
|
||||||
|
- **Active ingredients:** Thiencarbazone-methyl, Isoxaflutole
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/herbicide/corvus-herbicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Corvus_Herbicide_Label1mnpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
US61380343I 250717I 09/25
|
||||||
|
US61380343I (250717I) CORVUS 2.5 GAL ECL
|
||||||
|
COLORS: CMYK DATE: 09/3/2025
|
||||||
|
Label Coordinator: Bradley DeBlanc
|
||||||
|
Net
|
||||||
|
Contents:
|
||||||
|
2.5 Gallons
|
||||||
|
Herbicide
|
||||||
|
For: weed control in field corn, seed corn and corn grown for silage in the states of: AR, AL, CO,
|
||||||
|
DE, GA, IL, IN, IA, KS, KY, LA, MI, MN, MO, MS, MT, NE, NJ, NM, NC, ND, MD, OH, OK, PA, SC, SD, TN,
|
||||||
|
TX, VA, WI, WV and WY.
|
||||||
|
In the state of MN use is only allowed in accordance with the Minnesota Product Bulletin.
|
||||||
|
In the state of WI use is only allowed in accordance with the Wisconsin Product Bulletin.
|
||||||
|
ACTIVE INGREDIENTS: Thiencarbazone-methyl: (Methyl 4-[[[(4,5-dihydro-3-methoxy-4-methyl-
|
||||||
|
5-oxo-1H-1,2,4-triazol-1-yl)carbonyl]amino]sulfonyl]-5-methyl-3-thiophenecarboxylate) ......................... 7.60%
|
||||||
|
Isoxaflutole [5-cyclopropyl-4-(2-methylsulfonyl-4-trifluoromethylbenzoyl) isoxazole] ............................. 19.00%
|
||||||
|
OTHER INGREDIENTS: ............................................................................... 73.40%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 0.75 pounds Thiencarbazone-methyl per U.S. gallon
|
||||||
|
Contains 1.88 pounds Isoxaflutole per U.S. gallon
|
||||||
|
EPA Reg. No. 264-1066
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
See additional precautionary statements and directions for use on label.
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY Call 24 Hours a Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
Corvus is a registered trademark of Bayer Group.
|
||||||
|
©2025 Bayer Group. All rights reserved.
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
May injure (phytotoxic) susceptible non-target plants.
|
||||||
|
For retail sale to and use only by certified applicators or persons under their direct supervision and only for those uses
|
||||||
|
covered by the Certified Applicator’s certification. Commercial and certified applicators must ensure that all persons involved
|
||||||
|
in these activities are informed of the precautionary statements.
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
ISOXAFLUTOLE
|
||||||
|
THIENCARBAZONE-METHYL
|
||||||
|
HERBICIDE
|
||||||
|
HERBICIDE
|
||||||
|
27
|
||||||
|
2
|
||||||
|
Escanee el código QR para español
|
||||||
|
Scan QR Code for Spanish
|
||||||
|
|
||||||
|
2
|
||||||
|
FIRST AID
|
||||||
|
If Swallowed: • Immediately call a poison control center or doctor for treatment advice.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control center
|
||||||
|
or doctor.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
If in Eyes: • Hold eye open and rinse slowly and gently with water for 15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then continue
|
||||||
|
rinsing.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
If on Skin: • Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
If Inhaled: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
In case of emergency, call the toll-free Bayer CropScience Emergency Response telephone
|
||||||
|
number: 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling a poison control center or doctor, or
|
||||||
|
going for treatment.
|
||||||
|
Note to Physician: No specific antidote is available. All treatments need to be based on observed
|
||||||
|
signs and symptoms of distress in the patient. Overexposure to materials other than this product
|
||||||
|
may have occurred.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if swallowed or absorbed through the skin.
|
||||||
|
• Causes moderate eye irritation.
|
||||||
|
• Avoid contact with eyes, skin, or clothing.
|
||||||
|
• Wash thoroughly with soap and water after handling and before eating, drinking, chewing gum, using
|
||||||
|
tobacco, or using the toilet.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Applicators and other handlers must wear:
|
||||||
|
• Long-sleeved shirt and long pants
|
||||||
|
• Chemical-resistant gloves made of any waterproof material
|
||||||
|
• Shoes plus socks
|
||||||
|
When mixing/loading or cleaning equipment, wear a chemical resistant apron in addition to the other
|
||||||
|
required PPE. Discard clothing and other absorbent materials that have been drenched or heavily
|
||||||
|
contaminated with this product’s concentrate. DO NOT reuse them.
|
||||||
|
ENGINEERING CONTROLS
|
||||||
|
When handlers use closed systems, enclosed cabs in a manner that meets the requirements listed in
|
||||||
|
the Worker Protection Standard (WPS) for agricultural pesticides 40 CFR 170.607(d-f), the handler PPE
|
||||||
|
requirements may be reduced or modified as specified in the WPS.
|
||||||
|
|
||||||
|
3
|
||||||
|
USER SAFETY REQUIREMENTS
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for washables
|
||||||
|
exist, use detergent and hot water. Keep and wash PPE separately from other laundry.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Users should:
|
||||||
|
• Remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly and put
|
||||||
|
on clean clothing.
|
||||||
|
• Remove PPE immediately after handling this product. Wash the outside of gloves before
|
||||||
|
removing. As soon as possible, wash thoroughly and change into clean clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
Non-Target Organism Advisory
|
||||||
|
This product is toxic to plants and may adversely impact the forage and habitat of non-target organisms,
|
||||||
|
including pollinators, in areas adjacent to the treated site. Protect the forage and habitat of non-target
|
||||||
|
organisms by following label directions intended to minimize spray drift.
|
||||||
|
Drift or runoff may adversely affect non-target plants. Drift and runoff may be hazardous to aquatic
|
||||||
|
organism in neighboring areas. DO NOT apply directly to water, to areas where surface water is present or to
|
||||||
|
intertidal areas below the mean high water mark. DO NOT contaminate water when disposing of equipment
|
||||||
|
washwaters or rinsate.
|
||||||
|
DO NOT apply when weather conditions favor drift from treated areas. DO NOT use the same spray
|
||||||
|
equipment for other purposes unless thoroughly cleaned. DO NOT contaminate water used for irrigation or
|
||||||
|
domestic purposes.
|
||||||
|
CORVUS® Herbicide contains isoxaflutole which is known to leach through soil into shallow ground water
|
||||||
|
under certain conditions as a result of agricultural use. Use of CORVUS Herbicide in areas where soils are
|
||||||
|
permeable, particularly where the water table is shallow, may result in ground water contamination.
|
||||||
|
This product can contaminate surface water through spray drift. Under some conditions, product residues
|
||||||
|
may also have a high potential for runoff into surface water (primarily via dissolution in runoff water), for
|
||||||
|
several weeks after application. These include poorly draining or wet soils with readily visible slopes toward
|
||||||
|
adjacent surface waters, frequently flooded areas, areas over-laying extremely shallow ground water, areas
|
||||||
|
with in-field canals or ditches that drain to surface water, areas not separated from adjacent surface waters
|
||||||
|
with vegetated filter strips and areas over-laying tile drainage systems that drain to surface water.
|
||||||
|
A level, well maintained vegetative buffer strip between areas to which this product is applied and surface
|
||||||
|
water features such as ponds, streams, and springs will reduce the potential loading of these chemicals from
|
||||||
|
runoff water and sediment. Runoff of this product will be reduced by avoiding applications when rainfall is
|
||||||
|
forecasted to occur within 48 hours.
|
||||||
|
In fields having sands, loamy sands and sandy loam soils, special care must be taken not to over-irrigate
|
||||||
|
since substantial over-irrigation promotes the leaching of chemicals.
|
||||||
|
This pesticide is toxic to some plants at very low concentrations. Non-target plants may be adversely
|
||||||
|
affected if the pesticide is allowed to drift from areas of application. Exposure to isoxaflutole residues may
|
||||||
|
injure or kill susceptible plants. Symptoms of phytotoxicity as a result of exposure to isoxaflutole include
|
||||||
|
whitening or chlorosis of the foliage of affected plants. Cotton is particularly susceptible to isoxaflutole;
|
||||||
|
therefore, exposure of cotton to isoxaflutole residues may affect cotton yield. To prevent damage to crops and
|
||||||
|
other desirable plants, read and follow all directions and precautions on this label before using.
|
||||||
|
The chemicals in this product have properties and characteristics associated with chemicals detected in
|
||||||
|
ground water. These chemicals may leach into ground water if used in areas where soils are permeable,
|
||||||
|
particularly where the water table is shallow. This product may impact surface water quality due to runoff of
|
||||||
|
rain water. This is especially true for poorly draining soils and soils with shallow ground water. This product
|
||||||
|
is classified as having high potential for reaching surface water via runoff, according to the pesticide’s mean
|
||||||
|
soil partition coefficient (Kd) for several days after application.
|
||||||
|
This product may not be mixed or loaded within 50 feet of any wells (including abandoned wells and
|
||||||
|
drainage wells), sink holes, perennial or intermittent streams and rivers, and natural or impounded lakes and
|
||||||
|
reservoirs. This setback does not apply to properly capped or plugged abandoned wells and does not apply
|
||||||
|
to impervious pad or properly diked mixing/loading areas.
|
||||||
|
Operations that involve mixing, loading, rinsing or washing of this product into or from pesticide handling
|
||||||
|
or application equipment or containers within 50 feet of any well are prohibited unless conducted on an
|
||||||
|
impervious pad constructed to withstand the weight of the heaviest load that may be positioned on or moved
|
||||||
|
|
||||||
|
4
|
||||||
|
across the pad. Such a pad shall be designed and maintained to contain any product spills or equipment
|
||||||
|
leaks, container or equipment rinse or washwater and rainwater that may fall on the pad. Surface water
|
||||||
|
shall not be allowed to either flow over or from the pad, which means the pad must be self-contained. The
|
||||||
|
pad shall be sloped to facilitate material removal. An unroofed pad shall be of sufficient capacity to contain
|
||||||
|
at a minimum 110% of the capacity of the largest pesticide container or application equipment on the pad.
|
||||||
|
A pad that is covered by a roof of sufficient size to exclude completely precipitation from contact shall be
|
||||||
|
of sufficient capacity to contain at a minimum of 100% of the capacity of the largest pesticide container
|
||||||
|
or application equipment on the pad. Containment capacities as described above shall be maintained at
|
||||||
|
all times. The above specific minimum containment capacities do not apply to vehicles when delivering
|
||||||
|
pesticide shipments to the mixing/loading site. States may have in effect additional requirements regarding
|
||||||
|
wellhead setbacks and operational containment.
|
||||||
|
Product must be used in a manner which will prevent back siphoning in wells, spills or improper disposal of
|
||||||
|
excess pesticide, spray mixtures or rinsates.
|
||||||
|
Endangered Species Advisory/Protection Requirements
|
||||||
|
This product may have effects on federally listed threatened or endangered species or their critical
|
||||||
|
habitat in some locations. When using this product, you must follow the measures contained in
|
||||||
|
the Endangered Species Protection Bulletin for the county or parish in which you are applying the
|
||||||
|
pesticide. To determine whether your county or parish has a Bulletin, and to obtain that Bulletin, consult
|
||||||
|
http://www.epa.gov/espp/, or call 1-800-447-3813 no more than 6 months before using this product.
|
||||||
|
Applicators must use Bulletins that are in effect in the month in which the pesticide will be applied. New
|
||||||
|
Bulletins will be available from the above sources 6 months prior to their effective dates.
|
||||||
|
PHYSICAL OR CHEMICAL HAZARDS
|
||||||
|
DO NOT use or store near heat or open flame.
|
||||||
|
CONDITIONS OF SALE AND LIMITATIONS
|
||||||
|
OF WARRANTY AND LIABILITY
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability before
|
||||||
|
using this product. If terms are not acceptable, return the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must be followed
|
||||||
|
carefully. However, it is impossible to eliminate all risks associated with the use of this product. Crop
|
||||||
|
injury, ineffectiveness or other unintended consequences may result because of such factors as weather
|
||||||
|
conditions, presence of other materials, or the manner of use or application, all of which are beyond the
|
||||||
|
control of Bayer CropScience. To the extent consistent with applicable law, all such risks shall be assumed
|
||||||
|
by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE
|
||||||
|
MAKES NO OTHER WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL.
|
||||||
|
No agent of Bayer CropScience is authorized to make any warranties beyond those contained herein or
|
||||||
|
to modify the warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER
|
||||||
|
CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL
|
||||||
|
DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, THE EXCLUSIVE REMEDY
|
||||||
|
OF THE USER OR BUYER FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR
|
||||||
|
HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY
|
||||||
|
OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE’S ELECTION,
|
||||||
|
THE REPLACEMENT OF PRODUCT.
|
||||||
|
|
||||||
|
5
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
DO NOT apply this product in a way that will contact workers or other persons, either directly or through
|
||||||
|
drift. Only protected handlers may be in the area during application. For any requirements specific to your
|
||||||
|
State or Tribe, consult the agency responsible for pesticide regulation.
|
||||||
|
For Important crop safety information, refer to the Use Directions section under the specific crop.
|
||||||
|
In Minnesota, this product must only be used in accordance with the Minnesota Product Bulletin.
|
||||||
|
The Minnesota Product Bulletin, which accompanies the sale and packaging of the product, must be in
|
||||||
|
possession of the user at the time of pesticide application.
|
||||||
|
In Wisconsin, this product must only be used in accordance with the Wisconsin Product Bulletin.
|
||||||
|
The Wisconsin Product Bulletin, which accompanies the sale and packaging of the product, must be in
|
||||||
|
possession of the user at the time of pesticide application.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection Standard,
|
||||||
|
40 CFR part 170. This Standard contains requirements for the protection of agricultural
|
||||||
|
workers on farms, forests, nurseries, and greenhouses and handlers of agricultural pesticides.
|
||||||
|
It contains requirements for training, decontamination, and emergency assistance. It also
|
||||||
|
contains specific instructions and exceptions pertaining to the statements on this label about
|
||||||
|
personal protective equipment (PPE), notification to workers, and restricted-entry interval.
|
||||||
|
The requirements in this box only apply to uses of this product that are covered by the Worker
|
||||||
|
Protection Standard.
|
||||||
|
DO NOT enter or allow worker entry into treated areas during the restricted entry interval
|
||||||
|
(REI) of 12 hours.
|
||||||
|
PPE required for early entry to treated areas (that is permitted under the Worker Protection
|
||||||
|
Standard and that involves contact with anything that has been treated, including plants,
|
||||||
|
soil, or water), is:
|
||||||
|
• Coveralls over long-sleeved shirt and pants
|
||||||
|
• Chemical-resistant gloves made of any waterproof material
|
||||||
|
• Socks plus shoes
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
CORVUS Herbicide:
|
||||||
|
• is a selective herbicide for the control of important broadleaf and grass weeds in field corn, seed corn, corn
|
||||||
|
grown for silage.
|
||||||
|
• is formulated as a suspension concentrate containing 2.63 pounds of active ingredients per gallon
|
||||||
|
[0.75 lbs Thiencarbazone-methyl a.i., 1.88 lbs Isoxaflutole a.i.].
|
||||||
|
• has multiple modes of actions: the first, inhibiting of enzymes that are essential to the protection of chlorophyll
|
||||||
|
in plant leaves, and a second blocking the plant’s synthesis of certain amino acids/protein synthesis.
|
||||||
|
• is effective in controlling glyphosate-, triazine-, PPO- , ALS- and auxin- herbicide resistant populations of
|
||||||
|
weed species.
|
||||||
|
APPLICATION INSTRUCTIONS
|
||||||
|
CORVUS Herbicide:
|
||||||
|
• may be used in either conventional, conservation tillage, or no-till crop management systems.
|
||||||
|
• may be applied preplant [surface–applied or incorporated (less than 2” deep)], preemergence or early
|
||||||
|
postemergence.
|
||||||
|
• will provide its most effective weed control when applied and subsequently moved into the soil by rainfall,
|
||||||
|
sprinkler irrigation or mechanical tillage prior to weed emergence.
|
||||||
|
• may be tank mixed or applied in sequential applications with other herbicides to control additional weeds
|
||||||
|
• may be applied using either water or sprayable grade fluid fertilizer as a liquid carrier.
|
||||||
|
• may be applied by ground application only. Aerial application is not permitted.
|
||||||
|
• may be applied as either a broadcast spray or as a band application.
|
||||||
|
|
||||||
|
6
|
||||||
|
NOTE: Thoroughly mix contents before use and application. Recirculate or mix the product for at least
|
||||||
|
5 minutes prior to each use. For large containers, 15 gallons containers or more, mix the product with the
|
||||||
|
built-in mixer for 5-10 minutes before each use.
|
||||||
|
Refer to the ‘Specific Use Directions’ section of the label for application timing information specific from
|
||||||
|
each registered use of CORVUS Herbicide.
|
||||||
|
Ground Application (Banding)
|
||||||
|
Banding application equipment must be carefully calibrated to prevent crop exposure to concentrations of
|
||||||
|
CORVUS Herbicide that exceed the labeled rate for the soil type. It is critical to insure that the calibrated
|
||||||
|
band width equates to actual band width realized in field applications. Bands actually delivered at a width
|
||||||
|
narrower than targeted will concentrate the product and increase the risk for crop response.
|
||||||
|
Even flat spray tip nozzles and a band width of no less than 12” must be used.
|
||||||
|
Apply a broadcast equivalent rate and volume per acre. The following equations may be used to make the
|
||||||
|
required calculations as follows:
|
||||||
|
band width (inches)
|
||||||
|
row width (inches) * broadcast rate per acre = banding rate per acre
|
||||||
|
band width (inches)
|
||||||
|
row width (inches)
|
||||||
|
* broadcast spray volume per acre = banding spray
|
||||||
|
volume per acre
|
||||||
|
Ground Application (Broadcast)
|
||||||
|
Apply CORVUS Herbicide either alone or in tank mixtures in a minimum of 10 gallons of spray mixture per
|
||||||
|
acre. Uniform, thorough spray coverage is important to achieve consistent weed control. Keep the spray
|
||||||
|
boom at the lowest possible spray height above the target surface. Refer to the nozzle manufacturer’s
|
||||||
|
specifications for proper nozzle, pressure setting and sprayer speed for optimum product performance and
|
||||||
|
minimal spray drift. Uneven application, sprayers not properly calibrated, or improper incorporation may
|
||||||
|
decrease the level of weed control and/or increase the level of adverse crop response. Maintain a constant
|
||||||
|
ground speed while applying this product to ensure proper distribution. DO NOT overlap spray patterns
|
||||||
|
beyond equipment manufacturers specifications as excessive rates may result in adverse crop responses
|
||||||
|
and potential stand loss. Maintain adequate agitation at all times, including momentary stops.
|
||||||
|
USE RESTRICTIONS
|
||||||
|
• Use on coarse textured soils with a shallow water table – All Registered Uses:
|
||||||
|
o In the states of AL, AR, CO, DE, GA, KS, KY, LA, MD, MO, MS, NC, NM, OK, SC, TN, TX, VA, and WV if the
|
||||||
|
water table (i.e, level of saturation) is less than 25 feet below the ground surface, DO NOT use on soils
|
||||||
|
meeting all three of the following criteria. If the water table depth is unknown, DO NOT use on any
|
||||||
|
of the soils meeting all three of the following criteria. If less than three criteria are met or the water
|
||||||
|
table is greater than 25 feet below the ground surface, there is no restriction against application:
|
||||||
|
The surface soil texture is loamy sand or sand
|
||||||
|
The subsoil texture is loamy sand or sand
|
||||||
|
The average organic matter (in the upper 12 inches) is less than 2% by weight
|
||||||
|
o In the states of IA, IL, IN, MI, MT, ND, NE, NJ, OH, PA, SD, and WY, if the water table (i.e, level of saturation)
|
||||||
|
is less than 25 feet below the ground surface, DO NOT use on soils meeting all three of the following
|
||||||
|
criteria. If the water table depth is unknown, DO NOT use on any of the soils meeting all three of the
|
||||||
|
following criteria. If less than three criteria are met or the water table is greater than 25 feet below
|
||||||
|
the ground surface, there is no restriction against application:
|
||||||
|
The surface soil texture is sandy loam, loamy sand or sand
|
||||||
|
The subsoil texture is loamy sand or sand
|
||||||
|
The average organic matter (in the upper 12 inches) is less than 2% by weight
|
||||||
|
|
||||||
|
7
|
||||||
|
For the state of Kansas (KS) only:
|
||||||
|
If the water table (i.e., level of saturation) is less than 25 feet below the ground surface, DO NOT
|
||||||
|
apply to the following vulnerable loamy sand or sand soils. If the water table is unknown, DO NOT
|
||||||
|
apply CORVUS Herbicide to a restricted soil.
|
||||||
|
Aline Els Haxtun Lincoln Thurman
|
||||||
|
Bankard Elsmere Inavale Pratt Tivoli
|
||||||
|
Dillwyn Goltry Kanza Sarpy Valent
|
||||||
|
Dix Goodnight Las Animas Schamber Valentine
|
||||||
|
Dwyer Gracemore Likes Simeon
|
||||||
|
If a field contains several soil types, one of which is a vulnerable soil listed above, and the water
|
||||||
|
table is less than 25 feet, DO NOT apply CORVUS Herbicide.
|
||||||
|
For the state of Missouri (MO) only:
|
||||||
|
In the state of MO, DO NOT use in the following counties: Butler, Cape Girardeau, Dunklin,
|
||||||
|
Mississippi, New Madrid, Pemiscot, Scott, and Stoddard. If the water table (i.e., level of saturation)
|
||||||
|
is less than 25 feet below the ground surface, do not apply to the following vulnerable loamy sand
|
||||||
|
or sand soils. If the water table is unknown, do not apply CORVUS Herbicide to a restricted soil.
|
||||||
|
Alvin Carr Eustis Malden Scotco
|
||||||
|
Beulah Clana Finchford Plainfield Shelldrake
|
||||||
|
Bruno Crevasse Hodge Sandbur Sparta
|
||||||
|
Canalou Diehlstadt Landes Sarpy Wideman
|
||||||
|
If a field contains several soil types, one of which is a vulnerable soil listed above, and the water
|
||||||
|
table is less than 25 feet, do not apply CORVUS Herbicide.
|
||||||
|
• DO NOT apply more than 5.6 fluid oz (0.082lbs of isoxaflutole, 0.033lbs of thiencarabzone-methyl) of
|
||||||
|
CORVUS Herbicide per 365 day period or exceed the maximum labeled rate for any given soil type.
|
||||||
|
• DO NOT apply this product using aerial application equipment.
|
||||||
|
• DO NOT apply this product through any type of irrigation system.
|
||||||
|
• DO NOT use flood or furrow irrigation to apply, activate or incorporate this product.
|
||||||
|
• DO NOT allow cover crops in fields treated with CORVUS Herbicide to be grazed by livestock or harvested
|
||||||
|
for food.
|
||||||
|
• DO NOT apply solo HPPD inhibitor postmergence herbicides to corn that has been treated with CORVUS
|
||||||
|
Herbicide in the same year.
|
||||||
|
• DO NOT use COC, MSO, or a loaded glyphosate formulation with CORVUS Herbicide applied to emerged
|
||||||
|
field corn.
|
||||||
|
• To prevent off-site movement of soil containing this product to non-target areas, DO NOT apply CORVUS
|
||||||
|
Herbicide to areas receiving less than 15 inches of average annual precipitation unless supplemented to
|
||||||
|
at least the equivalent of 15 inches of annual precipitation with irrigation water.
|
||||||
|
• In Minnesota, this product must only be used in accordance with the Minnesota Product Bulletin.
|
||||||
|
The Minnesota Product Bulletin, which accompanies the sale and packaging of the product, must be in
|
||||||
|
possession of the user at the time of pesticide application.
|
||||||
|
• In Wisconsin, this product must only be used in accordance with the Wisconsin Product Bulletin. The
|
||||||
|
Wisconsin Product Bulletin, which accompanies the sale and packaging of the product, must be in
|
||||||
|
possession of the user at the time of pesticide application.
|
||||||
|
Refer to the specific use directions and restrictions in each specific crop section.
|
||||||
|
USE PRECAUTIONS
|
||||||
|
• Application of CORVUS Herbicide at less than specified rates for the appropriate soil will only provide
|
||||||
|
suppression of sensitive weeds.
|
||||||
|
HERBICIDE RESISTANCE MANAGEMENT
|
||||||
|
For resistance management, please note that CORVUS Herbicide contains both a Group 2 and a Group 27 herbicide.
|
||||||
|
Any weed population may contain plants naturally resistant to Group 2 and/or Group 27 herbicides. The resistant
|
||||||
|
individuals may dominate the weed population if these herbicides are used repeatedly in the same fields.
|
||||||
|
Appropriate resistance-management strategies must be followed.
|
||||||
|
|
||||||
|
8
|
||||||
|
To delay herbicide resistance take one or more of the following steps:
|
||||||
|
• Rotate the use of CORVUS Herbicide or other Group 2 and Group 27 herbicides within a growing season
|
||||||
|
sequence or among growing seasons with different herbicide groups that control the same weeds in a
|
||||||
|
field.
|
||||||
|
• Use tank mixtures with herbicides from a different group if such use is permitted; where information
|
||||||
|
on resistance in target weed species is available, use the less resistance-prone partner at a rate that
|
||||||
|
will control the target weed(s) equally as well as the more resistance-prone partner. Consult your local
|
||||||
|
extension service or certified crop advisor if you are unsure as to which active ingredient is currently less
|
||||||
|
prone to resistance.
|
||||||
|
• Adopt an integrated weed-management program for herbicide use that includes scouting and uses
|
||||||
|
historical information related to herbicide use and crop rotation, and that considers tillage (or other
|
||||||
|
mechanical control methods), cultural (e.g., higher crop seeding rates; precision fertilizer application
|
||||||
|
method and timing to favor the crop and not the weeds), biological (weed-competitive crops or varieties)
|
||||||
|
and other management practices.
|
||||||
|
• Scout before and after herbicide application to monitor weed populations for early signs of resistance
|
||||||
|
development. Indicators of possible herbicide resistance include: (1) failure to control a weed species
|
||||||
|
normally controlled by the herbicide at the dose applied, especially if control is achieved on adjacent
|
||||||
|
weeds; (2) a spreading patch of non-controlled plants of a particular weed species; (3) surviving plants
|
||||||
|
mixed with controlled individuals of the same species. If resistance is suspected, prevent weed seed
|
||||||
|
production in the affected area by an alternative herbicide from a different group or by a mechanical
|
||||||
|
method including hoeing or tillage. Prevent movement of resistant weed seeds to other fields by cleaning
|
||||||
|
harvesting and tillage equipment when moving between fields, and planting clean seed.
|
||||||
|
• If a weed pest population continues to progress after treatment with this product, discontinue use of
|
||||||
|
this product, and switch to another management strategy or herbicide with a different mode of action, if
|
||||||
|
available.
|
||||||
|
• Contact your local extension specialist or certified crop advisors for additional pesticide resistance-management
|
||||||
|
and/or integrated weed-management recommendations for specific crops and weed biotypes.
|
||||||
|
• For further information or to report suspected resistance contact Bayer CropScience at 1-866-99BAYER
|
||||||
|
(1-866-992-2937). You can also contact your pesticide distributor or university extension specialist to
|
||||||
|
report resistance.
|
||||||
|
|
||||||
|
9
|
||||||
|
SPRAY DRIFT MANAGEMENT
|
||||||
|
Mandatory Spray Drift Requirements
|
||||||
|
DO NOT aerially apply this product.
|
||||||
|
Ground Applications
|
||||||
|
• Apply with the nozzle height directed by the manufacturer, but no more than 3 feet above the ground or crop canopy.
|
||||||
|
• For all applications, applicators are required to use a medium or coarser spray droplet size (ASAE S572.3).
|
||||||
|
• DO NOT apply when wind speeds exceed 15 miles per hour at the application site.
|
||||||
|
• DO NOT apply during temperature inversions.
|
||||||
|
Boom-less Ground Applications:
|
||||||
|
• Applicators are required to use a medium or coarser droplet size (ASAE S572.3) for all applications.
|
||||||
|
• DO NOT apply when wind speeds exceed 15 miles per hour at the application site.
|
||||||
|
• DO NOT apply during temperature inversions.
|
||||||
|
Spray Drift Advisories
|
||||||
|
• THE APPLICATOR IS RESPONSIBLE FOR AVOIDING OFF-SITE SPRAY DRIFT.
|
||||||
|
• BE AWARE OF NEARBY NON-TARGET SITES AND ENVIRONMENTAL CONDITIONS.
|
||||||
|
• IMPORTANCE OF DROPLET SIZE
|
||||||
|
An effective way to reduce spray drift is to apply large droplets. Use the largest droplets that provide target pest
|
||||||
|
control. While applying larger droplets will reduce spray drift, the potential for drift will be greater if applications are
|
||||||
|
made improperly or under unfavorable environmental conditions.
|
||||||
|
Controlling Droplet Size - Ground Boom
|
||||||
|
Volume - Increasing the spray volume so that larger droplets are produced will reduce spray drift. Use the
|
||||||
|
highest practical spray volume for the application. If a greater spray volume is needed, consider using a nozzle
|
||||||
|
with a higher flow rate.
|
||||||
|
Pressure - Use the lowest spray pressure directed for the nozzle to produce the target spray volume and
|
||||||
|
droplet size.
|
||||||
|
Spray Nozzle - Use a spray nozzle that is designed for the intended application. Consider using nozzles
|
||||||
|
designed to reduce drift.
|
||||||
|
• BOOM HEIGHT - Ground Boom
|
||||||
|
Use the lowest boom height that is compatible with the spray nozzles that will provide uniform coverage.
|
||||||
|
For ground equipment, the boom should remain level with the crop and have minimal bounce.
|
||||||
|
• SHIELDED SPRAYERS
|
||||||
|
Shielding the boom or individual nozzles can reduce spray drift. Consider using shielded sprayers. Verify that the
|
||||||
|
shields are not interfering with the uniform deposition of the spray on the target area.
|
||||||
|
• TEMPERATURE AND HUMIDITY
|
||||||
|
When making applications in hot and dry conditions, use larger droplets to reduce effects of evaporation.
|
||||||
|
• TEMPERATURE INVERSIONS
|
||||||
|
Drift potential is high during a temperature inversion. Temperature inversions are characterized by increasing
|
||||||
|
temperature with altitude and are common on nights with limited cloud cover and light to no wind. The presence
|
||||||
|
of an inversion can be indicated by ground fog or by the movement of smoke from a ground source or an aircraft
|
||||||
|
smoke generator. Smoke that layers and moves laterally in a concentrated cloud (under low wind conditions)
|
||||||
|
indicates an inversion, while smoke that moves upward and rapidly dissipates indicates good vertical air mixing.
|
||||||
|
Avoid applications during temperature inversions.
|
||||||
|
• WIND
|
||||||
|
Drift potential generally increases with wind speed. AVOID APPLICATIONS DURING GUSTY WIND CONDITIONS.
|
||||||
|
Applicators need to be familiar with local wind patterns and terrain that could affect spray drift.
|
||||||
|
• Boom-less Ground Applications:
|
||||||
|
Setting nozzles at the lowest effective height will help to reduce the potential for spray drift.
|
||||||
|
• Handheld Technology Applications:
|
||||||
|
Take precautions to minimize spray drift.
|
||||||
|
COMPATIBILITY TESTING AND TANK MIX PARTNERS
|
||||||
|
Compatibility
|
||||||
|
If CORVUS Herbicide is to be tank mixed with liquid fertilizers or other pesticides, compatibility needs to be
|
||||||
|
tested prior to mixing. To test for compatibility, use a small container and mix a small amount (0.5 to 1 qt)
|
||||||
|
of spray, combining all ingredients in the same ratio as the anticipated use. If any indications of physical
|
||||||
|
incompatibility develop, DO NOT use this mixture for spraying. Indications of incompatibility usually will
|
||||||
|
appear within 5-15 minutes after mixing. Read and follow all parts of the label of each tank-mix product.
|
||||||
|
It is the pesticide user’s responsibility to ensure that all products are registered for the intended use. Read
|
||||||
|
and follow the applicable restrictions and limitations and direc tions for use on all product labels involved in
|
||||||
|
tank mixing. Users must follow the most restrictive directions for use and precautionary statements of each
|
||||||
|
product in the tank mixture.
|
||||||
|
Order of Mixing
|
||||||
|
CORVUS Herbicide may be used with other specified pesticides, fertilizers, and micronutrients.
|
||||||
|
|
||||||
|
10
|
||||||
|
The proper mixing procedure for CORVUS Herbicide application with water or liquid fertilizer as a carrier:
|
||||||
|
1. Fill the spray tank 1/4 to 1/2 of the required volume of water or liquid fertilizer prior to the addition of
|
||||||
|
CORVUS Herbicide.
|
||||||
|
2. Add the proper amount of CORVUS Herbicide, then add the rest of the water or liquid fertilizer to the
|
||||||
|
desired level.
|
||||||
|
3. Maintain sufficient agitation to ensure a uniform spray mixture during application.
|
||||||
|
4. If CORVUS Herbicide is applied in a tank mixture with other pesticides, add CORVUS Herbicide to the spray
|
||||||
|
tank first and ensure it is thoroughly dispersed before adding other pesticides.
|
||||||
|
5. Continue to fill the tank with carrier to the desired volume while agitating. Continue agitation during
|
||||||
|
application to ensure a uniform spray mixture.
|
||||||
|
RE-SUSPENDING SC PRODUCTS IN SPRAY SOLUTION
|
||||||
|
Like other suspension concentrates (SC’s), CORVUS Herbicide will settle if left standing without agitation.
|
||||||
|
If the spray solution is allowed to settle for one hour or more, reagitate the spray solution for a minimum of
|
||||||
|
10 minutes before application.
|
||||||
|
Equipment Cleanup Procedures
|
||||||
|
To avoid injury or exposure to non-target crops, thoroughly clean all mixing and spray equipment, including
|
||||||
|
pumps, nozzles, lines and screens with a good quality tank cleaner, on approved rinse pad or on the field site
|
||||||
|
where an approved crop is to be grown. Mix only as much cleaning solution as needed.
|
||||||
|
1. Flush tank, hoses, boom and nozzles with clean water.
|
||||||
|
2. Use a pressure washer with a high quality commercial spray tank cleaner in water to clean the inside of the
|
||||||
|
spray tank. Take care to wash all parts of the tank, including the inside top surface. If a pressure washer is
|
||||||
|
not available, completely fill the sprayer with the cleaning solution to ensure contact of the cleaning solution
|
||||||
|
with all internal surfaces of the tank and plumbing. Start agitation in the sprayer and thoroughly recirculate
|
||||||
|
the cleaning solution for at least 15 minutes. All visible deposits must be removed from the spraying system.
|
||||||
|
3. Flush hoses, spray lines, and nozzles for at least 1 minute with the cleaning solution.
|
||||||
|
4. Dispose of rinsate from steps 1-3 in an appropriate manner.
|
||||||
|
5. Repeat steps 2-4.
|
||||||
|
6. Remove nozzles, screens and strainers and clean separately in the cleaning solution after completing the
|
||||||
|
above procedures.
|
||||||
|
7. Rinse the complete spraying system with clean water.
|
||||||
|
8. For cleanup, use an approved rinse pad or the field site where an approved crop is to be grown.
|
||||||
|
ROTATIONAL CROPS
|
||||||
|
Rotational crops vary in their response to low concentrations of CORVUS Herbicide remaining in the soil. The
|
||||||
|
amount of CORVUS Herbicide that may be present in the soil depends on soil moisture, soil temperature,
|
||||||
|
application rate, elapsed time since application and other environmental factors. When CORVUS Herbicide
|
||||||
|
is used in combination with other products, always follow the most restrictive rotational crop requirements.
|
||||||
|
The following rotational crops may be planted after applying CORVUS Herbicide.
|
||||||
|
Crop Rotational Interval2
|
||||||
|
Minimum Precipitation
|
||||||
|
Requirement1
|
||||||
|
Field corn 0 Months None
|
||||||
|
Wheat, Triticale, Cereal and rye 4 Months None
|
||||||
|
Barley, Soybean,
|
||||||
|
Sweet corn3, Popcorn3 9 Months
|
||||||
|
15 inches of cumulative
|
||||||
|
precipitation from application to
|
||||||
|
planting of rotational crop
|
||||||
|
Rice3, Cotton3 10 Months
|
||||||
|
15 inches of cumulative
|
||||||
|
precipitation from application to
|
||||||
|
planting of rotational crop
|
||||||
|
Peanuts3 11 Months
|
||||||
|
15 inches of cumulative
|
||||||
|
precipitation from application to
|
||||||
|
planting of rotational crop
|
||||||
|
Tobacco3 12 Months
|
||||||
|
15 inches of cumulative
|
||||||
|
precipitation from application to
|
||||||
|
planting of rotational crop
|
||||||
|
Alfalfa, Green and Dry Beans, Oats,
|
||||||
|
Sorghum4, Sunflower, Canola, Potato,
|
||||||
|
Sugar beet and all other crops5
|
||||||
|
17 Months3
|
||||||
|
30 inches of cumulative
|
||||||
|
precipitation from application to
|
||||||
|
planting of rotational crop
|
||||||
|
|
||||||
|
11
|
||||||
|
1 The amount of cumulative precipitation required before planting a rotational crop is in addition to the required rotational
|
||||||
|
interval given in months. Furrow or flood irrigation must not to be included in total. No more than 7 inches of overhead
|
||||||
|
irrigation must be included in total.
|
||||||
|
2 Crop varieties planted back at intervals of one year or less must not have known acute sensitivity to ALS-inhibiting
|
||||||
|
and/or SU herbicides.
|
||||||
|
3 When soil pH is 7.5 or above, crop plant back needs to be delayed to 17 months and to 24 months for crops listed in
|
||||||
|
the 17 month interval above.
|
||||||
|
4 For CORVUS Herbicide used at 2.25 - 3.3 fl oz. per acre or less and the total of Thiencarbazone-methyl from all sources
|
||||||
|
is 0.014 pounds active ingredient per acre or less, sorghum can be planted at the 9 month or longer interval.
|
||||||
|
5 All other crops may be seeded only after the completion of a successful bioassay after a CORVUS Herbicide application.
|
||||||
|
Refer to the “Field/Small Scale Bioassay” section.
|
||||||
|
In the event of crop failure: If the corn crop treated with CORVUS Herbicide is lost, only field corn and corn
|
||||||
|
grown for silage may be replanted immediately. DO NOT make an additional application of CORVUS Herbicide.
|
||||||
|
Cover Crops
|
||||||
|
Use of cover crops as a means of soil improvement, erosion control, weed and/or insect suppression, etc.,
|
||||||
|
following harvest of corn in the Fall is increasing. Planting of cover crops in fields treated with CORVUS
|
||||||
|
Herbicide is allowed as long as these cover crops are not grazed by livestock nor harvested for food. Cover
|
||||||
|
crops are to be tilled under or chemically controlled with burndown herbicides in the spring. Many cover
|
||||||
|
crops can be planted within 90-120 days after application of CORVUS Herbicide. However, all potential cover
|
||||||
|
crops have not been evaluated for sensitivity to CORVUS Herbicide and significant injury may occur. Prior to
|
||||||
|
seeding a cover crop, complete a successful field/small scale bioassay to provide an indication of the level
|
||||||
|
of sensitivity to the prior CORVUS Herbicide application. Refer to the “Field/Small Scale Bioassay” section.
|
||||||
|
If used in tank mixtures with other herbicides, always follow the most restrictive label.
|
||||||
|
Field/Small Scale Bioassay
|
||||||
|
A field/small scale bioassay must be completed before rotating to a cover crop other than those specified in
|
||||||
|
the “Rotational Crop Restrictions” section of this label. To conduct an effective field bioassay, grow strips of
|
||||||
|
the crop(s) you intend to grow the following season in a field previously treated with CORVUS Herbicide. The
|
||||||
|
test strip must be placed in a controlled area and must include low areas and knolls, and include variations
|
||||||
|
in soil including type and pH. Crop response to the bioassay will determine if the crop(s) grown in the test
|
||||||
|
strips can be grown safely in the areas previously treated with CORVUS Herbicide.
|
||||||
|
For an effective small scale bioassay, collect uniform samples of all soil types from the CORVUS
|
||||||
|
Herbicide-treated field (see example above for types of soil in the sample) and place the soil into a sturdy
|
||||||
|
container. Plant the desired cover crop into the soil, apply water and place the container in a warm sunny
|
||||||
|
area to allow germination and growth of the crop. Monitor growth of the cover crop over a three to four
|
||||||
|
week period. If the crop emerges and grows normally, the risk to establish and grow the cover crop in the
|
||||||
|
CORVUS Herbicide-treated field must be acceptable.
|
||||||
|
WEEDS CONTROLLED
|
||||||
|
CORVUS Herbicide applied as directed in this label will control or suppress the weeds listed below.
|
||||||
|
Additional weeds may be controlled with tank mixtures or sequential applications (refer to the Tank Mix
|
||||||
|
Instructions and Sequential Application Instructions sections of this label). Always refer to the tank mix
|
||||||
|
partner labels for specific use rates and additional directions.
|
||||||
|
BROADLEAF WEEDS
|
||||||
|
Amaranth, palmer Mallow, Venice Ragweed, common
|
||||||
|
Buffalobur Marestail Ragweed, giant 2,3,4
|
||||||
|
Burcucumber2 Medic, black 2,3 Russian thistle
|
||||||
|
Buttercup, small flower Morningglory, annual 2,3,4 Sesbania, hemp
|
||||||
|
Carpetweed Mustard, wild Shepherd’s-purse
|
||||||
|
Chamomile spp Nightshade, black Sicklepod 2,3,4
|
||||||
|
Chickweed, common Nightshade, eastern black Sida, prickly
|
||||||
|
Clover, purple 2,3,4 Nightshade, hairy Smartweed, Penn.
|
||||||
|
Clover, white 2,3,4 Pennycress, field Smartweed, ladysthumb
|
||||||
|
Cocklebur 2,3,4 Pepperweed, Virginia Speedwell, corn 2,3
|
||||||
|
Copperleaf, Hophornbeam Pigweed, prostrate Spurge, toothed
|
||||||
|
Dandelion, (seedling) Pigweed, redroot Sunflower, wild 2,3,4
|
||||||
|
|
||||||
|
12
|
||||||
|
Deadnettle, purple Pigweed, smooth Velvetleaf
|
||||||
|
Galinsoga Pigweed, tumble Vetch, bird 2,3,4
|
||||||
|
Henbit Plantain, broadleaf Violet, field 2,3,4
|
||||||
|
Jimsonweed Puncturevine, common Waterhemp, tall
|
||||||
|
Kochia Purslane, common Waterhemp, common
|
||||||
|
Lambsquarters, common Radish, wild
|
||||||
|
GRASS/SEDGE WEEDS
|
||||||
|
Barnyardgrass Foxtail, robust white Oat, tame
|
||||||
|
Bluegrass, annual 2,3 Foxtail, robust purple Oat, wild
|
||||||
|
Crabgrass, large Foxtail, yellow Panicum, fall
|
||||||
|
Crabgrass, smooth Goosegrass Panicum, Texas 2
|
||||||
|
Cupgrass, woolly 1 Johnsongrass, seedling Sandbur, field 2
|
||||||
|
Foxtail, bristly Millet, browntop Shattercane1
|
||||||
|
Foxtail, giant Millet, wild proso 2 Signalgrass, broadleaf
|
||||||
|
Foxtail, green Nutsedge, yellow 2,3 Witchgrass1
|
||||||
|
1 These weeds may require an appropriate sequential postemergence herbicide treatment for control of late season
|
||||||
|
escapes.
|
||||||
|
2 These weeds will be partially controlled. Partially controlled weeds will be reduced competition by stunted growth
|
||||||
|
and/or reduced populations as compared to non-treated areas. Commercially acceptable control may require the
|
||||||
|
application of an appropriate preemergence tank mixture or sequential postemergence herbicide treatment.
|
||||||
|
3 Control of these weeds can be gained with the addition of an approved label rate of atrazine.
|
||||||
|
4 These weeds may require a postemergence application of DiFlexx ® Herbicide (dicamba, EPA# 264-1173) or other
|
||||||
|
appropriate postemergence herbicides.
|
||||||
|
SPECIFIC USE DIRECTIONS
|
||||||
|
CORN (Field Corn, Seed Corn and Corn Grown for Silage)
|
||||||
|
CORVUS Herbicide may be used in either conventional, conservation tillage, or no-till crop management
|
||||||
|
systems and may be applied either preplant, preplant incorporated (less than 2” deep), preemergence or
|
||||||
|
early postemergence.
|
||||||
|
CORVUS Herbicide treatments are most effective in controlling weeds when adequate rainfall is received
|
||||||
|
within 14 days after application. If cultivation is necessary because of soil crusting, soil compaction
|
||||||
|
or weed germination before rain occurs, use shallow tillage including rotary hoe to lightly incorporate
|
||||||
|
CORVUS Herbicide. Make certain corn seeds are below the tilled area. If treated soil is moved during tillage
|
||||||
|
practices in such a way that the herbicide barrier is no longer intact, weeds may emerge from areas where
|
||||||
|
treated soil has been removed. DO NOT incorporate with a drag harrow after planting.
|
||||||
|
|
||||||
|
13
|
||||||
|
APPLICATION RATES
|
||||||
|
Application
|
||||||
|
Timing
|
||||||
|
Maximum Fluid oz of CORVUS Herbicide per Acre1 for Soil Type
|
||||||
|
Soil Texture
|
||||||
|
Coarse Soils 2.0%
|
||||||
|
O.M.2 or less
|
||||||
|
Sand, Loamy sand,
|
||||||
|
Sandy loam
|
||||||
|
Coarse Soils greater
|
||||||
|
than 2.0% O.M.2
|
||||||
|
Sand, Loamy sand,
|
||||||
|
Sandy loam
|
||||||
|
Medium Soils
|
||||||
|
Loam, Silt loam, Silt,
|
||||||
|
Sandy clay loam
|
||||||
|
Fine Soils
|
||||||
|
Silty clay loam, Clay
|
||||||
|
loam, Sandy clay, Silty
|
||||||
|
clay, Clay
|
||||||
|
Preplant3 (Surface
|
||||||
|
Applied or
|
||||||
|
Incorporated)
|
||||||
|
Preemergence
|
||||||
|
Early postemergence
|
||||||
|
3.33 5.64 5.64 5.64
|
||||||
|
1 If soils are 2.0% or less in O.M. and have a pH of 7.5 or greater, the rate selected from the table above can be reduced by 0.5 fluid oz.
|
||||||
|
2 O.M. = Organic Matter by weight.
|
||||||
|
3 CORVUS Herbicide may be applied alone or in specified tank-mixes up to 21 days prior to planting. CORVUS Herbicide may be
|
||||||
|
applied up to 30 days prior to planting when used in a planned sequential application program followed by postemergence applied
|
||||||
|
herbicides appropriate for control of the target weeds.
|
||||||
|
4 For coarse textured soils with greater than 2.0% O.M. or medium textured soils with 2.0% O.M. or less, and where densities of
|
||||||
|
weeds controlled by CORVUS Herbicide are light to moderate, an appropriate rate down to 4.5 fluid oz per acre may be selected.
|
||||||
|
RESTRICTIONS FOR USE
|
||||||
|
• DO NOT apply more than 5.6 fluid ounces (0.082lbs of isoxaflutole, 0.033lbs of thiencarabzone-methyl)
|
||||||
|
of Corvus Herbicide per acre in a single application or exceed the maximum labeled rate for any given
|
||||||
|
soil type.
|
||||||
|
• Application: DO NOT exceed maximum labeled rate for soil type. Spray overlaps produce areas of over
|
||||||
|
application which increase the potential for crop damage.
|
||||||
|
• DO NOT apply more than 5.6 fluid ounces (0.082lbs of isoxaflutole, 0.033lbs of thiencarabzone-methyl) per
|
||||||
|
acre of Corvus Herbicide per 365 day period or exceed the maximum labeled rate for any given soil type.
|
||||||
|
• DO NOT apply more than two applications of CORVUS Herbicide per acre per 365 day period at reduced
|
||||||
|
rates.
|
||||||
|
• DO NOT exceed from all sources 0.094 pounds per acre of isoxaflutole per and 0.04 pounds per acre of
|
||||||
|
thiencarbazone-methyl per year in corn.
|
||||||
|
• DO NOT exceed from all sources 0.20 pounds per acre per of cyprosulfamide per year in corn.
|
||||||
|
• DO NOT use CORVUS Herbicide in the same season as certain soil-applied organophosphate or carbamate
|
||||||
|
insecticides (refer to the ‘SEED/SOIL-APPLIED INSECTICIDE INTERACTIONS section of the label).
|
||||||
|
• DO NOT use CORVUS Herbicide on popcorn, or sweet corn.
|
||||||
|
• DO NOT irrigate CORVUS Herbicide into coarse soils at planting time when soils are saturated.
|
||||||
|
• DO NOT harvest field corn forage within 45 days of application of CORVUS Herbicide.
|
||||||
|
• DO NOT use COC or MSO with CORVUS Herbicide applied to emerged field corn.
|
||||||
|
• DO NOT apply tank mixtures of CORVUS Herbicide with organophosate or carbamate insecticides to
|
||||||
|
emerged corn.
|
||||||
|
• DO NOT apply solo HPPD inhibitor Postemergence herbicides to corn that has been treated with CORVUS
|
||||||
|
Herbicide in the same growing season.
|
||||||
|
PRECAUTIONS FOR USE
|
||||||
|
• Planting depth: Corn seed must be planted a minimum of 1-1/2 inches deep and must be completely
|
||||||
|
covered with soil and furrow firmed or reduced crop stand or injury may occur.
|
||||||
|
• Effect of variable soils on use rate: The proper use rate of CORVUS Herbicide is affected by
|
||||||
|
several soil factors, including soil texture, organic matter, and soil pH. Soils which contain
|
||||||
|
variations in one or more of these factors in a given area are termed variable soils and may be
|
||||||
|
more likely to incur localized corn injury symptoms from an application of CORVUS Herbicide,
|
||||||
|
especially in those localized areas containing a more coarse soil texture, a lower organic matter
|
||||||
|
and/or a higher pH (alkaline/calcareous soil) than other areas of the same field. The user is responsible for
|
||||||
|
selecting the appropriate rate of CORVUS Herbicide as specified in the table above that corresponds to all
|
||||||
|
soils in the area of application.
|
||||||
|
• Effect of adverse weather: Following an application of CORVUS Herbicide, extended periods of cool/cold,
|
||||||
|
wet conditions (cool/cold daytime/nighttime temperatures, saturated soil conditions, recurring rainfall
|
||||||
|
events, etc.) during corn seed germination and/or early crop development period may result in temporary
|
||||||
|
crop injury. Injury symptoms may appear as leaf tissue bleaching (whitening) and/or crop stunting. Corn
|
||||||
|
plants usually recover from this injury without affecting yield.
|
||||||
|
|
||||||
|
14
|
||||||
|
• Corn hybrids and certain male pollinators: Corn hybrids and certain male pollinators within blended
|
||||||
|
corn varieties vary in their response to CORVUS Herbicide. Not all hybrids or male pollinators within
|
||||||
|
blended corn varieties have been tested for sensitivity to CORVUS Herbicide. You need to consult with
|
||||||
|
your seed provider, your local Bayer CropScience representative and/or other knowledgeable agricultural
|
||||||
|
professionals for advice on sensitivity of hybrids or varieties containing male pollinator lines before
|
||||||
|
applying CORVUS Herbicide. If the sensitivity of a hybrid or variety containing male pollinator lines is not
|
||||||
|
known, you must apply CORVUS Herbicide to a small area to first determine if the hybrid is sensitive prior
|
||||||
|
to spraying large acreages of that hybrid.
|
||||||
|
APPLICATION TIMING
|
||||||
|
Preplant Surface-Applied
|
||||||
|
CORVUS Herbicide may be applied up to 21 days before planting corn. CORVUS Herbicide may be applied
|
||||||
|
up to 30 days prior to planting when used in a planned sequential application program including CORVUS
|
||||||
|
Herbicide followed by postemergence applied herbicides appropriate for control of the target weeds. Refer
|
||||||
|
to all parts of the label of the respective sequential partner for specific use directions and restrictions. Split
|
||||||
|
applications of CORVUS Herbicide can be made. It is specified that 60% of the listed broadcast rate (refer to
|
||||||
|
Application Rate Table) be applied 15 – 30 days prior to planting and the remaining 40% applied at planting.
|
||||||
|
Total CORVUS Herbicide applied may not exceed the listed rate for a preplant treatment on the predominant
|
||||||
|
soil type in the field. Moving treated soil out of the row or moving untreated soil to the surface during planting
|
||||||
|
may result in reduced weed control.
|
||||||
|
Preplant Incorporated
|
||||||
|
CORVUS Herbicide may be applied up to 21 days before planting corn. CORVUS Herbicide may be applied
|
||||||
|
up to 30 days prior to planting when used in a planned sequential application program including CORVUS
|
||||||
|
Herbicide followed by postemergence applied herbicides appropriate for control of the target weeds. Refer
|
||||||
|
to all parts of the label of the respective sequential partner for specific use directions and restrictions. Apply
|
||||||
|
to the soil and uniformly incorporate in the top two inches of soil before planting using a finishing disc, field
|
||||||
|
cultivator or similar implement capable of providing uniform two inch incorporation. DO NOT incorporate
|
||||||
|
CORVUS Herbicide deeper than 2” or weed control may be reduced.
|
||||||
|
Preplant/Preemergence Burndown
|
||||||
|
When weeds are present at the time of treatment and prior to corn emergence, a tank mixture of CORVUS
|
||||||
|
Herbicide (+/- DiFlexx® Herbicide - dicamba, EPA# 264-1173) with COC or MSO is advised for burndown of
|
||||||
|
labeled weeds 6” or less in height. When weeds are greater than 6” in height or weeds not controlled by
|
||||||
|
CORVUS Herbicide are present, the addition of a burndown herbicide (e.g., glufosinate, paraquat, glyphosate,
|
||||||
|
or 2, 4-D) is advised. If giant ragweed, common cocklebur, henbit, Pennsylvania smartweed or purple
|
||||||
|
deadnettle are present at the time of application, the addition of atrazine will improve control. Observe
|
||||||
|
directions for use, precautions and restrictions, and adjuvants on the label of the burndown tank-mixed
|
||||||
|
herbicide. When mixing with liquid nitrogen fertilizer or certain glyphosate formulations, substitute a non-ionic
|
||||||
|
surfactant for oil concentrates.
|
||||||
|
Preemergence
|
||||||
|
Apply CORVUS Herbicide during planting (behind the planter after furrow closure) or after planting, but before
|
||||||
|
weeds emerge. Failure to thoroughly close and firm the seed furrow may allow herbicide to directly contact
|
||||||
|
the seed which can cause injury.
|
||||||
|
Early Postemergence
|
||||||
|
CORVUS Herbicide can be applied to corn in tank mixture with atrazine from spiking through the 2-leaf collar
|
||||||
|
growth stage. Tank-mixtures with other herbicides or adjuvants are not advised for early postemergence
|
||||||
|
applications of CORVUS Herbicide to emerged corn as crop response symptoms including bleaching, leaf
|
||||||
|
edge necrosis and stunting may result. DO NOT use COC or MSO with CORVUS Herbicide applied to emerged
|
||||||
|
field corn.
|
||||||
|
Early postemergence applications of CORVUS Herbicide must be made in water as the carrier. Sprayable fluid
|
||||||
|
fertilizer as an herbicide carrier for early postemergence applications in corn can typically cause corn injury
|
||||||
|
up to and including tissue burn (necrosis). Sprayable fluid fertilizer as a carrier is not advised for use with
|
||||||
|
CORVUS Herbicide after crop emergence unless typical fertilizer burn symptoms on the crop are acceptable.
|
||||||
|
DO NOT apply tank mixtures of CORVUS Herbicide with organophosate or carbamate insecticides to emerged
|
||||||
|
corn. Foliar applications of organophosphate or carbamate insecticides must not be made within 7 days of
|
||||||
|
an application of CORVUS Herbicide or crop injury may result.
|
||||||
|
|
||||||
|
15
|
||||||
|
TANK MIX INSTRUCTIONS
|
||||||
|
It is the pesticides user’s responsibility to ensure that all products are registered for the intended use.
|
||||||
|
Read and follow the applicable
|
||||||
|
restrictions and limitations and directions for use on all products labels involved in tank mixing. users must
|
||||||
|
follow the most restrictive directions for use and precautionary statements of each product in the tank
|
||||||
|
mixture.
|
||||||
|
CORVUS Herbicide may be used in tank mixtures with other herbicides for improved control of certain
|
||||||
|
broadleaf and grass weeds in corn. Preplant/preemergence/early postemergence tank-mixes with CORVUS
|
||||||
|
Herbicide include but are not limited to those listed. Refer to and follow all parts of the label of each tank-mix
|
||||||
|
partner.
|
||||||
|
Tank-mix combinations may be used in either conventional, conservation tillage or no-till cropping systems
|
||||||
|
and may be applied at the same timings as CORVUS Herbicide unless otherwise specified on this label or
|
||||||
|
on the tank-mix partner’s label.
|
||||||
|
Multiple tank mixtures are allowed unless otherwise specified by the respective product labels. Check all
|
||||||
|
tank-mix product labels for proper rates and compatibilities for multiple tank-mixes.
|
||||||
|
Possible Preplant/Preemergence Tank Mix Partners for Additional Weed Control
|
||||||
|
Diflexx Herbicide
|
||||||
|
(EPA Reg# 264-1173,
|
||||||
|
dicamba)
|
||||||
|
Roundup PowerMAX® II
|
||||||
|
(EPA Reg# 524-537,
|
||||||
|
glyphosate)
|
||||||
|
dicamba saflufenacil
|
||||||
|
Degree Xtra® Herbicide
|
||||||
|
(EPA Reg# 524-511,
|
||||||
|
acetochlor, atrazine)
|
||||||
|
Roundup WeatherMAX®
|
||||||
|
(EPA Reg# 524-537,
|
||||||
|
glyphosate)
|
||||||
|
dimethenamid-P s-metachlor
|
||||||
|
Harness®
|
||||||
|
(EPA Reg#524-473,
|
||||||
|
acetochlor, atrazine)
|
||||||
|
Roundup PowerMAX® 3
|
||||||
|
(EPA Reg# 524-659,
|
||||||
|
glyphosate)
|
||||||
|
glyphosate 2, 4-D
|
||||||
|
Harness® Xtra
|
||||||
|
(EPA Reg# 524-480,
|
||||||
|
acetochlor, atrazine)
|
||||||
|
Warrant® Herbicide
|
||||||
|
(EPA Reg# 524-591,
|
||||||
|
acetochlor)
|
||||||
|
glufosinate
|
||||||
|
Harness® Xtra 5.6L
|
||||||
|
(EPA Reg# 524-485,
|
||||||
|
acetochlor, atrazine)
|
||||||
|
acetochlor fluthiacet-methyl
|
||||||
|
Roundup PowerMAX®
|
||||||
|
(EPA Reg# 524-549,
|
||||||
|
glyphosate)
|
||||||
|
atrazine pendimethalin
|
||||||
|
Possible Early Postemergence* Tank Mix Partners For Additional Weed Control
|
||||||
|
atrazine Diflexx Herbicide
|
||||||
|
(EPA Reg# 264-1173, dicamba) dicamba
|
||||||
|
*See instructions in APPLICATION TIMING section of this label for early postemergence tank mixtures, adjuvants and carrier
|
||||||
|
solutions for directions on the use of tank mixtures with CORVUS Herbicide after crop emergence.
|
||||||
|
SEED/SOIL-APPLIED INSECTICIDE INTERACTIONS
|
||||||
|
CORVUS Herbicide can be used in conjunction with a variety of registered seed and soil-applied insecticides.
|
||||||
|
Use of CORVUS Herbicide with soil and seed-applied insecticides on all corn hybrids must follow the use
|
||||||
|
directions in the table below. DO NOT USE CORVUS Herbicide in the same year as any other organophosphate
|
||||||
|
or carbamate soil-applied insecticides not specifically advised.
|
||||||
|
Seed or Soil-Applied Insecticide Use Pattern Use of CORVUS Herbicide in the
|
||||||
|
Same Year
|
||||||
|
clothianidin, (clothianidin + bacillus firmus),
|
||||||
|
(tebupirimphos + cyfluthrin), fipronil, tefluthrin,
|
||||||
|
chlorpyrifos, phorate, bifenthrin, thimet
|
||||||
|
All No use precautions
|
||||||
|
terbufos and other organophosphate or carbamate
|
||||||
|
insecticides. All DO NOT USE
|
||||||
|
|
||||||
|
16
|
||||||
|
RATE CONVERSION CHART FOR CORVUS
|
||||||
|
Corvus (fl. oz) Thiencarbazone-methyl (lbs ai)
|
||||||
|
(Conversion factor = 0.00586)
|
||||||
|
Isoxaflutole (lbs ai)
|
||||||
|
(Conversion factor = 0.0147)
|
||||||
|
3.33 0.019 0.048
|
||||||
|
4.5 0.026 0.066
|
||||||
|
5.6 0.033 0.082
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
DO NOT contaminate water, food, or feed by storage or disposal.
|
||||||
|
Pesticide storage
|
||||||
|
Store in a cool, dry secured storage area.
|
||||||
|
Pesticide disposal
|
||||||
|
Dispose of wastes resulting from the use of this product on site or at an approved waste disposal facility.
|
||||||
|
Container handling
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. DO NOT reuse or refill this container. Triple rinse or pressure rinse container
|
||||||
|
(or equivalent) promptly after emptying. Triple rinse as follows: Empty the remaining contents into
|
||||||
|
application equipment or a mix tank and drain for 10 seconds after the flow begins to drip. Fill the
|
||||||
|
container 1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into application equipment
|
||||||
|
or a mix tank or store rinsate for later use or disposal. Drain for 10 seconds after the flow begins to drip.
|
||||||
|
Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application equipment or a mix tank and
|
||||||
|
continue to drain for 10 seconds after the flow begins to drip. Hold container upside down over application
|
||||||
|
equipment or mix tank or collect rinsate for later use or disposal. Insert pressure rinsing nozzle in the
|
||||||
|
side of the container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10 seconds after the
|
||||||
|
flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill
|
||||||
|
or by incineration.
|
||||||
|
Rigid Non-refillable Containers that are too large to shake (i.e., with capacities greater than 5 gallons
|
||||||
|
or 50 lbs)
|
||||||
|
Non-refillable container. DO NOT reuse or refill this container. Refer to Bottom Discharge IBC or Top
|
||||||
|
Discharge IBC, Drums, Kegs information as follows.
|
||||||
|
Bottom Discharge IBC (e.g. – Schuetz Caged IBC or Snyder Square Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of the person disposing of the
|
||||||
|
container. To pressure rinse the container before final disposal, empty the remaining contents from the
|
||||||
|
IBC into application equipment or mix tank. Raise the bottom of the IBC by 1.5 inches on the side which
|
||||||
|
is opposite of the bottom discharge valve to promote more complete product removal. Completely remove
|
||||||
|
the top lid of the IBC. Use water pressurized to at least 40 PSI to rinse all interior portions. Continuously
|
||||||
|
pump or drain rinsate into application equipment or rinsate collection system while pressure rinsing.
|
||||||
|
Continue pressure rinsing for 2 minutes or until rinsate becomes clear. Replace the lid and close bottom
|
||||||
|
valve.
|
||||||
|
Top Discharge IBC, Drums, Kegs (e.g.– Snyder 120 Next Gen, Bonar B120, Drums, and Kegs)
|
||||||
|
Triple rinsing the container before final disposal is the responsibility of the person disposing of the container.
|
||||||
|
To triple rinse the container before final disposal, empty the remaining contents from this container into
|
||||||
|
application equipment or mix tank. Fill the container at least 10 percent full with water. Agitate vigorously
|
||||||
|
or recirculate water with the pump for 2 minutes. Rinse all interior surfaces. Pour or pump rinsate into
|
||||||
|
application equipment or rinsate collection system. Repeat this procedure two more times.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill
|
||||||
|
or by incineration.
|
||||||
|
Bayer, Bayer Cross, Corvus, Degree Xtra, DiFlexx, Laudis , Roundup PowerMAX, Roundup Technology,
|
||||||
|
Roundup WeatherMAX and Warrant Herbicide are registered trademarks of Bayer Group.
|
||||||
|
©2025 Bayer Group. All rights reserved.
|
||||||
|
|
||||||
|
US61380343I 250717I 09/25
|
||||||
|
US61380343I (250717I) CORVUS 2.5 GAL BASE
|
||||||
|
COLORS: Black DATE: 09/3/2025
|
||||||
|
Label Coordinator: Bradley DeBlanc
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
It is a violation of Federal law to use this product in a
|
||||||
|
manner inconsistent with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
DO NOT contaminate water, food, or feed by storage or disposal.
|
||||||
|
Pesticide storage: Store in a cool, dry secured storage area.
|
||||||
|
Pesticide disposal: Dispose of wastes resulting from the use
|
||||||
|
of this product on site or at an approved waste disposal facility.
|
||||||
|
Container handling: Rigid, Non-refillable containers (equal to
|
||||||
|
or less than 5 gallons) Non-refillable container. DO NOT reuse
|
||||||
|
or refill this container. Triple rinse or pressure rinse container
|
||||||
|
(or equivalent) promptly after emptying. Triple rinse as follows:
|
||||||
|
Empty the remaining contents into application equipment or a
|
||||||
|
mix tank and drain for 10 seconds after the flow begins to drip.
|
||||||
|
Fill the container 1/4 full with water and recap. Shake for 10
|
||||||
|
seconds. Pour rinsate into application equipment or a mix tank
|
||||||
|
or store rinsate for later use or disposal. Drain for 10 seconds
|
||||||
|
after the flow begins to drip. Repeat this procedure two more
|
||||||
|
times. Pressure rinse as follows: Empty the remaining contents
|
||||||
|
into application equipment or a mix tank and continue to drain
|
||||||
|
for 10 seconds after the flow begins to drip. Hold container
|
||||||
|
upside down over application equipment or mix tank or collect
|
||||||
|
rinsate for later use or disposal. Insert pressure rinsing nozzle
|
||||||
|
in the side of the container, and rinse at about 40 PSI for at
|
||||||
|
least 30 seconds. Drain for 10 seconds after the flow begins to
|
||||||
|
drip. Once container is rinsed, offer for recycling if available or
|
||||||
|
puncture and dispose of in a sanitary landfill or by incineration.
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
Bayer and Corvus are a registered trademarks of Bayer Group.
|
||||||
|
©2025 Bayer Group. All rights reserved.
|
||||||
|
FIRST AID
|
||||||
|
If Swallowed: • Immediately call a poison control center
|
||||||
|
or doctor for treatment advice. • Do not induce vomiting
|
||||||
|
unless told to do so by a poison control center or doctor.
|
||||||
|
• Have person sip a glass of water if able to swallow. • Do
|
||||||
|
not give anything by mouth to an unconscious person.
|
||||||
|
If in Eyes: • Hold eye open and rinse slowly and gently
|
||||||
|
with water for 15-20 minutes. • Remove contact lenses,
|
||||||
|
if present, after the first 5 minutes, then continue rinsing.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
If on Skin: • Take off contaminated clothing. • Rinse skin
|
||||||
|
immediately with plenty of water for 15-20 minutes. • Call a
|
||||||
|
poison control center or doctor for treatment advice.
|
||||||
|
If Inhaled: • Move person to fresh air. • If person is not
|
||||||
|
breathing, call 911 or an ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to-mouth if possible. • Call a
|
||||||
|
poison control center or doctor for further treatment advice.
|
||||||
|
In case of emergency, call the toll-free
|
||||||
|
Bayer CropScience Emergency Response telephone
|
||||||
|
number: 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling
|
||||||
|
a poison control center or doctor, or going for treatment.
|
||||||
|
Note to Physician: No specific antidote is available. All
|
||||||
|
treatments need to be based on observed signs and
|
||||||
|
symptoms of distress in the patient. Overexposure to
|
||||||
|
materials other than this product may have occurred.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if swallowed or absorbed through the skin.
|
||||||
|
• Causes moderate eye irritation.
|
||||||
|
• Avoid contact with eyes, skin, or clothing.
|
||||||
|
• Wash thoroughly with soap and water after handling and
|
||||||
|
before eating, drinking, chewing gum, using tobacco, or
|
||||||
|
using the toilet.
|
||||||
|
CORVUS® Herbicide
|
||||||
|
For: weed control in field corn, seed corn and corn grown for silage in the states of: AR, AL, CO, DE, GA, IL, IN, IA, KS,
|
||||||
|
KY, LA, MI, MN, MO, MS, MT, NE, NJ, NM, NC, ND, MD, OH, OK, PA, SC, SD, TN, TX, VA, WI, WV and WY.
|
||||||
|
In the state of MN use is only allowed in accordance with the Minnesota Product Bulletin.
|
||||||
|
In the state of WI use is only allowed in accordance with the Wisconsin Product Bulletin.
|
||||||
|
ACTIVE INGREDIENTS: Thiencarbazone-methyl: (Methyl 4-[[[(4,5-dihydro-3-methoxy-4-methyl-
|
||||||
|
5-oxo-1H-1,2,4-triazol-1-yl)carbonyl]amino]sulfonyl]-5-methyl-3-thiophenecarboxylate) ......................... 7.60%
|
||||||
|
Isoxaflutole [5-cyclopropyl-4-(2-methylsulfonyl-4-trifluoromethylbenzoyl) isoxazole] ............................. 19.00%
|
||||||
|
OTHER INGREDIENTS: .............................................................................. 73.40%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 0.75 pounds Thiencarbazone-methyl per U.S. gallon
|
||||||
|
Contains 1.88 pounds Isoxaflutole per U.S. gallon
|
||||||
|
EPA Reg. No. 264-1066
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
See additional precautionary statements and directions for use on label.
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY Call 24 Hours a Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
May injure (phytotoxic) susceptible non-target plants.
|
||||||
|
For retail sale to and use only by certified applicators or persons under their direct supervision and only
|
||||||
|
for those uses covered by the Certified Applicator’s certification. Commercial and certified applicators
|
||||||
|
must ensure that all persons involved in these activities are informed of the precautionary statements.
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
ISOXAFLUTOLE
|
||||||
|
THIENCARBAZONE-METHYL
|
||||||
|
HERBICIDE
|
||||||
|
HERBICIDE
|
||||||
|
27
|
||||||
|
2
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "degree-xtra",
|
||||||
|
"epa_reg_no": "524-511",
|
||||||
|
"product_name": "Degree Xtra Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Acetochlor, 2-chloro-N-ethoxymethyl-N-(2-ethyl-6-methylphenyl)acetamide",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Atrazine, 2-chloro-4-(ethylamino)-6-(isopropylamino)-s-triazine and related triazines",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Degree-Xtra_2025pdf",
|
||||||
|
"filename": "Degree-Xtra_2025pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-05-15T20:18:15+00:00",
|
||||||
|
"page_count": 2,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/degree-xtra-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:58:44.457874+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
# Degree Xtra Herbicide
|
||||||
|
|
||||||
|
- **Product class:** herbicide
|
||||||
|
- **EPA Reg No:** 524-511
|
||||||
|
- **Active ingredients:** Acetochlor, 2-chloro-N-ethoxymethyl-N-(2-ethyl-6-methylphenyl)acetamide, Atrazine, 2-chloro-4-(ethylamino)-6-(isopropylamino)-s-triazine and related triazines
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/herbicide/degree-xtra-herbicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Degree-Xtra_2025pdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Degree Xtra
|
||||||
|
®
|
||||||
|
herbicide is a premix that contains
|
||||||
|
acetochlor and atrazine. As soil temperatures rise, the
|
||||||
|
patented micro-encapsulation technology in Degree
|
||||||
|
Xtra delivers an immediate dose of atrazine with a
|
||||||
|
slow release of acetochlor for just the right amount of
|
||||||
|
weed control. The process allows for increased crop
|
||||||
|
safety and longer-lasting residual control of a wide
|
||||||
|
range of key grass and broadleaf weeds.
|
||||||
|
/// BENEFITS
|
||||||
|
• Powerful Weed Control
|
||||||
|
Controls a wide range of key grasses and broadleaf
|
||||||
|
weeds, including barnyardgrass, foxtail species,
|
||||||
|
waterhemp and lambsquarters.
|
||||||
|
• Flexibility
|
||||||
|
Application and tank-mixing flexibility from
|
||||||
|
preplant to early postemergence applications in
|
||||||
|
corn up to 11 inches.
|
||||||
|
• Improved Crop Safety and Weed Control
|
||||||
|
Degree Xtra herbicide provides a dose of atrazine
|
||||||
|
with a slow release of acetochlor, triggered
|
||||||
|
by moisture and a rise in soil temperature. The
|
||||||
|
process allows for increased crop safety and
|
||||||
|
longer-lasting residual control.
|
||||||
|
Powerful, Long Lasting Grass
|
||||||
|
and Broadleaf Weed Control
|
||||||
|
Registered Crops
|
||||||
|
• Field Corn
|
||||||
|
• Production Seed Corn
|
||||||
|
• Silage Corn
|
||||||
|
• Sweet Corn
|
||||||
|
• Popcorn
|
||||||
|
• Grain Sorghum
|
||||||
|
• Miscanthus or other
|
||||||
|
non-food bioenergy
|
||||||
|
crops
|
||||||
|
Key Pests
|
||||||
|
• Common Waterhemp
|
||||||
|
• Foxtail Species
|
||||||
|
• Barnyardgrass
|
||||||
|
• Common Cocklebur
|
||||||
|
• Common
|
||||||
|
Lambsquarters
|
||||||
|
• Common Ragweed
|
||||||
|
Formulation Information
|
||||||
|
• Acetochlor (2.7 lbs ai/gal)
|
||||||
|
• Atrazine (1.34 lbs ai/gal)
|
||||||
|
Capsule Suspension
|
||||||
|
|
||||||
|
ALWAYS READ AND FOLLOW PESTICIDE LABEL DIRECTIONS. Roundup Technology® includes glyphosate-based herbicide technologies.
|
||||||
|
Balance® Flexx, Corvus® and Degree Xtra® are restricted use pesticides. Not all products are registered for use in all states and may be subject to use
|
||||||
|
restrictions. The distribution, sale, or use of an unregistered pesticide is a violation of federal and/or state law and is strictly prohibited. Check with your
|
||||||
|
local dealer or representative for the product registration status in your state. Balance®, Bayer, Bayer Cross, Capreno®, Corvus®, Degree Xtra®, DiFlexx®,
|
||||||
|
Laudis® and Roundup PowerMAX® are registered trademarks of Bayer Group. For additional product information call toll-free 1-866-99-BAYER (1-866-
|
||||||
|
992-2937) or visit our website at www.BayerCropScience.us. Bayer CropScience LP, 800 North Lindbergh Boulevard, St. Louis, MO 63167. ©2025 Bayer
|
||||||
|
Group. All rights reserved.
|
||||||
|
IMPORT ANT : This bulletin is not intended to provide adequate information for
|
||||||
|
use of these products. Read the label before using these products. Observe
|
||||||
|
all label directions and precautions while using these products.
|
||||||
|
CORN
|
||||||
|
Application Rate 2.9 to 4.3 qts /A
|
||||||
|
Application Timing
|
||||||
|
Preplant, Preemergence,
|
||||||
|
Early Postemergence
|
||||||
|
(up to 11” corn)
|
||||||
|
Site-of-Action
|
||||||
|
Group*
|
||||||
|
5
|
||||||
|
|
||||||
|
15
|
||||||
|
Recommended
|
||||||
|
Tankmix Options
|
||||||
|
Corvus
|
||||||
|
®
|
||||||
|
2
|
||||||
|
|
||||||
|
27herbicide
|
||||||
|
Capreno
|
||||||
|
®
|
||||||
|
2
|
||||||
|
|
||||||
|
27herbicide
|
||||||
|
Balance
|
||||||
|
®
|
||||||
|
Flexx 27
|
||||||
|
herbicide
|
||||||
|
DiFlexx
|
||||||
|
®
|
||||||
|
herbicide
|
||||||
|
4
|
||||||
|
DiFlexx
|
||||||
|
®
|
||||||
|
DUO
|
||||||
|
|
||||||
|
herbicide
|
||||||
|
4
|
||||||
|
|
||||||
|
27
|
||||||
|
Laudis
|
||||||
|
®
|
||||||
|
|
||||||
|
27
|
||||||
|
herbicide
|
||||||
|
Roundup
|
||||||
|
®
|
||||||
|
|
||||||
|
9 PowerMAX® 3
|
||||||
|
herbicide
|
||||||
|
GRAIN SORGHUM
|
||||||
|
Application Rate 2 to 3.7 qts /A
|
||||||
|
Application Timing
|
||||||
|
Preplant, Preemergence,
|
||||||
|
Early Postemergence
|
||||||
|
(up to 11” grain sorghum)
|
||||||
|
Site-of-Action
|
||||||
|
Group*
|
||||||
|
5
|
||||||
|
|
||||||
|
15
|
||||||
|
*For more information on herbicide group numbers and site-of-action options, visit IWillTakeAction.com
|
||||||
|
LEARN MORE
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "delaro-325-sc",
|
||||||
|
"epa_reg_no": "264-1055",
|
||||||
|
"product_name": "Delaro 325 SC Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Prothioconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Trifloxystrobin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Delaro_325_SC_Label8pdf",
|
||||||
|
"filename": "Delaro_325_SC_Label8pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:43:23+00:00",
|
||||||
|
"page_count": 17,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "DELARO 325 SC MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Delaro_325_SC1g_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:37:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "DELARO 325 SC MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Delaro_325_SC1d_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:40:56+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Suppression of White Mold in Soybean",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Delaro_325_SC_2EE1epdf",
|
||||||
|
"last_modified": "2026-01-30T13:41:20+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Tar Spot in Field Corn, Field Corn Grown for Seed & Popcorn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Delaro_325_SC1y_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T13:50:14+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Delaro Application Guidelines",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/fungicides/delaro/Delaro-Application-Guidelines.PDF",
|
||||||
|
"last_modified": "2022-11-30T14:32:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Delaro Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Delaro_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T13:54:43+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/delaro-325-sc-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:01:23.057929+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,55 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "delaro-complete",
|
||||||
|
"epa_reg_no": "264-1207",
|
||||||
|
"product_name": "Delaro Complete Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Prothioconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Trifloxystrobin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Fluopyram",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Delaro_Complete_Label1dpdf",
|
||||||
|
"filename": "Delaro_Complete_Label1dpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:10:30+00:00",
|
||||||
|
"page_count": 13,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "DELARO COMPLETE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/_DELARO_Complete1_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:16:07+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "DELARO COMPLETE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/_DELARO_Complete_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:01:45+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/delaro-complete-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:04:40.177880+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,929 @@
|
|||||||
|
# Delaro Complete Fungicide
|
||||||
|
|
||||||
|
- **Product class:** fungicide
|
||||||
|
- **EPA Reg No:** 264-1207
|
||||||
|
- **Active ingredients:** Prothioconazole, Trifloxystrobin, Fluopyram
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/fungicide/delaro-complete-fungicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Delaro_Complete_Label1dpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
US87293602B (231214B) DELARO COMPLETE Net Contents: No WT MINI BULK GAL ECL
|
||||||
|
Colors: Die - Cyan Artwork: CMYK Label Coordinator: Mark Schmidt 1/23/2024
|
||||||
|
US87293602B 231214B 01/24
|
||||||
|
For: control of certain diseases and plant health in Corn, Soybean,
|
||||||
|
Sweet corn and Wheat.
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Prothioconazole, 2-[2-(1-Chlorocyclopropyl)-3-(2-chlorophenyl)-
|
||||||
|
2-hydroxypropyl]-1,2-dihydro-3H-1,2,4-triazole-3-thione: . . . . . . . . . . . . . . . . . . . . . . 14.90%
|
||||||
|
Trifloxystrobin, (E,E)-alpha-(methoxyimino)-2-[[[[1-[3-(trifluoromethyl)phenyl]
|
||||||
|
ethylidene]amino]oxy]methyl]-,methylester . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13.10%
|
||||||
|
Fluopyram: N-[2-[3-chloro-5-(trifluoromethyl)-2-pyridinyl]ethyl]-2-
|
||||||
|
(trifluoromethyl)benzamide . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10.90%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61.10%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 1 .47 pounds Prothioconazole, 1 .29 pounds Trifloxystrobin and 1 .07 pound
|
||||||
|
Fluopyram per U .S . gallon
|
||||||
|
EPA Reg. No. 264-1207
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
See Back Panel for First Aid Instructions and Booklet for Complete
|
||||||
|
Precautionary Statements and Directions for Use.
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours a Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N . Lindbergh Blvd .
|
||||||
|
St . Louis, MO 63167
|
||||||
|
Delaro® is a registered trademark of Bayer Group .
|
||||||
|
©2024 Bayer Group . All rights reserved .
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
PROTHIOCONAZOLE
|
||||||
|
TRIFLOXYSTROBIN
|
||||||
|
FLUOPYRAM
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
3
|
||||||
|
11
|
||||||
|
7
|
||||||
|
Complete
|
||||||
|
®
|
||||||
|
6.875”
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.625”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
FIRST AID
|
||||||
|
If in Eyes: • Hold eye open and rinse slowly and gently with water for 15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then continue rinsing eye.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
If Swallowed: • Call a poison control center or doctor immediately for treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control center or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
If on Skin or
|
||||||
|
Clothing:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
If Inhaled: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give artificial respiration, preferably mouth-to- mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
In case of emergency, call the toll-free Bayer CropScience Emergency Response telephone number: 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison control center or doctor, or going for treatment.
|
||||||
|
Note to Physician: No specific antidote. Treat Symptomatically.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Causes moderate eye irritation.
|
||||||
|
• Harmful if swallowed or absorbed through skin.
|
||||||
|
• Avoid contact with skin, eyes, and clothing. Wash thoroughly with soap and water after handling and before eating, drinking, chewing gum, using
|
||||||
|
tobacco, or using the toilet. Remove and wash contaminated clothing before reuse.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Applicators and other handlers must wear:
|
||||||
|
• Long-sleeved shirt and long pants
|
||||||
|
• Shoes plus socks
|
||||||
|
• Chemical resistant gloves made of any waterproof material made of barrier laminate, butyl rubber ≥ 14 mil, nitrile rubber ≥ 14 mil, or neoprene
|
||||||
|
rubber ≥ 14 mil, polyethylene, polyvinyl chloride ≥ 14 mil, or Viton ≥ 14 mil.
|
||||||
|
ENGINEERING CONTROLS
|
||||||
|
When handlers use closed systems, enclosed cabs, or aircraft in a manner that meets the requirements listed in the Worker Protection Standard
|
||||||
|
(WPS) for agricultural pesticides 40 CFR 170.240(d)(4-6), the handler PPE requirements may be reduced or modified as specified in the WPS.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
• Users should remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly and put on clean clothing.
|
||||||
|
• Users should remove PPE immediately after handling this product. Wash the outside of gloves before removing. As soon as possible, wash thoroughly
|
||||||
|
and change into clean clothing.
|
||||||
|
• Users should wash hands before eating, drinking, chewing gum, using tobacco, or using the toilet.
|
||||||
|
USER SAFETY REQUIREMENTS
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for washables exist, use detergent and hot water. Keep
|
||||||
|
and wash PPE separately from other laundry.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is toxic to fish, aquatic invertebrates, estuarine/marine invertebrates, and freshwater/estuarine/marine aquatic plants. Applying this
|
||||||
|
product when rain is not predicted for the next 48 hours will help reduce potential risk to aquatic invertebrates by reducing pesticide runoff from the
|
||||||
|
treatment area into water bodies. Do not apply directly to water, or to areas where surface water is present or to intertidal areas below the mean high
|
||||||
|
water mark. Drift and runoff may be hazardous to aquatic organisms in water adjacent to treated areas. Do not contaminate water when disposing
|
||||||
|
of equipment washwater or rinsate.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
1
|
||||||
|
|
||||||
|
Surface Water Advisory
|
||||||
|
Do not apply directly to water, or to areas where surface water is present, or to intertidal areas below the mean high water mark. Do not contaminate
|
||||||
|
water when disposing of equipment washwater or rinsate.
|
||||||
|
This product may impact surface water quality due to runoff of rain water. This is especially true for poorly draining soils and soils with shallow ground water.
|
||||||
|
This product is classified as having high potential for reaching surface water via runoff for several months or more after application. A level, well-maintained
|
||||||
|
vegetative buffer strip between areas to which this product is applied and surface water features such as ponds, streams, and springs will reduce the potential
|
||||||
|
loading of Fluopyram. Runoff of this product will be reduced by avoiding applications when rainfall or irrigation is expected to occur within 48 hours. Sound
|
||||||
|
erosion control practices will reduce this product’s potential to reach aquatic sediment via runoff. Prothioconazole-desthio (a degradate of prothioconazole)
|
||||||
|
is known to leach through soil into ground water under certain conditions as a result of label use. Use of this chemical in areas where soils are permeable,
|
||||||
|
particularly where the water table is shallow, may result in ground-water contamination.
|
||||||
|
Ground Water Advisory
|
||||||
|
These chemicals have properties and characteristics associated with chemicals detected in ground water. These chemicals may leach into groundwater
|
||||||
|
if used in areas where soils are permeable, particularly where the water table is shallow.
|
||||||
|
Prothioconazole-desthio (a degradate of prothioconazole) is known to leach through soil into ground water under certain conditions as a result of label
|
||||||
|
use. Use of this chemical in areas where soils are permeable, particularly where the water table is shallow, may result in ground-water contamination.
|
||||||
|
Run Off Management
|
||||||
|
This product may impact surface water quality due to runoff of rain water. This is especially true for poorly draining soils and soils with shallow ground water.
|
||||||
|
This product is classified as having high potential for reaching surface water via runoff for several months or more after application. A level, well-maintained
|
||||||
|
vegetative buffer strip between areas to which this product is applied and surface water features such as ponds, streams, and springs will reduce the
|
||||||
|
potential loading of this product from runoff water and sediment. Runoff of this product will be reduced by avoiding applications when rainfall or irrigation
|
||||||
|
is expected to occur within 48 hours.
|
||||||
|
CONDITIONS OF SALE AND LIMITATIONS OF WARRANTY AND LIABILITY
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability before using this product. If terms are not
|
||||||
|
acceptable, return the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties and Limitations of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must be followed carefully. However, it is impossible to eliminate
|
||||||
|
all risks associated with the use of this product. Crop injury, ineffectiveness or other unintended consequences may result because of such factors
|
||||||
|
as weather conditions, presence of other materials, or the manner of use or application, all of which are beyond the control of Bayer CropScience LP.
|
||||||
|
To the extent consistent with applicable law, all such risks shall be assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE LP MAKES NO OTHER
|
||||||
|
WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND
|
||||||
|
BEYOND THE STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience LP is authorized to make any warranties beyond those contained
|
||||||
|
herein or to modify the warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE LP DISCLAIMS
|
||||||
|
ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS
|
||||||
|
PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER FOR ANY
|
||||||
|
AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY,
|
||||||
|
TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE LP’S
|
||||||
|
ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons, either directly or through drift. Only protected handlers may be in the
|
||||||
|
area during application. For any requirements specific to your State or Tribe, consult the agency responsible for pesticide regulation.
|
||||||
|
Not for sale, distribution, or use in Nassau and Suffolk counties, New York except as permitted under FIFRA 24(c), Special Local Need registration.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
2
|
||||||
|
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection Standard, 40 CFR part 170. This Standard contains requirements
|
||||||
|
for the protection of agricultural workers on farms, forests, nurseries, and greenhouses and handlers of agricultural pesticides. It contains requirements
|
||||||
|
for training, decontamination, and emergency assistance. It also contains specific instructions and exceptions pertaining to the statements on this
|
||||||
|
label about personal protective equipment (PPE), notification to workers, and restricted-entry interval. The requirements in this box only apply to uses
|
||||||
|
of this product that are covered by the Worker Protection Standard.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted entry interval (REI) of 12 hours.
|
||||||
|
PPE required for early entry to treated areas (that is permitted under the Worker Protection Standard and that involves contact with anything that
|
||||||
|
has been treated, such as plants, soil, or water), is:
|
||||||
|
• Coveralls over long-sleeved shirt and long pants
|
||||||
|
• Chemical-resistant gloves made of waterproof material
|
||||||
|
• Shoes plus socks
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
DELARO® COMPLETE:
|
||||||
|
• is a broad spectrum fungicide for the control of certain diseases of Corn, Soybean, Sweet corn and Wheat;
|
||||||
|
• works by interfering with both energy and cell membrane production by plant pathogenic fungi. Equipment must be properly calibrated before use.
|
||||||
|
USE RESTRICTIONS
|
||||||
|
• Under certain conditions conducive to extended infection periods, additional fungicide applications beyond the number allowed by this label may
|
||||||
|
be needed. Under these conditions, use another fungicide registered for the crop/disease.
|
||||||
|
• Do not apply more than 2 sequential applications of DELARO COMPLETE or any other QoI Group 11 or Group 7 containing fungicide without
|
||||||
|
alternation with a fungicide from another group.
|
||||||
|
• Not registered for aerial application in New York State.
|
||||||
|
Refer to the specific use directions and restrictions in each Crop table.
|
||||||
|
APPLICATION INSTRUCTIONS
|
||||||
|
• DELARO COMPLETE may be applied by ground, air (except in New York), or chemigation.
|
||||||
|
• Use of an adjuvant may enhance the performance of DELARO COMPLETE.
|
||||||
|
Aerial Application
|
||||||
|
Avoid application under conditions when uniform coverage cannot be obtained or when excessive spray drift may occur. Do not apply directly to
|
||||||
|
humans or animals. Not registered for aerial application in New York State. Refer to specific crop sections for water carrier volume restrictions.
|
||||||
|
Ground Application
|
||||||
|
Applications using sufficient water volume to provide thorough and uniform coverage generally provide the most effective disease control. Refer to
|
||||||
|
specific crop sections for water carrier volume restrictions.
|
||||||
|
Ground Application (Broadcast)
|
||||||
|
Equip sprayers with nozzles that provide accurate and uniform application. Nozzle selection, spraying pressures, carrier volume and application
|
||||||
|
speeds are critical for maximum efficacy. Select nozzles that deliver Fine to Medium droplets and operate them within the pressures specified by the
|
||||||
|
manufacturer. Adjust application speeds to allow for canopy penetration and coverage of the leaf surface. Be certain that nozzles are the same size
|
||||||
|
and uniformly spaced across the boom. Calibrate the sprayer before use and replace worn or damaged nozzles.
|
||||||
|
Use a pump with sufficient agitation capacity in the tank to keep the mixture in suspension. This requires recirculation of 10% of the tank volume
|
||||||
|
per minute. Use jet agitators or a liquid spurge tube for vigorous agitation. Use screens to protect the pump and to prevent nozzles from clogging.
|
||||||
|
Check nozzle manufacturer’s recommendations. For information on spray equipment and calibration, consult sprayer manufacturer’s and/or state
|
||||||
|
recommendations.
|
||||||
|
For specific local directions and spray schedules, consult the current state agricultural experiment station recommendations.
|
||||||
|
CHEMIGATION
|
||||||
|
DELARO COMPLETE alone or in combination with other pesticides which are registered for application through irrigation systems, may be applied
|
||||||
|
through irrigation systems.
|
||||||
|
Illegal pesticide residues in the crop can result from non- uniform distribution of treated water. If you have questions about calibration, you should contact
|
||||||
|
State Extension Service specialists, equipment manufacturers, or other experts. Do not connect an irrigation system (including greenhouse systems) used
|
||||||
|
for pesticide application to a public water system, unless the pesticide label-prescribed safety devices for public water systems are in place. A person
|
||||||
|
knowledgeable of the chemigation system and responsible for its operation, or under the supervision of the responsible person, shall shut the system
|
||||||
|
down and make necessary adjustments should the need arise.
|
||||||
|
Types of irrigation systems
|
||||||
|
Apply this product only through the following types of irrigation systems:
|
||||||
|
• center pivot
|
||||||
|
• solid set
|
||||||
|
• hand move
|
||||||
|
• moving wheel irrigation systems.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625” 3
|
||||||
|
|
||||||
|
Do not apply this product through any other type of irrigation system.
|
||||||
|
Crop injury, lack of effectiveness, or illegal pesticide residues in the crop can result from non-uniform distribution of treated water. If you have questions
|
||||||
|
about calibration, you should contact State Extension Service specialists, equipment manufacturers or other experts. A person knowledgeable of
|
||||||
|
the chemigation system and responsible for its operation or under the supervision of the responsible person, shall shut the system down and make
|
||||||
|
necessary adjustments should the need arise.
|
||||||
|
Do not connect an irrigation system (including greenhouse systems) used for pesticide application to a public water system, unless the pesticide label
|
||||||
|
prescribed safety devices for public water systems are in place. ‘Public water system’ means a system for the provision to the public of piped water for
|
||||||
|
human consumption if such system has at least 15 service connections or regularly serves an average of at least 25 individuals daily at least 60 days out
|
||||||
|
of the year. Chemigation systems connected to public water systems must contain a functional, reduced-pressure zone (RPZ), back flow preventer or the
|
||||||
|
functional equivalent in the water supply line upstream from the point of pesticide introduction. As an alternative to the RPZ, the water from the public
|
||||||
|
water system should be discharged into a reservoir tank prior to pesticide introduction. There shall be a complete physical break (air gap) between the
|
||||||
|
flow outlet end of the fill pipe and the top or overflow rim of the reservoir tank of at least twice the inside diameter of the fill pipe. The pesticide injection
|
||||||
|
pipeline must contain a functional, automatic, quick-closing check valve to prevent the flow of fluid back toward the injection pump. Pesticide injection
|
||||||
|
pipeline must contain a functional, normally closed, solenoid-operated valve located on the intake side of the injection pump and connected to the
|
||||||
|
system interlock to prevent fluid from being withdrawn from the supply tank when the irrigation system is either automatically or manually shut down.
|
||||||
|
The systems must contain functional interlocking controls, to automatically shut off the pesticide injection pump when the water pump motor stops, or
|
||||||
|
in cases where there is no water pump, when the water pressure decreases to the point where pesticide distribution is adversely affected. Systems must
|
||||||
|
use a metering pump, such as a positive displacement injection pump (e.g., diaphragm pump) effectively designed and constructed of materials that are
|
||||||
|
compatible with pesticides and capable of being fitted with a system interlock. Do not apply when wind speed favors drift.
|
||||||
|
Required System Safety Devices
|
||||||
|
The system must contain a functional check valve, vacuum relief valve, and low-pressure drain appropriately located on the irrigation pipeline to prevent
|
||||||
|
water source contamination from backflow. The pesticide injection pipeline must contain a functional, automatic, quick-closing check valve to prevent
|
||||||
|
the flow of fluid back toward the injection pump. The pesticide injection pipeline must also contain a functional, normally closed, solenoid-operated
|
||||||
|
valve located on the intake side of the injection pump and connected to the system interlock to prevent fluid from being withdrawn from the supply tank
|
||||||
|
when the irrigation system is either automatically or manually shut down. The system must contain functional interlocking controls to automatically shut
|
||||||
|
off the pesticide injection pump when the water pump motor stops. The irrigation line or water pump must include a functional pressure switch, which
|
||||||
|
will stop the water pump motor when the water pressure decreases to the point where pesticide distribution is adversely affected. Systems must use
|
||||||
|
a metering pump, such as a positive displacement injection pump (e.g. diaphragm pump) effectively designed and constructed of materials that are
|
||||||
|
compatible with pesticides and capable of being fitted with a system interlock.
|
||||||
|
Do not apply when wind speed favors drift beyond the area intended for treatment.
|
||||||
|
Center-Pivot
|
||||||
|
Use only with drive systems which provide uniform water distribution. Do not use end guns when chemigating DELARO COMPLETE through center
|
||||||
|
pivot systems because of non-uniform application.
|
||||||
|
Determine the size of the area to be treated. Determine the time required to apply 1/8-1/2 inch of water over the area to be treated when the system and
|
||||||
|
injection equipment are operated at normal pressures as recommended by the equipment manufacturer. When applying DELARO COMPLETE through
|
||||||
|
irrigation equipment use the lowest obtainable water volume while maintaining uniform distribution. Run the system at 80-95% of the manufacturer’s
|
||||||
|
rated capacity. Using water, determine the injection pump output when operated at normal line pressure. Determine the amount of DELARO COMPLETE
|
||||||
|
required to treat the area covered by the irrigation system. Add the required amount of DELARO COMPLETE and sufficient water to meet the injection
|
||||||
|
time requirements to the solution tank. Make sure the system is fully charged with water before starting injection of the DELARO COMPLETE solution.
|
||||||
|
Time the injection to last at least as long as it takes to bring the system to full pressure. Maintain constant solution tank agitation during the injection
|
||||||
|
period. Continue to operate the system until the DELARO COMPLETE solution has cleared the sprinkler head.
|
||||||
|
Solid Set, Hand Move and Moving Wheel
|
||||||
|
When applying DELARO COMPLETE through irrigation equipment use the lowest obtainable water volume while maintaining uniform distribution.
|
||||||
|
Determine the amount of DELARO COMPLETE required to treat the area covered by the irrigation system. Add the required amount of DELARO
|
||||||
|
COMPLETE into the same quantity of water used to calibrate the injection period. Operate the system at the same pressure and time interval established
|
||||||
|
during the calibration. Stop injection equipment after treatment is completed. Continue to operate the system until the DELARO COMPLETE solution
|
||||||
|
has cleared the last sprinkler head.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
4
|
||||||
|
|
||||||
|
SPRAY DRIFT
|
||||||
|
Aerial Applications
|
||||||
|
• For aerial applications, do not apply when wind speeds exceed 15 mph at the application site. If the wind speed is greater than 10 mph, the boom length
|
||||||
|
must be 65% or less of the wingspan for fixed wing aircraft and 75% or less of the rotor diameter for helicopters. Otherwise, the boom length must be
|
||||||
|
75% or less of the wingspan for fixed-wing aircraft and 90% or less of the rotor diameter for helicopters.
|
||||||
|
• Do not release spray at a height greater than 10 ft above the ground or vegetative canopy, unless a greater application height is necessary for pilot
|
||||||
|
safety.
|
||||||
|
• Applicators must use ½ swath displacement upwind at the downwind edge of the field.
|
||||||
|
• Do not apply during temperature inversions.
|
||||||
|
Ground Boom Application
|
||||||
|
• Apply with the nozzle height recommended by the manufacturer, but no more than 4 feet above the ground or crop canopy.
|
||||||
|
• Applicators are required to use a medium or coarser droplet size (ASABE S572. I).
|
||||||
|
• Do not apply when wind speeds exceed 15 miles per hour at the application site.
|
||||||
|
• Do not apply during temperature inversions.
|
||||||
|
Spray Drift Advisories
|
||||||
|
THE APPLICATOR IS RESPONSIBLE FOR AVOIDING OFF-SITE SPRAY DRIFT. BE AWARE OF NEARBY NON-TARGET SITES AND ENVIRONMENTAL
|
||||||
|
CONDITIONS.
|
||||||
|
Importance of Droplet Size
|
||||||
|
An effective way to reduce spray drift is to apply large droplets. Use the largest droplets that provide target pest control. While applying larger
|
||||||
|
droplets will reduce spray drift, the potential for drift will be greater if applications are made improperly or under unfavorable environmental
|
||||||
|
conditions.
|
||||||
|
Controlling Droplet Size - Ground Boom
|
||||||
|
• Volume -Increasing the spray volume so that larger droplets are produced will reduce spray drift. Use the highest practical spray volume for the
|
||||||
|
application. If a greater spray volume is needed, consider using a nozzle with a higher flow rate.
|
||||||
|
• Pressure -Use the lowest spray pressure recommended for the nozzle to produce the target spray volume and droplet size.
|
||||||
|
• Spray Nozzle -Use a spray nozzle that is designed for the intended application. Consider using nozzles designed to reduce drift.
|
||||||
|
Controlling Droplet Size – Aircraft
|
||||||
|
• Adjust Nozzles - Follow nozzle manufacturers recommendations for setting up nozzles. Generally, to reduce fine droplets, nozzles should be
|
||||||
|
oriented parallel with the airflow in flight.
|
||||||
|
Boom Height-Ground Boom
|
||||||
|
For ground equipment, the boom should remain level with the crop and have minimal bounce.
|
||||||
|
Release Height – Aircraft
|
||||||
|
Higher release heights increase the potential for spray drift.
|
||||||
|
Shielded Sprayers
|
||||||
|
Shielding the boom or individual nozzles can reduce spray drift. Consider using shielded sprayers. Verify that the shields are not interfering with the
|
||||||
|
uniform deposition of the spray on the target area.
|
||||||
|
Temperature And Humidity
|
||||||
|
When making applications in hot and dry conditions, use larger droplets to reduce effects of evaporation.
|
||||||
|
Temperature Inversions
|
||||||
|
Drift potential is high during a temperature inversion. Temperature inversions are characterized by increasing temperature with altitude and are
|
||||||
|
common on nights with limited cloud cover and light to no wind. The presence of an inversion can be indicated by ground fog or by the movement
|
||||||
|
of smoke from a ground source or an aircraft smoke generator. Smoke that layers and moves laterally in a concentrated cloud (under low wind
|
||||||
|
conditions) indicates an inversion, while smoke that moves upward and rapidly dissipates indicates good vertical air mixing. Avoid applications
|
||||||
|
during temperature inversions.
|
||||||
|
Wind
|
||||||
|
Drift potential generally increases with wind speed. AVOID APPLICATIONS DURING GUSTY WIND CONDITIONS. Applicators need to be familiar with
|
||||||
|
local wind patterns and terrain that could affect spray drift.
|
||||||
|
COMPATIBILITY TESTING AND TANK MIX PARTNERS
|
||||||
|
It is the pesticide user’s responsibility to ensure that all products are registered for the intended use. Read and follow the applicable restrictions
|
||||||
|
and limitations and directions for use on all product labels involved in tank mixing. Users must follow the most restrictive directions for use and
|
||||||
|
precautionary statements of each product in the tank mixture.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
5
|
||||||
|
|
||||||
|
When using DELARO COMPLETE in tank mixtures, all products in water-soluble packaging should be added to the tank before any other tank-mix partner,
|
||||||
|
including DELARO COMPLETE. Allow the water-soluble packaging to completely dissolve and the product(s) to completely disperse before adding any
|
||||||
|
other tank-mix partner to the tank. If using DELARO COMPLETE in a tank mixture, observe all directions for use, crop/sites, use rates, dilution ratios,
|
||||||
|
precautions, and limitations which appear on the tank-mix partner product label. No label dosage rate should be exceeded, and the most restrictive label
|
||||||
|
precautions and limitations should be followed. This product must not be mixed with any product which prohibits such mixing. Tank mixtures or other
|
||||||
|
applications of products referenced on this label are permitted only in those states in which the referenced products are registered.
|
||||||
|
Compatibility
|
||||||
|
DELARO COMPLETE is compatible with most insecticide, fungicide, and foliar nutrient products. However, the physical compatibility of DELARO
|
||||||
|
COMPLETE with tank-mix partners should be tested before use. To determine the physical compatibility of DELARO COMPLETE with other products,
|
||||||
|
use a jar test, as described below.
|
||||||
|
Using a quart jar, add the proportionate amounts of the products to 1 qt. of water. Add wettable powders and water-dispersible granular products first,
|
||||||
|
then liquid flowables, and emulsifiable concentrates last. After thoroughly mixing, let stand for at least 5 minutes. If the combination remains mixed
|
||||||
|
or can be remixed readily, it is physically compatible. Once compatibility has been proven, use the same procedure for adding required ingredients
|
||||||
|
to the spray tank.
|
||||||
|
The crop safety of all potential tank mixes including additives and other pesticides on all crops has not been tested. Before applying any tank mixture
|
||||||
|
not specifically recommended on this label, the safety to the target crop should be confirmed. To test for crop safety, apply DELARO COMPLETE to the
|
||||||
|
target crop in a small area and in accordance with label instructions for the target crop.
|
||||||
|
Order of Mixing
|
||||||
|
Prepare no more spray mixture than is needed for the immediate operation. Thoroughly clean spray equipment before using this product. Vigorous
|
||||||
|
agitation is necessary for proper dispersal of the product. Maintain maximum agitation throughout the spraying operation. Do not let the spray mixture
|
||||||
|
stand overnight in the spray tank. Flush the spray equipment thoroughly following each use and apply the rinsate to a previously treated area.
|
||||||
|
DELARO COMPLETE Alone:
|
||||||
|
1. Add approximately 1/2 of the required amount of water to the mix tank.
|
||||||
|
2. With the agitator running, add the DELARO COMPLETE to the tank. Continue agitation while adding the remainder of the water.
|
||||||
|
3. Begin application of the solution after the DELARO COMPLETE has completely and uniformly dispersed into the mix water.
|
||||||
|
4. Maintain agitation until all of the mixture has been applied.
|
||||||
|
DELARO COMPLETE + Tank Mix Partners:
|
||||||
|
Add approximately 1/2 of the required amount of water to the mix tank. Start the agitator running before adding any tank-mix partners. In general,
|
||||||
|
tank-mix partners should be added in this order:
|
||||||
|
1. Products packaged in water soluble packaging
|
||||||
|
2. Wettable powders, wettable granules (dry flowables)
|
||||||
|
3. DELARO COMPLETE
|
||||||
|
4. Other liquid flowables
|
||||||
|
5. Emulsifiable concentrates
|
||||||
|
6. Water soluble liquids
|
||||||
|
7. Adjuvants
|
||||||
|
Always allow each tank-mix partner to become fully and uniformly dispersed before adding the next product. Provide sufficient agitation while adding
|
||||||
|
the remainder of the water. Maintain agitation until all of the mixture has been applied.
|
||||||
|
FUNGICIDE RESISTANCE MANAGEMENT (FRAC) RECOMMENDATIONS
|
||||||
|
For resistance management, please note that DELARO COMPLETE contains a Group 3 (prothioconazole), Group 11 (trifloxystrobin) and Group 7 (fluopyram)
|
||||||
|
fungicide. Any fungal population may contain individuals naturally resistant to DELARO COMPLETE and other Group 3 (prothioconazole), Group 11
|
||||||
|
(trifloxystrobin) and Group 7 (fluopyram) fungicides. A gradual or total loss of pest control may occur over time if these fungicides are used repeatedly in
|
||||||
|
the same fields.
|
||||||
|
Appropriate resistance-management strategies should be followed.
|
||||||
|
To delay fungicide resistance, take one or more of the following steps:
|
||||||
|
• Rotate the use of DELARO COMPLETE or other Group 3 (prothioconazole), Group 11 (trifloxystrobin) and Group 7 (fluopyram) fungicide within a
|
||||||
|
growing season sequence with different groups that control the same pathogens.
|
||||||
|
• Use tank mixtures with fungicides from a different group that are equally effective on the target pest when such use is permitted. Use at least the
|
||||||
|
minimum application rate as labeled by the manufacturer.
|
||||||
|
• Adopt an integrated disease management program for fungicide use that includes scouting, uses historical information related to pesticide use, and
|
||||||
|
crop rotation, and which considers host plant resistance, impact of environmental conditions on disease development, disease thresholds, as well
|
||||||
|
as cultural, biological and other chemical control practices.
|
||||||
|
• Where possible, make use of predictive disease models to effectively time fungicide applications. Note that using predictive models alone is not
|
||||||
|
sufficient to manage resistance.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
6
|
||||||
|
|
||||||
|
• Monitor treated fungal/bacterial populations for resistance development.
|
||||||
|
• Contact your local extension specialist or certified crop advisor for any additional pesticide resistance-management and/or IPM recommendations
|
||||||
|
for specific crops and pathogens.
|
||||||
|
• For further information or to report suspected resistance contact Bayer CropScience at 1-866-99BAYER (1-866-992-2937). You can also contact
|
||||||
|
your pesticide distributor or university extension specialist to report resistance.
|
||||||
|
ROTATIONAL CROPS
|
||||||
|
• Treated areas may be replanted with any crop specified on this label, as well as the following crops, as soon as practical following the last application:
|
||||||
|
Barley; Field Corn; Sweet Corn; Oats; Popcorn; Wheat; Cotton (subgroup 20C); Cucurbits (group 9); Dried shelled bean (except soybean and cowpea);
|
||||||
|
Peanut; Sugar Beet, root.
|
||||||
|
• Alfalfa can be planted 14 days after the last application.
|
||||||
|
• The following crops can be replanted 30 days after the last application: Artichoke, (Globe); Brassica (cole) leafy vegetables (group 5); Bulb vegetables
|
||||||
|
(group 3-07); Carrot; Buckwheat; Millet; Rye; Sorghum; Teosinte; Triticale; Citrus (group 10-10); Dill seed; Fruiting Vegetables (group 8-10); Ginseng;
|
||||||
|
Grapes and small vines (except fuzzy kiwifruit) (subgroup 13-07F); Herb (subgroup 19A); Hops; Leafy vegetables (except watercress) (group 4);
|
||||||
|
Edible-podded legume vegetables (subgroup 6A); Pome fruit (group 11-10); Potato; Stone Fruits (group 12-12); Succulent shelled pea and bean
|
||||||
|
(except cowpea) (subgroup 6B); Root, tuberous and corm vegetables (except potato, sugarbeet) (subgroups 1B and 1C); Rapeseed (subgroup 20A);
|
||||||
|
Small Berries (caneberries and bushberries) (subgroups 13-07A and 13-07B); Strawberry and other low-growing berries, except cranberry (subgroup
|
||||||
|
13-07G); Sunflower (subgroup 20B); Sugarcane in Region 3; Tobacco; Tree Nuts (group 14-12).
|
||||||
|
Do not rotate to crops other than those listed above.
|
||||||
|
SPECIFIC CROP DIRECTIONS
|
||||||
|
CORN
|
||||||
|
(Field Corn, Field Corn Grown for Seed and Popcorn)
|
||||||
|
Disease Controlled Product Rate (fl oz/A) Product Instructions
|
||||||
|
Anthracnose Leaf Blight
|
||||||
|
(Colletotrichum graminicola)
|
||||||
|
Eyespot
|
||||||
|
(Aureobasidium zeae)
|
||||||
|
Gray Leaf Spot
|
||||||
|
(Cercospora zeae-maydis)
|
||||||
|
4.0 – 6.0
|
||||||
|
(0.046 lbs prothioconazole/A +
|
||||||
|
0.040 lbs trifloxystrobin/A +
|
||||||
|
0.033 lbs fluopyram/A to 0.069 lbs
|
||||||
|
prothioconaozle/A + 0.060 lbs
|
||||||
|
trifloxystrobin/A + 0.050 lbs
|
||||||
|
fluopyram/A)
|
||||||
|
For Early Season control of anthracnose, eyespot and gray leaf spot,
|
||||||
|
apply DELARO COMPLETE as a broadcast foliar spray at V4 (4 leaf
|
||||||
|
collar) to V7 (7 leaf collar) growth stages when conditions are favorable
|
||||||
|
for disease development.
|
||||||
|
For season-long control of these diseases and the diseases listed below,
|
||||||
|
apply a sequential treatment of DELARO COMPLETE at 8.0 -12.0 fl. oz./acre
|
||||||
|
from VT (lowest branch on the tassel is visible but the silks have not yet
|
||||||
|
emerged) through R2 (blister) growth stages.
|
||||||
|
Anthracnose Leaf Blight
|
||||||
|
(Colletotrichum graminicola)
|
||||||
|
Eyespot
|
||||||
|
(Aureobasidium zeae)
|
||||||
|
Gray Leaf Spot
|
||||||
|
(Cercospora zeae-maydis)
|
||||||
|
Northern Corn Leaf Blight
|
||||||
|
(Setosphaeria turcica)*
|
||||||
|
Northern Corn Leaf Spot
|
||||||
|
(Cochliobolus carbonum)*
|
||||||
|
Rust (Puccinia spp.)
|
||||||
|
Physoderma Brown Spot
|
||||||
|
(Physoderma maydis)
|
||||||
|
Southern Corn Leaf Blight
|
||||||
|
(Cochliobolus heterostrophus)*
|
||||||
|
Tar spot
|
||||||
|
(Phyllachora maydis)
|
||||||
|
*The above diseases are also known as
|
||||||
|
Helminthosporium leaf blights.
|
||||||
|
8.0 - 12.0
|
||||||
|
(0.092 lbs prothioconazole/A +
|
||||||
|
0.081 lbs trifloxystrobin/A +
|
||||||
|
0.067 lbs fluopyram/A to 0.138 lbs
|
||||||
|
prothioconazole/A + 0.121 lbs
|
||||||
|
trifloxystrobin/A+ 0.100 lbs
|
||||||
|
fluopyram/A)
|
||||||
|
Apply DELARO COMPLETE when disease first appears and continue
|
||||||
|
on a 14-day interval if conditions for disease development persist.
|
||||||
|
The inclusion of an adjuvant in the spray tank, for applications made
|
||||||
|
through V8 (the collar of the eighth leaf is visible) and after tassel
|
||||||
|
emergence (VT) is recommended.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
7
|
||||||
|
|
||||||
|
Application Restrictions:
|
||||||
|
Minimum retreatment interval is 14 days.
|
||||||
|
Pre-Harvest Interval (PHI): 14 day(s) for grain and fodder.
|
||||||
|
Do not allow livestock to graze treated area for 14 days and do not harvest for food or feed within 14 days of application.
|
||||||
|
Minimum application volumes: 10 gallons/Acre (Ground); 2 gallons/Acre (Aerial)
|
||||||
|
Do not apply more than 24.0 fl oz of DELARO COMPLETE (0.276 lb priothioconazole + 0.242 lb trifloxystrobin + 0.201 lb fluopyram) per acre per year.
|
||||||
|
Do not exceed 0.713 lbs prothioconazole per acre per year, or 0.238 lbs trifloxystrobin, or 0.446 lbs fluopyram per acre per year from all uses, including soil
|
||||||
|
and foliar applications.
|
||||||
|
To limit the potential for development of disease resistance to this fungicide, do not make more than 2 sequential applications of DELARO COMPLETE or
|
||||||
|
any Group 11 or Group 7 containing fungicide before rotating with a fungicide from a different Group.
|
||||||
|
Application of DELARO COMPLETE is not recommended at times when corn is under severe environmental stress conditions.
|
||||||
|
SOYBEAN
|
||||||
|
Disease Controlled Product Rate (fl oz/A) Product Instructions
|
||||||
|
Alternaria Leaf Spot
|
||||||
|
(Alternaria spp.)
|
||||||
|
Anthracnose
|
||||||
|
(Colletotrichum truncatum)
|
||||||
|
Asian Soybean Rust
|
||||||
|
(Phakopsora pachyrhizi)
|
||||||
|
Brown Spot
|
||||||
|
(Septoria glycines)
|
||||||
|
Cercospora Blight
|
||||||
|
(Cercospora kikuchii)
|
||||||
|
Frogeye Leaf Spot
|
||||||
|
(Cercospora sojina)
|
||||||
|
Pod & Stem Blight
|
||||||
|
(Diaporthe phaseolorum)
|
||||||
|
Powdery Mildew
|
||||||
|
(Microsphaera diffusa)
|
||||||
|
Rhizoctonia Aerial Blight
|
||||||
|
(Rhizoctonia solani)
|
||||||
|
Target Spot
|
||||||
|
(Corynespora cassiicola)
|
||||||
|
8.0 - 11.0
|
||||||
|
(0.092 lbs prothioconazole/A +
|
||||||
|
0.081 lbs trifloxystrobin/A +
|
||||||
|
0.067 lbs fluopyram/A to
|
||||||
|
0.126 lbs prothioconazole/A +
|
||||||
|
0.111 lbs trifloxystrobin/A+
|
||||||
|
0.092 lbs fluopyram/A)
|
||||||
|
Apply DELARO COMPLETE as a broadcast foliar spray at early
|
||||||
|
flowering or prior to disease development, whichever is earlier.
|
||||||
|
Repeat applications on a 10- to 21-day spray interval if disease
|
||||||
|
monitoring or environmental factors indicate favorable conditions
|
||||||
|
for continued disease development.
|
||||||
|
Use of the higher rates and shorter spray intervals is recommended
|
||||||
|
when disease pressure is severe.
|
||||||
|
Disease Suppressed Product Rate (fl oz/A) Product Instructions
|
||||||
|
Sclerotinia Stem Rot also known as White Mold
|
||||||
|
(Sclerotinia sclerotiorum)
|
||||||
|
8.0 - 11.0
|
||||||
|
(0.092 lbs prothioconazole/A
|
||||||
|
+ 0.081 lbs trifloxystrobin/A +
|
||||||
|
0.067 lbs fluopyram/A to
|
||||||
|
0.126 lbs prothioconazole/A
|
||||||
|
+ 0.111 lbs trifloxystrobin/A+
|
||||||
|
0.092 lbs fluopyram/A)
|
||||||
|
Apply DELARO COMPLETE as a broadcast foliar spray at early
|
||||||
|
flowering, prior to disease development.
|
||||||
|
Repeat applications on a 10- to 21-day spray interval if disease
|
||||||
|
monitoring or environmental factors indicate favorable conditions
|
||||||
|
for continued disease development.
|
||||||
|
Use of the higher rates and shorter spray intervals is recommended
|
||||||
|
when disease pressure is severe.
|
||||||
|
Application Restrictions:
|
||||||
|
Pre-Harvest Interval (PHI): 21 day(s)
|
||||||
|
Minimum application volumes: 10 gallons/Acre (Ground); 2 gallons/Acre (Aerial) Do not graze or feed soybean forage or hay.
|
||||||
|
Do not apply more than 33.0 fl oz of DELARO COMPLETE (0.379 lb priothioconazole + 0.333 lb trifloxystrobin + 0.276 lb fluopyram) per acre per year.
|
||||||
|
Do not exceed 0.53 lbs prothioconazole per acre per year, or 0.33 lbs trifloxystrobin per acre per year, or 0.446 lbs fluopyram per acre per year.
|
||||||
|
Do not apply more than 3 applications per year of DELARO COMPLETE.
|
||||||
|
Do not apply to cultivars that are to be grazed, cut for forage or hay, or used as livestock feed.
|
||||||
|
To limit the potential for development of disease resistance to this fungicide, do not make more than 2 sequential applications of DELARO COMPLETE or
|
||||||
|
any Group 11 or Group 7 containing fungicide before rotating with a fungicide from a different Group.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
8
|
||||||
|
|
||||||
|
SWEET CORN (Including Seed Production)
|
||||||
|
Disease Controlled Product Rate (fl oz/A) Product Instructions
|
||||||
|
Foliar Diseases
|
||||||
|
8.0
|
||||||
|
(0.092 lbs
|
||||||
|
prothioconazole/A + 0.081 lbs
|
||||||
|
trifloxystrobin/A + 0.067 lbs
|
||||||
|
fluopyram/A)
|
||||||
|
Apply DELARO COMPLETE when disease first appears and
|
||||||
|
continue on a 5- to 14-day interval if favorable conditions for
|
||||||
|
disease development persist.
|
||||||
|
Use of an adjuvant may enhance the performance of DELARO
|
||||||
|
COMPLETE. If utilized, apply the lowest label recommended rate of
|
||||||
|
a NIS adjuvant to enhance disease control.
|
||||||
|
Anthracnose Leaf Blight
|
||||||
|
(Colletotrichum graminicola)
|
||||||
|
Eye Spot
|
||||||
|
(Aureobasidium zeae)
|
||||||
|
Gray Leaf Spot
|
||||||
|
(Cercospora zeae-maydis)
|
||||||
|
Northern Corn Leaf Blight
|
||||||
|
(Setosphaeria turcica) *
|
||||||
|
Northern Corn Leaf Spot
|
||||||
|
(Cochliobolus carbonum) *
|
||||||
|
Rusts
|
||||||
|
(Puccinia spp.)
|
||||||
|
Southern Corn Leaf Blight
|
||||||
|
(Cochliobolus heterostrophus) *
|
||||||
|
Tar spot
|
||||||
|
(Phyllachora maydis)
|
||||||
|
*The above diseases are also known as
|
||||||
|
Helminthosporium leaf blights
|
||||||
|
Application Restrictions:
|
||||||
|
Pre-Harvest Interval (PHI):
|
||||||
|
Forage and ears: 0 day(s)
|
||||||
|
Fodder: 14 day(s)
|
||||||
|
Do not apply more than 32.0 fl oz of DELARO COMPLETE (0.368 lb prothioconazole + 0.323 lbs trifloxystrobin + 0.268 lbs fluopyram) per acre per year.
|
||||||
|
Minimum application volumes: 10 gallons/Acre (Ground); 2 gallons/Acre (Aerial) Do not make more than 4 applications of DELARO COMPLETE per year.
|
||||||
|
Do not feed hay or threshings or allow livestock to graze in treated areas.
|
||||||
|
Do not exceed 0.713 lbs prothioconazole, 0.489 lbs trifloxystrobin, or 0.446 lbs fluopyram, per acre per year from all uses, including soil and foliar applications.
|
||||||
|
To limit the potential for development of disease resistance to this fungicide, do not make more than 2 sequential applications of DELARO COMPLETE or
|
||||||
|
any Group 11 containing fungicide before rotating with a fungicide from a different Group.
|
||||||
|
WHEAT
|
||||||
|
Disease Controlled Product Rate (fl oz/A) Product Instructions
|
||||||
|
Powdery Mildew
|
||||||
|
(Blumeria graminis f. sp. tritici)
|
||||||
|
Rusts
|
||||||
|
(Puccinia spp.)
|
||||||
|
Septoria Blotch
|
||||||
|
(Septoria tritici)
|
||||||
|
Stagonospora Blotch
|
||||||
|
(Stagonospora nodorum)
|
||||||
|
Tan Spot
|
||||||
|
(Pyrenophora tritici-repentis)
|
||||||
|
8.0
|
||||||
|
(0.092 lbs prothioconazole/A
|
||||||
|
+ 0.081 lbs trifloxystrobin/A +
|
||||||
|
0.067 lbs fluopyram/A)
|
||||||
|
Begin applications preventively when conditions are favorable for
|
||||||
|
disease development. A second application
|
||||||
|
(minimum interval of 14 days) may be made if needed.
|
||||||
|
For control of early season powdery mildew, Septoria,
|
||||||
|
Stagonospora, tan spot, and suppression of rusts:
|
||||||
|
Apply 4.0 - 6.0 fl oz/acre of DELARO COMPLETE
|
||||||
|
Application Restrictions:
|
||||||
|
Pre-Harvest Interval (PHI): 35 day(s)
|
||||||
|
Minimum application volumes: 10 gallons/Acre (Ground); 2 gallons/Acre (Aerial)
|
||||||
|
Do not apply more than 16.0 fl oz of DELARO COMPLETE (0.184 lb prothioconazole + 0.161 lbs trifloxystrobin + 0.134 lbs fluopyram) per acre per year.
|
||||||
|
Do not make more than 2 applications of DELARO COMPLETE per year (16.0 fl oz).
|
||||||
|
Do not apply more than 0.293 lbs prothioconazole or 0.195 lbs trifloxystrobin or 0.446 lbs fluopyram per acre per year.
|
||||||
|
Do not apply after Feekes growth stage 10.5 (full head emergence).
|
||||||
|
Grazing Restrictions: If up to a total of 8.0 fl oz of DELARO COMPLETE per year are applied, do not allow livestock to graze within the treated area within
|
||||||
|
30 days after application, and do not harvest the treated crop for forage within 30 days after application or for hay within 45 days after application. If greater
|
||||||
|
than 8.0 fl oz of DELARO COMPLETE are applied per year, do not allow livestock to graze within the treated area, and do not harvest the treated crop for
|
||||||
|
forage or hay.
|
||||||
|
To limit the potential for development of disease resistance to this fungicide, do not make more than 2 sequential applications of DELARO COMPLETE or
|
||||||
|
any Group 11 or Group 7 containing fungicide before rotating with a fungicide from a different Group.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
9
|
||||||
|
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal.
|
||||||
|
Pesticide storage
|
||||||
|
Store in a cool, dry place and in such a manner as to prevent cross contamination with other pesticides, fertilizers, food, and feed. Store in original
|
||||||
|
container and out of the reach of children, preferably in a locked storage area.
|
||||||
|
Handle and open container in a manner as to prevent spillage. If the container is leaking, invert to prevent leakage. If container is leaking or material
|
||||||
|
spilled for any reason or cause, carefully dam up spilled material to prevent runoff. Refer to Precautionary Statements on label for hazards associated
|
||||||
|
with the handling of this material. Do not walk through spilled material. Absorb spilled material with absorbing type compounds and dispose of
|
||||||
|
as directed for pesticides below. In spill or leak incidents, keep unauthorized people away. You may contact the Bayer CropScience Emergency
|
||||||
|
Response Team for decontamination procedures or any other assistance that may be necessary. The Bayer CropScience Emergency Response
|
||||||
|
telephone number is 1-800-334-7577.
|
||||||
|
Pesticide disposal
|
||||||
|
Wastes resulting from the use of this product may be disposed of on site or at an approved waste disposal facility.
|
||||||
|
Container handling
|
||||||
|
Non-Refillable Containers
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Triple rinse or pressure rinse container (or equivalent) promptly after emptying. Triple rinse
|
||||||
|
as follows: Empty the remaining contents into application equipment or a mix tank and drain for 10 seconds after the flow begins to drip. Fill the container
|
||||||
|
1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into application equipment or a mix tank or store rinsate for later use or disposal.
|
||||||
|
Drain for 10 seconds after the flow begins to drip. Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application equipment or a mix tank and continue to drain for 10 seconds after the flow
|
||||||
|
begins to drip. Hold container upside down over application equipment or mix tank or collect rinsate for later use or disposal. Insert pressure rinsing
|
||||||
|
nozzle in the side of the container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10 seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill or by incineration.
|
||||||
|
Rigid Non-refillable Containers that are too large to shake (i.e., with capacities greater than 5 gallons or 50 lbs)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Refer to Bottom Discharge IBC or Top Discharge IBC, Drums, Kegs information as follows.
|
||||||
|
Bottom Discharge IBC (e.g. – Schuetz Caged IBC or Snyder Square Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of the person disposing of the container. To pressure rinse the container before
|
||||||
|
final disposal, empty the remaining contents from the IBC into application equipment or mix tank. Raise the bottom of the IBC by 1.5 inches on the
|
||||||
|
side which is opposite of the bottom discharge valve to promote more complete product removal.
|
||||||
|
Completely remove the top lid of the IBC. Use water pressurized to at least 40 PSI to rinse all interior portions. Continuously pump or drain rinsate
|
||||||
|
into application equipment or rinsate collection system while pressure rinsing. Continue pressure rinsing for 2 minutes or until rinsate becomes clear.
|
||||||
|
Replace the lid and close bottom valve.
|
||||||
|
Top Discharge IBC, Drums, Kegs (e.g.– Snyder 120 Next Gen, Bonar B120, Drums, and Kegs)
|
||||||
|
Triple rinsing the container before final disposal is the responsibility of the person disposing of the container. To triple rinse the container before final
|
||||||
|
disposal, empty the remaining contents from this container into application equipment or mix tank. Fill the container at least 10 percent full with water.
|
||||||
|
Agitate vigorously or recirculate water with the pump for 2 minutes. Rinse all interior surfaces. Pour or pump rinsate into application equipment or
|
||||||
|
rinsate collection system. Repeat this procedure two more times.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill or by incineration.
|
||||||
|
Refillable Containers
|
||||||
|
Refillable container. Refer to Bottom Discharge IBC or Top Discharge IBC, Drums, Kegs information as follows. Refill this container with pesticide
|
||||||
|
only. Do not reuse this container for any other purpose. Contact your Ag retailer or Bayer CropScience for container return, disposal and recycling
|
||||||
|
information.
|
||||||
|
Bottom Discharge IBC (e.g. – Schuetz Caged IBC or Snyder Square Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of the person disposing of the container. Cleaning before refilling is the
|
||||||
|
responsibility of the refiller. To pressure rinse the container before final disposal, empty the remaining contents from the IBC into application equipment
|
||||||
|
or mix tank. Raise the bottom of the IBC by 1.5 inches on the side which is opposite of the bottom discharge valve to promote more complete product
|
||||||
|
removal. Completely remove the top lid of the IBC. Use water pressurized to at least 40 PSI to rinse all interior portions. Continuously pump or drain
|
||||||
|
rinsate into application equipment or rinsate collection system while pressure rinsing.
|
||||||
|
Continue pressure rinsing for 2 minutes or until rinsate becomes clear. Replace the lid and close bottom valve.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill or by incineration.
|
||||||
|
End users are authorized to remove tamper-evident cables as required to remove the product from the container unless the container is equipped with
|
||||||
|
one-way valves and refilling or returning is planned. If this is the case, end-users are not authorized to remove tamper-evident cables, remove one-way
|
||||||
|
valves, or clean container.
|
||||||
|
Bayer, Bayer Cross and Delaro® are registered trademarks of Bayer Group.
|
||||||
|
©2024 Bayer Group. All rights reserved.
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
10
|
||||||
|
|
||||||
|
7.125”
|
||||||
|
6.875”
|
||||||
|
6.495”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
6.625”
|
||||||
|
11
|
||||||
|
|
||||||
|
EPA Est .
|
||||||
|
NET CONTENTS
|
||||||
|
GAL US87293602B 231214B 01/24
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
See Back Panel for First Aid Instructions and Booklet for Complete Precautionary
|
||||||
|
Statements and Directions for Use.
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY Call 24 Hours a Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Causes moderate eye irritation .
|
||||||
|
• Harmful if swallowed or absorbed through skin .
|
||||||
|
• Avoid contact with skin, eyes, and clothing . Wash thoroughly with soap and water after handling
|
||||||
|
and before eating, drinking, chewing gum, using tobacco, or using the toilet . Remove and wash
|
||||||
|
contaminated clothing before reuse .
|
||||||
|
FIRST AID
|
||||||
|
If in Eyes: • Hold eye open and rinse slowly and gently with water for 15-20 minutes .
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then continue
|
||||||
|
rinsing eye .
|
||||||
|
• Call a poison control center or doctor for treatment advice .
|
||||||
|
If
|
||||||
|
Swallowed:
|
||||||
|
• Call a poison control center or doctor immediately for treatment advice .
|
||||||
|
• Have person sip a glass of water if able to swallow .
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control center or doctor .
|
||||||
|
• Do not give anything by mouth to an unconscious person .
|
||||||
|
If on Skin
|
||||||
|
or Clothing:
|
||||||
|
• Take off contaminated clothing .
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes .
|
||||||
|
• Call a poison control center or doctor for treatment advice .
|
||||||
|
If Inhaled: • Move person to fresh air .
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to- mouth if possible .
|
||||||
|
• Call a poison control center or doctor for further treatment advice .
|
||||||
|
In case of emergency, call the toll-free Bayer CropScience Emergency Response
|
||||||
|
telephone number: 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison control center or
|
||||||
|
doctor, or going for treatment.
|
||||||
|
Note to Physician: No specific antidote . Treat Symptomatically .
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Applicators and other handlers must wear:
|
||||||
|
• Long-sleeved shirt and long pants
|
||||||
|
• Shoes plus socks
|
||||||
|
• Chemical resistant gloves made of any waterproof material made of barrier laminate, butyl rubber
|
||||||
|
≥ 14 mil, nitrile rubber ≥ 14 mil, or neoprene rubber ≥ 14 mil, polyethylene, polyvinyl chloride ≥ 14 mil, or
|
||||||
|
Viton ≥ 14 mil .
|
||||||
|
ENGINEERING CONTROLS
|
||||||
|
When handlers use closed systems, enclosed cabs, or aircraft in a manner that meets the
|
||||||
|
requirements listed in the Worker Protection Standard (WPS) for agricultural pesticides 40 CFR
|
||||||
|
170 .240(d)(4-6), the handler PPE requirements may be reduced or modified as specified in the WPS .
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
• Users should remove clothing/PPE immediately if pesticide gets inside . Then wash thoroughly and put
|
||||||
|
on clean clothing .
|
||||||
|
• Users should remove PPE immediately after handling this product . Wash the outside of gloves before
|
||||||
|
removing . As soon as possible, wash thoroughly and change into clean clothing .
|
||||||
|
• Users should wash hands before eating, drinking, chewing gum, using tobacco, or using the toilet .
|
||||||
|
USER SAFETY REQUIREMENTS
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE . If no such instructions for
|
||||||
|
washables exist, use detergent and hot water . Keep and wash PPE separately from other laundry .
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is toxic to fish, aquatic invertebrates, estuarine/marine invertebrates, and
|
||||||
|
freshwater/estuarine/marine aquatic plants . Applying this product when rain is not predicted for the
|
||||||
|
next 48 hours will help reduce potential risk to aquatic invertebrates by reducing pesticide runoff
|
||||||
|
from the treatment area into water bodies . Do not apply directly to water, or to areas where surface
|
||||||
|
water is present or to intertidal areas below the mean high water mark . Drift and runoff may be
|
||||||
|
hazardous to aquatic organisms in water adjacent to treated areas . Do not contaminate water when
|
||||||
|
disposing of equipment washwater or rinsate .
|
||||||
|
Surface Water Advisory Do not apply directly to water, or to areas where surface water is present,
|
||||||
|
or to intertidal areas below the mean high water mark . Do not contaminate water when disposing
|
||||||
|
of equipment washwater or rinsate . This product may impact surface water quality due to runoff of
|
||||||
|
rain water . This is especially true for poorly draining soils and soils with shallow ground water . This
|
||||||
|
product is classified as having high potential for reaching surface water via runoff for several months
|
||||||
|
or more after application . A level, well-maintained vegetative buffer strip between areas to which this
|
||||||
|
product is applied and surface water features such as ponds, streams, and springs will reduce the
|
||||||
|
potential loading of Fluopyram . Runoff of this product will be reduced by avoiding applications when
|
||||||
|
rainfall or irrigation is expected to occur within 48 hours . Sound erosion control practices will reduce
|
||||||
|
this product’s potential to reach aquatic sediment via runoff . Prothioconazole-desthio (a degradate
|
||||||
|
of prothioconazole) is known to leach through soil into ground water under certain conditions as a
|
||||||
|
result of label use . Use of this chemical in areas where soils are permeable, particularly where the
|
||||||
|
water table is shallow, may result in ground-water contamination .
|
||||||
|
Ground Water Advisory These chemicals have properties and characteristics associated with
|
||||||
|
chemicals detected in ground water . These chemicals may leach into groundwater if used in areas
|
||||||
|
where soils are permeable, particularly where the water table is shallow . Prothioconazole-desthio
|
||||||
|
(a degradate of prothioconazole) is known to leach through soil into ground water under certain
|
||||||
|
conditions as a result of label use . Use of this chemical in areas where soils are permeable,
|
||||||
|
particularly where the water table is shallow, may result in ground-water contamination .
|
||||||
|
Run Off Management This product may impact surface water quality due to runoff of rain water .
|
||||||
|
This is especially true for poorly draining soils and soils with shallow ground water . This product
|
||||||
|
is classified as having high potential for reaching surface water via runoff for several months
|
||||||
|
or more after application . A level, well-maintained vegetative buffer strip between areas to
|
||||||
|
which this product is applied and surface water features such as ponds, streams, and springs
|
||||||
|
will reduce the potential loading of this product from runoff water and sediment . Runoff of
|
||||||
|
this product will be reduced by avoiding applications when rainfall or irrigation is expected to
|
||||||
|
occur within 48 hours .
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with its labeling .
|
||||||
|
Read the entire label before using this product .
|
||||||
|
Not for sale, distribution, or use in Nassau and Suffolk counties, New York except as
|
||||||
|
permitted under FIFRA 24(c), Special Local Need registration.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection Standard,
|
||||||
|
40 CFR part 170 . This Standard contains requirements for the protection of agricultural workers
|
||||||
|
on farms, forests, nurseries, and greenhouses and handlers of agricultural pesticides . It contains
|
||||||
|
requirements for training, decontamination, and emergency assistance . It also contains specific
|
||||||
|
instructions and exceptions pertaining to the statements on this label about personal protective
|
||||||
|
equipment (PPE), notification to workers, and restricted-entry interval . The requirements in this
|
||||||
|
box only apply to uses of this product that are covered by the Worker Protection Standard .
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted entry interval (REI) of
|
||||||
|
12 hours .
|
||||||
|
PPE required for early entry to treated areas (that is permitted under the Worker Protection
|
||||||
|
Standard and that involves contact with anything that has been treated, such as plants, soil,
|
||||||
|
or water), is:
|
||||||
|
• Coveralls over long-sleeved shirt and long pants
|
||||||
|
• Chemical-resistant gloves made of waterproof material
|
||||||
|
• Shoes plus socks
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal .
|
||||||
|
Pesticide storage
|
||||||
|
Store in a cool, dry place and in such a manner as to prevent cross contamination with
|
||||||
|
other pesticides, fertilizers, food, and feed . Store in original container and out of the reach
|
||||||
|
of children, preferably in a locked storage area . Handle and open container in a manner as
|
||||||
|
to prevent spillage . If the container is leaking, invert to prevent leakage . If container is leaking
|
||||||
|
or material spilled for any reason or cause, carefully dam up spilled material to prevent runoff .
|
||||||
|
Refer to Precautionary Statements on label for hazards associated with the handling of this
|
||||||
|
material . Do not walk through spilled material . Absorb spilled material with absorbing type
|
||||||
|
compounds and dispose of as directed for pesticides below . In spill or leak incidents, keep
|
||||||
|
unauthorized people away . You may contact the Bayer CropScience Emergency Response
|
||||||
|
Team for decontamination procedures or any other assistance that may be necessary . The
|
||||||
|
Bayer CropScience Emergency Response telephone number is 1-800-334-7577 .
|
||||||
|
Pesticide disposal
|
||||||
|
Wastes resulting from the use of this product may be disposed of on site or at an approved
|
||||||
|
waste disposal facility .
|
||||||
|
Container handling
|
||||||
|
Refillable containers.
|
||||||
|
Refillable container. Refer to Bottom Discharge IBC or Top Discharge IBC, Drums, Kegs
|
||||||
|
information as follows . Refill this container with pesticide only . Do not reuse this container
|
||||||
|
for any other purpose . Contact your Ag retailer or Bayer CropScience for container return,
|
||||||
|
disposal and recycling information .
|
||||||
|
Bottom Discharge IBC (e.g. – Schuetz Caged IBC or Snyder Square Stackable) Pressure
|
||||||
|
rinsing the container before final disposal is the responsibility of the person disposing
|
||||||
|
of the container . Cleaning before refilling is the responsibility of the refiller . To pressure
|
||||||
|
rinse the container before final disposal, empty the remaining contents from the IBC into
|
||||||
|
application equipment or mix tank . Raise the bottom of the IBC by 1 .5 inches on the side
|
||||||
|
which is opposite of the bottom discharge valve to promote more complete product removal .
|
||||||
|
Completely remove the top lid of the IBC . Use water pressurized to at least 40 PSI to rinse all
|
||||||
|
interior portions . Continuously pump or drain rinsate into application equipment or rinsate
|
||||||
|
collection system while pressure rinsing . Continue pressure rinsing for 2 minutes or until
|
||||||
|
rinsate becomes clear . Replace the lid and close bottom valve .
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a
|
||||||
|
sanitary landfill or by incineration .
|
||||||
|
End users are authorized to remove tamper-evident cables as required to remove the
|
||||||
|
product from the container unless the container is equipped with one-way valves and
|
||||||
|
refilling or returning is planned . If this is the case, end-users are not authorized to remove
|
||||||
|
tamper-evident cables, remove one-way valves, or clean container .
|
||||||
|
For: control of certain diseases and plant health in Corn, Soybean,
|
||||||
|
Sweet corn and Wheat.
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Prothioconazole, 2-[2-(1-Chlorocyclopropyl)-3-(2-chlorophenyl)-
|
||||||
|
2-hydroxypropyl]-1,2-dihydro-3H-1,2,4-triazole-3-thione: . . . . . . . . . . . . . . . . . . . . 14.90%
|
||||||
|
Trifloxystrobin, (E,E)-alpha-(methoxyimino)-2-[[[[1-[3-(trifluoromethyl)phenyl]
|
||||||
|
ethylidene]amino]oxy]methyl]-,methylester . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13.10%
|
||||||
|
Fluopyram: N-[2-[3-chloro-5-(trifluoromethyl)-2-pyridinyl]ethyl]-2-
|
||||||
|
(trifluoromethyl)benzamide . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10.90%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61.10%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 1 .47 pounds Prothioconazole, 1 .29 pounds Trifloxystrobin
|
||||||
|
and 1 .07 pound Fluopyram per U .S . gallon
|
||||||
|
EPA Reg. No. 264-1207
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
See Back Panel for First Aid Instructions and Booklet for Complete
|
||||||
|
Precautionary Statements and Directions for Use.
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours a Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N . Lindbergh Blvd .
|
||||||
|
St . Louis, MO 63167
|
||||||
|
Delaro® is a registered trademark of Bayer Group .
|
||||||
|
©2024 Bayer Group . All rights reserved .
|
||||||
|
US87293602B (231214B) DELARO COMPLETE Net Contents: No WT MINI BULK GAL Base
|
||||||
|
Colors: Black Label Coordinator: Mark Schmidt 1/23/2024
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
PROTHIOCONAZOLE
|
||||||
|
TRIFLOXYSTROBIN
|
||||||
|
FLUOPYRAM
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
3
|
||||||
|
11
|
||||||
|
7
|
||||||
|
Complete
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "diflexx-duo",
|
||||||
|
"epa_reg_no": "264-1184",
|
||||||
|
"product_name": "Diflexx Duo Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Tembotrione",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Diglycolamine salt of 3,6-dichloro-o-anisic acid",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx_Duo_Label1ipdf",
|
||||||
|
"filename": "DiFlexx_Duo_Label1ipdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:31:47+00:00",
|
||||||
|
"page_count": 13,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "DIFLEXX DUO MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx_Duo1p_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-23T14:34:20+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "DIFLEXX DUO MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx_Duo1i_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-23T14:17:31+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Volunteer Peanuts in Field Corn, Corn Grown for Silage, Popcorn, & Seed Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx_Duo_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:25:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "DiFlexx DUO App Card",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/diflexx-duo/DiFlexx-DUO-App-Card.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:55:30+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "SCH Zero Tolerance Product Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/diflexx-duo/SCH-Zero-Tolerance-Product-Bulletin.PDF",
|
||||||
|
"last_modified": "2022-12-01T18:55:30+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Diflexx and Diflexx Duo VRA Rec 2024",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Diflexx-and-Diflexx-Duo-VRA-Rec-2024pdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:46+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "DiFlexx Duo Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx-DUO_2025pdf",
|
||||||
|
"last_modified": "2026-05-15T15:44:36+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/diflexx-duo-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:58:35.505938+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,69 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "diflexx",
|
||||||
|
"epa_reg_no": "264-1173",
|
||||||
|
"product_name": "Diflexx Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Diglycolamine salt of 3,6-dichloro-o-anisic acid",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx1v_Labelpdf",
|
||||||
|
"filename": "DiFlexx1v_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:29:33+00:00",
|
||||||
|
"page_count": 17,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "DIFLEXX MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx1t_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "DIFLEXX MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx1h_MSDSpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Rates in Popcorn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx_2EE1pdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:20+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Rates in Corn (Field, Popcorn, Seed, & Silage)",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:31:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Diflexx and Diflexx Duo VRA Rec 2024",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Diflexx-and-Diflexx-Duo-VRA-Rec-2024pdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:46+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "DiFlexx Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/DiFlexx_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T23:03:49+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/diflexx-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:00:14.913935+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,62 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "emesto-silver",
|
||||||
|
"epa_reg_no": "264-1123",
|
||||||
|
"product_name": "Emesto Silver Seed Treatment Fungicide",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Penflufen",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Prothioconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Emesto_Silver1f_Labelpdf",
|
||||||
|
"filename": "Emesto_Silver1f_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:21:20+00:00",
|
||||||
|
"page_count": 7,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "EMESTO SILVER MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Emesto_Silver_MSDS1igpdf",
|
||||||
|
"last_modified": "2026-01-30T14:30:07+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "EMESTO SILVER MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Emesto_Silver_MSDS1gipdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:27+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Management of Potato Early Dying & Verticillium Wilt with Programs of Emesto Silver, Velum Prime, & Luna Tranquility",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Emesto_Silver_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:22:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "2018 Emesto Silver Potato Technical Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/emesto-silver/Emesto-Silver-Potato-Technical-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-02T18:15:46+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/emesto-silver-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:09:49.434018+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,427 @@
|
|||||||
|
# Emesto Silver Seed Treatment Fungicide
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-1123
|
||||||
|
- **Active ingredients:** Penflufen, Prothioconazole
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/emesto-silver-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Emesto_Silver1f_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
4.50”
|
||||||
|
4.25”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Net
|
||||||
|
Contents:
|
||||||
|
2.5 Gallons
|
||||||
|
|
||||||
|
US61380548D 160328Dv2 01/19
|
||||||
|
Produced for:
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
EMESTO is a registered trademark of Bayer.
|
||||||
|
©2019 Bayer CropScience
|
||||||
|
|
||||||
|
For use as a fungicide seed dressing for protection against
|
||||||
|
listed seedborne and soilborne diseases in potatoes.
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Penflufen ........................................................... 9.35%
|
||||||
|
Prothioconazole ...................................................... 1.68%
|
||||||
|
OTHER INGREDIENTS: ............................................... 88.97%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 0.83 lb Penflufen and 0.15 lb Prothioconazole per gallon
|
||||||
|
(100 g Penflufen and 18 g Prothioconazole per liter)
|
||||||
|
EPA Reg. No. 264-1123
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
SMARTLINE US61380548D (160328Dv2) LABMC EMESTO SILVER 2.5 GAL ETL
|
||||||
|
colors: CMYK 1/25/19
|
||||||
|
|
||||||
|
1
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
FIRST AID
|
||||||
|
IF SWALLOWED: • Call a poison control center or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to by a poison control
|
||||||
|
center or doctor.
|
||||||
|
• Do not give anything to an unconscious person.
|
||||||
|
IF ON SKIN: • Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency
|
||||||
|
Response Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling a poison control
|
||||||
|
center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed. Harmful if absorbed through the skin. Avoid contact with
|
||||||
|
skin, eyes, or clothing.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Some materials that are chemical-resistant to this product are barrier laminate,
|
||||||
|
butyl rubber, nitrile rubber, neoprene rubber, polyvinyl chloride, or viton. If you want
|
||||||
|
more options, follow the instructions for category C on an EPA chemical-resistance
|
||||||
|
category selection chart.
|
||||||
|
All mixers, loaders, applicators and other handlers must wear:
|
||||||
|
• long sleeved shirt and long pants,
|
||||||
|
• socks plus shoes,
|
||||||
|
• chemical resistant gloves, except when bagging or sewing bags of treated seeds,
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such
|
||||||
|
instructions for washables exist, use detergent and hot water. Keep and wash PPE
|
||||||
|
separately from other laundry.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Wash hands before eating, drinking, chewing gum, using tobacco or using the toilet.
|
||||||
|
Remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly
|
||||||
|
and put on clean clothing.
|
||||||
|
Remove PPE immediately after handling this product. Wash the outside of gloves
|
||||||
|
before removing. As soon as possible, wash thoroughly and change into clean
|
||||||
|
clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is toxic to fish, aquatic invertebrates, and freshwater/estuaries/marine
|
||||||
|
aquatic plants. Do not apply directly to water, or to areas where surface water is present
|
||||||
|
or to intertidal areas below the mean high water mark. Runoff may be hazardous to
|
||||||
|
aquatic organisms in water adjacent to treated areas. Do not contaminate water when
|
||||||
|
disposing of equipment washwater or rinsate. Treated seed exposed on soil surface
|
||||||
|
may be hazardous to wildlife. Cover or collect seed spilled during loading.
|
||||||
|
This product has properties and characteristics associated with chemicals detected
|
||||||
|
in ground water. This chemical may leach into ground water if used in areas where
|
||||||
|
soils are permeable, particularly where the water table is shallow. Therefore contain
|
||||||
|
any product spills or equipment leaks and dispose of wastes according to the disposal
|
||||||
|
instructions on this label.
|
||||||
|
|
||||||
|
2
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner
|
||||||
|
inconsistent with its labeling.
|
||||||
|
For use only in commercial seed treatment equipment. Not for use in hopper box,
|
||||||
|
planter box, slurry box, or other on-farm seed treatment applications except for
|
||||||
|
potato seed pieces.
|
||||||
|
The Agricultural Use Requirements statements below are specific to the potato
|
||||||
|
seed piece use.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker
|
||||||
|
Protection Standard, 40 CFR part 170. This Standard contains requirements
|
||||||
|
for the protection of agricultural workers on farms, forests, nurseries, and
|
||||||
|
greenhouses, and handlers of agricultural pesticides. It contains requirements for
|
||||||
|
training, decontamination, notification, and emergency assistance. It also contains
|
||||||
|
specific instructions and exceptions pertaining to the statements on this label
|
||||||
|
about personal protective equipment (PPE), and restricted-entry interval. The
|
||||||
|
requirements in this box only apply to uses of this product that are covered by the
|
||||||
|
Worker Protection Standard. Do not enter or allow worker entry into treated areas
|
||||||
|
during the restricted entry interval (REI) of 12 hours. Exception: If the product is
|
||||||
|
soil-injected or soil-incorporated, the Worker Protection Standard, under certain
|
||||||
|
circumstances, allows workers to enter the treated area if there will be no contact
|
||||||
|
with anything that has been treated. PPE required for early reentry to treated
|
||||||
|
areas that is permitted under the Worker Protection Standard and that involves
|
||||||
|
contact with anything that has been treated, such as plants, soil, or water, is:
|
||||||
|
coveralls, chemical resistant gloves made of any waterproof material, and shoes
|
||||||
|
plus socks.
|
||||||
|
POTATO SEED PIECE TREATMENT
|
||||||
|
CROP DISEASE
|
||||||
|
APPLICATION
|
||||||
|
RATE FOR SEED
|
||||||
|
PIECE DIRECTIONS
|
||||||
|
Potato
|
||||||
|
(seed piece
|
||||||
|
application)
|
||||||
|
Black scurf,
|
||||||
|
stem & stolon
|
||||||
|
canker, caused
|
||||||
|
by seedborne and
|
||||||
|
soilborne
|
||||||
|
(suppression)
|
||||||
|
|
||||||
|
Rhizoctonia solani
|
||||||
|
Silver scurf caused
|
||||||
|
by seedborne
|
||||||
|
Helminthosporium
|
||||||
|
solani
|
||||||
|
(suppression)
|
||||||
|
Seed piece
|
||||||
|
rot caused by
|
||||||
|
Fusarium
|
||||||
|
(suppression)
|
||||||
|
Apply 0.31 fl oz
|
||||||
|
per 100 lbs of seed
|
||||||
|
pieces
|
||||||
|
Maximum number
|
||||||
|
of application per
|
||||||
|
year is 3.
|
||||||
|
For disease control, good coverage of
|
||||||
|
the seed piece is required.
|
||||||
|
Apply specified dosage as a diluted
|
||||||
|
spray slurry using equipment that
|
||||||
|
ensures uniform coverage of each
|
||||||
|
seed piece. Do not apply more than
|
||||||
|
2.5 fl oz of slurry / 100 lbs of seed
|
||||||
|
pieces. Apply only in areas with
|
||||||
|
adequate ventilation or in areas that
|
||||||
|
are equipped to remove spray mist
|
||||||
|
or dust.
|
||||||
|
As part of the seed cutting and
|
||||||
|
treating process, application of an inert
|
||||||
|
absorbent ingredient is recommended
|
||||||
|
to improve suberization. For added
|
||||||
|
Fusarium protection apply a Mancozeb
|
||||||
|
containing product specifically
|
||||||
|
designed for application to potatoes in
|
||||||
|
place of the inert absorbent.
|
||||||
|
Do not use treated seed pieces for
|
||||||
|
food, feed, or fodder.
|
||||||
|
Do not exceed more than 0.143 lbs of
|
||||||
|
active ingredient/A (65 g ai/A) per crop
|
||||||
|
season for seed piece treatment.
|
||||||
|
|
||||||
|
3
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
SEED BAG TAG
|
||||||
|
The Federal Seed Act requires that the container of seed treated with Emesto ®
|
||||||
|
Silver must be labeled with the following statements:
|
||||||
|
• This seed has been treated with Emesto Silver which contains Prothioconazole
|
||||||
|
and Penflufen.
|
||||||
|
• Do not use treated seed for food, feed, or oil production. Excess treated seed
|
||||||
|
may be used for ethanol production only if (1) by-products are not used for
|
||||||
|
livestock feed and (2) no measurable residues of pesticide remain in ethanol
|
||||||
|
by-products that are used in agronomic practice.
|
||||||
|
• User is responsible for ensuring that the seed bag meets all the requirements
|
||||||
|
under the Federal Seed Act.
|
||||||
|
In addition, the US Environmental Protection Agency requires the following
|
||||||
|
statements on the container of seed treated with Emesto Silver:
|
||||||
|
• Store away from feeds and foodstuffs.
|
||||||
|
• Wear long sleeved shirt, long pants, shoes, socks, and chemical resistant gloves
|
||||||
|
when handling treated seed.
|
||||||
|
• Crops for which there are registered uses of Penflufen, which includes alfalfa;
|
||||||
|
potatoes (Crop Subgroup 1C); legume vegetables (Crop Group 6/7); cereal
|
||||||
|
grains (Crop Group 15/16); and oil seeds (Crop Group 20) may be replanted
|
||||||
|
at any time. All other crops may be planted no less than 30 days after planting
|
||||||
|
treated seeds.
|
||||||
|
• After the seeds have been planted, do not enter or allow worker entry into treated
|
||||||
|
areas during the restricted-entry interval (REI) of 12 hours. Exception: Once
|
||||||
|
the seeds are planted in soil or other planting media, the Worker Protection
|
||||||
|
Standard allows worker to enter the treated area without restriction if there will
|
||||||
|
be no worker contact with the treated seeds in the soil or planting media.
|
||||||
|
• Dispose of all excess treated seed. Left over treated seed may be double
|
||||||
|
sown around the headland or buried away from water sources in accordance
|
||||||
|
with local requirements. Do not contaminate water bodies when disposing of
|
||||||
|
planting equipment washwaters.
|
||||||
|
• Dispose of seed packaging in accordance with local requirements.
|
||||||
|
• Use planting equipment that will plant treated seed into the soil to a minimum
|
||||||
|
depth of 0.5 inch.
|
||||||
|
• This compound is toxic to birds and mammals. Treated seed exposed on soil
|
||||||
|
surface may be hazardous to birds and mammals. Cover or collect seeds spilled
|
||||||
|
during loading.
|
||||||
|
• Do not use treated seed pieces for food, feed, or fodder.
|
||||||
|
• For potatoes: Do not exceed 0.143 lb. Penflufen /A (65 g ai/A) per crop season.
|
||||||
|
The maximum number of applications per year is 3. This seed has been
|
||||||
|
treated with xx mg active ingredients (ai) of Emesto Silver /seed which includes
|
||||||
|
Penflufen (2 g ai/100 Kg seed) and prothioconazole (0.36 g ai/100 Kg seed)
|
||||||
|
• This product has properties and characteristics associated with chemicals
|
||||||
|
detected in ground water. This chemical may leach into ground water if used in
|
||||||
|
areas where soils are permeable, particularly where the water table is shallow.
|
||||||
|
Therefore contain any product spills or equipment leaks and dispose of wastes
|
||||||
|
according to the disposal instructions on this label.
|
||||||
|
• This pesticide is toxic to fish, aquatic invertebrates, and freshwater/estuaries/
|
||||||
|
marine aquatic plants. Do not apply directly to water, or to areas where surface
|
||||||
|
water is present or to intertidal areas below the mean high water mark. Runoff
|
||||||
|
may be hazardous to aquatic organisms in water adjacent to treated areas.
|
||||||
|
|
||||||
|
4
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
INFORMATION
|
||||||
|
EMESTO SILVER is a fungicide seed dressing for protection against listed
|
||||||
|
seedborne and soilborne diseases in potatoes.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage, disposal or cleaning of
|
||||||
|
equipment.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in original container away from feed and food. Store in cool, dry area. Do
|
||||||
|
not store in direct sunlight. Do not allow prolonged storage in temperatures that
|
||||||
|
exceed 105°F (40°C) or in temperatures that fall below 14°F (-10°C).
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
To avoid wastes, use all material in this container by application according to label
|
||||||
|
directions. If wastes cannot be avoided, offer remaining product to a waste facility
|
||||||
|
or pesticide disposal program (often such programs are run by state or local
|
||||||
|
governments or by industry).
|
||||||
|
CONTAINER HANDLING
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Offer for recycling,
|
||||||
|
if available. Triple rinse or pressure rinse container (or equivalent) promptly after
|
||||||
|
emptying. Triple rinse as follows: Empty the remaining contents into application
|
||||||
|
equipment or a mix tank and drain for 10 seconds after the flow begins to drip. Fill
|
||||||
|
the container 1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into
|
||||||
|
application equipment or a mix tank or store rinsate for later use or disposal. Drain
|
||||||
|
for 10 seconds after the flow begins to drip. Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application
|
||||||
|
equipment or a mix tank and continue to drain for 10 seconds after the flow begins
|
||||||
|
to drip. Hold container upside down over application equipment or mix tank or
|
||||||
|
collect rinsate for later use or disposal. Insert pressure rinsing nozzle in the side
|
||||||
|
of the container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10
|
||||||
|
seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose
|
||||||
|
of in a sanitary landfill.
|
||||||
|
|
||||||
|
5
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability before using this product. If terms are not acceptable, return
|
||||||
|
the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer
|
||||||
|
of Warranties and Limitations of Liability.
|
||||||
|
Treatment of highly mechanically damaged seed, or seed of known low vigor
|
||||||
|
and poor quality, may result in reduced germination and/or reduction of seed and
|
||||||
|
seedling vigor. Treat and conduct germination tests on a small portion of seed
|
||||||
|
before committing the total seed lot to a selected chemical treatment. Due to seed
|
||||||
|
quality conditions beyond the control of Bayer CropScience, no claims are made
|
||||||
|
to guarantee germination of carry-over seed.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate
|
||||||
|
and must be followed carefully. However, it is impossible to eliminate all risks
|
||||||
|
associated with the use of this product. Crop injury, ineffectiveness or other
|
||||||
|
unintended consequences may result because of such factors as weather
|
||||||
|
conditions, presence of other materials, or the manner of use or application, all
|
||||||
|
of which are beyond the control of Bayer CropScience. All such risks shall be
|
||||||
|
assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, BAYER CROPSCIENCE MAKES NO WARRANTIES,
|
||||||
|
EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE
|
||||||
|
STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience is
|
||||||
|
authorized to make any warranties beyond those contained herein or to modify the
|
||||||
|
warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, BAYER CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR
|
||||||
|
SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING FROM
|
||||||
|
THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER FOR
|
||||||
|
ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE
|
||||||
|
USE OR HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT,
|
||||||
|
WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE,
|
||||||
|
SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR AT BAYER
|
||||||
|
CROPSCIENCE’S ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
|
||||||
|
(01) 0 0785740 19038 8
|
||||||
|
PLACE BAR CODE HERE
|
||||||
|
5.50”
|
||||||
|
BASE LABEL
|
||||||
|
4.125”0.875” 0.50”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND
|
||||||
|
DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed. Harmful if absorbed
|
||||||
|
through the skin. Avoid contact with skin,
|
||||||
|
eyes, or clothing.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed
|
||||||
|
by storage, disposal or cleaning of
|
||||||
|
equipment.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in original container away from feed
|
||||||
|
and food. Store in cool, dry area. Do
|
||||||
|
not store in direct sunlight. Do not allow
|
||||||
|
prolonged storage in temperatures that
|
||||||
|
exceed 105°F (40°C) or in temperatures
|
||||||
|
that fall below 14°F (-10°C).
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
To avoid wastes, use all material in this
|
||||||
|
container by application according to label
|
||||||
|
directions. If wastes cannot be avoided,
|
||||||
|
offer remaining product to a waste facility
|
||||||
|
or pesticide disposal program (often
|
||||||
|
such programs are run by state or local
|
||||||
|
governments or by industry).
|
||||||
|
CONTAINER HANDLING
|
||||||
|
Rigid, Non-refillable containers
|
||||||
|
(equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or
|
||||||
|
refill this container. Offer for recycling, if
|
||||||
|
available. Triple rinse or pressure rinse
|
||||||
|
container (or equivalent) promptly after
|
||||||
|
emptying. Triple rinse as follows: Empty
|
||||||
|
the remaining contents into application
|
||||||
|
equipment or a mix tank and drain for
|
||||||
|
10 seconds after the flow begins to
|
||||||
|
drip. Fill the container 1/4 full with water
|
||||||
|
and recap. Shake for 10 seconds. Pour
|
||||||
|
rinsate into application equipment or a
|
||||||
|
mix tank or store rinsate for later use
|
||||||
|
or disposal. Drain for 10 seconds after
|
||||||
|
the flow begins to drip. Repeat this
|
||||||
|
procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the
|
||||||
|
remaining contents into application
|
||||||
|
equipment or a mix tank and continue to
|
||||||
|
drain for 10 seconds after the flow begins
|
||||||
|
to drip. Hold container upside down over
|
||||||
|
application equipment or mix tank or
|
||||||
|
collect rinsate for later use or disposal.
|
||||||
|
Insert pressure rinsing nozzle in the side
|
||||||
|
of the container, and rinse at about 40
|
||||||
|
PSI for at least 30 seconds. Drain for 10
|
||||||
|
seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling
|
||||||
|
if available or puncture and dispose of in a
|
||||||
|
sanitary landfill.
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
EMESTO is a registered trademark of Bayer.
|
||||||
|
©2019 Bayer CropScience
|
||||||
|
US61380548D 160328Dv2 01/19
|
||||||
|
Emesto
|
||||||
|
®
|
||||||
|
Silver
|
||||||
|
For use as a fungicide seed dressing for protection against listed seedborne
|
||||||
|
and soilborne diseases in potatoes.
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Penflufen ................................................................ 9.35%
|
||||||
|
Prothioconazole .......................................................... 1.68%
|
||||||
|
OTHER INGREDIENTS: ................................................... 88.97%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 0.83 lb Penflufen and 0.15 lb Prothioconazole per gallon
|
||||||
|
(100 g Penflufen and 18 g Prothioconazole per liter)
|
||||||
|
EPA Reg. No. 264-1123
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "evergol-energy",
|
||||||
|
"epa_reg_no": "264-1122",
|
||||||
|
"product_name": "EverGol Energy Seed Treatment Fungicide",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Prothioconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Metalaxyl",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Penflufen",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/EverGol_Energy_Label1fepdf",
|
||||||
|
"filename": "EverGol_Energy_Label1fepdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:38:34+00:00",
|
||||||
|
"page_count": 9,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "EVERGOL ENERGY MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/EverGol_Energy2o_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:43:37+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "EVERGOL ENERGY MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/EverGol_Energy2p_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:45:04+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Seed Treatment for Control of Seed Borne Ascochyta in Chickpea",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/EverGol_Energy1a_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:29+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Evergol Xtend C Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Evergol-Xtend-C-Product-Bulletinpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Evergol Energy Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Evergol-Energy-Product-Bulletinpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:54+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/evergol-energy-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:21:48.242861+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,507 @@
|
|||||||
|
# EverGol Energy Seed Treatment Fungicide
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-1122
|
||||||
|
- **Active ingredients:** Prothioconazole, Metalaxyl, Penflufen
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/evergol-energy-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/EverGol_Energy_Label1fepdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Net Contents:
|
||||||
|
US61380718E 210630E 09/21
|
||||||
|
US61380718E (210630E) EverGol Energy
|
||||||
|
COLORS: CMYK DATE: 09/09/21
|
||||||
|
Label Coordinator: Jacob Ziegler
|
||||||
|
Produced For:
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
©2021 Bayer Group. All rights reserved.
|
||||||
|
For: Use as a fungicide seed dressing for protection against listed soilborne, seedborne, and
|
||||||
|
early season post-emergence diseases of listed crop plants.
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Prothioconazole: ............................................................. 07.18%
|
||||||
|
Penflufen: ................................................................... 03.59%
|
||||||
|
Metalaxyl: ................................................................... 05.74%
|
||||||
|
OTHER INGREDIENTS: ........................................................ 83.49%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 0.64 pounds prothioconazole per U.S. gallon (76.8 grams AI/liter)
|
||||||
|
Contains 0.32 pounds penflufen per U.S. gallon (38.4 grams AI/liter)
|
||||||
|
Contains 0.51 pounds metalaxyl per U.S. gallon (61.4 grams AI/liter)
|
||||||
|
EPA Reg. No. 264-1122
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours a Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Please refer to booklet for additional precautionary statements and directions for use.
|
||||||
|
2.5 Gallons
|
||||||
|
PROTHIOCONAZOLE GROUP 3 FUNGICIDE
|
||||||
|
PENFLUFEN GROUP 7 FUNGICIDE
|
||||||
|
METALAXYL GROUP 4 FUNGICIDE
|
||||||
|
|
||||||
|
1
|
||||||
|
FIRST AID
|
||||||
|
If Swallowed: • Call a poison control center or doctor immediately for treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to by a poison control center or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
If on Skin or
|
||||||
|
Clothing:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency
|
||||||
|
Response Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling a poison control
|
||||||
|
center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if swallowed.
|
||||||
|
• Harmful if absorbed through skin.
|
||||||
|
• Avoid contact with skin, eyes, or clothing.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Some materials that are chemical-resistant to this product are barrier laminate, butyl rubber, nitrile rubber,
|
||||||
|
neoprene rubber, polyvinyl chloride, or viton.
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for washables
|
||||||
|
exist, use detergent and hot water. Keep and wash PPE separately from other laundry.
|
||||||
|
Applicators and other handlers must wear:
|
||||||
|
• Long-sleeved shirt and long pants
|
||||||
|
• Socks plus shoes
|
||||||
|
• Chemical resistant gloves, except when bagging or sewing bags of treated seeds
|
||||||
|
USER SAFETY REQUIREMENTS
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for washables
|
||||||
|
exist, use detergent and hot water. Keep and wash PPE separately from other laundry.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
• Users should wash hands before eating, drinking, chewing gum, using tobacco or using the toilet.
|
||||||
|
• Users should remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly and
|
||||||
|
put on clean clothing.
|
||||||
|
• Users should remove PPE immediately after handling this product. Wash the outside of gloves before
|
||||||
|
removing. As soon as possible, wash thoroughly and change into clean clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is toxic to fish, aquatic invertebrates, and freshwater/estuarine/marine aquatic plants. Do
|
||||||
|
not apply directly to water, or to areas where surface water is present or to intertidal areas below the mean
|
||||||
|
high water mark. Runoff may be hazardous to aquatic organisms in water adjacent to treated areas. Do
|
||||||
|
not contaminate water when disposing of equipment washwater or rinsate. Treated seed exposed on soil
|
||||||
|
surface may be hazardous to wildlife. Cover or collect seed spilled during loading.
|
||||||
|
Ground Water Advisory
|
||||||
|
This product has properties and characteristics associated with chemicals detected in ground water. This
|
||||||
|
chemical may leach into ground water if used in areas where soils are permeable, particularly where the
|
||||||
|
water table is shallow. Therefore contain any product spills or equipment leaks and dispose of wastes
|
||||||
|
according to the disposal instructions on this label.
|
||||||
|
|
||||||
|
2
|
||||||
|
CONDITIONS OF SALE AND LIMITATIONS OF WARRANTY AND LIABILITY
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability before
|
||||||
|
using this product. If terms are not acceptable, return the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability.
|
||||||
|
Treatment of highly mechanically damaged seed, or seed of known low vigor and poor quality, may result
|
||||||
|
in reduced germination and/or reduction of seed and seedling vigor. Treat and conduct germination tests
|
||||||
|
on a small portion of seed before committing the total seed lot to a selected chemical treatment. Due
|
||||||
|
to seed quality conditions beyond the control of Bayer CropScience, no claims are made to guarantee
|
||||||
|
germination of carry-over seed.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must be followed
|
||||||
|
carefully. However, it is impossible to eliminate all risks associated with the use of this product. Crop
|
||||||
|
injury, ineffectiveness or other unintended consequences may result because of such factors as weather
|
||||||
|
conditions, presence of other materials, or the manner of use or application, all of which are beyond
|
||||||
|
the control of Bayer CropScience. To the extent consistent with applicable law, all such risks shall be
|
||||||
|
assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE
|
||||||
|
MAKES NO OTHER WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL.
|
||||||
|
No agent of Bayer CropScience is authorized to make any warranties beyond those contained herein or
|
||||||
|
to modify the warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER
|
||||||
|
CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL
|
||||||
|
DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, THE EXCLUSIVE REMEDY OF
|
||||||
|
THE USER OR BUYER FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING
|
||||||
|
OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE,
|
||||||
|
SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE’S ELECTION, THE
|
||||||
|
REPLACEMENT OF PRODUCT.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner
|
||||||
|
inconsistent with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
For use only in commercial seed treatment equipment. Do not use in hopper box, planter box, slurry box,
|
||||||
|
or other on-farm seed treatment applications.
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
EverGol Energy:
|
||||||
|
• Is a fungicide seed dressing for protection against listed soil-borne, seed-borne and early season
|
||||||
|
post-emergence diseases of listed crop plants.
|
||||||
|
APPLICATION INSTRUCTIONS
|
||||||
|
• Apply using commercial slurry or mist-type seed treatment equipment.
|
||||||
|
• Uniform application of seed is necessary to ensure seed safety and best disease protection.
|
||||||
|
• Dilute product with sufficient water to ensure complete seed coverage
|
||||||
|
• Apply to high quality, properly cleaned seed.
|
||||||
|
USE RESTRICTIONS
|
||||||
|
• For use only in commercial seed treatment facilities. Do not use in hopper box, planter box, slurry box,
|
||||||
|
or other on-farm seed treatment applications.
|
||||||
|
• Maximum usage when applying both metalaxyl- and mefenoxam- containing products to the same
|
||||||
|
crop within the same season: Do not apply more than the maximum yearly total application rate for the
|
||||||
|
active ingredient as stated on the label of the product containing the lowest yearly total on that crop.
|
||||||
|
The maximum application rate for metalaxyl- and mefenoxam- containing products (including seed
|
||||||
|
|
||||||
|
3
|
||||||
|
treatments, foliar applications, soil application) is 12.3 lb per acre per calendar year. DO NOT apply more
|
||||||
|
than 12.3 lb of active ingredient metalaxyl per acre per calendar year.
|
||||||
|
• All seed must be adequately dyed with a suitable colorant to prevent its accidental use as food for man
|
||||||
|
or feed for animals. Refer to 21CFR, part 2.25. Any colorant added to treated seed must be cleared for
|
||||||
|
use under 40CFR, part 153.155.
|
||||||
|
Refer to the specific use directions and restrictions in each Crop, Crop Group or Crop Subgroup table.
|
||||||
|
Compatibility
|
||||||
|
It is essential that before using EverGol Energy seed treatment in any tank mixture the compatibility
|
||||||
|
of the mixture be established. Add EverGol Energy at the labeled rate to a clean quart jar containing
|
||||||
|
approximately one-half the amount of water intended for a final slurry application rate. Next, follow with
|
||||||
|
all other tank mix components that will be used in the total slurry application. Add last the remaining
|
||||||
|
balance of water. The total amount of volume is determined by the seed size and how much is necessary
|
||||||
|
to ensure complete and uniform coverage and distribution on the seed, as well as the type of commercial
|
||||||
|
seed treating application equipment that will be used.
|
||||||
|
DO NOT USE MIXTURES THAT CURDLE, PRECIPITATE, OR GEL. USE TANK MIXTURES IMMEDIATELY AFTER
|
||||||
|
MIXING WITH ADEQUATE AGITATION.
|
||||||
|
RESISTANCE MANAGEMENT RECOMMENDATION
|
||||||
|
For resistance management, please note that EverGol Energy contains a Group 3 (demethylation
|
||||||
|
inhibitors), Group 7 (succinate dehydrogenase inhibitor) and Group 4 (phenylamides) fungicide. Any fungal
|
||||||
|
population may contain individuals naturally resistant to EverGol Energy and other Group 3, Group 7, or
|
||||||
|
Group 4 fungicides. A gradual or total loss of pest control may occur over time if these fungicides are used
|
||||||
|
repeatedly in the same fields. Appropriate resistance-management strategies should be followed.
|
||||||
|
To delay fungicide resistance, take one or more of the following steps:
|
||||||
|
• Rotate the use of EverGol Energy or other Group 3, 7 and 4 fungicides within a growing season sequence
|
||||||
|
with different groups that control the same pathogens.
|
||||||
|
• Use tank mixtures with fungicide from a different group that are equally effective on the target pest
|
||||||
|
when such use is permitted. Use at least the minimum application rate as labeled by the manufacturer.
|
||||||
|
• Adopt an integrated disease management program for fungicide use that includes scouting, uses
|
||||||
|
historical information related to pesticide use, and crop rotation, and which considers host plant
|
||||||
|
resistance, impact of environmental conditions on disease development, disease thresholds, as well as
|
||||||
|
cultural, biological and other chemical control practices.
|
||||||
|
• Where possible, make use of predictive disease models to effectively time fungicide applications. Note
|
||||||
|
that using predictive models alone is not sufficient to manage resistance.
|
||||||
|
• Monitor treated fungal populations for resistance development.
|
||||||
|
• Contact your local extension specialist or certified crop advisor for any additional pesticide resistance-
|
||||||
|
management and/or IPM recommendations for specific crops and pathogens.
|
||||||
|
• For further information or to report suspected resistance contact Bayer CropScience LP at 1-866-99BAYER
|
||||||
|
(1-866-992-2937). You can also contact your pesticide distributor or university extension specialist to
|
||||||
|
report resistance.
|
||||||
|
SPECIFIC CROP DIRECTIONS
|
||||||
|
CROP USE DIRECTIONS
|
||||||
|
COMMERCIAL SEED TREATMENT
|
||||||
|
ALFALFA
|
||||||
|
Disease(s) Controlled Product Rate (Per 100 lbs Seed)
|
||||||
|
Seed rot and damping-off caused by Rhizoctonia 3.0 fl oz
|
||||||
|
Crop Specific Directions and Restrictions:
|
||||||
|
• To deliver 0.0006 – 0.0008 mg ai per seed, apply 0.013 – 0.015 fl oz of the product per 100,000 seeds.
|
||||||
|
(Based on an average of 213,000 seeds per lb).
|
||||||
|
|
||||||
|
4
|
||||||
|
BEANS AND PEAS (DRIED)
|
||||||
|
Crops of Crop Group 6-C: Adzuki Bean, Black-eyed Pea, Broad Bean, Catjang, Chickpea, Cowpea, Crowder Pea, Field
|
||||||
|
Bean, Field Pea, Guar, Kidney Bean, Lablab Bean, Lentil, Lima Bean, Moth Bean, Mung Bean, Navy Bean, Pigeon Pea,
|
||||||
|
Pinto Bean, Rice Bean, Southern Pea, Tepary Bean, and Urd Bean
|
||||||
|
Disease(s) Controlled Product Rate (Per 100 lbs Seed)
|
||||||
|
Seed rot and damping-off caused by Rhizoctonia,
|
||||||
|
Fusarium and Pythium1
|
||||||
|
Seed decay caused by Phomopsis
|
||||||
|
Seed decay
|
||||||
|
1.0 fl ozDisease(s) Suppressed
|
||||||
|
Ascochyta blight
|
||||||
|
Seed rot, damping-off, and seedling blight caused by
|
||||||
|
seedborne Botrytis cinerea
|
||||||
|
Crop Specific Directions and Restrictions:
|
||||||
|
• To deliver 0.02943 – 0.03597 mg ai per seed, apply 0.5625 – 0.6875 fl oz of the product per 100,000 bean seeds.
|
||||||
|
(Based on an average of 1,600 beans per lb).
|
||||||
|
• To deliver 0.01485 – 0.01815 mg ai per seed, apply 0.2826 – 0.3454 fl oz of the product per 100,000 pea seeds. (Based
|
||||||
|
on an average of 3,181 peas per lb).
|
||||||
|
1Early season Phythophthora. For longer season control add sufficient metalaxyl product (such as, Allegiance) to supply
|
||||||
|
a total metalaxyl amount of 15 to 30 gai/100kg of seed.
|
||||||
|
CEREAL GRAINS
|
||||||
|
Crops of Crop Group 15 (except corn, sorghum, and rice) including: Barley, Triticale, Wheat, Oats, Rye, Buckwheat,
|
||||||
|
and Millet (Pearl and Proso)
|
||||||
|
Disease(s) Product Rate (Per 100 lbs Seed)
|
||||||
|
Disease(s) Controlled
|
||||||
|
|
||||||
|
1.0 fl oz
|
||||||
|
Common bunt
|
||||||
|
Covered smut
|
||||||
|
False loose smut
|
||||||
|
Flag smut
|
||||||
|
Leaf stripe
|
||||||
|
Loose smut
|
||||||
|
Stinking smut
|
||||||
|
Stem smut
|
||||||
|
True loose smut
|
||||||
|
Seed rot, pre-emergence damping-off and seedling
|
||||||
|
blight caused by soilborne and seed-borne Rhizoctonia,
|
||||||
|
Fusarium, Cochliobolus and Pythium
|
||||||
|
Seed decay
|
||||||
|
Disease(s) Suppressed
|
||||||
|
Common root rot, foot rot, and crown rot
|
||||||
|
Rust, Septoria and powdery mildew
|
||||||
|
Crop Specific Directions and Restrictions:
|
||||||
|
• To deliver 0.0036 – 0.0044 mg ai per seed, apply 0.0693 – 0.0847 fl oz of the product per 100,000 wheat and barley
|
||||||
|
seeds. (Based on an average of 13,000 wheat or barley seeds per lb).
|
||||||
|
• To deliver 0.00252 – 0.00308 mg ai per seed, apply 0.0477 – 0.0583 fl oz of the product per
|
||||||
|
100,000 Triticale seeds. (Based on an average of 18,840 Triticale seeds per lb).
|
||||||
|
• To deliver 0.0026 - 0.0032 mg ai per seed, apply 0.05 – 0.062 fl oz of the product per 100,000 oat and rye seeds.
|
||||||
|
(Based on an average of 18,000 oat or rye seeds per lb).
|
||||||
|
• To deliver 0.0027 - 0.0033 mg ai per seed, apply 0.051 – 0.062 fl oz of the product per 100,000 buckwheat seeds.
|
||||||
|
(Based on an average of 17,650 buckwheat seeds per lb).
|
||||||
|
• To deliver 0.0005 – 0.0007 mg ai per seed, apply 0.011 – 0.013 fl oz of the product per 100,000 millet seeds. (Based
|
||||||
|
on an average of 84,000 millet seeds per lb).
|
||||||
|
|
||||||
|
5
|
||||||
|
CORN (FIELD CORN, POPCORN, AND SWEET CORN)
|
||||||
|
Disease(s) Controlled Product Rate (Per 100 lbs Seed)
|
||||||
|
Seed rot and damping-off caused by Rhizoctonia,
|
||||||
|
Fusarium and Pythium
|
||||||
|
Seed decay
|
||||||
|
0.5 – 2.0 fl oz
|
||||||
|
Crop Specific Directions and Restrictions:
|
||||||
|
• To deliver 0.0156 – 0.0623 mg ai per seed, apply 0.24 – 0.95 fl oz of the product per 80,000 field corn seeds. (Based
|
||||||
|
on an average of 1,681 field corn per lb).
|
||||||
|
• To deliver 0.0086 -0.0342 mg ai per seed, apply 0.16 – 0.65 fl oz of the product per 100,000 popcorn seeds. (Based
|
||||||
|
on an average of 3,061 popcorn per lb).
|
||||||
|
• To deliver 0.0083 – 0.0332 mg ai per seed, apply 0.16 – 0.64 fl oz of the product per 100,000 sweet corn seeds. (Based
|
||||||
|
on an average of 3,150 sweet corn per lb).
|
||||||
|
RICE
|
||||||
|
Disease(s) Product Rate (Per 100 lbs Seed)
|
||||||
|
Disease(s) Controlled
|
||||||
|
1.0 – 2.0 fl oz
|
||||||
|
Seed rot and damping-off caused by Rhizoctonia,
|
||||||
|
Fusarium and Pythium
|
||||||
|
Seed decay
|
||||||
|
Disease(s) Suppressed
|
||||||
|
Seed-borne false smut
|
||||||
|
Seed-borne kernel smut
|
||||||
|
Crop Specific Directions and Restrictions:
|
||||||
|
• To deliver 0.0024 – 0.0048 mg ai per seed, apply 0.046 – 0.092 fl oz of the product per 100,000 Rice seeds. (Based on
|
||||||
|
an average of 21,850 Rice seeds per lb).
|
||||||
|
• Must use high rate for moderate to high seedling disease pressure or for suppression of seed-born false smut and
|
||||||
|
kernel smut.
|
||||||
|
SORGHUM
|
||||||
|
Disease(s) Controlled Product Rate (Per 100 lbs Seed)
|
||||||
|
Seed rot and damping-off caused by Rhizoctonia,
|
||||||
|
Fusarium and Pythium
|
||||||
|
Seed decay
|
||||||
|
0.5 – 2.0 fl oz
|
||||||
|
Crop Specific Directions and Restrictions:
|
||||||
|
• To deliver 0.0015 – 0.006 mg ai per seed, apply 0.028 – 0.111 fl oz of the product per 100,000 seeds. (Based on an
|
||||||
|
average of 18,000 seeds per lb)
|
||||||
|
SUGAR BEET
|
||||||
|
Disease(s)
|
||||||
|
Product Rate
|
||||||
|
(Per 100 lbs Raw Seed)
|
||||||
|
Product Rate
|
||||||
|
(Per raw seed unit*)
|
||||||
|
Seed rot and damping-off caused
|
||||||
|
by Rhizoctonia solani, Fusarium and
|
||||||
|
Pythium
|
||||||
|
0.9 - 1.0 fl oz
|
||||||
|
(10.35 - 11.51 g ai per 100 kg seed)
|
||||||
|
0.019 - 0.022 fl oz
|
||||||
|
(0.001 - 0.0011 mg ai/seed)
|
||||||
|
Crop Specific Directions and Restrictions:
|
||||||
|
• Apply EverGol Energy as a commercial seed treatment to pelleted sugar beet seeds at the rate given in the application
|
||||||
|
table above using commercial slurry or mist-type seed treatment equipment.
|
||||||
|
• Consult a seed treatment specialist regarding specified slurry rates for the crop to be treated with EverGol Energy.
|
||||||
|
• Use high quality, properly cleaned seed.
|
||||||
|
• To deliver 0.0011 mg ai per seed, apply 0.022 fl oz of the product per 100,000 seeds. (*Based on a unit of raw
|
||||||
|
sugarbeet seed unit of 100,000 seeds weighing 2.2 lbs. or 45,454 seeds per lb.)
|
||||||
|
|
||||||
|
6
|
||||||
|
SEED TAG LABELING
|
||||||
|
The Federal Seed Act requires that the container of seed treated with EverGol Energy must be labeled with
|
||||||
|
the following statements:
|
||||||
|
• This seed has been treated with:
|
||||||
|
• EverGol Energy, which contains 7.18% prothioconazole, 3.59% penflufen, and 5.74% metalaxyl
|
||||||
|
• Do not use treated seed for food, feed, or oil production. User is responsible for ensuring that the seed bag
|
||||||
|
meets all the requirements under the Federal Seed Act.
|
||||||
|
The following statements are also required on the container of seed treated with EverGol Energy:
|
||||||
|
• Crops on this label and other crops for which tolerances exist for metalaxyl, prothioconazole and
|
||||||
|
penflufen may be replanted at any time. All other crops may be planted after 30 days.
|
||||||
|
• Store treated seeds away from food and feedstuffs.
|
||||||
|
• Do not allow children, pets, or livestock to have access to treated seed.
|
||||||
|
• Wear long-sleeved shirt, long pants, shoes, socks, and chemical-resistant gloves when handling
|
||||||
|
treated seed.
|
||||||
|
• Excess treated seed may be used for ethanol production only if (1) by-products are not used for
|
||||||
|
livestock feed and (2) no measurable residues of pesticide remain in ethanol by-products that are used
|
||||||
|
in agronomic practice.
|
||||||
|
• This compound is toxic to birds and mammals. Treated seeds exposed on soil surface may be hazardous
|
||||||
|
to birds and mammals. Cover or collect treated seeds spilled during loading.
|
||||||
|
• Dispose of all excess treated seed. Leftover treated seed may be double sown around the headland or
|
||||||
|
buried away from water sources in accordance with local requirements.
|
||||||
|
• Do not contaminate water bodies when disposing of planting equipment wash waters.
|
||||||
|
• Treated seed must be adequately covered with soil at planting.
|
||||||
|
• Use planting equipment that will plant treated seed into the soil to a minimum depth of 0.5 inch or
|
||||||
|
following local Agronomical practice.
|
||||||
|
• Dispose of seed packaging or containers in accordance with local requirements. Do not use empty seed
|
||||||
|
bags for any other purpose.
|
||||||
|
• To reduce seed dust which can drift onto blooming crops or weeds, ensure that planting equipment
|
||||||
|
is functioning properly in accordance with manufacturer’s recommendations. Surplus seed or empty
|
||||||
|
seed containers should be stored or disposed according to state or local regulations.
|
||||||
|
• After the seeds have been planted, do not enter or allow worker entry into treated areas during the
|
||||||
|
restricted-entry interval (REI) of 24 hours. Exception: Once the seeds are planted in soil or other planting
|
||||||
|
media, the Worker Protection Standard allows worker to enter the treated area without restriction if
|
||||||
|
there will be no worker contact with the treated seeds in the soil or planting media.
|
||||||
|
• This product contains chemicals which are known to leach through soil into ground water under certain
|
||||||
|
conditions as a result of agricultural use. Use of this product in areas where soils are permeable,
|
||||||
|
particularly where the water table is shallow, may result in ground water contamination.
|
||||||
|
• Do not plant treated rice seed directly into flooded field. Do not soak treated rice seed.
|
||||||
|
• For alfalfa: Do not exceed 0.00225 lb penflufen /A (1.02 g ai/A) per crop season.
|
||||||
|
• For beans (excluding soybeans): Do not exceed 0.0384 lb penflufen /A (17.5 g ai/A) per crop season.
|
||||||
|
• For peas: Do not exceed 0.0384 lb penflufen /A (17.5 g ai/A) per crop season.
|
||||||
|
• For Barley and Wheat: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
• For Triticale: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
• For rice (dry seeded): Do not exceed 0.006 lb penflufen /A (2.7 g ai/A) per crop season.
|
||||||
|
• For Oats and Rye: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
• For Buckwheat: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
• For Millet: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
• For Field Corn: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
• For Popcorn: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
• For Sweet Corn: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
• For Sorghum: Do not exceed 0.0078 lb penflufen /A (3.5 g ai/A) per crop season.
|
||||||
|
|
||||||
|
7
|
||||||
|
• This product has properties and characteristics associated with chemicals detected in ground water. This
|
||||||
|
chemical may leach into ground water if used in areas where soils are permeable, particularly where the
|
||||||
|
water table is shallow. Therefore contain any product spills or equipment leaks and dispose of wastes
|
||||||
|
according to the disposal instructions on this label.
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
For MEDICAL, TRANSPORTATION or OTHER Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage, disposal or cleaning of equipment.
|
||||||
|
Pesticide Storage
|
||||||
|
Store in original container away from feed and food. Store in cool, dry area. Do not store in direct
|
||||||
|
sunlight. Do not allow prolonged storage in temperatures that exceed 105°F (40°C) or in temperatures
|
||||||
|
that fall below 14°F (-10°C).
|
||||||
|
Pesticide Disposal
|
||||||
|
To avoid wastes, use all material in this container by application according to label directions. If wastes
|
||||||
|
cannot be avoided, offer remaining product to a waste facility or pesticide disposal program (often such
|
||||||
|
programs are run by state or local governments or by industry).
|
||||||
|
Container Handling
|
||||||
|
Dilutable Seed Treatment Products in Non-Refillable Plastic Containers
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Triple rinse or pressure rinse container
|
||||||
|
(or equivalent) promptly after emptying. Triple rinse as follows: Empty the remaining contents into
|
||||||
|
application equipment or a mix tank and drain for 10 seconds after the flow begins to drip. Fill the
|
||||||
|
container 1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into application equipment
|
||||||
|
or a mix tank or store rinsate for later use or disposal. Drain for 10 seconds after the flow begins to drip.
|
||||||
|
Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application equipment or a mix tank
|
||||||
|
and continue to drain for 10 seconds after the flow begins to drip. Hold container upside down over
|
||||||
|
application equipment or mix tank or collect rinsate for later use or disposal. Insert pressure rinsing
|
||||||
|
nozzle in the side of the container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10 seconds
|
||||||
|
after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill
|
||||||
|
or by incineration.
|
||||||
|
|
||||||
|
US61380718E 210630E 09/21
|
||||||
|
US61380718E (210630E) EverGol Energy BASE LABEL
|
||||||
|
COLORS: BLACK DATE: 09/09/21
|
||||||
|
Label Coordinator: Jacob Ziegler
|
||||||
|
FIRST AID
|
||||||
|
If
|
||||||
|
Swallowed:
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor immediately for treatment
|
||||||
|
advice.
|
||||||
|
• Have person sip a glass of water if
|
||||||
|
able to swallow.
|
||||||
|
• Do not induce vomiting unless
|
||||||
|
told to by a poison control center
|
||||||
|
or doctor.
|
||||||
|
• Do not give anything by mouth to
|
||||||
|
an unconscious person.
|
||||||
|
If on Skin or
|
||||||
|
Clothing:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty
|
||||||
|
of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer
|
||||||
|
CropScience Emergency Response Telephone No.
|
||||||
|
1-800-334-7577.
|
||||||
|
Have a product container or label with you when
|
||||||
|
calling a poison control center or doctor, or going
|
||||||
|
for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if swallowed.
|
||||||
|
• Harmful if absorbed through skin.
|
||||||
|
• Avoid contact with skin, eyes, or clothing.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product
|
||||||
|
in a manner inconsistent with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage, disposal
|
||||||
|
or cleaning of equipment.
|
||||||
|
Pesticide Storage: Store in original container away from
|
||||||
|
feed and food. Store in cool, dry area. Do not store in direct
|
||||||
|
sunlight. Do not allow prolonged storage in temperatures
|
||||||
|
that exceed 105°F (40°C) or in temperatures that fall below
|
||||||
|
14°F (-10°C).
|
||||||
|
Pesticide Disposal: To avoid wastes, use all material in
|
||||||
|
this container by application according to label directions.
|
||||||
|
If wastes cannot be avoided, offer remaining product to a
|
||||||
|
waste facility or pesticide disposal program (often such
|
||||||
|
programs are run by state or local governments or by
|
||||||
|
industry).
|
||||||
|
Container Handling: Dilutable Seed Treatment Products in
|
||||||
|
Non-Refillable Plastic Containers
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container.
|
||||||
|
Triple rinse or pressure rinse container (or equivalent)
|
||||||
|
promptly after emptying. Triple rinse as follows: Empty the
|
||||||
|
remaining contents into application equipment or a mix
|
||||||
|
tank and drain for 10 seconds after the flow begins to drip.
|
||||||
|
Fill the container 1/4 full with water and recap. Shake for
|
||||||
|
10 seconds. Pour rinsate into application equipment or a
|
||||||
|
mix tank or store rinsate for later use or disposal. Drain for
|
||||||
|
10 seconds after the flow begins to drip. Repeat this
|
||||||
|
procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into
|
||||||
|
application equipment or a mix tank and continue to drain for
|
||||||
|
10 seconds after the flow begins to drip. Hold container
|
||||||
|
upside down over application equipment or mix tank or
|
||||||
|
collect rinsate for later use or disposal. Insert pressure
|
||||||
|
rinsing nozzle in the side of the container, and rinse at about
|
||||||
|
40 PSI for at least 30 seconds. Drain for 10 seconds after the
|
||||||
|
flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available
|
||||||
|
or puncture and dispose of in a sanitary landfill or by
|
||||||
|
incineration.
|
||||||
|
EverGol® Energy
|
||||||
|
For: Use as a fungicide seed dressing for protection
|
||||||
|
against listed soilborne, seedborne, and early season
|
||||||
|
post-emergence diseases of listed crop plants.
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Prothioconazole: ........................................................................................................................................... 07.18%
|
||||||
|
Penflufen: ...................................................................................................................................................... 03.59%
|
||||||
|
Metalaxyl: ...................................................................................................................................................... 05.74%
|
||||||
|
OTHER INGREDIENTS: .................................................................................................................................... 83.49%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 0.64 pounds prothioconazole per U.S. gallon (76.8 grams AI/liter)
|
||||||
|
Contains 0.32 pounds penflufen per U.S. gallon (38.4 grams AI/liter)
|
||||||
|
Contains 0.51 pounds metalaxyl per U.S. gallon (61.4 grams AI/liter)
|
||||||
|
EPA Reg. No. 264-1122
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY Call 24 Hours a Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Please refer to booklet for additional precautionary statements and directions for use.
|
||||||
|
PROTHIOCONAZOLE GROUP 3 FUNGICIDE
|
||||||
|
PENFLUFEN GROUP 7 FUNGICIDE
|
||||||
|
METALAXYL GROUP 4 FUNGICIDE
|
||||||
|
EverGol® is a registered trademark of Bayer Group.
|
||||||
|
©2021 Bayer Group. All rights reserved.
|
||||||
|
Produced For:
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
NET CONTENTS:
|
||||||
|
2.5 GAL
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "evergol-xtend-c",
|
||||||
|
"epa_reg_no": "264-1165",
|
||||||
|
"product_name": "EverGol Xtend C Fungicide Seed Treatment",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Trifloxystrobin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Penflufen",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Evergol_Xtend_C1g_Labelpdf",
|
||||||
|
"filename": "Evergol_Xtend_C1g_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-12T15:23:45+00:00",
|
||||||
|
"page_count": 9,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "EVERGOL XTEND C MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Evergol_Xtend_C_MSDS1dpdf",
|
||||||
|
"last_modified": "2026-01-12T15:24:08+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "EVERGOL XTEND C MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Evergol_Xtend_C_MSDS1gpdf",
|
||||||
|
"last_modified": "2026-01-12T15:21:08+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "EverGol Xtend C Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/EverGol-Xtend-C_2025pdf",
|
||||||
|
"last_modified": "2026-05-20T00:40:21+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/evergol-xtend-c-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:15:05.609885+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,472 @@
|
|||||||
|
# EverGol Xtend C Fungicide Seed Treatment
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-1165
|
||||||
|
- **Active ingredients:** Trifloxystrobin, Penflufen
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/evergol-xtend-c-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Evergol_Xtend_C1g_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Net
|
||||||
|
Contents:
|
||||||
|
2.5 Gallons
|
||||||
|
4.50”
|
||||||
|
4.25”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Produced for:
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
EVERGOL is a registered trademark of Bayer Group.
|
||||||
|
©2020 Bayer Group
|
||||||
|
US85375091C 130807Cv3 07/20
|
||||||
|
US85375091C (130807Cv3) LABMC EVERGOL XTEND C
|
||||||
|
2.5 GAL ETL colors- cmyk 07/16/20
|
||||||
|
For use as a fungicide seed dressing for protection against listed
|
||||||
|
soilborne, seedborne, and early season post-emergence diseases
|
||||||
|
of listed crop plants.
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Penflufen ..................................................... 14.26%
|
||||||
|
Trifloxystrobin ................................................. 14.26%
|
||||||
|
OTHER INGREDIENTS: ......................................... 71.48%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
Contains 1.28 lb penflufen; 1.28 lb trifloxystrobin per gallon (154 g penflufen; 154 g trifloxystrobin per liter)
|
||||||
|
EPA Reg. No. 264-1165
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
|
||||||
|
1
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
FIRST AID
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
|
||||||
|
• Call a poison control center or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to by a poison control
|
||||||
|
center or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
IF ON SKIN: • Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20
|
||||||
|
minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or ambulance, then give
|
||||||
|
artificial respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment
|
||||||
|
advice.
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for
|
||||||
|
15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes,
|
||||||
|
then continue rinsing eye.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency
|
||||||
|
Response Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling a poison control
|
||||||
|
center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed. Harmful if absorbed through the skin. Harmful if inhaled.
|
||||||
|
Causes moderate eye irritation. Avoid contact with skin, eyes, or clothing. Avoid
|
||||||
|
breathing spray mist.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Some materials that are chemical-resistant to this product are barrier laminate,
|
||||||
|
butyl rubber, nitrile rubber, neoprene rubber, polyvinyl chloride, or viton. If you
|
||||||
|
want more options, follow the instructions for category C on an EPA chemical-
|
||||||
|
resistance category selection chart.
|
||||||
|
All mixers, loaders, applicators and other handlers must wear:
|
||||||
|
-long sleeved shirt and long pants,
|
||||||
|
-socks plus shoes,
|
||||||
|
-chemical resistant gloves, except when bagging or sewing bags of treated seeds,
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such
|
||||||
|
instructions for washables exist, use detergent and hot water. Keep and wash PPE
|
||||||
|
separately from other laundry.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Wash hands before eating, drinking, chewing gum, using tobacco or using the
|
||||||
|
toilet.
|
||||||
|
Remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly
|
||||||
|
and put on clean clothing.
|
||||||
|
Remove PPE immediately after handling this product. Wash the outside of
|
||||||
|
gloves before removing. As soon as possible, wash thoroughly and change into
|
||||||
|
clean clothing.
|
||||||
|
|
||||||
|
2
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is toxic to fish and aquatic invertebrates. Do not apply directly to
|
||||||
|
water, or to areas where surface water is present or to intertidal areas below the
|
||||||
|
mean high water mark. Runoff may be hazardous to aquatic organisms in water
|
||||||
|
adjacent to treated areas. Do not contaminate water when disposing of equipment
|
||||||
|
washwater or rinsate. Treated seed exposed on soil surface may be hazardous to
|
||||||
|
wildlife. Cover or collect seed spilled during loading.
|
||||||
|
This product has properties and characteristics associated with chemicals
|
||||||
|
detected in ground water. This chemical may leach into ground water if used in
|
||||||
|
areas where soils are permeable, particularly where the water table is shallow.
|
||||||
|
Therefore contain any product spills or equipment leaks and dispose of wastes
|
||||||
|
according to the disposal instructions on this label.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner
|
||||||
|
inconsistent with its labeling.
|
||||||
|
For use only in commercial seed treatment equipment. Not for use in hopper box,
|
||||||
|
planter box, slurry box, or other on-farm seed treatment applications.
|
||||||
|
COMMERCIAL SEED TREATMENT
|
||||||
|
CROPS DISEASES
|
||||||
|
APPLICATION
|
||||||
|
RATES PER 100
|
||||||
|
LBS SEED DIRECTIONS
|
||||||
|
Cotton Seed rot and
|
||||||
|
damping-off
|
||||||
|
caused by
|
||||||
|
Rhizoctonia solani
|
||||||
|
Apply 0.25 – 1.0 fl oz
|
||||||
|
NOTE: To deliver
|
||||||
|
0.0045 – 0.018 mg
|
||||||
|
ai per seed, apply
|
||||||
|
0.05-0.2 fl oz of the
|
||||||
|
product per 100,000
|
||||||
|
seeds. 1
|
||||||
|
Maximum number of
|
||||||
|
application per year
|
||||||
|
is 3.
|
||||||
|
Apply using commercial
|
||||||
|
slurry or mist-type seed
|
||||||
|
treatment equipment.
|
||||||
|
Uniform application of
|
||||||
|
seed is necessary to
|
||||||
|
ensure seed safety and
|
||||||
|
best disease protection.
|
||||||
|
Dilute product with
|
||||||
|
sufficient water to ensure
|
||||||
|
complete seed coverage.
|
||||||
|
Use high quality, properly
|
||||||
|
cleaned seed.
|
||||||
|
All seed must be
|
||||||
|
adequately dyed with
|
||||||
|
a suitable colorant to
|
||||||
|
prevent its accidental
|
||||||
|
use as food for man or
|
||||||
|
feed for animals. Refer
|
||||||
|
to 21CFR, part 2.25. Any
|
||||||
|
colorant added to treated
|
||||||
|
seed must be cleared for
|
||||||
|
use under 40CFR, part
|
||||||
|
153.155.
|
||||||
|
1 Based on 4,800 cottonseed per pound.
|
||||||
|
|
||||||
|
3
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
SEED BAG TAG
|
||||||
|
The Federal Seed Act requires that the container of seed treated with EverGol ®
|
||||||
|
Xtend C must be labeled with the following statements:
|
||||||
|
• This seed has been treated with EverGol Xtend C which contains Trifloxystrobin
|
||||||
|
and Penflufen.
|
||||||
|
• Do not use treated seed for food, feed, or oil production. Excess treated seed
|
||||||
|
may be used for ethanol production only if (1) by-products are not used for
|
||||||
|
livestock feed and (2) no measurable residues of pesticide remain in ethanol
|
||||||
|
by-products that are used in agronomic practice.
|
||||||
|
• User is responsible for ensuring that the seed bag meets all the requirements
|
||||||
|
under the Federal Seed Act.
|
||||||
|
In addition, the US Environmental Protection Agency requires the following
|
||||||
|
statements on the container of seed treated with EverGol Xtend C:
|
||||||
|
• Store away from feeds and foodstuffs.
|
||||||
|
• Wear long sleeved shirt, long pants, shoes, socks, and chemical resistant
|
||||||
|
gloves when handling treated seed.
|
||||||
|
• Crops on this label and other crops for which tolerances exist for trifloxystrobin
|
||||||
|
and penflufen may be replanted at any time. All other crops may be planted
|
||||||
|
after 30 days.
|
||||||
|
• After the seeds have been planted, do not enter or allow worker entry into treated
|
||||||
|
areas during the restricted-entry interval (REI) of 12 hours. Exception: Once
|
||||||
|
the seeds are planted in soil or other planting media, the Worker Protection
|
||||||
|
Standard allows worker to enter the treated area without restriction if there will
|
||||||
|
be no worker contact with the treated seeds in the soil or planting media.
|
||||||
|
• Dispose of all excess treated seed. Left over treated seed may be double
|
||||||
|
sown around the headland or buried away from water sources in accordance
|
||||||
|
with local requirements. Do not contaminate water bodies when disposing of
|
||||||
|
planting equipment washwaters.
|
||||||
|
• Dispose of seed packaging in accordance with local requirements.
|
||||||
|
• Use planting equipment that will plant treated seed into the soil to a minimum
|
||||||
|
depth of 0.5 inch.
|
||||||
|
• This compound is toxic to birds and mammals. Treated seed exposed on soil
|
||||||
|
surface may be hazardous to birds and mammals. Cover or collect seeds
|
||||||
|
spilled during loading.
|
||||||
|
• For Cotton (based on cotton seeding rate): Do not exceed 0.0019 lb. penflufen
|
||||||
|
/A (0.86 g ai/A) per crop season. The maximum number of applications per
|
||||||
|
year is 3.
|
||||||
|
• This product has properties and characteristics associated with chemicals
|
||||||
|
detected in ground water. This chemical may leach into ground water if used in
|
||||||
|
areas where soils are permeable, particularly where the water table is shallow.
|
||||||
|
Therefore contain any product spills or equipment leaks and dispose of wastes
|
||||||
|
according to the disposal instructions on this label.
|
||||||
|
INFORMATION
|
||||||
|
EverGol Xtend C is a fungicide seed dressing for protection against listed
|
||||||
|
soilborne, seedborne, and early season post-emergence diseases of listed crop
|
||||||
|
plants.
|
||||||
|
|
||||||
|
4
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage, disposal or cleaning of
|
||||||
|
equipment.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in original container away from feed and food. Store in cool, dry area. Do
|
||||||
|
not store in direct sunlight. Do not allow prolonged storage in temperatures that
|
||||||
|
exceed 105°F (40°C) or in temperatures that fall below 14°F (-10°C).
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
To avoid wastes, use all material in this container by application according to
|
||||||
|
label directions. If wastes cannot be avoided, offer remaining product to a waste
|
||||||
|
facility or pesticide disposal program (often such programs are run by state or
|
||||||
|
local governments or by industry).
|
||||||
|
CONTAINER DISPOSAL
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Offer for recycling,
|
||||||
|
if available. Triple rinse or pressure rinse container (or equivalent) promptly after
|
||||||
|
emptying. Triple rinse as follows: Empty the remaining contents into application
|
||||||
|
equipment or a mix tank and drain for 10 seconds after the flow begins to drip. Fill
|
||||||
|
the container 1/4 full with water and recap. Shake for 10 seconds. Pour rinsate
|
||||||
|
into application equipment or a mix tank or store rinsate for later use or disposal.
|
||||||
|
Drain for 10 seconds after the flow begins to drip. Repeat this procedure two more
|
||||||
|
times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application
|
||||||
|
equipment or a mix tank and continue to drain for 10 seconds after the flow begins
|
||||||
|
to drip. Hold container upside down over application equipment or mix tank or
|
||||||
|
collect rinsate for later use or disposal. Insert pressure rinsing nozzle in the side
|
||||||
|
of the container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10
|
||||||
|
seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose
|
||||||
|
of in a sanitary landfill.
|
||||||
|
Rigid Non-refillable containers (greater than 5 gallons or 50 lbs)
|
||||||
|
Non-refillable Containers
|
||||||
|
Non-refillable containers - Do not reuse or refill this container. Refer to Bottom
|
||||||
|
Discharge IBC or Top Discharge IBC, Drums, Kegs information as follows.
|
||||||
|
Bottom Discharge IBC (e.g. – Schuetz Caged IBC or Snyder Square Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of the
|
||||||
|
person disposing of the container. To pressure rinse the container before final
|
||||||
|
disposal, empty the remaining contents from the IBC into application equipment or
|
||||||
|
mix tank. Raise the bottom of the IBC by 1.5 inches on the side which is opposite
|
||||||
|
of the bottom discharge valve to promote more complete product removal.
|
||||||
|
Completely remove the top lid of the IBC. Use water pressurized to at least 40 PSI
|
||||||
|
to rinse all interior portions. Continuously pump or drain rinsate into application
|
||||||
|
equipment or rinsate collection system while pressure rinsing. Continue pressure
|
||||||
|
rinsing for 2 minutes or until rinsate becomes clear. Replace the lid and close
|
||||||
|
bottom valve.
|
||||||
|
Top Discharge IBC, Drums, Kegs (e.g.– Snyder 120 Next Gen, Bonar B120,
|
||||||
|
Drums, Kegs).
|
||||||
|
|
||||||
|
5
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Triple rinsing the container before final disposal is the responsibility of the person
|
||||||
|
disposing of the container. To triple rinse the container before final disposal,
|
||||||
|
empty the remaining contents from this container into application equipment or
|
||||||
|
mix tank. Fill the container at least 10 percent full with water. Agitate vigorously or
|
||||||
|
recirculate water with the pump for 2 minutes. Rinse all interior surfaces. Pour or
|
||||||
|
pump rinsate into application equipment or rinsate collection system. Repeat this
|
||||||
|
procedure two more times.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose
|
||||||
|
of in a sanitary landfill.
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability before using this product. If terms are not acceptable, return
|
||||||
|
the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, disclaimer
|
||||||
|
of Warranties and Limitations of Liability.
|
||||||
|
Treatment of highly mechanically damaged seed, or seed of known low vigor
|
||||||
|
and poor quality, may result in reduced germination and/or reduction of seed and
|
||||||
|
seedling vigor. Treat and conduct germination tests on a small portion of seed
|
||||||
|
before committing the total seed lot to a selected chemical treatment. Due to seed
|
||||||
|
quality conditions beyond the control of Bayer CropScience, no claims are made
|
||||||
|
to guarantee germination of carry-over seed.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate
|
||||||
|
and must be followed carefully. However, it is impossible to eliminate all risks
|
||||||
|
associated with the use of this product. Crop injury, ineffectiveness or other
|
||||||
|
unintended consequences may result because of such factors as weather
|
||||||
|
conditions, presence of other materials, or the manner of use or application, all
|
||||||
|
of which are beyond the control of Bayer CropScience. All such risks shall be
|
||||||
|
assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, BAYER CROPSCIENCE MAKES NO WARRANTIES,
|
||||||
|
EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE
|
||||||
|
STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience is
|
||||||
|
authorized to make any warranties beyond those contained herein or to modify the
|
||||||
|
warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, BAYER CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER
|
||||||
|
FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING
|
||||||
|
FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER
|
||||||
|
FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM
|
||||||
|
THE USE OR HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT,
|
||||||
|
WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE,
|
||||||
|
SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR AT BAYER
|
||||||
|
CROPSCIENCE’S ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
|
||||||
|
6
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
7
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
PLACE BAR CODE HERE
|
||||||
|
(01) 0 0785740 54729 8
|
||||||
|
5.50”
|
||||||
|
BASE LABEL
|
||||||
|
4.125”0.875” 0.50”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage,
|
||||||
|
disposal or cleaning of equipment.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in original container away from feed and food.
|
||||||
|
Store in cool, dry area. Do not store in direct sunlight.
|
||||||
|
Do not allow prolonged storage in temperatures that
|
||||||
|
exceed 105°F (40°C) or in temperatures that fall
|
||||||
|
below 14°F (-10°C).
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
To avoid wastes, use all material in this container by
|
||||||
|
application according to label directions. If wastes
|
||||||
|
cannot be avoided, offer remaining product to a waste
|
||||||
|
facility or pesticide disposal program (often such
|
||||||
|
programs are run by state or local governments or by
|
||||||
|
industry).
|
||||||
|
CONTAINER DISPOSAL
|
||||||
|
Rigid, Non-refillable containers (equal to or less
|
||||||
|
than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this
|
||||||
|
container. Offer for recycling, if available. Triple rinse
|
||||||
|
or pressure rinse container (or equivalent) promptly
|
||||||
|
after emptying. Triple rinse as follows: Empty the
|
||||||
|
remaining contents into application equipment or
|
||||||
|
a mix tank and drain for 10 seconds after the flow
|
||||||
|
begins to drip. Fill the container 1/4 full with water
|
||||||
|
and recap. Shake for 10 seconds. Pour rinsate into
|
||||||
|
application equipment or a mix tank or store rinsate
|
||||||
|
for later use or disposal. Drain for 10 seconds after
|
||||||
|
the flow begins to drip. Repeat this procedure two
|
||||||
|
more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining
|
||||||
|
contents into application equipment or a mix tank and
|
||||||
|
continue to drain for 10 seconds after the flow begins
|
||||||
|
to drip. Hold container upside down over application
|
||||||
|
equipment or mix tank or collect rinsate for later use
|
||||||
|
or disposal. Insert pressure rinsing nozzle in the side
|
||||||
|
of the container, and rinse at about 40 PSI for at
|
||||||
|
least 30 seconds. Drain for 10 seconds after the flow
|
||||||
|
begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available
|
||||||
|
or puncture and dispose of in a sanitary landfill.
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
EVERGOL is a registered trademark of Bayer Group.
|
||||||
|
©2020 Bayer Group
|
||||||
|
US85375091C 130807Cv3 07/20
|
||||||
|
FIRST AID
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor immediately for treatment
|
||||||
|
advice.
|
||||||
|
• Have person sip a glass of water
|
||||||
|
if able to swallow.
|
||||||
|
• Do not induce vomiting unless
|
||||||
|
told to by a poison control center
|
||||||
|
or doctor.
|
||||||
|
• Do not give anything by mouth to
|
||||||
|
an unconscious person.
|
||||||
|
IF ON SKIN:
|
||||||
|
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with
|
||||||
|
plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911
|
||||||
|
or ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to-
|
||||||
|
mouth if possible.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for further treatment advice.
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and
|
||||||
|
gently with water for 15-20 minutes.
|
||||||
|
• Remove contact lenses, if present,
|
||||||
|
after the first 5 minutes, then
|
||||||
|
continue rinsing eye.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer
|
||||||
|
CropScience Emergency Response
|
||||||
|
Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when
|
||||||
|
calling a poison control center or doctor, or
|
||||||
|
going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC
|
||||||
|
ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed. Harmful if absorbed through
|
||||||
|
the skin. Harmful if inhaled. Causes moderate eye
|
||||||
|
irritation. Avoid contact with skin, eyes, or clothing.
|
||||||
|
Avoid breathing spray mist.
|
||||||
|
EverGol® Xtend C
|
||||||
|
For use as a fungicide seed dressing for protection against listed soilborne,
|
||||||
|
seedborne, and early season post-emergence diseases of listed crop plants.
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Penflufen ........................................................................... 14.26%
|
||||||
|
Trifloxystrobin ....................................................................... 14.26%
|
||||||
|
OTHER INGREDIENTS: .............................................................. 71.48%
|
||||||
|
Contains 1.28 lb penflufen; 1.28 lb trifloxystrobin per gallon TOTAL: 100.00%
|
||||||
|
(154 g penflufen; 154 g trifloxystrobin per liter)
|
||||||
|
EPA Reg. No. 264-1165
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "finish-6-pro-harvest-aid-for-cotton-plant-growth-regulator",
|
||||||
|
"epa_reg_no": "264-703",
|
||||||
|
"product_name": "Finish 6 PRO Harvest Aid",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Ethephon",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Cyclanilide",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Finish_6_Pro_Harvest_Aid1ng_For_Cotton_Labelpdf",
|
||||||
|
"filename": "Finish_6_Pro_Harvest_Aid1ng_For_Cotton_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:02:39+00:00",
|
||||||
|
"page_count": 13,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "FINISH 6 PRO HARVEST AID FOR COTTON MSDS - Spanish",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/agrian-pdfs/msds/Finish_6_Pro_Harvest1p_Aid_For_Cotton_MSDS.pdf",
|
||||||
|
"last_modified": "2026-01-28T18:13:46+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "FINISH 6 PRO HARVEST AID FOR COTTON MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Finish_6_Pro_Harvest1h_Aid_For_Cotton_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-28T18:29:22+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "TANKMIX RECOMMENDATION FOR USE OF AN ADJUVANT OR COMPATIBILITY AGENT TO IMPROVE MIXING & COVERAGE",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Finish_6_Pro_Harvest_Aid_For_Cotton_2EE2fpdf",
|
||||||
|
"last_modified": "2026-01-30T13:48:50+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "TANKMIX RECOMMENDATION FOR USE OF AN ADJUVANT OR COMPATIBILITY AGENT TO IMPROVE MIXING & COVERAGE",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Finish_6_Pro_Harvest_Aid_For_Cotton_2EE3apdf",
|
||||||
|
"last_modified": "2026-01-30T14:15:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "GINSTAR EC plus FINISH 6 PRO Harvest Aid Sequential Defoliation System on Cotton",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Finish_6_Pro_Harvest_Aid_For_Cotton_(070505_Ca_ginstarfinish_On_Cotton)_2eepdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:51+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "TANKMIX RECOMMENDATION FOR USE OF AN ADJUVANT OR COMPATIBILITY AGENT TO IMPROVE MIXING & COVERAGE",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Finish_6_Pro_Harvest_Aid_For_Cotton_2EE4hpdf",
|
||||||
|
"last_modified": "2026-01-30T14:11:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Finish 6 PRO Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Finish-6-PRO_2025pdf",
|
||||||
|
"last_modified": "2026-05-20T00:28:33+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/plant-growth-regulator/finish-6-pro-harvest-aid-for-cotton-plant-growth-regulator",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:08:47.361920+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,772 @@
|
|||||||
|
# Finish 6 PRO Harvest Aid
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-703
|
||||||
|
- **Active ingredients:** Ethephon, Cyclanilide
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/plant-growth-regulator/finish-6-pro-harvest-aid-for-cotton-plant-growth-regulator
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Finish_6_Pro_Harvest_Aid1ng_For_Cotton_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
US04727648G 210224Gv2 07/25
|
||||||
|
ACTIVE INGREDIENTS: Ethephon*
|
||||||
|
(2-chloroethyl)phosphonic acid . . . . . . . . . . . . . . . . . .52.6%
|
||||||
|
Cyclanilide** 1-(2,4-dichlorophenylamino
|
||||||
|
carbonyl)-
|
||||||
|
cyclopropane carboxylic acid . . . . . . . . . . . . . . . . . . .
|
||||||
|
3.3%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . 44.1%
|
||||||
|
TOTAL 100.0%
|
||||||
|
*This pr
|
||||||
|
oduct contains 6 .0 pounds ethephon per gallon
|
||||||
|
**This pr
|
||||||
|
oduct contains 0 .375 pound cyclanilide per gallon
|
||||||
|
EPA Reg. No. 264-703
|
||||||
|
KEEP OUT OF REACH
|
||||||
|
OF CHILDREN
|
||||||
|
DANGER PELIGRO
|
||||||
|
Si usted no entiende la etiqueta, busque a alguien para
|
||||||
|
que se la explique a usted en detalle .
|
||||||
|
(If you do not understand the label, find someone to
|
||||||
|
explain it to you in detail .)
|
||||||
|
Please refer to booklet for additional precautionary
|
||||||
|
statements and directions for use.
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies
|
||||||
|
ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER
|
||||||
|
(1-866-992-2937)
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N . Lindbergh Blvd .
|
||||||
|
St . Louis, MO 63167
|
||||||
|
Finish is a r
|
||||||
|
egistered trademark of Bayer Group .
|
||||||
|
©2025 Bayer Group . All rights r
|
||||||
|
eserved .
|
||||||
|
Net Contents:
|
||||||
|
2.5 Gallons
|
||||||
|
HARVEST AID FOR COTTON
|
||||||
|
Escanee el código QR para español
|
||||||
|
Scan QR Code for Spanish
|
||||||
|
US04727648G (210224Gv2) FINISH 6 PRO 2.5 Gallon ECL
|
||||||
|
COLORS: CMYK DATE:
|
||||||
|
07/21/2025
|
||||||
|
Label Coordinator: Mark Schmidt
|
||||||
|
|
||||||
|
2
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for 15-20 minutes .
|
||||||
|
•
|
||||||
|
Remove contact lenses, if pr
|
||||||
|
esent, after the first 5 minutes, then continue rinsing
|
||||||
|
.
|
||||||
|
|
||||||
|
•
|
||||||
|
Call a poison contr
|
||||||
|
ol center or doctor for treatment advice
|
||||||
|
.
|
||||||
|
IF SW
|
||||||
|
ALLOWED: •
|
||||||
|
Immediately call a poison contr
|
||||||
|
ol center or doctor for treatment advice
|
||||||
|
.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison contr
|
||||||
|
ol center or doctor .
|
||||||
|
• Have person sip a glass of water if able to swallow .
|
||||||
|
• Do not give anything by mouth to an unconscious person
|
||||||
|
.
|
||||||
|
IF ON SKIN
|
||||||
|
OR CLOTHING:
|
||||||
|
• T
|
||||||
|
ake off contaminated clothing
|
||||||
|
.
|
||||||
|
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes
|
||||||
|
.
|
||||||
|
|
||||||
|
• Call a poison contr
|
||||||
|
ol center or doctor for treatment advice
|
||||||
|
.
|
||||||
|
|
||||||
|
IF INHALED: • Move person to fr
|
||||||
|
esh air .
|
||||||
|
|
||||||
|
• If person is not br
|
||||||
|
eathing, call 911 or an ambulance, then give artificial respiration,
|
||||||
|
pr
|
||||||
|
eferably mouth-to-mouth if possible
|
||||||
|
.
|
||||||
|
|
||||||
|
• Call a poison contr
|
||||||
|
ol center or doctor for further treatment advice
|
||||||
|
.
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day 1-800-334-7577.
|
||||||
|
Have the pr
|
||||||
|
oduct container or label with you when calling a poison control center or doctor or
|
||||||
|
going for treatment.
|
||||||
|
NOTE TO PHYSICIAN: Treat symptomatically .
|
||||||
|
Consideration should be given to the possibility that overexposure
|
||||||
|
to materials other than this product may have occurred
|
||||||
|
.
|
||||||
|
No specific antidote is available
|
||||||
|
.
|
||||||
|
Probable mucosal
|
||||||
|
damage may contraindicate the use of gastric lavage
|
||||||
|
.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
DANGER
|
||||||
|
Corrosive . Causes irreversible eye damage . Harmful if swallowed . Harmful if inhaled or absorbed through the
|
||||||
|
skin
|
||||||
|
.
|
||||||
|
Avoid contact with skin
|
||||||
|
.
|
||||||
|
Causes skin irritation
|
||||||
|
.
|
||||||
|
Do not get in eyes on skin or clothing
|
||||||
|
.
|
||||||
|
Avoid breathing
|
||||||
|
vapor or spray mist
|
||||||
|
.
|
||||||
|
Keep away from domestic animals
|
||||||
|
.
|
||||||
|
Avoid contamination of food
|
||||||
|
.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Some materials that are chemical-resistant to this product are listed below .
|
||||||
|
Applicators and other handlers must wear long-sleeved shirts and long pants, shoes plus socks and goggles
|
||||||
|
or face shield and chemical resistant gloves made out of any waterproof material (barrier laminate, butyl rubber
|
||||||
|
≥ 14 mils, nitrile rubber ≥ 14 mils, neoprene rubber ≥ 14 mils, natural rubber ≥ 14 mils, polyethylene, polyvinyl
|
||||||
|
chloride ≥ 14 mils, or viton ≥ 14 mils)
|
||||||
|
.
|
||||||
|
|
||||||
|
Discard clothing and other absorbent materials that have been drenched or heavily contaminated with this product’s
|
||||||
|
concentrate
|
||||||
|
.
|
||||||
|
Do not reuse them
|
||||||
|
.
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE
|
||||||
|
.
|
||||||
|
If no such
|
||||||
|
instructions for washables, use detergent and hot water .
|
||||||
|
Keep and wash PPE separately from other laundry .
|
||||||
|
When handlers use closed systems, enclosed cabs, or aircraft in a manner that meets the requirements listed
|
||||||
|
in the Worker Protection Standard (WPS) for agricultural pesticides 40 CFR 170
|
||||||
|
.
|
||||||
|
240 (d) (4-6), the handler PPE
|
||||||
|
requirements may be reduced or modified as specified in the WPS
|
||||||
|
.
|
||||||
|
|
||||||
|
3
|
||||||
|
User Safety Recommendations
|
||||||
|
Users should wash hands before eating, drinking, chewing gum, using tobacco or using the toilet .
|
||||||
|
Remove clothing immediately if pesticide gets inside . Then wash body thoroughly and put on clean clothing .
|
||||||
|
User should remove PPE immediately after handling this product . As soon as possible, wash thoroughly and
|
||||||
|
change into clean clothing . Wash the outsides of gloves before removing .
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
Do not apply directly to water, or to areas where surface water is present or to intertidal areas below the
|
||||||
|
mean high water mark . Do not contaminate water when disposing of equipment washwater or rinsate . Do not
|
||||||
|
contaminate water used for irrigation or domestic purposes .
|
||||||
|
This chemical has properties and characteristics associated with chemicals detected in ground water . The use
|
||||||
|
of this chemical in areas where soils are permeable, particularly where the water table is shallow, may result in
|
||||||
|
ground water contamination .
|
||||||
|
NON-TARGET ORGANISM ADVISORY STATEMENT: This product is toxic to plants and may adversely impact the
|
||||||
|
forage and habitat of non-target organisms, including pollinators, in areas adjacent to the treated site . Protect
|
||||||
|
the forage and habitat of non-target organisms by following label directions intended to minimize spray drift .
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal Law to use this product in a manner inconsistent with its labeling.
|
||||||
|
Read entire label before using this product.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons, either directly or through drift .
|
||||||
|
Only protected handlers may be in the area during application . For any requirements specific to your State or
|
||||||
|
Tribe, consult the agency responsible for pesticide regulations .
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection Standard, 40 CFR part 170 .
|
||||||
|
This standard contains requirements for the protection of agricultural workers on farms, forests, nurseries, and
|
||||||
|
greenhouses, and handlers of agricultural pesticides . It contains requirements for training, decontamination,
|
||||||
|
notification, and emergency assistance . It also contains specific instructions and exceptions pertaining to the
|
||||||
|
statements on this label about personal protective equipment (PPE), notification to workers and restricted-entry
|
||||||
|
intervals . The requirements in this box only apply to uses of this product that are covered by the Worker Protection
|
||||||
|
Standard .
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted-entry interval (REI) of 48 hours . The
|
||||||
|
REI is 72 hours in areas where average rainfall is less than 25 inches per year .
|
||||||
|
PPE required for early entry to treated areas that is permitted under the Worker Protection Standard and that
|
||||||
|
involves contact with anything that has been treated such as plants, soil or water is coveralls over long-sleeved
|
||||||
|
shirt and long pants, socks and chemical resistant footwear, goggles or face shield, and chemical-resistant
|
||||||
|
gloves made of any waterproof material, such as polyvinyl chloride, nitrile rubber, or butyl rubber .
|
||||||
|
Notify workers of the application by warning them orally and posting warning signs at entrances to treated
|
||||||
|
areas .
|
||||||
|
|
||||||
|
4
|
||||||
|
SPRAY DRIFT MANAGEMENT
|
||||||
|
Aerial Applications:
|
||||||
|
• Do
|
||||||
|
not release spray at a height greater than 10 feet above the vegetative canopy, unless a greater application
|
||||||
|
height is necessary for pilot safety .
|
||||||
|
• For all applications, applicators ar
|
||||||
|
e required to use a fine to medium or coarser droplet size (ASABE S572
|
||||||
|
.
|
||||||
|
1)
|
||||||
|
.
|
||||||
|
• The boom length must not exceed 65% of the wingspan for airplanes or 75% of the r
|
||||||
|
otor blade diameter for
|
||||||
|
helicopters
|
||||||
|
.
|
||||||
|
• Applicators must use 1/2 swath displacement upwind at the downwind edge of the field
|
||||||
|
.
|
||||||
|
• Nozzles must be oriented so the spray is dir
|
||||||
|
ected toward the back of the aircraft
|
||||||
|
.
|
||||||
|
• Do not apply when wind speeds exceed 10 miles per hour at the application site
|
||||||
|
.
|
||||||
|
• Do not apply during temperatur
|
||||||
|
e inversions
|
||||||
|
.
|
||||||
|
Gr
|
||||||
|
ound Boom Applications:
|
||||||
|
• Apply with the nozzle height r
|
||||||
|
ecommended by the manufacturer, but no more than 3 feet above the ground or
|
||||||
|
crop canopy .
|
||||||
|
• For all applications, applicators ar
|
||||||
|
e required to use a fine to medium or coarser droplet size (ASABE S572
|
||||||
|
.
|
||||||
|
1)
|
||||||
|
.
|
||||||
|
• Do not apply when wind speeds exceed 10 miles per hour at the application site
|
||||||
|
.
|
||||||
|
• Do not apply during temperatur
|
||||||
|
e inversions
|
||||||
|
.
|
||||||
|
Airblast Applications:
|
||||||
|
•
|
||||||
|
Dir
|
||||||
|
ect spray into the canopy .
|
||||||
|
• T
|
||||||
|
urn off outward pointing nozzles at row ends and when spraying outer rows
|
||||||
|
.
|
||||||
|
SPRA
|
||||||
|
Y DRIFT ADVISORIES
|
||||||
|
THE APPLICATOR IS RESPONSIBLE FOR AVOIDING OFF-SITE SPRAY DRIFT . BE AWARE OF NEARBY
|
||||||
|
NON-TARGET SITES AND ENVIRONMENTAL CONDITIONS
|
||||||
|
.
|
||||||
|
IMPORTANCE OF DROPLET SIZE
|
||||||
|
An effective way to reduce spray drift is to apply large droplets
|
||||||
|
.
|
||||||
|
Use the largest droplets that provide target pest
|
||||||
|
control
|
||||||
|
.
|
||||||
|
While applying larger droplets will reduce spray drift, the potential for drift will be greater if applications
|
||||||
|
are made improperly or under unfavorable environmental conditions
|
||||||
|
.
|
||||||
|
Contr
|
||||||
|
olling Droplet Size - Ground Boom
|
||||||
|
• V
|
||||||
|
olume - Increasing the spray volume so that larger droplets are produced will reduce spray drift
|
||||||
|
. Use the
|
||||||
|
highest practical spray volume for the application
|
||||||
|
.
|
||||||
|
If a greater spray volume is needed, consider using a
|
||||||
|
nozzle with a higher flow rate
|
||||||
|
.
|
||||||
|
• Pr
|
||||||
|
essure - Use the lowest spray pressure recommended for the nozzle to produce the target spray volume
|
||||||
|
and droplet size
|
||||||
|
.
|
||||||
|
• Spray Nozzle -
|
||||||
|
Use a spray nozzle that is designed for the intended application
|
||||||
|
. Consider using nozzles
|
||||||
|
designed to r
|
||||||
|
educe drift
|
||||||
|
.
|
||||||
|
Contr
|
||||||
|
olling Droplet Size - Aircraft
|
||||||
|
• Adjust Nozzles -
|
||||||
|
Follow nozzle manufacturers’ recommendations for setting up nozzles
|
||||||
|
.
|
||||||
|
Generally, to reduce
|
||||||
|
fine droplets, nozzles should be oriented parallel with the airflow in flight
|
||||||
|
.
|
||||||
|
BOOM HEIGHT
|
||||||
|
- Ground Boom
|
||||||
|
|
||||||
|
5
|
||||||
|
For ground equipment, the boom should remain level with the crop and have minimal bounce .
|
||||||
|
BOOM-LESS GROUND APPLICATIONS
|
||||||
|
Setting nozzles at the lowest effective height will help to reduce the potential for spray drift .
|
||||||
|
RELEASE HEIGHT – Aircraft
|
||||||
|
Higher release heights increase the potential for spray drift .
|
||||||
|
SHIELDED SPRAYERS
|
||||||
|
Shielding the boom or individual nozzles can reduce spray drift . Consider using shielded sprayers . Verify that
|
||||||
|
the shields are not interfering with the uniform deposition of the spray on the target area .
|
||||||
|
TEMPERATURE AND HUMIDITY
|
||||||
|
When making applications in hot and d1y conditions, use larger droplets to reduce effects of evaporation .
|
||||||
|
TEMPERATURE INVERSIONS
|
||||||
|
Drift potential is high during a temperature inversion . Temperature inversions are characterized by increasing
|
||||||
|
temperature with altitude and are common on nights with limited cloud cover and light to no wind . The presence
|
||||||
|
of an inversion can be indicated by ground fog or by the movement of smoke from a ground source or an aircraft
|
||||||
|
smoke generator . Smoke that layers and moves laterally in a concentrated cloud (under low wind conditions)
|
||||||
|
indicates an inversion, while smoke that moves upward and rapidly dissipates indicates good vertical air mixing .
|
||||||
|
Avoid applications during temperature inversions .
|
||||||
|
WIND
|
||||||
|
Drift potential generally increases with wind speed . AVOID APPLICATIONS DURING GUSTY WIND CONDITIONS .
|
||||||
|
Applicators need to be familiar with local wind patterns and terrain that could affect spray drift .
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
A foliar spray of FINISH ® 6 Pro Harvest Aid for Cotton will accelerate opening of mature cotton bolls, promote
|
||||||
|
defoliation of both mature and juvenile foliage and reduce terminal regrowth . FINISH 6 Pro Harvest Aid for
|
||||||
|
Cotton treatment promotes earlier harvest and enhances the potential for high quality, high yield, once-over
|
||||||
|
harvest . Rainfall, stress, temperature fluctuations, residual nitrogen and yield potential can affect defoliation
|
||||||
|
and/or regrowth .
|
||||||
|
Spray Preparation
|
||||||
|
Add 1/2 to 3/4 of the required amount of water to the spray tank . Start agitation . Add the required amount of
|
||||||
|
FINISH 6 Pro Harvest Aid for Cotton, and the remaining amount of water . Mix only as much spray solution as
|
||||||
|
can be used on the day of application . Storage and use of previous day’s spray mix may result in equipment
|
||||||
|
corrosion and reduced activity .
|
||||||
|
Do not spill the concentrated product on spray equipment, or any airplane parts . ANY SPILLS SHOULD BE
|
||||||
|
IMMEDIATELY RINSED WITH PLENTY OF WATER AS FINISH 6 Pro Harvest Aid for Cotton IS CORROSIVE .
|
||||||
|
Use of a nurse tank is highly recommended for avoiding possible spills of concentrated formulation on spray
|
||||||
|
equipment .
|
||||||
|
Tank Mixtures With Other Products
|
||||||
|
FINISH 6 Pro Harvest Aid for Cotton may be applied as a tank mix or in sequential application with other
|
||||||
|
harvest aid and insecticide products .
|
||||||
|
In some cases, crop conditions, such as rank growth, weed or insect infestations, drought, unutilized nitrogen,
|
||||||
|
low temperature, high moisture, and heavy juvenile growth will require the inclusion of other products for
|
||||||
|
satisfactory defoliation and terminal regrowth suppression . FINISH 6 Pro Harvest Aid for Cotton can be tank
|
||||||
|
|
||||||
|
6
|
||||||
|
mixed or sequentially applied with other products such as DEF ® 6, FOLEX ® 6EC, DROPP ® 50WP , HARVADE®
|
||||||
|
5F, GINSTAR®, DROPP ® ULTRA ™ , ROUNDUP ®, METHYL PARATHION 4E or 4 lb, GUTHION ® 2L or 3 and
|
||||||
|
MALATHION™ 57EC for use on cotton in accordance with the most restrictive of the label limitations and
|
||||||
|
precautions . No label dosage rates should be exceeded . Proper mixing sequences should be followed when
|
||||||
|
making a tank mix . This product cannot be mixed with any product containing a label prohibition against
|
||||||
|
such mixing . Follow all applicable use precautions and rate per acre recommendations on labels of products
|
||||||
|
applied as tank mixtures or in sequence with FINISH 6 Pro Harvest Aid for Cotton . In some cases, slight
|
||||||
|
reduction in boll opening response has been observed when tank mixes with phosphate defoliants were used .
|
||||||
|
FINISH 6 Pro Harvest Aid for Cotton tank mixes with DROPP or DROPP ULTRA on picker cotton and GINSTAR
|
||||||
|
on stripper cotton will enhance regrowth suppression and removal of juvenile foliage .
|
||||||
|
Under some conditions such as high temperatures or low soil moisture, tank mixtures with products such as
|
||||||
|
FOLEX, DEF, DROPP ULTRA, GINSTAR and METHYL PARATHION may result in leaf stick or leaf burn due to
|
||||||
|
increased desiccation activity . To minimize leaf stick and leaf burn occurrence under these conditions, it is
|
||||||
|
important to follow local recommendations and use the lower labeled rate of the tank mix partner product(s) .
|
||||||
|
Do not tank mix FINISH 6 Pro Harvest Aid for Cotton with a desiccant if the cotton is to be spindle harvested .
|
||||||
|
Good agitation in the spray tank is essential . A tank mixture should not be allowed to stand without agitation
|
||||||
|
for more than 5 to 10 minutes . Read and observe all appropriate label use directions and precautions for the
|
||||||
|
defoliants used .
|
||||||
|
To improve mixing and coverage, it is recommended that FINISH 6 Pro Harvest Aid for Cotton and tank
|
||||||
|
mixtures of FINISH 6 Pro Harvest Aid for Cotton be mixed with adjuvants and/or compatibility agents which
|
||||||
|
are cleared for application on cotton . FINISH 6 Pro Harvest Aid for Cotton should be added to the tank prior
|
||||||
|
to the addition of an adjuvant . Read and observe all appropriate label use directions and precautions for the
|
||||||
|
adjuvant used .
|
||||||
|
NOTE: UNDER CERTAIN CONDITIONS, TANK MIXTURES OF FINISH 6 PRO HARVEST AID FOR COTTON WITH
|
||||||
|
DESICCANTS CONTAINING SODIUM CHLORATE COULD RESULT IN THE FORMATION OF A HYPOCHLOROUS
|
||||||
|
ACID WHICH ON HEATING WILL EMIT TOXIC CHLORIDE FUMES .
|
||||||
|
DO NOT MIX FINISH 6 PRO HARVEST AID FOR COTTON WITH AMMONIUM THIOSULFATE . SUCH TANK
|
||||||
|
MIXTURES MAY RESULT IN FORMATION OF TOXIC FUMES .
|
||||||
|
Equipment Cleaning
|
||||||
|
Because of the acidic nature of this product, prolonged exposure to spray deposit will damage acrylic
|
||||||
|
plastics, certain paints and metals .
|
||||||
|
Rinse thoroughly with detergent and water all exposed acrylic plastic-type materials (e .g . aircraft windshields),
|
||||||
|
and painted surfaces within an hour after exposure to spray deposits .
|
||||||
|
At the end of each day, rinse thoroughly with detergent and water all metal parts of the aircraft and the
|
||||||
|
associated spray equipment exposed to the spray deposits .
|
||||||
|
|
||||||
|
7
|
||||||
|
COTTON
|
||||||
|
HOW TO USE EXPECTED CONDITIONS
|
||||||
|
DOSAGE RATE FOR
|
||||||
|
FINISH 6 PRO HARVEST
|
||||||
|
AID FOR COTTON
|
||||||
|
PINTS
|
||||||
|
PER
|
||||||
|
ACRE
|
||||||
|
GALS. WATER
|
||||||
|
PER ACRE
|
||||||
|
FINISH 6 Pro Harvest Aid for Cotton Alone
|
||||||
|
(Under Normal Conditions):
|
||||||
|
The cotton crop must be in cut-out condition for
|
||||||
|
FINISH 6 Pro Harvest Aid for Cotton to provide
|
||||||
|
the expected boll opening, defoliation and
|
||||||
|
terminal regrowth suppression
|
||||||
|
.
|
||||||
|
FINISH 6 Pr
|
||||||
|
o Harvest Aid for Cotton may be
|
||||||
|
applied by air or ground equipment
|
||||||
|
.
|
||||||
|
For aerial
|
||||||
|
applications, optimal gallonage should be 5 GPA
|
||||||
|
and applied in a way to prevent drift
|
||||||
|
.
|
||||||
|
Ground
|
||||||
|
applications should optimally use between 15
|
||||||
|
– 25 GPA and a spray boom with 3 hollow cone
|
||||||
|
nozzles per row and a minimum spray pressure
|
||||||
|
of 40 psi
|
||||||
|
.
|
||||||
|
For best performance, by either air
|
||||||
|
or ground, choose the spray equipment and
|
||||||
|
volumes which will ensure uniform coverage of
|
||||||
|
foliage and bolls
|
||||||
|
.
|
||||||
|
Hot, dry over 80° F
|
||||||
|
Dry 75 to 80° F
|
||||||
|
Cool, but over 65° F
|
||||||
|
or
|
||||||
|
Rank cotton
|
||||||
|
1 1/3
|
||||||
|
2
|
||||||
|
2 2/3
|
||||||
|
3
|
||||||
|
Minimum
|
||||||
|
(aerial)
|
||||||
|
10
|
||||||
|
Minimum
|
||||||
|
(gr
|
||||||
|
ound)
|
||||||
|
FINISH 6 Pro Harvest Aid for Cotton Tank Mix
|
||||||
|
Options for Unusual Situations:
|
||||||
|
Use FINISH 6 Pro Harvest Aid for Cotton with low
|
||||||
|
rates of DROPP (warm weather) or FINISH 6 Pro
|
||||||
|
Harvest Aid for Cotton with low rates of FOLEX/DEF
|
||||||
|
(warm or cool weather) on picker cotton
|
||||||
|
.
|
||||||
|
In addition to the above, GINSTAR may be used
|
||||||
|
on stripper cotton
|
||||||
|
.
|
||||||
|
When the cotton cr
|
||||||
|
op
|
||||||
|
has been under stress
|
||||||
|
conditions such as
|
||||||
|
hot weather, drought,
|
||||||
|
unutilized nitrogen, weed
|
||||||
|
or insect infestations,
|
||||||
|
low temperature, high
|
||||||
|
moisture, heavy juvenile
|
||||||
|
growth or rank cotton,
|
||||||
|
defoliation and terminal
|
||||||
|
regrowth suppression may
|
||||||
|
be enhanced by tank
|
||||||
|
mixing
|
||||||
|
.
|
||||||
|
1 1/3 - 2 3
|
||||||
|
Minimum
|
||||||
|
(aerial)
|
||||||
|
10
|
||||||
|
Minimum
|
||||||
|
(gr
|
||||||
|
ound)
|
||||||
|
When To Apply
|
||||||
|
Apply FINISH 6 Pro Harvest Aid for Cotton when the cotton crop has cut-out and there are sufficient mature
|
||||||
|
unopened bolls present (40 to 60%) to produce the desired yield
|
||||||
|
.
|
||||||
|
This state of growth may be estimated when
|
||||||
|
the crop has reached 2100 - 2400 DD 60’s for the year .
|
||||||
|
Two additional methods should also be used to estimate the proper crop maturity for applications of FINISH 6 Pro
|
||||||
|
Harvest Aid for Cotton
|
||||||
|
.
|
||||||
|
Sharp Knife Technique
|
||||||
|
Apply when the number of mature unopened bolls is sufficient to produce the desired crop and bolls have become
|
||||||
|
very hard, can not be sliced easily by a sharp knife, have seed coats that are tan in color, and the seed kernel is
|
||||||
|
completely filled inside the cavity
|
||||||
|
.
|
||||||
|
At this stage, no gelatinous material is present inside the boll or seed
|
||||||
|
.
|
||||||
|
|
||||||
|
8
|
||||||
|
Nodes Above Cracked Boll
|
||||||
|
The crop is ready to treat when the top-most, first-position harvestable boll is 4 nodes above the uppermost,
|
||||||
|
first-position cracked boll
|
||||||
|
.
|
||||||
|
Delaying treatment past this date is not likely to result in additional recoverable
|
||||||
|
bolls at harvest
|
||||||
|
.
|
||||||
|
Use Pr
|
||||||
|
ecaution
|
||||||
|
•
|
||||||
|
Do not apply FINISH 6
|
||||||
|
Pro Harvest Aid for Cotton if rain is expected within 6 hours
|
||||||
|
.
|
||||||
|
Rainfall within 6 hours of
|
||||||
|
application may reduce product performance
|
||||||
|
.
|
||||||
|
Use Restrictions
|
||||||
|
•
|
||||||
|
Do not harvest cotton sooner than 7 days after a tr
|
||||||
|
eatment with FINISH 6 Pro Harvest Aid for Cotton
|
||||||
|
.
|
||||||
|
• Do not apply this pr
|
||||||
|
oduct through any kind of irrigation equipment
|
||||||
|
.
|
||||||
|
• Do
|
||||||
|
not plant any food crop within 30 days after last application
|
||||||
|
.
|
||||||
|
Small grains planted earlier than 1 month or
|
||||||
|
intercropped within the cotton crop to which FINISH 6 Pro Harvest Aid for Cotton will be applied may only be
|
||||||
|
used as cover crops and may not be harvested for food or feed
|
||||||
|
.
|
||||||
|
FINISH 6 Pro Harvest Aid for Cotton may
|
||||||
|
cause yellowing and growth inhibition of treated small grains
|
||||||
|
.
|
||||||
|
• In
|
||||||
|
Arizona and California, any food crop can be planted 30 days after the last application
|
||||||
|
.
|
||||||
|
In the rest of the US,
|
||||||
|
small grain or leafy vegetable crops can be planted only after 30 days, and all other food crops can be planted
|
||||||
|
only after 4 months
|
||||||
|
.
|
||||||
|
• Do not exceed a maximum of 2
|
||||||
|
.
|
||||||
|
0 lb ethephon active ingredient per acre per year through combined or
|
||||||
|
repeated uses of any ethephon products
|
||||||
|
.
|
||||||
|
• Do not exceed 0
|
||||||
|
.
|
||||||
|
25 lbs cyclanilide active ingredient per acre per year .
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal .
|
||||||
|
Storage
|
||||||
|
Stor
|
||||||
|
e between 0° to 50° C (32° to 122° F) in an area that is away from ignition sources
|
||||||
|
.
|
||||||
|
Avoid freezing
|
||||||
|
.
|
||||||
|
If freezing
|
||||||
|
occurs, thaw and remix before using
|
||||||
|
.
|
||||||
|
Avoid contact with metals due to the corrosive properties of the formulation
|
||||||
|
.
|
||||||
|
|
||||||
|
If container is broken or contents have spilled, follow all precautions indicated above and clean up immediately .
|
||||||
|
|
||||||
|
Before cleaning up, put on full length trousers, long sleeved shirt, protective gloves, and goggles or face shield
|
||||||
|
.
|
||||||
|
|
||||||
|
Soak up spill with absorbent media such as sand, earth or other suitable material and dispose of waste at an
|
||||||
|
approved waste disposal facility
|
||||||
|
.
|
||||||
|
Pesticide Disposal
|
||||||
|
Pesticide wastes ar
|
||||||
|
e hazardous
|
||||||
|
.
|
||||||
|
Improper disposal of excess pesticide, spray mixture, or rinsate is a violation
|
||||||
|
of Federal law .
|
||||||
|
If these wastes cannot be disposed of by use according to label instructions, contact your State
|
||||||
|
Pesticide or Environmental Control Agency or the Hazardous Waste representative at the nearest EPA Regional
|
||||||
|
Office for guidance
|
||||||
|
.
|
||||||
|
Container Disposal
|
||||||
|
Rigid, Non-r
|
||||||
|
efillable containers small enough to shake (i.e., with capacities equal to or less than 5 gallons)
|
||||||
|
Non-refillable container .
|
||||||
|
Do not reuse or refill this container .
|
||||||
|
Triple rinse or pressure rinse container (or equivalent)
|
||||||
|
promptly after emptying
|
||||||
|
.
|
||||||
|
Triple rinse as follows: Empty the remaining contents into application equipment or a mix
|
||||||
|
tank and drain for 10 seconds after the flow begins to drip
|
||||||
|
.
|
||||||
|
Fill the container 1/4 full with water and recap
|
||||||
|
.
|
||||||
|
Shake
|
||||||
|
for 10 seconds
|
||||||
|
.
|
||||||
|
Pour rinsate into application equipment or a mix tank or store rinsate for later use or disposal
|
||||||
|
.
|
||||||
|
Drain
|
||||||
|
for 10 seconds after the flow begins to drip
|
||||||
|
.
|
||||||
|
Repeat this procedure two more times
|
||||||
|
.
|
||||||
|
Then offer for recycling
|
||||||
|
or reconditioning, or puncture and dispose of in a sanitary landfill
|
||||||
|
.
|
||||||
|
|
||||||
|
9
|
||||||
|
Rigid Non-refillable containers that are too large to shake (i.e., with capacities greater than 5 gallons or 50 lbs)
|
||||||
|
Non-refillable Containers
|
||||||
|
Non-refillable containers - Do not reuse or refill this container . Refer to Bottom Discharge IBC or Top Discharge
|
||||||
|
IBC, Drums, Kegs information as follows .
|
||||||
|
Bottom Discharge IBC (e .g . – Schuetz Caged IBC or Snyder Square Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of the person disposing of the container .
|
||||||
|
To pressure rinse the container before final disposal, empty the remaining contents from the IBC into application
|
||||||
|
equipment or mix tank . Raise the bottom of the IBC by 1 .5 inches on the side which is opposite of the bottom
|
||||||
|
discharge valve to promote more complete product removal . Completely remove the top lid of the IBC . Use water
|
||||||
|
pressurized to at least 40 PSI to rinse all interior portions . Continuously pump or drain rinsate into application
|
||||||
|
equipment or rinsate collection system while pressure rinsing . Continue pressure rinsing for 2 minutes or until
|
||||||
|
rinsate becomes clear . Replace the lid and close bottom valve .
|
||||||
|
Top Discharge IBC, Drums, Kegs (e .g .– Snyder 120 Next Gen, Bonar B120, Drums, Kegs) .
|
||||||
|
Triple rinsing the container before final disposal is the responsibility of the person disposing of the container . To
|
||||||
|
triple rinse the container before final disposal, empty the remaining contents from this container into application
|
||||||
|
equipment or mix tank . Fill the container at least 10 percent full with water . Agitate vigorously or recirculate water
|
||||||
|
with the pump for 2 minutes . Rinse all interior surfaces . Pour or pump rinsate into application equipment or rinsate
|
||||||
|
collection system . Repeat this procedure two more times .
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill .
|
||||||
|
Refillable Containers
|
||||||
|
Refillable container – Refer to Bottom Discharge IBC or Top Discharge IBC, Drums, Kegs information as follows .
|
||||||
|
Refill this container with pesticide only . Do not reuse this container for any other purpose . After emptying product
|
||||||
|
from container, either return container to Bayer CropScience per instructions from Bayer CropScience Customer
|
||||||
|
Service Center (1-800-527-4781) or rinse and either recycle or dispose of the container as follows:
|
||||||
|
Bottom Discharge IBC (e .g . – Schuetz Caged IBC or Snyder Square Stackable)
|
||||||
|
Pressure rinsing the container before final disposal is the responsibility of the person disposing of the container .
|
||||||
|
Cleaning before refilling is the responsibility of the refiller . To pressure rinse the container before final disposal,
|
||||||
|
empty the remaining contents from the IBC into application equipment or mix tank . Raise the bottom of the IBC by
|
||||||
|
1 .5 inches on the side which is opposite of the bottom discharge valve to promote more complete product removal .
|
||||||
|
Completely remove the top lid of the IBC . Use water pressurized to at least 40 PSI to rinse all interior portions .
|
||||||
|
Continuously pump or drain rinsate into application equipment or rinsate collection system while pressure rinsing .
|
||||||
|
Continue pressure rinsing for 2 minutes or until rinsate becomes clear . Replace the lid and close bottom valve .
|
||||||
|
Top Discharge IBC, Drums, Kegs (e .g .– Snyder 120 Next Gen, Bonar B120, Drums, Kegs) .
|
||||||
|
Triple rinsing the container before final disposal is the responsibility of the person disposing of the container .
|
||||||
|
Cleaning before refilling is the responsibility of the refiller . To triple rinse the containers before final disposal,
|
||||||
|
empty the remaining contents from this container into application equipment or mix tank . Fill the container at least
|
||||||
|
10 percent full with water . Agitate vigorously or recirculate water with the pump for 2 minutes . Rinse all interior
|
||||||
|
surfaces . Pour or pump rinsate into application equipment or rinsate collection system . Repeat this procedure two
|
||||||
|
more times .
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill .
|
||||||
|
Refillable Containers
|
||||||
|
End users are authorized to remove tamper evident cables as required to remove the product from the container
|
||||||
|
unless the container is equipped with one way valves and refilling or returning is planned . If this is the case, end
|
||||||
|
users are not authorized to remove tamper evident cables, one way valves or clean container .
|
||||||
|
|
||||||
|
10
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability before using
|
||||||
|
this product . If terms are not acceptable, return the unopened product container at once .
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties and Limitations
|
||||||
|
of Liability .
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and should be followed
|
||||||
|
carefully . However, it is impossible to eliminate all risks associated with the use of this product . Crop injury,
|
||||||
|
ineffectiveness or other unintended consequences may result because of such factors as weather conditions,
|
||||||
|
presence of other materials, or the manner of use or application, all of which are beyond the control of Bayer
|
||||||
|
CropScience . To the extent allowed by law, all such risks shall be assumed by the user or buyer .
|
||||||
|
DISCLAIMER OF WARRANTIES: BAYER CROPSCIENCE MAKES NO OTHER WARRANTIES, EXPRESS OR
|
||||||
|
IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A PARTICULAR PURPOSE OR OTHERWISE, THAT
|
||||||
|
EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL . No agent of Bayer CropScience is authorized
|
||||||
|
to make any warranties beyond those contained herein or to modify the warranties contained herein . BAYER
|
||||||
|
CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL
|
||||||
|
DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT .
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT ALLOWED BY LAW, THE EXCLUSIVE REMEDY OF THE USER OR
|
||||||
|
BUYER FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING
|
||||||
|
OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY OR
|
||||||
|
OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE’S ELECTION,
|
||||||
|
THE REPLACEMENT OF PRODUCT .
|
||||||
|
Bayer, Bayer Cross, Finish, Ginstar and Roundup are registered trademarks of Bayer Group . ©2025 Bayer Group .
|
||||||
|
All rights reserved .
|
||||||
|
All other trademarks are the property of their respective owners .
|
||||||
|
|
||||||
|
11
|
||||||
|
|
||||||
|
12
|
||||||
|
|
||||||
|
US04727648G 210224Gv2 07/25
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal Law to use this product in a manner inconsistent
|
||||||
|
with its labeling.
|
||||||
|
Read entire label before using this product.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal.
|
||||||
|
Storage
|
||||||
|
Store between 0° to 50° C (32° to 122° F) in an area that is away from ignition
|
||||||
|
sources. Avoid freezing. If freezing occurs, thaw and remix before using.
|
||||||
|
Avoid contact with metals due to the corrosive properties of the formulation.
|
||||||
|
If container is broken or contents have spilled, follow all precautions indicated
|
||||||
|
above and clean up immediately. Before cleaning up, put on full length
|
||||||
|
trousers, long sleeved shirt, protective gloves, and goggles or face shield.
|
||||||
|
Soak up spill with absorbent media such as sand, earth or other suitable
|
||||||
|
material and dispose of waste at an approved waste disposal facility.
|
||||||
|
Pesticide Disposal
|
||||||
|
Pesticide wastes are hazardous. Improper disposal of excess pesticide,
|
||||||
|
spray mixture, or rinsate is a violation of Federal law. If these wastes
|
||||||
|
cannot be disposed of by use according to label instructions, contact your
|
||||||
|
State Pesticide or Environmental Control Agency or the Hazardous Waste
|
||||||
|
representative at the nearest EPA Regional Office for guidance.
|
||||||
|
Container Disposal
|
||||||
|
Rigid, Non-refillable containers small enough to shake (i.e., with capacities
|
||||||
|
equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Triple rinse or pressure
|
||||||
|
rinse container (or equivalent) promptly after emptying. Triple rinse as follows:
|
||||||
|
Empty the remaining contents into application equipment or a mix tank and drain
|
||||||
|
for 10 seconds after the flow begins to drip. Fill the container 1/4 full with water
|
||||||
|
and recap. Shake for 10 seconds. Pour rinsate into application equipment or a mix
|
||||||
|
tank or store rinsate for later use or disposal. Drain for 10 seconds after the flow
|
||||||
|
begins to drip. Repeat this procedure two more times. Then offer for recycling or
|
||||||
|
reconditioning, or puncture and dispose of in a sanitary landfill.
|
||||||
|
Bayer and Finish are registered trademarks of Bayer Group. ©2025 Bayer
|
||||||
|
Group. All rights reserved.
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold ey e open and rinse slowly and gently with water for
|
||||||
|
15-20 minutes.
|
||||||
|
•
|
||||||
|
Remo
|
||||||
|
ve contact lenses, if present, after the first 5 minutes,
|
||||||
|
then continue rinsing.
|
||||||
|
•
|
||||||
|
Call a poison control center or doctor for tr
|
||||||
|
eatment advice.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Immediately call a poison control center or doctor for
|
||||||
|
tr
|
||||||
|
eatment advice.
|
||||||
|
•
|
||||||
|
Do not induce vomiting unless told to do so b
|
||||||
|
y a poison
|
||||||
|
control center or doctor.
|
||||||
|
•
|
||||||
|
Ha
|
||||||
|
ve person sip a glass of water if able to swallow.
|
||||||
|
•
|
||||||
|
Do not give anything b
|
||||||
|
y mouth to an unconscious person.
|
||||||
|
IF ON SKIN
|
||||||
|
OR
|
||||||
|
CLO
|
||||||
|
THING:
|
||||||
|
• T ake off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of w ater for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for tr eatment advice.
|
||||||
|
IF INHALED: • Mo ve person to fresh air.
|
||||||
|
• If person is not br eathing, call 911 or an ambulance, then
|
||||||
|
give artificial respiration, preferably mouth-to-mouth if
|
||||||
|
possible.
|
||||||
|
•
|
||||||
|
Call a poison control center or doctor for further tr
|
||||||
|
eatment
|
||||||
|
advice.
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison
|
||||||
|
control center or doctor or going for treatment.
|
||||||
|
NOTE TO PHYSICIAN: Treat symptomatically. Consideration should be given
|
||||||
|
to the possibility that overexposure to materials other than this product may
|
||||||
|
have occurred. No specific antidote is available. Probable mucosal damage
|
||||||
|
may contraindicate the use of gastric lavage.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
DANGER
|
||||||
|
Corrosive. Causes irreversible eye damage. Harmful if swallowed. Harmful
|
||||||
|
if inhaled or absorbed through the skin. Avoid contact with skin. Causes skin
|
||||||
|
irritation. Do not get in eyes on skin or clothing. Avoid breathing vapor or
|
||||||
|
spray mist. Keep away from domestic animals. Avoid contamination of food.
|
||||||
|
FINISH 6 Pro HARVEST AID FOR COTTON
|
||||||
|
ACTIVE INGREDIENTS: Ethephon* (2-chloroethyl)phosphonic acid ............................................................................................................................................. 52.6%
|
||||||
|
Cyclanilide** 1-(2,4-dichlorophenylaminocarbonyl)-cyclopropane carboxylic acid ................................................................................................................... 3.3%
|
||||||
|
OTHER INGREDIENTS: .................................................................................................................................................................................................................... 44.1%
|
||||||
|
TOTAL
|
||||||
|
........................................................................................................................................................................................................................................100.0%
|
||||||
|
*This product contains 6.0 pounds ethephon per gallon
|
||||||
|
**This product contains 0.375 pound c
|
||||||
|
yclanilide per gallon
|
||||||
|
EPA Reg. No. 264-703
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
DANGER PELIGRO
|
||||||
|
Si usted no entiende la etiqueta, busque a alguien para que se la explique a usted en detalle.
|
||||||
|
(If you do not understand the label, find someone to explain it to you in detail.)
|
||||||
|
Please refer to booklet for additional precautionary statements and directions for use.
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
US04727648G (210224Gv2) FINISH 6 PRO 2.5 Gallon Base
|
||||||
|
COLORS: Black
|
||||||
|
DA
|
||||||
|
TE: 07/21/2025
|
||||||
|
Label Coordinator: Mark Schmidt
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "flint-extra",
|
||||||
|
"epa_reg_no": "264-826-ZA",
|
||||||
|
"product_name": "Flint Extra Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Trifloxystrobin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/FLINT_Extra_Label1npdf",
|
||||||
|
"filename": "FLINT_Extra_Label1npdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:34:24+00:00",
|
||||||
|
"page_count": 37,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "FLINT EXTRA MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/FLINT_Extra_MSDS1hpdf",
|
||||||
|
"last_modified": "2026-01-30T14:34:13+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "FLINT EXTRA MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/FLINT_Extra_MSDS1ipdf",
|
||||||
|
"last_modified": "2026-01-30T13:52:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Rate in Apple for certain Diseases when Used in Tank-Mix with Protectant",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/FLINT_Extra_2EE1apdf",
|
||||||
|
"last_modified": "2026-01-30T14:33:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Eastern Filbert Blight in Tree Nuts",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/FLINT_Extra_2EE1vpdf",
|
||||||
|
"last_modified": "2026-01-30T14:33:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For control of Ramularia leaf spot in Artichoke",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/FLINT_Extra_2EE2pdf",
|
||||||
|
"last_modified": "2026-01-30T14:33:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Flint Extra Product Bulletin 2023",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/2023-Flint-Extrapdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:41+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Flint Extra Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Flint-Extra_Grapes_2025pdf",
|
||||||
|
"last_modified": "2026-05-20T00:56:44+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/flint-extra-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:04:35.442859+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,57 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "gaucho-600-flowable",
|
||||||
|
"epa_reg_no": "264-968-ZA",
|
||||||
|
"product_name": "Gaucho 600 Flowable Seed Treatment",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Imidacloprid",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Gaucho_600_Flowable_Label1erpdf",
|
||||||
|
"filename": "Gaucho_600_Flowable_Label1erpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:43:37+00:00",
|
||||||
|
"page_count": 13,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "GAUCHO 600 FLOWABLE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Gaucho_600_Flowable_MSDS1ngpdf",
|
||||||
|
"last_modified": "2026-01-30T13:44:35+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "GAUCHO 600 FLOWABLE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Gaucho_600_Flowable_MSDS1hpdf",
|
||||||
|
"last_modified": "2026-01-30T13:55:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "To Provide Early Season Protection of Seedlings Against Various Pests Using a Reduced Rate",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Gaucho_600_Flowable_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T13:43:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Gaucho FS 600 Product Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/seedgrowth/gaucho-fs-600/Gaucho-FS-600-Product-Bulletin.PDF",
|
||||||
|
"last_modified": "2022-12-02T18:18:54+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/seed-treatment/gaucho-600-flowable-seed-treatment",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:20:33.330897+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,780 @@
|
|||||||
|
# Gaucho 600 Flowable Seed Treatment
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-968-ZA
|
||||||
|
- **Active ingredients:** Imidacloprid
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/seed-treatment/gaucho-600-flowable-seed-treatment
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Gaucho_600_Flowable_Label1erpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Net
|
||||||
|
Contents:
|
||||||
|
2.5 Gallons
|
||||||
|
4.50”
|
||||||
|
4.25”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
FLOWABLE
|
||||||
|
US61379949B (161116) GAUCHO 600 2.5 GAL ETL CMYK 3/21/17
|
||||||
|
Produced for:
|
||||||
|
Bayer CropScience LP
|
||||||
|
P .O. Box 12014, 2 T.W. Alexander Drive
|
||||||
|
Research Triangle Park, North Carolina 27709
|
||||||
|
GAUCHO is a registered trademark of Bayer.
|
||||||
|
©2017 Bayer CropScience
|
||||||
|
|
||||||
|
US61379949B 161116B 03/17
|
||||||
|
Contains 5 lbs active per gallon (600 grams per liter) @ 20 oC
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Imidacloprid: 1-[(6-Chloro-3-pyridinyl)
|
||||||
|
methyl]-N-nitro-2-imidazolidinimine . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48.7%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51.3%
|
||||||
|
|
||||||
|
TOTAL: 100.0%
|
||||||
|
EPA Reg. No. 264-968
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
FOR ADDITIONAL PRECAUTIONARY STATEMENTS: See Inside Booklet
|
||||||
|
|
||||||
|
1
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
FIRST AID
|
||||||
|
IF SWALLOWED: • Call a poison control center or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison
|
||||||
|
control center or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
IF ON SKIN
|
||||||
|
OR CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED:
|
||||||
|
|
||||||
|
• Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give
|
||||||
|
artificial respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment
|
||||||
|
advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency
|
||||||
|
Response Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you when calling a poison control
|
||||||
|
center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed, absorbed through skin or inhaled. Avoid breathing vapor
|
||||||
|
or spray mist. Wash thoroughly with soap and water after handling. Remove
|
||||||
|
contaminated clothing and wash before reuse.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Some materials that are chemical-resistant to this product are listed below. If you
|
||||||
|
want more options, follow the instructions for category C on an EPA chemical
|
||||||
|
resistance category selection chart.
|
||||||
|
Applicators and other handlers must wear: Long-sleeved shirt and long pants,
|
||||||
|
socks and shoes and chemical-resistant gloves (such as nitrile, butyl, neoprene,
|
||||||
|
barrier laminate, polyvinyl chloride or Viton). Follow manufacturer’s instructions
|
||||||
|
for cleaning/maintaining PPE. If no such instructions for washables, use detergent
|
||||||
|
and hot water. Keep and wash PPE separately from other laundry.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Users should: Wash hands before eating, drinking, chewing gum, using
|
||||||
|
tobacco or using the toilet. Users should remove clothing immediately
|
||||||
|
if pesticide gets inside. Then wash thoroughly and put on clean
|
||||||
|
clothing. Users should remove PPE immediately after handling this product.
|
||||||
|
Wash the outside of gloves before removing. As soon as possible, wash
|
||||||
|
thoroughly and change clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is highly toxic to bees, birds and aquatic invertebrates. For terrestrial
|
||||||
|
uses, do not apply directly to water, or to areas where surface water is present or
|
||||||
|
to intertidal areas below the mean high water mark. Do not contaminate water
|
||||||
|
when disposing of equipment washwaters. Cover or incorporate spilled treated
|
||||||
|
seeds.
|
||||||
|
Ensure that planting equipment is functioning properly in accordance with
|
||||||
|
manufacturing specifications to minimize seed coat abrasion during planting to
|
||||||
|
reduce dust which can drift to blooming crops or weeds.
|
||||||
|
|
||||||
|
2
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner
|
||||||
|
inconsistent with its labeling.
|
||||||
|
For use in commercial seed treaters only, with the exception of application to
|
||||||
|
canola, cotton (delinted seed), field corn, sorghum, millet, wheat and barley,
|
||||||
|
which may be made either by commercial seed treatment or as an end-use seed
|
||||||
|
treatment on agricultural establishments at, or immediately before, planting. This
|
||||||
|
product is to be used in liquid or slurry treaters.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons,
|
||||||
|
either directly or through drift. Only protected handlers may be in the area during
|
||||||
|
application. For any requirements specific to your State or Tribe, consult the
|
||||||
|
agency responsible for pesticide regulation.
|
||||||
|
Mix thoroughly before use or use entire container at one time. Pre-test all tank
|
||||||
|
mixes to determine physical compatibility between formulations. Observe all
|
||||||
|
cautions and limitations on labeling of all products used in mixtures.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker
|
||||||
|
Protection Standard, 40 CFR part 170. This Standard contains requirements
|
||||||
|
for the protection of agricultural workers on farms, forests, nurseries, and
|
||||||
|
greenhouses, and handlers of agricultural pesticides. It contains requirements
|
||||||
|
for training, decontamination, notification, and emergency assistance. It also
|
||||||
|
contains specific instructions and exceptions pertaining to the statements on
|
||||||
|
this label about personal protective equipment (PPE), and restricted-entry
|
||||||
|
interval. The requirements in this box only apply to uses of this product that
|
||||||
|
are covered by the Worker Protection Standard. Do not enter or allow worker
|
||||||
|
entry into treated areas during the restricted entry interval (REI) of 12 hours.
|
||||||
|
Exception: If the seed is treated with the product and the treated seed is soil-
|
||||||
|
injected (drilled) or soil-incorporated, the Worker Protection Standard, under
|
||||||
|
certain circumstances, allows workers to enter the treated area if there will be
|
||||||
|
no contact with anything that has been treated. PPE required for early entry
|
||||||
|
to treated areas that is permitted under the Worker Protection Standard and
|
||||||
|
that involves contact with anything that has been treated, such as plants, soil,
|
||||||
|
or water, is: coveralls, chemical resistant gloves, shoes plus socks, protective
|
||||||
|
eyewear.
|
||||||
|
SEED BAG LABEL REQUIREMENTS
|
||||||
|
The Federal Seed Act requires that bags containing treated seeds shall be labeled
|
||||||
|
with the following statements:
|
||||||
|
• This seed has been treated with an imidacloprid insecticide.
|
||||||
|
• Do not use for feed, food or oil purposes.
|
||||||
|
User is responsible for ensuring that the seed bag meets all requirements under
|
||||||
|
the Federal Seed Act.
|
||||||
|
In addition, the U.S. Environmental Protection Agency requires the following
|
||||||
|
statements on bags containing seeds treated with Gaucho 600 Flowable:
|
||||||
|
• Store away from food and feedstuffs.
|
||||||
|
• Wear long-sleeved shirt, long pants and chemical-resistant gloves when
|
||||||
|
handling treated seed.
|
||||||
|
• T reated seeds exposed on soil surface may be hazardous to wildlife. Cover or
|
||||||
|
collect treated seeds spilled during loading.
|
||||||
|
• Dispose of all excess treated seed. Leftover treated seed may be buried away
|
||||||
|
from water sources in accordance with local requirements.
|
||||||
|
• Do not contaminate water bodies when disposing of planting equipment wash
|
||||||
|
waters.
|
||||||
|
• Do not allow children, pets, or livestock to have access to treated seed.
|
||||||
|
• T reated seed must be adequately covered with soil at planting. (continued)
|
||||||
|
|
||||||
|
3
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
• Treated areas may be replanted with any crop specified on imidacloprid label, or
|
||||||
|
any crop for which a tolerance exists for imidacloprid, as soon as practical following
|
||||||
|
the last application. Areas planted with treated seed may be replanted immediately
|
||||||
|
with artichoke, barley, Brassica (cole) leafy vegetables, borage, bulb vegetables,
|
||||||
|
canola, cilantro, corn (field), corn (pop), corn (sweet), cotton, cranberry, crambe,
|
||||||
|
cucurbits, eggplant, flax, ground cherry, leaf petiole vegetables, leafy vegetables,
|
||||||
|
legume vegetables (succulent or dried, including soybean), millet, mustard seed,
|
||||||
|
oats, okra, pepinos, pepper, potato, rapeseed, rye, safflower, sorghum, soybean,
|
||||||
|
strawberry, sugarbeet, sunflower, tomatillo, tomato, triticale, root and tuber
|
||||||
|
vegetables, watercress, wheat. These areas may also be replanted after 30 days
|
||||||
|
with cereals, including buckwheat, rice. Do not plant any other crop in the treated
|
||||||
|
area for at least one year after treated seeds are planted.
|
||||||
|
ROTATIONAL CROPS:
|
||||||
|
Treated areas may be replanted with any crop specified on an imidacloprid label, or any
|
||||||
|
crop for which a tolerance exists for the active ingredient, as soon as practical following
|
||||||
|
the last application. The following plant-back intervals are required for listed crops:
|
||||||
|
ROTATIONAL PLANT-BACK INTERVALS*
|
||||||
|
IMMEDIATE PLANT-BACK 30-DAY PLANT-BACK
|
||||||
|
Artichoke
|
||||||
|
Barley
|
||||||
|
Brassica (cole)
|
||||||
|
|
||||||
|
leafy veg.
|
||||||
|
Borage
|
||||||
|
|
||||||
|
Bulb Veg
|
||||||
|
Canola
|
||||||
|
Cilantro
|
||||||
|
Corn, Field
|
||||||
|
Corn, Sweet
|
||||||
|
Cotton
|
||||||
|
|
||||||
|
Cranberry
|
||||||
|
Crambe
|
||||||
|
|
||||||
|
Cucurbits
|
||||||
|
Eggplant
|
||||||
|
|
||||||
|
Flax
|
||||||
|
Ground cherry
|
||||||
|
Leaf petiole veg.
|
||||||
|
|
||||||
|
(Subgroup 4B)
|
||||||
|
Leafy Greens
|
||||||
|
(Subgroup 4A)
|
||||||
|
Legume veg.
|
||||||
|
|
||||||
|
(succulent or dried,
|
||||||
|
including soybean)
|
||||||
|
Millet
|
||||||
|
|
||||||
|
Mustard Seed
|
||||||
|
Oats
|
||||||
|
|
||||||
|
Okra
|
||||||
|
Pepinos
|
||||||
|
Pepper
|
||||||
|
Popcorn
|
||||||
|
Potato
|
||||||
|
Rapeseed
|
||||||
|
|
||||||
|
Rye
|
||||||
|
Safflower
|
||||||
|
|
||||||
|
Sorghum
|
||||||
|
Soybean
|
||||||
|
|
||||||
|
Strawberry
|
||||||
|
Sugarbeet
|
||||||
|
Sunflower
|
||||||
|
|
||||||
|
Tomatillo
|
||||||
|
Tomato
|
||||||
|
Triticale
|
||||||
|
Veg. Root and
|
||||||
|
Tuber
|
||||||
|
Watercress
|
||||||
|
Wheat
|
||||||
|
Cereals, including:
|
||||||
|
buckwheat
|
||||||
|
rice
|
||||||
|
* Cover crops for soil building or erosion control may be planted any time, but
|
||||||
|
do not graze or harvest for food or feed.
|
||||||
|
* For all other crops not listed on an Imidacloprid label, or for crops for which
|
||||||
|
no tolerance for the active ingredient has been established, a 12-month
|
||||||
|
plant-back interval is required.
|
||||||
|
NOTIFICATION of the crop rotational restriction must be conveyed to the grower by
|
||||||
|
appropriate seed tag labeling or bag printing on all seed units.
|
||||||
|
NOTE: The purchaser of this product is responsible for ensuring that all seed
|
||||||
|
treated with this product are adequately dyed with a suitable color to prevent its
|
||||||
|
accidental use as food for man or feed for animals. Refer to 21CFR, Part 2.25.
|
||||||
|
Any dye or colorant added to treated seed must be cleared for use under 40CFR,
|
||||||
|
Part 180.1001. Federal regulations have established official tolerances for certain
|
||||||
|
pesticide residues. In order that residues on food and forage crops will not exceed
|
||||||
|
established tolerances, use only at specified rates.
|
||||||
|
Treated seed must not be used for or mixed with food or animal feed or processed
|
||||||
|
for oil. Seed commercially treated with GAUCHO 600 Flowable must be labeled in
|
||||||
|
accordance with all applicable requirements of the Federal Seed Act.
|
||||||
|
Labels for commercially treated seed must include the following addition to the
|
||||||
|
Environmental Hazards statements:
|
||||||
|
Exposed treated seed may be hazardous to birds. Dispose of all excess
|
||||||
|
treated seed and seed packaging by burial away from bodies of water. Cover
|
||||||
|
or incorporate spilled treated seeds.
|
||||||
|
|
||||||
|
4
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
USE RESTRICTION:
|
||||||
|
Rape greens grown and harvested from GAUCHO 600 treated seed must not
|
||||||
|
be used for human and feed consumption. Rapeseed grown and harvested from
|
||||||
|
GAUCHO 600 treated seed is only for industrial uses and can not be used for
|
||||||
|
edible oil or any other human / feed consumption.
|
||||||
|
Wheat, Barley, Oats, Rye, Triticale, Sorghum, and Millet: Do not graze or feed
|
||||||
|
livestock on treated areas for 45 days after planting.
|
||||||
|
Cotton (delinted seed only): Regardless of the type of application (seed
|
||||||
|
treatment, soil or foliar) do not apply more than a total of 0.5 lb of imidacloprid per
|
||||||
|
acre per cropping cycle.
|
||||||
|
Stored Seed Protection:
|
||||||
|
Applied at labeled rates equal to or above 0.8 fl oz per hundredweight, GAUCHO® 600
|
||||||
|
Flowable will provide protection to seed against injury from the following insects:
|
||||||
|
Indian Meal Moth (Plodia interpunctella), Rice Weevil (Sitophilus oryzea), Red
|
||||||
|
Flour Beetle (Tribiolium castaneum), and Lesser Grain Borer (Rhizopertha
|
||||||
|
dominica). It is recommended that seed with existing populations of stored grain
|
||||||
|
pests be fumigated prior to treating and bagging seed.
|
||||||
|
For Early Season Protection Against Certain Sucking Insects:
|
||||||
|
GAUCHO 600 Flowable will aid in the protection of seeds and seedlings against
|
||||||
|
injury by certain early season insects.
|
||||||
|
Canola, rapeseed, mustard seed:
|
||||||
|
To provide early season protection of seedlings against injury by aphids, flea beetles
|
||||||
|
and wireworms apply as a commercial seed treatment at 10.24 to 25.6 fl oz per
|
||||||
|
hundredweight of seed. In areas where flea beetles and foliar insects are in high
|
||||||
|
numbers, the higher application rate is recommended. Please consult your local
|
||||||
|
agricultural office for pest patterns, history, and forecasts to assist in determining
|
||||||
|
the appropriate rate for your region.
|
||||||
|
For suppression of Lygus bugs, including Lygus spp., in their second generation
|
||||||
|
and cabbage Seedpod Weevil larvae, including Ceutorhynchus assimilis, apply
|
||||||
|
15.36 to 25.6 fl oz per hundredweight of seed.
|
||||||
|
Flax, crambe, and borage:
|
||||||
|
To provide early season protection of seedlings against wireworms, seed corn
|
||||||
|
maggots and flea beetles apply as a commercial seed treatment at 25.6 fl oz per
|
||||||
|
hundredweight of seed.
|
||||||
|
Safflower:
|
||||||
|
To provide early season protection of seedlings against wireworms, apply as a
|
||||||
|
commercial seed treatment at 0.25 – 0.50 mg ai/seed. (One fl oz of GAUCHO 600
|
||||||
|
contains 17.7g imidacloprid.)
|
||||||
|
Sunflower:
|
||||||
|
To provide early season protection of seedlings against wireworms, seed corn
|
||||||
|
maggots and flea beetles apply as a commercial seed treatment at 0.25 – 0.50 mg
|
||||||
|
ai/seed. (One fl oz of GAUCHO 600 contains 17.7 g imidacloprid.)
|
||||||
|
For End-Use Application At Agricultural Establishments:
|
||||||
|
Canola, rapeseed, mustard seed:
|
||||||
|
Apply using an HCBT or a Batch Treater. Shake GAUCHO 600 Flowable thoroughly
|
||||||
|
before use. Apply 5.1 to 12.8 fl oz of GAUCHO 600 Flowable per 50 pound bag.
|
||||||
|
GAUCHO 600 Flowable may be diluted with an approved Bayer CropScience
|
||||||
|
fungicide mixture for extended disease protection. Treat one-half of seed with
|
||||||
|
one-half of slurry mix. Add the balance of the seed and apply balance of slurry.
|
||||||
|
Allow mixing until seed is thoroughly covered.
|
||||||
|
Safflower:
|
||||||
|
To provide early season protection of seedlings against wireworms, apply using
|
||||||
|
HCBT or a batch treater at 12.8 fl oz per hundredweight of seed.
|
||||||
|
Flax, sunflower, crambe, and borage:
|
||||||
|
To provide early season protection of seedlings against wireworms, seed corn
|
||||||
|
maggots and flea beetles apply using an HCBT or a batch treater at 12.8 fl oz per
|
||||||
|
hundredweight of seed.
|
||||||
|
|
||||||
|
5
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Field Corn:
|
||||||
|
For the protection of corn plants from the corn insect pests listed below. Apply as
|
||||||
|
a seed treatment at the specified rates listed.
|
||||||
|
PEST
|
||||||
|
GAUCHO 600
|
||||||
|
MG AI /
|
||||||
|
KERNEL
|
||||||
|
FL OZ / 80,000
|
||||||
|
SEED UNIT
|
||||||
|
Corn root worm
|
||||||
|
(including Northern, Western, Southern
|
||||||
|
and Mexican)1
|
||||||
|
Flea beetle
|
||||||
|
Chinch bug
|
||||||
|
Southern green stinkbug
|
||||||
|
White grub
|
||||||
|
Seed corn maggot
|
||||||
|
Thrips
|
||||||
|
Wireworm
|
||||||
|
Corn leaf aphid
|
||||||
|
Imported fire ant
|
||||||
|
Southern corn leaf beetle
|
||||||
|
Billbug
|
||||||
|
2
|
||||||
|
Grape colaspis2
|
||||||
|
Black cutworm3
|
||||||
|
1.34 6.0
|
||||||
|
|
||||||
|
PEST
|
||||||
|
GAUCHO 600
|
||||||
|
MG AI /
|
||||||
|
KERNEL
|
||||||
|
FL OZ / 80,000
|
||||||
|
SEED UNIT
|
||||||
|
Flea beetle
|
||||||
|
Chinch bug
|
||||||
|
Seed corn maggot
|
||||||
|
Thrips
|
||||||
|
Wireworm
|
||||||
|
Corn leaf aphid
|
||||||
|
Imported fire ant
|
||||||
|
Grape colaspis
|
||||||
|
2
|
||||||
|
White grub
|
||||||
|
0.60 2.70
|
||||||
|
|
||||||
|
PEST
|
||||||
|
GAUCHO 600
|
||||||
|
MG AI /
|
||||||
|
KERNEL
|
||||||
|
FL OZ / 80,000
|
||||||
|
SEED UNIT
|
||||||
|
Seed corn maggot (seed protection only)
|
||||||
|
Wireworm (seed protection only)
|
||||||
|
Flea beetle (through 1 leaf stage)
|
||||||
|
Imported fire ant
|
||||||
|
White grub
|
||||||
|
4
|
||||||
|
0.16 0.72
|
||||||
|
1 In areas of heavy to severe corn rootworm populations, protection will not be adequate. Use
|
||||||
|
only in areas of light to moderate corn rootworm populations. Consult your State Agricultural
|
||||||
|
Extension Service on levels of corn rootworm populations.
|
||||||
|
2 Reduces early season feeding damage.
|
||||||
|
3 Will reduce feeding damage caused by leaf feeding black cutworms that are 1/2 inch or less in
|
||||||
|
length.
|
||||||
|
4 Reduces feeding damage during emergence and seedling stages.
|
||||||
|
Field Corn: For End-Use Application At Agricultural Establishments:
|
||||||
|
Apply using an HCBT or an Eight-Bag Batch Treater. Shake GAUCHO 600 Flowable
|
||||||
|
thoroughly before use. Dilute GAUCHO 600 Flowable with water and/or an approved Bayer
|
||||||
|
CropScience fungicide mixture. The final slurry rate should be adjusted to apply a rate of
|
||||||
|
8 - 10 fl oz of diluted slurry per 50-pound bag of seed. Treat one-half of seed with one-half
|
||||||
|
of slurry mix. Add balance of the seed and apply balance of slurry. Allow mixing until seed
|
||||||
|
is thoroughly covered. Apply 0.75 oz of dry TALC per 50-pound bag of seed following the
|
||||||
|
GAUCHO 600 Flowable application and allow it to distribute evenly on the seed.
|
||||||
|
|
||||||
|
6
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Wheat, Barley, Oats, Rye, Triticale:
|
||||||
|
To provide early season protection of seedlings against injury by aphids (including Bird cherry-
|
||||||
|
oat, English grain, Greenbug, and Russian wheat aphid), Hessian fly, apply 0.8 to 2.4 fluid
|
||||||
|
ounces per hundredweight of seed prior to planting as a slurry treatment. Low use rate for
|
||||||
|
“wireworm-only” protection: GAUCHO 600 applied at the 0.13 - 0.26 fl oz per hundredweight
|
||||||
|
of seed offers suppression of wireworm activity on seed and young seedlings. To provide
|
||||||
|
early season protection from grasshopper damage, GAUCHO 600 should be applied to seed
|
||||||
|
at 1.2 to 2.4 fluid ounces per hundredweight. To reduce early season damage caused by
|
||||||
|
grasshopper, GAUCHO treated seed may be planted as a 50 to 60 foot border around the
|
||||||
|
edges of the field. Consult your local university extension entomologist for details regarding
|
||||||
|
grasshopper control in your area. For maximum effectiveness, seed must be treated uniformly.
|
||||||
|
Use the higher rate to provide increased length of protection and from heavy insect pressure
|
||||||
|
and from wireworms, and to reduce potential spread of Barley yellow dwarf virus due to aphid
|
||||||
|
vectors. Do not graze or feed livestock on treated areas for 45 days after planting.
|
||||||
|
Wheat, Barley, Oats, Rye, Triticale: For End-Use Application At Agricultural Establishments:
|
||||||
|
Apply using a Total Slurry Treater (TST), Farmer Applied Seed Treater (F .A.S.T.), Bayer
|
||||||
|
CropScience Air Pressure System (BCSAP) or other on-farm seed treating equipment to
|
||||||
|
deliver accurate rates of GAUCHO 600 Flowable to achieve optimum product performance.
|
||||||
|
|
||||||
|
Apply 0.8 – 2.4 fl oz per hundredweight of seed. GAUCHO 600 Flowable should be
|
||||||
|
combined with a Bayer CropScience fungicide product for seed and seedling protection
|
||||||
|
against fungal pathogens, as well as insect pests. Dilution with water may be necessary
|
||||||
|
depending on fungicide formulation used. GAUCHO 600 Flowable may also be applied
|
||||||
|
on-farm as an over-treatment to seed pretreated with a fungicide. In this case, dilution
|
||||||
|
is necessary. Do not graze or feed livestock on treated areas for 45 days after planting.
|
||||||
|
Sorghum, Millet:
|
||||||
|
To provide early season protection of seedlings against injury by Aphids (including Corn
|
||||||
|
leaf, English grain, Greenbug, and Y ellow sugar cane aphid), Chinch bugs, Fire ants and
|
||||||
|
Wireworms, apply 6.4 fluid ounces per hundredweight of seed prior to planting as a slurry
|
||||||
|
treatment. Ensure thorough coverage. Do not graze or feed livestock on treated areas
|
||||||
|
for 45 days after planting.
|
||||||
|
Sorghum, Millet: For End-Use Application At Agricultural Establishments:
|
||||||
|
Apply using an HCBT or an Eight-Bag Batch Treater. Shake GAUCHO 600 Flowable
|
||||||
|
thoroughly before use. Dilute 3.2 fluid ounces of GAUCHO 600 Flowable with water. The
|
||||||
|
final slurry rate must be adjusted to apply a rate of 8 - 10 fluid ounces of diluted slurry
|
||||||
|
per 50-pound bag of seed. Treat one-half of seed with one-half of slurry mix. Add the
|
||||||
|
balance of the seed and apply balance of slurry. Allow mixing until seed is thoroughly
|
||||||
|
covered. Apply 0.75 oz of dry TALC per 50-pound bag of seed following the GAUCHO 600
|
||||||
|
|
||||||
|
Flowable application and allow it to distribute evenly on the seed. Do not graze or feed
|
||||||
|
livestock on treated areas for 45 days after planting.
|
||||||
|
Cotton (Delinted Seed Only):
|
||||||
|
To provide protection of seedlings against injury by early season thrips and aphids, and
|
||||||
|
where the specific application rate is desired on an individual seed basis apply at 0.375mg
|
||||||
|
ai per seed (do not apply more than 12.8 fluid ounces per hundredweight of seed) prior
|
||||||
|
to planting as a slurry treatment so as to ensure thorough coverage. Otherwise, apply at
|
||||||
|
12.8 fluid ounces per hundredweight of seed. Regardless of the type of application (seed
|
||||||
|
|
||||||
|
treatment, soil or foliar) do not apply more than a total of 0.5 lb of imidacloprid per acre
|
||||||
|
per cropping cycle.
|
||||||
|
Cotton (Delinted Seed Only): For End-Use Application At Agricultural
|
||||||
|
Establishments:
|
||||||
|
Apply using an HCBT or an Eight-Bag Batch Treater. Shake GAUCHO 600
|
||||||
|
Flowable thoroughly before use. Dilute 6.4 fluid ounces of GAUCHO 600 Flowable
|
||||||
|
with water or a ready to use fungicide mixture, such as RTU
|
||||||
|
®-VITAVAX®-Thiram or
|
||||||
|
ALLEGIANCE®-FL, for each 50-pound bag of cottonseed to be treated. The final
|
||||||
|
slurry rate must be adjusted to apply a rate of 8 to 10 fluid ounces of diluted slurry
|
||||||
|
per 50-pound bag of seed. Treat one-half of seed with one-half of slurry mix. Add
|
||||||
|
the balance of the seed and apply balance of slurry. Allow mixing until seed is
|
||||||
|
thoroughly covered.
|
||||||
|
|
||||||
|
7
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Sugar Beets:
|
||||||
|
To provide early season protection of seedlings against injury by Whitefly,
|
||||||
|
Aphids, Leafhoppers (including to reduce potential for spread of Curly top and
|
||||||
|
Y ellow mosaic virus due to aphid and leafhopper vectors), Root aphid, Thrips and
|
||||||
|
Wireworms, apply as a commercial seed treatment at 2.4 to 5.0 fluid ounces of
|
||||||
|
GAUCHO 600 Flowable in or on a unit of pelleted sugar beet seed with a weight
|
||||||
|
ratio of 2:1 pelleting mixture to raw seed (seed count 100,000 seed - approximately
|
||||||
|
1 kilogram by weight). Apply in a film coat directly to raw seed (100,000 seed or
|
||||||
|
approximately 1 kilogram by weight) at a rate of 2.4 fluid ounces per unit of seed.
|
||||||
|
If rates exceed 2.4 fluid ounces per unit, seed must be pelleted.
|
||||||
|
Sweet Corn:
|
||||||
|
For the protection of sweet corn plants from the insect pests listed below. Apply as
|
||||||
|
a seed treatment at the recommended rates listed.
|
||||||
|
|
||||||
|
PEST
|
||||||
|
GAUCHO 600
|
||||||
|
FL OZ / CWT OF SEED
|
||||||
|
Flea beetle
|
||||||
|
Early season corn leaf aphid
|
||||||
|
Seed corn maggot
|
||||||
|
Wireworm
|
||||||
|
6.4
|
||||||
|
Imported fire ant
|
||||||
|
Early season corn leaf aphid
|
||||||
|
Seed corn maggot
|
||||||
|
Wireworm
|
||||||
|
3.2 - 6.4
|
||||||
|
Imported fire ant
|
||||||
|
Seed corn maggot (seed protection)
|
||||||
|
Wireworm (seed protection)
|
||||||
|
1.6 – 3.2
|
||||||
|
Wireworm (seed protection) 0.8 – 1.6
|
||||||
|
The final slurry rate must be adjusted to apply a rate of 16 - 20 fl oz of dilute
|
||||||
|
solution per hundredweight of seed with commercial application equipment.
|
||||||
|
Popcorn:
|
||||||
|
To provide early season protection of seedlings against injury by flea beetles,
|
||||||
|
apply as a commercial seed treatment at 6.4 fl oz per hundredweight of seed.
|
||||||
|
Soybean:
|
||||||
|
For protection of planted seeds from damage caused by seed corn maggot, to
|
||||||
|
reduce feeding damage caused by soybean aphids and over-wintering bean
|
||||||
|
leaf beetles, and to help suppress the spread of certain viruses, apply as a seed
|
||||||
|
treatment at the recommended rates listed. Do not apply more than 3.2 fluid
|
||||||
|
ounces per hundredweight of seed. Use higher rates to provide increased length
|
||||||
|
of protection and for heavy insect pressure. GAUCHO 600 Flowable can be used
|
||||||
|
as an over-treatment.
|
||||||
|
Application Method Gaucho 600
|
||||||
|
By weight: hundred weight of seed
|
||||||
|
(100 lbs of seed) 1.6 – 3.2 fl oz/ 100 lbs of seed
|
||||||
|
Per seed* 0.0747 – 0.2336 mg ai/seed
|
||||||
|
Per 140,000 seed unit* 0.59 – 1.84 fl oz / 140,000 seed
|
||||||
|
Do not graze or feed livestock on soybean forage or hay.
|
||||||
|
*Do not apply by seed treatment more than 0.067 (soybean) pounds of active
|
||||||
|
ingredient imidacloprid per acre per season based on 3000 soybean seed per
|
||||||
|
pound and a planting rate of 160.000 seed per acre.
|
||||||
|
|
||||||
|
8
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Adzuki Bean, Asparagus Bean, Broad Bean (Succulent Or Dry), Catjang
|
||||||
|
Bean, Chinese Longbean, Field Bean, Guar Bean, Jackbean, Kidney Bean,
|
||||||
|
Lablab Bean, Lima Bean (Succulent Or Dry), Moth Bean (Succulent Or Dry),
|
||||||
|
Mung Bean, Navy Bean, Pinto Bean, Rice Bean, Runner Bean, Snap Bean,
|
||||||
|
Sword Bean, Tepary Bean, Urd Bean, Wax Bean, Yardlong Bean, Blackeyed
|
||||||
|
Pea (Succulent Or Dry), Chickpea, Cowpea (Succulent Or Dry), Crowder Pea,
|
||||||
|
Dwarf Pea, Edible-Pod Pea, English Pea, Field Pea, Garden Pea, Green Pea,
|
||||||
|
Pigeon Pea (Succulent Or Dry), Snow Pea, Southern Pea (Succulent Or Dry),
|
||||||
|
Sugar Snap Pea, Grain Lupin, Sweet Lupin, White Lupin, White Sweet Lupin,
|
||||||
|
Lentil:*
|
||||||
|
To provide early season protection of seedlings against injury by wireworm, bean
|
||||||
|
leaf beetle, imported fire ant, and aphid, apply as a commercial seed treatment at
|
||||||
|
1.6 – 3.2 fl oz per hundredweight of seed prior to planting.
|
||||||
|
* Seed-and-pod vegetable seed treated in California must be destined for
|
||||||
|
planting in states other than California and is not to be planted in California.
|
||||||
|
Carrot:
|
||||||
|
To provide early season protection of seedlings against injury by seed corn
|
||||||
|
maggot and wireworm, apply as a commercial seed treatment at 6.4 fl oz per
|
||||||
|
hundredweight of seed.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage, disposal, or by cleaning of
|
||||||
|
equipment.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in a cool place. Do not store in direct sunlight. Protect from freezing
|
||||||
|
temperatures.
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
Wastes resulting from the use of this product may be disposed of on site or at an
|
||||||
|
approved waste disposal facility.
|
||||||
|
CONTAINER HANDLING
|
||||||
|
Dilutable Seed Treatment Products in Non-Refillable Containers
|
||||||
|
Non-refillable container. Do not reuse or refill this container. After emptying product
|
||||||
|
from container, either return container to Bayer CropScience per instructions from
|
||||||
|
Bayer CropScience Customer Service Center (1-800-527-4781), or rinse and either
|
||||||
|
recycle or dispose of the container as follows:
|
||||||
|
Liquid dilutables in containers small enough to shake (5 gallons or less)
|
||||||
|
Triple Rinse as follows: Empty the remaining contents into application equipment
|
||||||
|
or a mix tank and drain for 10 seconds after the flow begins to drip. Fill the
|
||||||
|
container 1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into
|
||||||
|
application equipment or a mix tank or store rinsate for later use or disposal. Drain
|
||||||
|
for 10 seconds after the flow begins to drip. Repeat this procedure two more
|
||||||
|
times.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of
|
||||||
|
in a sanitary landfill, or by incineration.
|
||||||
|
|
||||||
|
9
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability before using this product. If terms are not acceptable, return
|
||||||
|
the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer
|
||||||
|
of Warranties and Limitations of Liability.
|
||||||
|
Treatment of highly mechanically damaged seed, or seed of known low vigor
|
||||||
|
and poor quality, may result in reduced germination and/or reduction of seed and
|
||||||
|
seedling vigor. Treat and conduct germination tests on a small portion of seed
|
||||||
|
before committing the total seed lot to a selected chemical treatment. Due to seed
|
||||||
|
quality conditions beyond the control of Bayer CropScience, no claims are made
|
||||||
|
to guarantee germination of carry-over seed.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate
|
||||||
|
and must be followed carefully. However, it is impossible to eliminate all risks
|
||||||
|
associated with the use of this product. Crop injury, ineffectiveness or other
|
||||||
|
unintended consequences may result because of such factors as weather
|
||||||
|
conditions, presence of other materials, or the manner of use or application, all
|
||||||
|
of which are beyond the control of Bayer CropScience. All such risks shall be
|
||||||
|
assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, BAYER CROPSCIENCE MAKES NO WARRANTIES,
|
||||||
|
EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE
|
||||||
|
STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience is
|
||||||
|
authorized to make any warranties beyond those contained herein or to modify the
|
||||||
|
warranties contained herein. TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, BAYER CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR
|
||||||
|
SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING FROM
|
||||||
|
THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER FOR
|
||||||
|
ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE
|
||||||
|
OR HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY ,
|
||||||
|
TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, SHALL NOT
|
||||||
|
EXCEED THE PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE’S
|
||||||
|
ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
GAUCHO, RTU, and ALLEGIANCE are registered trademarks of Bayer
|
||||||
|
VITAVAX is a registered trademark of Chemtura Corporation
|
||||||
|
|
||||||
|
10
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
11
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
PLACE BAR CODE HERE
|
||||||
|
5.50”
|
||||||
|
BASE LABEL
|
||||||
|
4.125”0.875” 0.50”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
|
(01) 0 0785740 11867 2
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by
|
||||||
|
storage, disposal, or by cleaning of equipment.
|
||||||
|
PESTICIDE STORAGE
|
||||||
|
Store in a cool place. Do not store in direct
|
||||||
|
sunlight. Protect from freezing temperatures.
|
||||||
|
PESTICIDE DISPOSAL
|
||||||
|
Wastes resulting from the use of this product may
|
||||||
|
be disposed of on site or at an approved waste
|
||||||
|
disposal facility.
|
||||||
|
CONTAINER HANDLING
|
||||||
|
Dilutable Seed Treatment Products in
|
||||||
|
Non-Refillable Containers
|
||||||
|
Non-refillable container. Do not reuse or refill this
|
||||||
|
container. After emptying product from container,
|
||||||
|
either return container to Bayer CropScience per
|
||||||
|
instructions from Bayer CropScience Customer
|
||||||
|
Service Center (1-800-527-4781), or rinse and
|
||||||
|
either recycle or dispose of the container as follows:
|
||||||
|
Liquid dilutables in containers small enough to
|
||||||
|
shake (5 gallons or less)
|
||||||
|
Triple Rinse as follows: Empty the remaining
|
||||||
|
contents into application equipment or a mix tank
|
||||||
|
and drain for 10 seconds after the flow begins to
|
||||||
|
drip. Fill the container 1/4 full with water and recap.
|
||||||
|
Shake for 10 seconds. Pour rinsate into application
|
||||||
|
equipment or a mix tank or store rinsate for later
|
||||||
|
use or disposal. Drain for 10 seconds after the flow
|
||||||
|
begins to drip. Repeat this procedure two more
|
||||||
|
times.
|
||||||
|
Once container is rinsed, offer for recycling if
|
||||||
|
available or puncture and dispose of in a sanitary
|
||||||
|
landfill, or by incineration.
|
||||||
|
Bayer CropScience LP
|
||||||
|
P .O. Box 12014, 2 T.W. Alexander Drive
|
||||||
|
Research Triangle Park, North Carolina 27709
|
||||||
|
GAUCHO is a registered trademark of Bayer.
|
||||||
|
©2017 Bayer CropScience
|
||||||
|
US61379949B 161116B 03/17
|
||||||
|
FIRST AID
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center
|
||||||
|
or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
• Have person sip a glass of
|
||||||
|
water if able to swallow.
|
||||||
|
• Do not induce vomiting unless
|
||||||
|
told to do so by a poison
|
||||||
|
control center or doctor.
|
||||||
|
• Do not give anything by mouth
|
||||||
|
to an unconscious person.
|
||||||
|
IF ON SKIN
|
||||||
|
OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with
|
||||||
|
plenty of water for 15-20
|
||||||
|
minutes.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call
|
||||||
|
911 or an ambulance, then give
|
||||||
|
artificial respiration, preferably
|
||||||
|
mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center
|
||||||
|
or doctor for further treatment
|
||||||
|
advice.
|
||||||
|
In case of emergency call toll free the
|
||||||
|
Bayer CropScience Emergency Response
|
||||||
|
Telephone No. 1-800-334-7577.
|
||||||
|
Have a product container or label with you
|
||||||
|
when calling a poison control center or
|
||||||
|
doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC
|
||||||
|
ANIMALS
|
||||||
|
CAUTION
|
||||||
|
Harmful if swallowed, absorbed through skin
|
||||||
|
or inhaled. Avoid breathing vapor or spray mist.
|
||||||
|
Wash thoroughly with soap and water after
|
||||||
|
handling. Remove contaminated clothing and
|
||||||
|
wash before reuse.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this
|
||||||
|
product in a manner inconsistent with its
|
||||||
|
labeling.
|
||||||
|
GAUCHO® 600 FLOWABLE
|
||||||
|
Contains 5 lbs active per gallon (600 grams per liter) @ 20 oC
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Imidacloprid: 1-[(6-Chloro-3-pyridinyl)methyl]-N-nitro-2-imidazolidinimine . . . . . . . . . . . . 48.7%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51.3%
|
||||||
|
TOTAL: 100.0%
|
||||||
|
EPA Reg. No. 264-968
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
FOR ADDITIONAL PRECAUTIONARY STATEMENTS: See Inside Booklet
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "ginstar-ec-cotton-defoliant-plant-growth-regulator",
|
||||||
|
"epa_reg_no": "264-634-ZA",
|
||||||
|
"product_name": "Ginstar EC Cotton Defoliant Plant Growth Regulator",
|
||||||
|
"product_class": "seed-treatment",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Diuron",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Thidiazuron",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Ginstar_EC1d_Cotton_Defoliant_Labelpdf",
|
||||||
|
"filename": "Ginstar_EC1d_Cotton_Defoliant_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:55:21+00:00",
|
||||||
|
"page_count": 13,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "GINSTAR EC COTTON DEFOLIANT MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Ginstar_ECk_Cotton_Defoliant_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:30+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "GINSTAR EC COTTON DEFOLIANT MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Ginstar_EC2j_Cotton_Defoliant_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:25+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/plant-growth-regulator/ginstar-ec-cotton-defoliant-plant-growth-regulator",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:20:46.201863+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,648 @@
|
|||||||
|
# Ginstar EC Cotton Defoliant Plant Growth Regulator
|
||||||
|
|
||||||
|
- **Product class:** seed-treatment
|
||||||
|
- **EPA Reg No:** 264-634-ZA
|
||||||
|
- **Active ingredients:** Diuron, Thidiazuron
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/plant-growth-regulator/ginstar-ec-cotton-defoliant-plant-growth-regulator
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Ginstar_EC1d_Cotton_Defoliant_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
SMARTLINE US61380092C (210224C) GINSTAR 2.5 Gallon ETL cmyk 01/13/22
|
||||||
|
Label Coordinator: Mark Schmidt
|
||||||
|
US61380092C 210224C 01/22
|
||||||
|
Produced For
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
Ginstar® is a registered trademark of Bayer Group.
|
||||||
|
©2022 Bayer Group
|
||||||
|
For Agricultural Use Only
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Thidiazuron: N-phenyl-N’-1, 2, 3-thidiazol-5-ylurea .......................... 12%
|
||||||
|
Diuron: 3-(3, 4-dichlorophenyl)-1, 1-dimethylurea ........................... 6%
|
||||||
|
INERT INGREDIENTS: ................................................. 82%
|
||||||
|
Contains 1 lb. Thidiazuron per gallon and 0.5 lb. Diuron per gallon. TOTAL 100%
|
||||||
|
EPA Reg No. 264-634
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
DANGER – PELIGRO
|
||||||
|
Si usted no entiende la etiqueta, busque a alguien para que se la
|
||||||
|
explique a usted en detalle.
|
||||||
|
(If you do not understand this label, find someone to explain it to you in detail.)
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
See Back Panel for First Aid Instructions and Booklet for Complete Precautionary
|
||||||
|
Statements and Directions for Use.
|
||||||
|
Net
|
||||||
|
Contents:
|
||||||
|
2.5 Gallons
|
||||||
|
COTTON DEFOLIANT
|
||||||
|
Ginstar
|
||||||
|
®
|
||||||
|
EC
|
||||||
|
|
||||||
|
1
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for
|
||||||
|
15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes,
|
||||||
|
then continue rinsing.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF ON SKIN
|
||||||
|
OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20
|
||||||
|
minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then
|
||||||
|
give artificial respiration, preferably mouth-to-mouth if
|
||||||
|
possible.
|
||||||
|
• Call a poison control center or doctor for further treatment
|
||||||
|
advice.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Immediately call a poison control center or doctor for
|
||||||
|
treatment advice.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison
|
||||||
|
control center or doctor.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison control
|
||||||
|
center or doctor or going for treatment.
|
||||||
|
NOTE TO PHYSICIAN: Probable mucosal damage may contraindicate the use
|
||||||
|
of gastric lavage.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
DANGER
|
||||||
|
Corrosive. Causes irreversible eye damage. Causes skin irritation. Harmful if
|
||||||
|
inhaled, or absorbed through skin. Avoid contact with eyes, skin, clothing, and
|
||||||
|
avoid breathing spray mist. Prolonged or frequently repeated skin contact may
|
||||||
|
cause allergic reactions in some individuals.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
All handlers must wear:
|
||||||
|
• Long-sleeved shirt and long pants
|
||||||
|
• Shoes plus socks.
|
||||||
|
• All mixers, loaders, other applicators, and other handlers must wear:
|
||||||
|
• Coveralls worn over short-sleeved shirt and short pants
|
||||||
|
• Socks plus chemical-resistant footwear
|
||||||
|
• Chemical resistant gloves made of butyl rubber ≥ 14 mils or barrier laminate gloves
|
||||||
|
• Protective eyewear (such as goggles, or face shield, or shielded safety glasses)
|
||||||
|
• Chemical-resistant apron when mixing, loading, or cleaning equipment or spills
|
||||||
|
• Chemical-resistant headgear for overhead exposure
|
||||||
|
• Mixer/loaders and applicators must wear (except when using closed mixing/
|
||||||
|
loading systems): Wear a minimum of a NIOSH approved particulate filtering
|
||||||
|
face piece respirator with any R or P filter (TC-84A); OR a NIOSH approved an
|
||||||
|
elastomeric NIOSH approved particulate respirator with any R or P filter (TC-84A);
|
||||||
|
OR a NIOSH approved powered air purifying respirator with an HE filter (TC-21C).
|
||||||
|
|
||||||
|
2
|
||||||
|
See engineering controls for additional requirements.
|
||||||
|
Discard clothing and other absorbent materials that have been drenched or
|
||||||
|
heavily contaminated with this product’s concentrate. Do not reuse them. Follow
|
||||||
|
manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for
|
||||||
|
washables exist, use detergent and hot water. Keep and wash PPE separately from
|
||||||
|
other laundry.
|
||||||
|
ENGINEERING CONTROLS STATEMENT
|
||||||
|
Pilots must use an enclosed cockpit that meets the requirements listed in the Worker
|
||||||
|
Protection Standard (WPS) for Agricultural Pesticides [40 CFR 170.240(d) (6)]. Flaggers
|
||||||
|
supporting aerial applications must use an enclosed cab that meets the definition in
|
||||||
|
the WPS for Agricultural Pesticides [40 CFR 170.240(d) (5)] for dermal protection. In
|
||||||
|
addition, flaggers must wear long-sleeved shirt, long pants, shoes, and socks.
|
||||||
|
When handlers use closed systems, enclosed cabs, or aircraft in a manner that meets
|
||||||
|
the requirements listed in the Worker Protection Standard (WPS) for agricultural
|
||||||
|
pesticides [40 CFR 170.240 (d) (4-6)], the handler PPE requirements may be reduced
|
||||||
|
or modified as specified in the WPS.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Users should:
|
||||||
|
• Wash hands before eating, drinking, chewing gum, using tobacco, or using
|
||||||
|
the toilet.
|
||||||
|
• Remove clothing/PPE immediately if pesticide gets inside. Then wash
|
||||||
|
thoroughly and put on clean clothing.
|
||||||
|
• Remove PPE immediately after handling this product. Wash the outside of
|
||||||
|
gloves before removing. As soon as possible, wash thoroughly and change
|
||||||
|
into clean clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
Do not apply directly to water, or to areas where surface water is present, or to
|
||||||
|
intertidal areas below the mean high water mark. Do not contaminate water when
|
||||||
|
disposing of equipment washwater or rinsate. Do not apply when weather conditions
|
||||||
|
favor drift from the target area. Apply this product only as specified on this label.
|
||||||
|
This product may contaminate water through drift of spray in wind. This product
|
||||||
|
has a high potential for runoff for several months or more after application. Poorly
|
||||||
|
draining soils and soils with shallow water tables are more prone to produce
|
||||||
|
runoff that contains this product. A level, well-maintained vegetative buffer strip
|
||||||
|
between areas to which this product is applied and surface water features such as
|
||||||
|
ponds, streams, and springs will reduce the potential for contamination of water
|
||||||
|
from runoff. Runoff of this product will be reduced by avoiding applications when
|
||||||
|
rainfall is forecasted to occur within 48 hours. Sound erosion control practices will
|
||||||
|
reduce this product’s contribution to surface water contamination. This chemical
|
||||||
|
has properties and characteristics associated with chemicals detected in ground
|
||||||
|
water. Use of this chemical in areas where soils are permeable, particularly where
|
||||||
|
the water table is shallow, may result in groundwater contamination.
|
||||||
|
PHYSICAL OR CHEMICAL HAZARDS
|
||||||
|
Do not use or store near heat or open flame.
|
||||||
|
In case of spillage, cover with an absorbent such as soda ash, lime, clay, or
|
||||||
|
sawdust. Sweep up and bury. Wash area thoroughly with detergent and water.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent
|
||||||
|
with its labeling.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons,
|
||||||
|
either directly or through drift. Only protected handlers may be in the area during
|
||||||
|
application. For any requirements specific to your State or Tribe, consult the
|
||||||
|
agency responsible for pesticide regulation.
|
||||||
|
|
||||||
|
3
|
||||||
|
Use of this product in certain portions of California, Oregon, and Washington is
|
||||||
|
subject to the January 22, 2004 Order for injunctive relief in Washington Toxics
|
||||||
|
Coalition. et al. v. EPA, C01-0132C, (W.D. WA). For further information, please
|
||||||
|
refer to www.epa.gov/espp/wtc/.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker
|
||||||
|
Protection Standard, 40 CFR Part 170. This Standard contains requirements
|
||||||
|
for the protection of agricultural workers on farms, forests, nurseries,
|
||||||
|
and greenhouses, and handlers of agricultural pesticides. It contains
|
||||||
|
requirements for training, decontamination, notification, and emergency
|
||||||
|
assistance. It also contains specific instructions and exceptions pertaining
|
||||||
|
to the statements on this label about personal protective equipment (PPE),
|
||||||
|
and restricted-entry interval. The requirements in this box only apply to
|
||||||
|
uses of this product that are covered by the Worker Protection Standard.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted
|
||||||
|
entry interval (REI) of 24 hours.
|
||||||
|
PPE required for early entry to treated areas that is permitted under the
|
||||||
|
Worker Protection Standard and that involves contact with anything that
|
||||||
|
has been treated, such as plants, soil, or water, is:
|
||||||
|
• Coveralls worn over long-sleeved shirt and long pants
|
||||||
|
• Chemical-resistant gloves such as barrier laminate or butyl rubber gloves
|
||||||
|
• Chemical-resistant footwear plus socks
|
||||||
|
• Protective eyewear
|
||||||
|
POLLINATOR ADVISORY STATEMENT
|
||||||
|
This product may adversely impact the forage and habitat of local pollinators,
|
||||||
|
including monarch butterfly (and its larvae), birds, or bats if it reaches non-target
|
||||||
|
areas. Protect pollinators by following label directions to minimize spray drift.
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
GINSTAR® EC is a defoliant to be used as a pre-harvest aid for cotton.
|
||||||
|
GINSTAR® EC Cotton Defoliant has performed well under both cool and warm
|
||||||
|
weather conditions.
|
||||||
|
RESTRICTIONS
|
||||||
|
Do not apply this product through any type of irrigation system.
|
||||||
|
Do not feed foliage from treated cotton plants or gin trash to livestock.
|
||||||
|
Do not plant the following crops earlier than the specified periods after
|
||||||
|
application of GINSTAR® EC:
|
||||||
|
small grains, sorghum, corn ............................. one (1) month
|
||||||
|
root crops (except carrots, onions) ....................... two (2) months
|
||||||
|
legumes (including alfalfa) or leafy vegetables (except lettuce) two (2) months
|
||||||
|
cole crops, garlic, safflower, tomatoes, and watermelon ..... two (2) months
|
||||||
|
carrots ............................................. three (3) months
|
||||||
|
onions .............................................. four (4) months
|
||||||
|
cantaloupe, honeydew melon/ casaba melon, muskmelon,
|
||||||
|
or peppers ......................................... five (5) months
|
||||||
|
lettuce .............................................. two (2) months
|
||||||
|
with deep-plowing of soil (12-15 inches);
|
||||||
|
or nine (9) months when soil is only disked (4-6 inches).
|
||||||
|
Cover Crops: Small grains and/or legumes intercropped within the cotton crop
|
||||||
|
to which GINSTAR® EC Cotton Defoliant will be applied may only be used as
|
||||||
|
cover crops and may not be harvested for food or feed. Small grains and/or
|
||||||
|
|
||||||
|
4
|
||||||
|
legumes planted earlier than two (2) months following GINSTAR® EC application
|
||||||
|
may only be used as cover crops and may not be harvested for food or feed.
|
||||||
|
Do not plant any other rotational crops ( except those specified above) within
|
||||||
|
one year of application of GINSTAR ® EC.
|
||||||
|
Do not use immature crops for food or feed.
|
||||||
|
Do not allow spray drift to contact trees or crops other than the target crop
|
||||||
|
of mature cotton, or cotton you desire to defoliate, as this product may injure
|
||||||
|
or defoliate other crops.
|
||||||
|
Mixtures with organophosphates can increase non-target crop phytotoxicity.
|
||||||
|
Some crops (e.g., citrus, lettuce, cantaloupes, and others) are sensitive to this
|
||||||
|
chemical and additional care needs to be exercised if these crops are present
|
||||||
|
in adjacent fields.
|
||||||
|
USE PRECAUTIONS
|
||||||
|
Mixtures with organophosphates can increase non-target crop phytotoxicity.
|
||||||
|
Rainfall within 12 hours after application can reduce the effectiveness of
|
||||||
|
GINSTAR® EC Cotton Defoliant.
|
||||||
|
Some crops (e.g., citrus, lettuce, cantaloupes, and others) are sensitive to this
|
||||||
|
chemical and additional care needs to be exercised if these crops are present
|
||||||
|
in adjacent fields.
|
||||||
|
Maximum of 2 applications per year.
|
||||||
|
Minimum retreatment interval is 21 days.
|
||||||
|
SPRAY DRIFT MANAGEMENT FOR GROUND AND AERIAL APPLICATIONS
|
||||||
|
Use best practices to avoid drift to all other crops and non-target areas. Do not
|
||||||
|
apply when conditions favor drift from target areas. The interaction of many
|
||||||
|
equipment- and weather-related factors determine the potential for spray drift.
|
||||||
|
Avoiding spray drift at the application site is the responsibility of the applicator.
|
||||||
|
The applicator must follow the most restrictive precautions to avoid drift,
|
||||||
|
including those found in this labeling as well as applicable state and local
|
||||||
|
regulations and ordinances. A drift control agent may reduce drift, however, it
|
||||||
|
may also decrease weed control.
|
||||||
|
In general, a decrease in droplet size or increase in wind speed at the time of
|
||||||
|
application will result in risk to non-target organisms. Alternatively, if droplet size
|
||||||
|
is coarser 01’ wind speeds are lower, exposures due to drift would be reduced.
|
||||||
|
For both aerial and ground application, do not apply when wind speeds
|
||||||
|
exceed10 miles per hour at the application site.
|
||||||
|
Do not spray via ground or aerial application equipment during temperature
|
||||||
|
inversions.
|
||||||
|
Use a nozzle that produces medium spray or coarser spray according to ASABE
|
||||||
|
(ANSIIASAE) standard S572.1 MAR2009 for both ground and aerial application.
|
||||||
|
Additional requirements for ground applications:
|
||||||
|
When using ground application, apply with nozzle height no more than 2 feet
|
||||||
|
above the ground or crop canopy.
|
||||||
|
Additional requirements for aerial applications:
|
||||||
|
The spray boom must be mounted on the aircraft so as to minimize drift caused
|
||||||
|
by wing tip or rotor blade vortices. The boom length must not exceed 75% of
|
||||||
|
the wingspan or 90% of the rotor blade diameter.
|
||||||
|
When applying to crops via aerial application equipment, use ½ swath
|
||||||
|
displacement upwind at the downwind edge of the field.
|
||||||
|
Nozzles must be oriented so the spray is directed toward the back of the aircraft.
|
||||||
|
Use upwind swath displacement
|
||||||
|
When applying to crops, do not release spray at a height greater than 6 to 10
|
||||||
|
feet above the ground or crop canopy.
|
||||||
|
|
||||||
|
5
|
||||||
|
DO NOT APPLY BY AIR IF SENSITIVE NON-TARGET CROPS ARE WITHIN 100
|
||||||
|
FEET OF THE APPLICATION SITE EXCEPT AS NOTED BELOW FOR LETTUCE
|
||||||
|
AND CITRUS.
|
||||||
|
SPRAY DRIFT ADVISORIES
|
||||||
|
The interaction of many equipment and weather-related factors determines the
|
||||||
|
potential for spray drift. The applicator is responsible for considering all these
|
||||||
|
factors when making application decisions.
|
||||||
|
IMPORTANCE OF DROPLET SIZE
|
||||||
|
The most effective way to reduce drift potential is to apply large droplets.
|
||||||
|
The best drift management strategy is to apply the largest droplets that
|
||||||
|
provide sufficient coverage and control. The presence of sensitive species
|
||||||
|
nearby, the environmental conditions, and pest pressure may affect how
|
||||||
|
an applicator balances drift control and coverage. APPLYING LARGER
|
||||||
|
DROPLETS REDUCES DRIFT POTENTIAL, BUT WILL NOT PREVENT DRIFT
|
||||||
|
IF APPLICATIONS ARE MADE IMPROPERLY OR UNDER UNFAVORABLE
|
||||||
|
ENVIRONMENTAL CONDITIONS! See Wind, Temperature and Humidity, and
|
||||||
|
Temperature Inversions sections of this label.
|
||||||
|
Controlling Droplet Size - Ground Boom
|
||||||
|
• Volume - Use high flow rate nozzles to apply the highest practical spray
|
||||||
|
volume. Nozzles with higher rated flows produce larger volumes.
|
||||||
|
• Pressure - Use the lower spray pressures recommended for the nozzle.
|
||||||
|
Higher pressure reduces droplet size and does not improve canopy
|
||||||
|
penetration. WHEN HIGHER FLOW RATES ARE NEEDED, USE A HIGHER-
|
||||||
|
CAPACITY NOZZLE INSTEAD OF INCREASING PRESSURE.
|
||||||
|
• Nozzle Type - Use a nozzle type that is designed for the intended application.
|
||||||
|
With most nozzle types, narrower spray angles produce larger droplets.
|
||||||
|
Consider using low-drift nozzles.
|
||||||
|
• Controlling Droplet Size -Aircraft
|
||||||
|
• Number of Nozzles - Use the minimum number of nozzles with the highest
|
||||||
|
flow rate that provide uniform coverage.
|
||||||
|
• Nozzle Orientation - Orienting nozzles so that the spray is emitted backwards,
|
||||||
|
parallel to the airstream with produce larger droplets than other orientations.
|
||||||
|
AVOIDING SPRAY DRIFT IS THE RESPONSIBILITY OF THE APPLICATOR.
|
||||||
|
• Nozzle Type - Solid stream nozzles (such as disc and core with swirl plate
|
||||||
|
removed) oriented straight back produce larger droplets than other nozzle types.
|
||||||
|
• Boom Length - Longer booms increase drift potential. Therefore a shorter
|
||||||
|
boom length is recommended.
|
||||||
|
• Application Height - Application more than 10 ft. above the canopy increases
|
||||||
|
the potential for spray drift.
|
||||||
|
BOOM HEIGHT
|
||||||
|
Setting the boom at the lowest referenced height (if specified) which provides
|
||||||
|
uniform coverage reduces the exposure of droplets to evaporation and wind.
|
||||||
|
For ground equipment, the boom should remain level with the crop and have
|
||||||
|
minimal bounce.
|
||||||
|
DRIFT REDUCTION TECHNOLOGY (DRT)
|
||||||
|
The EPA Drift Reduction Technology (DRT) Program was developed to
|
||||||
|
encourage the manufacture, marketing, and use of spray technologies
|
||||||
|
scientifically verified to significantly reduce pesticide drift. The use of
|
||||||
|
DR Ts should result in significantly less pesticide from spray applications
|
||||||
|
drifting and being deposited in areas not targeted by those applications,
|
||||||
|
compared to spray technologies that do not meet the minimum DRT
|
||||||
|
standard. EPA-verified drift reduction technologies (DR Ts) and their
|
||||||
|
ratings will be added to the following webpage as they become available:
|
||||||
|
https://www.epa.gov/reducing-pesticide-drift/epa-verified-and-rated-drift-reduction-technologies.
|
||||||
|
|
||||||
|
6
|
||||||
|
WIND
|
||||||
|
Drift potential increases at wind speeds of less than 3 mph (due to inversion
|
||||||
|
potential) or more than 10 mph. However, many factors, including droplet size
|
||||||
|
and equipment type determine drift potential at any given wind speed. AVOID
|
||||||
|
APPLICATIONS DURING GUSTY OR WINDLESS CONDITIONS.
|
||||||
|
Note: Local terrain can influence wind patterns. Every applicator needs to be
|
||||||
|
familiar with local wind patterns and how they affect spray drift.
|
||||||
|
TEMPERATURE AND HUMIDITY
|
||||||
|
When making applications in hot and dry conditions, set up equipment to
|
||||||
|
produce larger droplets to reduce effects of evaporation.
|
||||||
|
TEMPERATURE INVERSIONS
|
||||||
|
Drift potential is high during a temperature inversion. Temperature inversions
|
||||||
|
restrict vertical air mixing, which causes suspended droplets to remain close to
|
||||||
|
the ground and move laterally in a concentrated cloud. Temperature inversions
|
||||||
|
are characterized by increasing temperature with altitude and are common
|
||||||
|
on nights with limited cloud cover and light to no wind. They begin to form
|
||||||
|
as the sun sets and often continue into the morning. Their presence can be
|
||||||
|
indicated by ground fog; however, if fog is not present, inversions can also be
|
||||||
|
identified by the movement of smoke from a ground source or an aircraft smoke
|
||||||
|
generator. Smoke that layers and moves laterally in a concentrated cloud
|
||||||
|
(under low wind conditions) indicates an inversion, while smoke that moves
|
||||||
|
upward and rapidly dissipates indicated good vertical air mixing.
|
||||||
|
SHIELDED SPRAYERS
|
||||||
|
Shielding the boom or individual nozzles can reduce the effects of wind.
|
||||||
|
However, it is the responsibility of the applicator to verify that the shields are
|
||||||
|
preventing drift and not interfering with uniform deposition of the product.
|
||||||
|
ADDITIONAL PRACTICES TO LOWER THE POTENTIAL FOR DRIFT
|
||||||
|
ONTO NONTARGET CROPS
|
||||||
|
During applications, particularly under windy conditions, GINSTAR® EC Cotton
|
||||||
|
Defoliant may drift to nontarget crops. To help reduce the drift potential, use the
|
||||||
|
following practices:
|
||||||
|
• Do not apply GINSTAR ® EC by ground or air when wind speeds exceed ten
|
||||||
|
(10) miles per hour at the time of application. Follow local recommendations
|
||||||
|
if wind speeds of less than ten (10) miles per hour are specified in those
|
||||||
|
recommendations.
|
||||||
|
• Use of low nozzle pressure (20-30 psi) is recommended.
|
||||||
|
• Use the largest nozzle orifice possible, which permits proper deposition and
|
||||||
|
coverage of product.
|
||||||
|
• Do not apply GINSTAR® EC when a temperature inversion is present or when
|
||||||
|
conditions favor an inversion prior to completing application(s).
|
||||||
|
CARE MUST BE TAKEN WHEN APPLYING GINSTAR ® EC ADJACENT TO
|
||||||
|
LETTUCE, CITRUS, OR CANTALOUPE.
|
||||||
|
• Do not apply GINSTAR® EC by air within one-half (½) mile of lettuce or cantaloupe.
|
||||||
|
Do not apply GINSTAR® EC by ground equipment within 100 feet of lettuce.
|
||||||
|
• In addition, for citrus crops, particularly in the Rio Grande Valley of Texas, do not
|
||||||
|
apply GINSTAR® EC by air when citrus in flush is within five (5) miles downwind
|
||||||
|
of the point of application. Do not apply GINSTAR® EC by ground when citrus in
|
||||||
|
flush is within one-half (½) mile downwind of the point of application.
|
||||||
|
RUNOFF PREVENTION
|
||||||
|
To protect the environment, do not allow pesticide to enter or run off into storm drains,
|
||||||
|
drainage ditches, gutters or surface waters. Applying this product in calm weather
|
||||||
|
when rain is not predicted for the next 24 hours will help to ensure that wind or rain
|
||||||
|
does not blow or wash pesticide off the treatment area. Rinsing application equipment
|
||||||
|
over the treated area will help avoid run off to water bodies or drainage systems.
|
||||||
|
|
||||||
|
7
|
||||||
|
TIME OF APPLICATION
|
||||||
|
Apply GINSTAR® EC Cotton Defoliant only to mature cotton plants when the last
|
||||||
|
boll you expect to harvest is mature. A boll can be described as “mature” when
|
||||||
|
it is too hard to be dented when squeezed between thumb and fingers, is difficult
|
||||||
|
to slice with a sharp knife, and/or when seeds cut in cross sections have fully
|
||||||
|
developed cotyledons, as evidenced by an absence of jelly within the seed.
|
||||||
|
Apply GINSTAR® EC at least 5 days prior to anticipated harvest.
|
||||||
|
PRECAUTION: The addition of adjuvants can cause desiccation and/or leaf
|
||||||
|
freezing during periods of high temperature. The use of compounds that
|
||||||
|
desiccate leaf tissue is not recommended.
|
||||||
|
Use of GINSTAR ® EC Cotton Defoliant under extremely cool or adverse
|
||||||
|
conditions can result in less than desirable defoliation and/or growth inhibition.
|
||||||
|
APPLICATION
|
||||||
|
GINSTAR® EC Cotton Defoliant may be applied by air or ground equipment. Apply
|
||||||
|
specified dosages in 10–25 gallons of spray per acre with ground equipment or
|
||||||
|
2–10 gallons per acre by aircraft.
|
||||||
|
DOSAGE
|
||||||
|
Apply GINSTAR® EC Cotton Defoliant at a rate of 0.4 to 1.0 pint of formulated
|
||||||
|
product per acre prior to harvest (see Application Rate Table). At some locations,
|
||||||
|
following the initial GINSTAR ® EC application, it may be necessary to make a
|
||||||
|
second application of GINSTAR® EC (DO NOT exceed 1.0 pint/acre per season),
|
||||||
|
or an application of a standard defoliant.
|
||||||
|
MIXING INSTRUCTIONS
|
||||||
|
Fill the spray tank with one-half of the required amount of water. Add the proper
|
||||||
|
amount of GINSTAR® EC Cotton Defoliant and start the spray tank agitator. Finish
|
||||||
|
filling the tank with the balance of water needed. Maintain sufficient agitation
|
||||||
|
during both mixing and application to ensure uniformity of the spray mixture.
|
||||||
|
PRECONDITIONING
|
||||||
|
FOR USE IN CALIFORNIA ONLY
|
||||||
|
GINSTAR® EC Cotton Defoliant may be used as a preconditioner to
|
||||||
|
enhance the activity of a defoliant application. Apply GINSTAR ® EC at
|
||||||
|
4-6 oz. formulated product per acre. Apply in 10-25 gallons of water per
|
||||||
|
acre by ground or 2–10 gallons of water per acre by aerial application.
|
||||||
|
Timing of application is recommended 7–10 days prior to a defoliation
|
||||||
|
application of GINSTAR® EC (see Application Rate Table) or the use of another
|
||||||
|
defoliant. Refer to the second product label prior to use for complete
|
||||||
|
recommendations.
|
||||||
|
GINSTAR® EC COTTON DEFOLIANT APPLICATION
|
||||||
|
RATE TABLE
|
||||||
|
To Achieve an
|
||||||
|
Application Rate of:
|
||||||
|
Use This Amount
|
||||||
|
of GINSTAR® EC
|
||||||
|
At the Indicated Rate, One-Gallon
|
||||||
|
of GINSTAR® EC Will Treat:
|
||||||
|
0.075 lbs. ai/Acre 0.4 pts./A
|
||||||
|
(6.4 oz./A)
|
||||||
|
20 Acres
|
||||||
|
0.10 lbs. ai/Acre 0.55 pts./A
|
||||||
|
(8.8 oz./A)
|
||||||
|
15 Acres
|
||||||
|
0.15 lbs. ai/Acre 0.8 pts./A
|
||||||
|
(12.8 oz./A)
|
||||||
|
10 Acres
|
||||||
|
0.1875 lbs. ai/Acre 1.0 pts./A
|
||||||
|
(16.0 oz./A)
|
||||||
|
8 Acres
|
||||||
|
|
||||||
|
8
|
||||||
|
DO NOT APPLY MORE THAN 1.0 PINT OF GINSTAR® EC PER ACRE PER SEASON.
|
||||||
|
TANK MIX OF GINSTAR® EC PLUS FINISH® 6 PRO
|
||||||
|
The tank mix of Ginstar
|
||||||
|
®
|
||||||
|
EC Cotton Defoliant plus Finish
|
||||||
|
®
|
||||||
|
6 Pro is recommended
|
||||||
|
to improve overall defoliation, and as an aid in accelerating the opening of
|
||||||
|
mature, unopened cotton bolls. Best activity will be obtained where the tank
|
||||||
|
mix is applied to mature cotton plants. Do not apply tank mix before sufficient
|
||||||
|
unopened bolls have matured to produce the desired cotton yield.
|
||||||
|
For cotton produced in non-arid conditions, apply Ginstar
|
||||||
|
®
|
||||||
|
EC Cotton Defoliant
|
||||||
|
at a rate of 3.2 to 6.4 fluid ounces per acre plus Finish
|
||||||
|
®
|
||||||
|
6 Pro at a rate of 21 to
|
||||||
|
42 fluid ounces per acre.
|
||||||
|
For cotton produced in arid conditions, apply Ginstar
|
||||||
|
®
|
||||||
|
EC Cotton Defoliant at
|
||||||
|
a rate of 6.4 to 16 fluid ounces per acre plus Finish
|
||||||
|
®
|
||||||
|
6 Pro at a rate of 21 to 42
|
||||||
|
fluid ounces per acre.
|
||||||
|
CLEANOUT INSTRUCTIONS
|
||||||
|
Do not allow the spray solution to dry in the application equipment. Immediately
|
||||||
|
following application, clean all equipment (mix tanks, pumps, transfer lines,
|
||||||
|
application tanks, sumps, booms, nozzles, and all related equipment) thoroughly
|
||||||
|
with commercial tank cleaner and water. Consult your State Extension cotton
|
||||||
|
specialist for recommended tank cleaners and cleaning procedures.
|
||||||
|
The procedure for removing dried residues in the application equipment
|
||||||
|
requires allowing the diluted solution of a commercial tank cleaner to stand in
|
||||||
|
equipment, filled to capacity, for 7 days followed by thorough flushing.
|
||||||
|
Should small quantities of GINSTAR® EC Cotton Defoliant remain in inadequately
|
||||||
|
cleaned equipment, they may be released during subsequent applications
|
||||||
|
and may cause damage to crops. To the extent consistent with applicable
|
||||||
|
law, Bayer CropScience accepts no liability for damage to crops due to
|
||||||
|
inadequately cleaned equipment.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal.
|
||||||
|
PESTICIDE STORAGE: Store in original container and keep closed. Store in a cool,
|
||||||
|
dry place. Do not use or store near heat or open flame. Do not contaminate food or
|
||||||
|
foodstuffs.
|
||||||
|
PESTICIDE DISPOSAL: Pesticide wastes are acutely hazardous. Improper disposal
|
||||||
|
of excess pesticide, spray mixture, or rinsate is a violation of Federal law. If these
|
||||||
|
wastes cannot be disposed of by use according to label instructions, contact
|
||||||
|
your State Pesticide or Environmental Control Agency, or the Hazardous Waste
|
||||||
|
representative at the nearest EPA Regional Office for guidance.
|
||||||
|
CONTAINER DISPOSAL: Non-refillable container. Do not reuse or refill this
|
||||||
|
container. Triple rinse container (or equivalent) promptly after emptying. Triple
|
||||||
|
rinse as follows: Empty the remaining contents into application equipment
|
||||||
|
or a mix tank and drain for 10 seconds after the flow begins to drip. Fill the
|
||||||
|
container ¼ full with water and recap. Shake for 10 seconds. Pour rinsate into
|
||||||
|
application equipment or a mix tank or store rinsate for later use or disposal.
|
||||||
|
Drain for 10 seconds after the flow begins to drip. Repeat this procedure two
|
||||||
|
more times. Then offer for recycling if available, or puncture and dispose of in
|
||||||
|
sanitary landfill, or by other procedures approved by State and local authorities.
|
||||||
|
DO NOT REUSE EMPTY CONTAINER
|
||||||
|
|
||||||
|
9
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability before using this product. If terms are not acceptable,
|
||||||
|
return the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions,
|
||||||
|
Disclaimer of Warranties and Limitations of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be
|
||||||
|
adequate and must be followed carefully. However, it is impossible to eliminate
|
||||||
|
all risks associated with the use of this product. Crop injury, ineffectiveness or
|
||||||
|
other unintended consequences may result because of such factors as weather
|
||||||
|
conditions, presence of other materials, or the manner of use or application, all
|
||||||
|
of which are beyond the control of Bayer CropScience. All such risks shall be
|
||||||
|
assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH
|
||||||
|
APPLICABLE LAW, BAYER CROPSCIENCE MAKES NO OTHER WARRANTIES,
|
||||||
|
EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE
|
||||||
|
STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience is
|
||||||
|
authorized to make any warranties beyond those contained herein or to
|
||||||
|
modify the warranties contained herein. TO THE EXTENT CONSISTENT
|
||||||
|
WITH APPLICABLE LAW, BAYER CROPSCIENCE DISCLAIMS ANY LIABILITY
|
||||||
|
WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
|
||||||
|
RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER FOR ANY AND
|
||||||
|
ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR
|
||||||
|
HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY, TORT,
|
||||||
|
NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, SHALL NOT EXCEED THE
|
||||||
|
PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE’S ELECTION, THE
|
||||||
|
REPLACEMENT OF PRODUCT.
|
||||||
|
|
||||||
|
10
|
||||||
|
|
||||||
|
11
|
||||||
|
|
||||||
|
SMARTLINE US61380092C (210224C) GINSTAR 2.5 Gallon Base black 01/13/22
|
||||||
|
Label Coordinator: Mark Schmidt
|
||||||
|
PHYSICAL OR CHEMICAL HAZARDS
|
||||||
|
Do not use or store near heat or open flame.
|
||||||
|
In case of spillage, cover with an absorbent such as
|
||||||
|
soda ash, lime, clay, or sawdust. Sweep up and bury.
|
||||||
|
Wash area thoroughly with detergent and water.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in
|
||||||
|
a manner inconsistent with its labeling.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage
|
||||||
|
or disposal.
|
||||||
|
PESTICIDE STORAGE: Store in original container
|
||||||
|
and keep closed. Store in a cool, dry place. Do
|
||||||
|
not use or store near heat or open flame. Do not
|
||||||
|
contaminate food or foodstuffs.
|
||||||
|
PESTICIDE DISPOSAL: Pesticide wastes are
|
||||||
|
acutely hazardous. Improper disposal of excess
|
||||||
|
pesticide, spray mixture, or rinsate is a violation of
|
||||||
|
Federal law. If these wastes cannot be disposed of
|
||||||
|
by use according to label instructions, contact your
|
||||||
|
State Pesticide or Environmental Control Agency, or
|
||||||
|
the Hazardous Waste representative at the nearest
|
||||||
|
EPA Regional Office for guidance.
|
||||||
|
CONTAINER DISPOSAL: Non-refillable container.
|
||||||
|
Do not reuse or refill this container. Triple rinse
|
||||||
|
container (or equivalent) promptly after emptying.
|
||||||
|
Triple rinse as follows: Empty the remaining contents
|
||||||
|
into application equipment or a mix tank and drain
|
||||||
|
for 10 seconds after the flow begins to drip. Fill the
|
||||||
|
container ¼ full with water and recap. Shake for 10
|
||||||
|
seconds. Pour rinsate into application equipment or
|
||||||
|
a mix tank or store rinsate for later use or disposal.
|
||||||
|
Drain for 10 seconds after the flow begins to drip.
|
||||||
|
Repeat this procedure two more times. Then offer
|
||||||
|
for recycling if available, or puncture and dispose of
|
||||||
|
in sanitary landfill, or by other procedures approved
|
||||||
|
by State and local authorities.
|
||||||
|
DO NOT REUSE EMPTY CONTAINER
|
||||||
|
Produced For
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
Ginstar® is a registered trademark of Bayer Group.
|
||||||
|
©2022 Bayer Group
|
||||||
|
US61380092C 210224C 01/22
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly
|
||||||
|
and gently with water for 15-20
|
||||||
|
minutes.
|
||||||
|
• Remove contact lenses, if present,
|
||||||
|
after the first 5 minutes, then
|
||||||
|
continue rinsing.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
IF ON SKIN
|
||||||
|
OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with
|
||||||
|
plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call
|
||||||
|
911 or an ambulance, then give
|
||||||
|
artificial respiration, preferably
|
||||||
|
mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center
|
||||||
|
or doctor for further treatment
|
||||||
|
advice.
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Immediately call a poison control
|
||||||
|
center or doctor for treatment
|
||||||
|
advice.
|
||||||
|
• Do not induce vomiting unless
|
||||||
|
told to do so by a poison control
|
||||||
|
center or doctor.
|
||||||
|
• Have person sip a glass of water if
|
||||||
|
able to swallow.
|
||||||
|
• Do not give anything by mouth to
|
||||||
|
an unconscious person.
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day
|
||||||
|
1-800-334-7577.
|
||||||
|
Have the product container or label with you
|
||||||
|
when calling a poison control center or doctor or
|
||||||
|
going for treatment.
|
||||||
|
NOTE TO PHYSICIAN: Probable mucosal damage
|
||||||
|
may contraindicate the use of gastric lavage.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC
|
||||||
|
ANIMALS
|
||||||
|
DANGER
|
||||||
|
Corrosive. Causes irreversible eye damage. Causes
|
||||||
|
skin irritation. Harmful if inhaled, or absorbed
|
||||||
|
through skin. Avoid contact with eyes, skin,
|
||||||
|
clothing, and avoid breathing spray mist. Prolonged
|
||||||
|
or frequently repeated skin contact may cause
|
||||||
|
allergic reactions in some individuals.
|
||||||
|
Ginstar® EC COTTON DEFOLIANT
|
||||||
|
For Agricultural Use Only
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Thidiazuron: N-phenyl-N’-1, 2, 3-thidiazol-5-ylurea ............................................ 12%
|
||||||
|
Diuron: 3-(3, 4-dichlorophenyl)-1, 1-dimethylurea ............................................. 6%
|
||||||
|
INERT INGREDIENTS: .................................................................. 82%
|
||||||
|
Contains 1 lb. Thidiazuron per gallon and 0.5 lb. Diuron per gallon. TOTAL 100%
|
||||||
|
EPA Reg No. 264-634
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
DANGER – PELIGRO
|
||||||
|
Si usted no entiende la etiqueta, busque a alguien para que se la explique a usted en detalle.
|
||||||
|
(If you do not understand this label, find someone to explain it to you in detail.)
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
See Back Panel for First Aid Instructions and Booklet for
|
||||||
|
Complete Precautionary Statements and Directions for Use.
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "harness-max",
|
||||||
|
"epa_reg_no": "524-636",
|
||||||
|
"product_name": "Harness Max Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Acetochlor",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mesotrione",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Harness-MAX_2025pdf",
|
||||||
|
"filename": "Harness-MAX_2025pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-05-15T17:44:54+00:00",
|
||||||
|
"page_count": 2,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/harness-max-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:59:32.593857+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
# Harness Max Herbicide
|
||||||
|
|
||||||
|
- **Product class:** herbicide
|
||||||
|
- **EPA Reg No:** 524-636
|
||||||
|
- **Active ingredients:** Acetochlor, Mesotrione
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/herbicide/harness-max-herbicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Harness-MAX_2025pdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Take Control of Your Corn Acres
|
||||||
|
Harness
|
||||||
|
®
|
||||||
|
MAX herbicide is a convenient, easy to use
|
||||||
|
premix that contains acetochlor and mesotrione.
|
||||||
|
This product offers the excellent residual benefits of
|
||||||
|
Harness
|
||||||
|
®
|
||||||
|
herbicide with the added postemergence
|
||||||
|
and residual activity of mesotrione for a broadened
|
||||||
|
range of control against tough-to-control weeds
|
||||||
|
in corn. Harness MAX has a flexible application
|
||||||
|
window including preplant, pre-emergence, and
|
||||||
|
early postemergence in corn up to 11 inches.
|
||||||
|
/// BENEFITS
|
||||||
|
• Convenient Pre-mix
|
||||||
|
A convenient pre-mix herbicide of mesotrione
|
||||||
|
and acetochlor
|
||||||
|
• Resistance Management
|
||||||
|
Multiple sites of action for strengthened residual
|
||||||
|
control and the added benefit of postemergence
|
||||||
|
control
|
||||||
|
• Application Flexibility
|
||||||
|
Flexible application window including preplant,
|
||||||
|
preemergence and early postemergence in corn
|
||||||
|
up to 11 inches
|
||||||
|
Registered Crops
|
||||||
|
• Field Corn
|
||||||
|
• Production Seed Corn
|
||||||
|
• Yellow Popcorn
|
||||||
|
Key Pests
|
||||||
|
• Common Waterhemp
|
||||||
|
• Palmer Amaranth
|
||||||
|
• Velvetleaf
|
||||||
|
• Common Ragweed
|
||||||
|
• Common Lambsquarters
|
||||||
|
• Large Crabgrass
|
||||||
|
• Common Cocklebur
|
||||||
|
• Giant Foxtail
|
||||||
|
Formulation Information
|
||||||
|
• Acetochlor
|
||||||
|
(3.52 lbs ai/gal)
|
||||||
|
• Mesotrione
|
||||||
|
(0.33 lbs ai/gal)
|
||||||
|
Suspoemulsion
|
||||||
|
|
||||||
|
ALWAYS READ AND FOLLOW PESTICIDE LABEL DIRECTIONS. Roundup Technology® includes glyphosate-based herbicide
|
||||||
|
technologies. Not all products are registered for use in all states and may be subject to use restrictions. The distribution, sale, or
|
||||||
|
use of an unregistered pesticide is a violation of federal and/or state law and is strictly prohibited. Check with your local dealer
|
||||||
|
or representative for the product registration status in your state. Bayer, Bayer Cross, DiFlexx®, Harness®, Roundup PowerMAX®,
|
||||||
|
Roundup Technology® and Roundup WeatherMAX® are registered trademarks of Bayer Group. For additional product information
|
||||||
|
call toll-free 1-866-99-BAYER (1-866-992-2937) or visit our website at www.BayerCropScience.us. Bayer CropScience LP, 800 North
|
||||||
|
Lindbergh Boulevard, St. Louis, MO 63167. ©2025 Bayer Group. All rights reserved.
|
||||||
|
IMPORTANT: This bulletin is not intended to provide adequate information for
|
||||||
|
use of these products. Read the label before using these products. Observe
|
||||||
|
all label directions and precautions while using these products.
|
||||||
|
*For more information on herbicide group numbers and site-of-action options, visit IWillTakeAction.com
|
||||||
|
Application Rate
|
||||||
|
Pre = 55 to 95 fl oz/A
|
||||||
|
Post = 40 to 75 fl oz/A
|
||||||
|
Application Timing
|
||||||
|
Preplant, Preemergence,
|
||||||
|
Early Postemergence
|
||||||
|
(up to 11” corn)
|
||||||
|
Site-of-Action
|
||||||
|
Group*
|
||||||
|
15 27
|
||||||
|
Recommended
|
||||||
|
Tankmix Options
|
||||||
|
Atrazine 5
|
||||||
|
DiFlexx
|
||||||
|
®
|
||||||
|
4herbicide
|
||||||
|
Roundup
|
||||||
|
®
|
||||||
|
Brand
|
||||||
|
Agricultural 9
|
||||||
|
Herbicides*
|
||||||
|
*Encompasses full portfolio of Roundup
|
||||||
|
®
|
||||||
|
Brand Agricultural
|
||||||
|
Herbicides (Roundup PowerMAX
|
||||||
|
®
|
||||||
|
, Roundup PowerMAX
|
||||||
|
®
|
||||||
|
3 and
|
||||||
|
Roundup WeatherMAX
|
||||||
|
®
|
||||||
|
herbicides).
|
||||||
|
LEARN MORE
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "harness-xtra-5-6l-herbicide-premix-for-corn",
|
||||||
|
"epa_reg_no": "524-485",
|
||||||
|
"product_name": "Harness Xtra 5.6L Herbicide Premix For Corn",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Acetochlor",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Atrazine",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Harness-Xtra-5.6L_2025pdf",
|
||||||
|
"filename": "Harness-Xtra-5.6L_2025pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-05-15T20:24:25+00:00",
|
||||||
|
"page_count": 2,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/harness-xtra-5-6l-herbicide-premix-for-corn",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:59:39.041979+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
# Harness Xtra 5.6L Herbicide Premix For Corn
|
||||||
|
|
||||||
|
- **Product class:** herbicide
|
||||||
|
- **EPA Reg No:** 524-485
|
||||||
|
- **Active ingredients:** Acetochlor, Atrazine
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/herbicide/harness-xtra-5-6l-herbicide-premix-for-corn
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Harness-Xtra-5.6L_2025pdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Powerful Grass and
|
||||||
|
Broadleaf Weed Control
|
||||||
|
Key Pests
|
||||||
|
• Common Waterhemp
|
||||||
|
• Foxtail Species
|
||||||
|
• Barnyardgrass
|
||||||
|
• Velvetleaf
|
||||||
|
• Common Lambsquarters
|
||||||
|
• Crabgrass Species
|
||||||
|
• Common Ragweed
|
||||||
|
Harness
|
||||||
|
®
|
||||||
|
Xtra 5.6L herbicide is a premix of acetochlor
|
||||||
|
(3.1 lbs ai/gal) and atrazine (2.5 lbs ai/gal) that offers
|
||||||
|
a broad spectrum of weed control in corn, including
|
||||||
|
more than 35 grass and broadleaf weed species.
|
||||||
|
Harness Xtra 5.6L herbicide provides excellent
|
||||||
|
control in all tillage situations and is formulated
|
||||||
|
to deliver a flexible rate range of acetochlor and
|
||||||
|
atrazine depending on geography. In addition, this
|
||||||
|
product has a flexible application window including
|
||||||
|
preplant, preemergence, and early postemergence
|
||||||
|
in corn up to 11 inches.
|
||||||
|
/// BENEFITS
|
||||||
|
• Powerful Weed Control
|
||||||
|
A pre-mix of acetochlor (3.1 lbs ai/gal) and
|
||||||
|
atrazine (2.5 lbs ai/gal) for broad spectrum control
|
||||||
|
of annual grasses and broadleaf
|
||||||
|
weed species
|
||||||
|
• Tillage Flexibility
|
||||||
|
Provides excellent control in all
|
||||||
|
tillage and no-till situations
|
||||||
|
• Application Flexibility
|
||||||
|
Flexible applicationwindow
|
||||||
|
including preplant, preemergence,
|
||||||
|
and early postemergence in corn
|
||||||
|
up to 11 inches
|
||||||
|
• Strong Tank Mix Partner
|
||||||
|
Strong tank-mix partner
|
||||||
|
with other portfolio
|
||||||
|
offerings
|
||||||
|
Formulation Information
|
||||||
|
• Acetochlor (3.1 lbs ai/gal)
|
||||||
|
• Atrazine (2.5 lbs ai/gal)
|
||||||
|
• Suspoemulsion
|
||||||
|
Registered Crops
|
||||||
|
• Field Corn
|
||||||
|
• Production Seed Corn
|
||||||
|
• Corn Silage
|
||||||
|
• Sweet Corn
|
||||||
|
• Popcorn
|
||||||
|
• Miscanthus or other
|
||||||
|
non-food bioenergy
|
||||||
|
crops
|
||||||
|
|
||||||
|
ALWAYS READ AND FOLLOW PESTICIDE LABEL DIRECTIONS.
|
||||||
|
Balance® Flexx, Corvus® and Harness® Xtra 5.6L Herbicide are restricted use pesticides. Not all products are registered for use in
|
||||||
|
all states and may be subject to use restrictions. The distribution, sale, or use of an unregistered pesticide is a violation of federal
|
||||||
|
and/or state law and is strictly prohibited. Check with your local dealer or representative for the product registration status in your
|
||||||
|
state. Bayer, Bayer Cross, Corvus® and Roundup PowerMAX® are registered trademarks of Bayer Group. For additional product
|
||||||
|
information call toll-free 1-866-99-BAYER (1-866-992-2937) or visit our website at www.BayerCropScience.us. Bayer CropScience
|
||||||
|
LP, 800 North Lindbergh Boulevard, St. Louis, MO 63167. ©2025 Bayer Group. All rights reserved.
|
||||||
|
IMPORT ANT : This bulletin is not intended to provide adequate information for
|
||||||
|
use of these products. Read the label before using these products. Observe
|
||||||
|
all label directions and precautions while using these products.
|
||||||
|
*For more information on herbicide group numbers and site-of-action options, visit IWillTakeAction.com
|
||||||
|
Application Rate 1.4 to 3 qts/A
|
||||||
|
Application Timing
|
||||||
|
Preplant, Preemergence,
|
||||||
|
Early Postemergence
|
||||||
|
(up to 11” corn)
|
||||||
|
Site-of-Action
|
||||||
|
Group*
|
||||||
|
5
|
||||||
|
|
||||||
|
15
|
||||||
|
Recommended
|
||||||
|
Tankmix Options
|
||||||
|
Balance Flexx
|
||||||
|
®
|
||||||
|
27
|
||||||
|
herbicide
|
||||||
|
Corvus
|
||||||
|
®
|
||||||
|
|
||||||
|
2
|
||||||
|
|
||||||
|
27
|
||||||
|
herbicide
|
||||||
|
Roundup
|
||||||
|
PowerMAX
|
||||||
|
®
|
||||||
|
3 9
|
||||||
|
herbicide
|
||||||
|
LEARN MORE
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "harness-xtra",
|
||||||
|
"epa_reg_no": "524-480",
|
||||||
|
"product_name": "Harness Xtra Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Acetochlor, 2-chloro-N-ethoxymethyl-N-(2-ethyl-6-methylphenyl)acetamide",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Atrazine (2-chloro-4-ethylamino)-6-(isopropylamino)-s-triazine",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Harness-Xtra_2025pdf",
|
||||||
|
"filename": "Harness-Xtra_2025pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-05-15T20:26:26+00:00",
|
||||||
|
"page_count": 2,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/harness-xtra-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:59:35.769924+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
# Harness Xtra Herbicide
|
||||||
|
|
||||||
|
- **Product class:** herbicide
|
||||||
|
- **EPA Reg No:** 524-480
|
||||||
|
- **Active ingredients:** Acetochlor, 2-chloro-N-ethoxymethyl-N-(2-ethyl-6-methylphenyl)acetamide, Atrazine (2-chloro-4-ethylamino)-6-(isopropylamino)-s-triazine
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/herbicide/harness-xtra-herbicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Harness-Xtra_2025pdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A Pre-mix with Broad-spectrum Weed Control
|
||||||
|
Registered Crops
|
||||||
|
• Field Corn
|
||||||
|
• Production Seed Corn
|
||||||
|
• Corn Silage
|
||||||
|
• Sweet Corn
|
||||||
|
• Popcorn
|
||||||
|
• Miscanthus or other
|
||||||
|
non-food bioenergy
|
||||||
|
crops
|
||||||
|
Key Pests
|
||||||
|
• Waterhemp
|
||||||
|
• Foxtail Species
|
||||||
|
• Barnyardgrass
|
||||||
|
• Velvetleaf
|
||||||
|
• Common
|
||||||
|
Lambsquarters
|
||||||
|
• Crabgrass Species
|
||||||
|
• Common Ragweed
|
||||||
|
Harness
|
||||||
|
®
|
||||||
|
Xtra herbicide is a premix of acetochlor
|
||||||
|
(4.3 lbs ai/gal) and atrazine (1.7 lbs ai/gal) that offers
|
||||||
|
a broad spectrum of weed control in corn, including
|
||||||
|
more than 35 grass and broadleaf weed species.
|
||||||
|
Harness Xtra herbicide provides excellent control in all
|
||||||
|
tillage situations and is formulated to deliver a flexible
|
||||||
|
rate range of acetochlor and atrazine. In addition, this
|
||||||
|
product has a flexible application window including
|
||||||
|
preplant, preemergence, and early postemergence in
|
||||||
|
corn up to 11 inches.
|
||||||
|
/// BENEFITS
|
||||||
|
• Powerful Weed Control
|
||||||
|
A premix of acetochlor (4.3 lbs ai/gal) and atrazine
|
||||||
|
(1.7 lbs ai/gal) for broad spectrum control of annual
|
||||||
|
grasses and broadleaf weed species
|
||||||
|
• Tillage Flexibility
|
||||||
|
Provides excellent control in all tillage and no-till
|
||||||
|
situations
|
||||||
|
• Application Flexibility
|
||||||
|
Flexible application window including preplant,
|
||||||
|
preemergence, and early postemergence in corn
|
||||||
|
up to 11 inches
|
||||||
|
• Strong Tank Mix Partner
|
||||||
|
Strong tank-mix partner with other
|
||||||
|
portfolio offerings
|
||||||
|
Formulation Information
|
||||||
|
• Acetochlor (4.3 lbs ai/gal)
|
||||||
|
• Atrazine (1.7 lbs ai/gal)
|
||||||
|
• Suspoemulsion
|
||||||
|
|
||||||
|
ALWAYS READ AND FOLLOW PESTICIDE LABEL DIRECTIONS.
|
||||||
|
Balance® Flexx, Corvus® and Harness® Xtra Herbicide are restricted use pesticides. Not all products are registered for use in all
|
||||||
|
states and may be subject to use restrictions. The distribution, sale, or use of an unregistered pesticide is a violation of federal
|
||||||
|
and/or state law and is strictly prohibited. Check with your local dealer or representative for the product registration status in your
|
||||||
|
state. Bayer, Bayer Cross, Corvus® and Roundup PowerMAX® are registered trademarks of Bayer Group. For additional product
|
||||||
|
information call toll-free 1-866-99-BAYER (1-866-992-2937) or visit our website at www.BayerCropScience.us. Bayer CropScience
|
||||||
|
LP, 800 North Lindbergh Boulevard, St. Louis, MO 63167. ©2025 Bayer Group. All rights reserved.
|
||||||
|
IMPORTANT: This bulletin is not intended to provide adequate information for
|
||||||
|
use of these products. Read the label before using these products. Observe
|
||||||
|
all label directions and precautions while using these products.
|
||||||
|
For more information on herbicide group numbers and site-of-action options, visit IWillTakeAction.com
|
||||||
|
Application Rate 1.8 to 2.7 qts/A
|
||||||
|
Application Timing
|
||||||
|
Preplant, Preemergence,
|
||||||
|
Early Postemergence
|
||||||
|
(up to 11” corn)
|
||||||
|
Site-of-Action Group* 5 15
|
||||||
|
Recommended
|
||||||
|
Tankmix Options
|
||||||
|
Balance Flexx
|
||||||
|
®
|
||||||
|
27herbicide
|
||||||
|
Corvus
|
||||||
|
®
|
||||||
|
2
|
||||||
|
|
||||||
|
27
|
||||||
|
herbicide
|
||||||
|
Roundup
|
||||||
|
PowerMAX
|
||||||
|
®
|
||||||
|
3 9
|
||||||
|
herbicide
|
||||||
|
LEARN MORE
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "harness",
|
||||||
|
"epa_reg_no": "524-473",
|
||||||
|
"product_name": "Harness Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Acetochlor",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Harness_2025pdf",
|
||||||
|
"filename": "Harness_2025pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-05-15T20:21:54+00:00",
|
||||||
|
"page_count": 2,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/harness-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:56:15.562909+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
# Harness Herbicide
|
||||||
|
|
||||||
|
- **Product class:** herbicide
|
||||||
|
- **EPA Reg No:** 524-473
|
||||||
|
- **Active ingredients:** Acetochlor
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/herbicide/harness-herbicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Harness_2025pdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Outstanding Performance
|
||||||
|
iYou’ve Come to Rely On
|
||||||
|
Harness
|
||||||
|
®
|
||||||
|
herbicide is a straight goods formulation of
|
||||||
|
acetochlor that i s labeled for use in corn, miscanthus
|
||||||
|
and other non-food perennial bioenergy crops. This
|
||||||
|
product offers consistent, s eason-long p erformance
|
||||||
|
against grass and small-seeded broadleaf weeds.
|
||||||
|
Harness can be applied preplant, pre-emergence and
|
||||||
|
early postemergence (up to 11-inch corn), providing
|
||||||
|
greater flexibility and more options for growers.
|
||||||
|
It requires less moisture to activate and provides
|
||||||
|
unsurpassed rotational flexibility.
|
||||||
|
/// BENEFITS
|
||||||
|
• Consistent Weed Control
|
||||||
|
Straight-goods formulation of acetochlor that offers
|
||||||
|
consistent, season-long performance of annual
|
||||||
|
grasses and small-seeded broadleaf weeds
|
||||||
|
• Rotational Flexibility
|
||||||
|
Rotational flexibility for multi-crop growers who
|
||||||
|
rotate to sugarbeets, canola and other crops
|
||||||
|
• Application Flexibility
|
||||||
|
Flexible application window including preplant,
|
||||||
|
pre-emergence and early postemergence in corn
|
||||||
|
up to 11 inches
|
||||||
|
Registered Crops
|
||||||
|
• Field Corn
|
||||||
|
• Production Seed Corn
|
||||||
|
• Silage Corn
|
||||||
|
• Sweet Corn
|
||||||
|
• Miscanthus or other
|
||||||
|
non-food bioenergy
|
||||||
|
crops
|
||||||
|
• Popcorn
|
||||||
|
Key Pests
|
||||||
|
• Common
|
||||||
|
Waterhemp
|
||||||
|
• Woolly Cupgrass
|
||||||
|
• Foxtail Species
|
||||||
|
• Barnyardgrass
|
||||||
|
• Henbit
|
||||||
|
• Common
|
||||||
|
Lambsquarters
|
||||||
|
• Fall Panicum
|
||||||
|
• Goosegrass
|
||||||
|
Formulation Information
|
||||||
|
• Acetochlor
|
||||||
|
(7 lbs ai/gal)
|
||||||
|
• Emulsifiable Concentrate
|
||||||
|
|
||||||
|
ALWAYS READ AND FOLLOW PESTICIDE LABEL DIRECTIONS.
|
||||||
|
Balance® Flexx and Corvus® are restricted use pesticides. Not all products are registered for use in all states and may be subject to use
|
||||||
|
restrictions. The distribution, sale, or use of an unregistered pesticide is a violation of federal and/or state law and is strictly prohibited.
|
||||||
|
Check with your local dealer or representative for the product registration status in your state. Bayer, Bayer Cross, Corvus®, DiFlexx®
|
||||||
|
and Roundup PowerMAX® are registered trademarks of Bayer Group. For additional product information call toll-free 1-866-99-BAYER
|
||||||
|
(1-866-992-2937) or visit our website at www.BayerCropScience.us. Bayer CropScience LP, 800 North Lindbergh Boulevard, St. Louis,
|
||||||
|
MO 63167. ©2025 Bayer Group. All rights reserved.
|
||||||
|
IMPORTANT: This bulletin is not intended to provide adequate information for
|
||||||
|
use of these products. Read the label before using these products. Observe
|
||||||
|
all label directions and precautions while using these products.
|
||||||
|
Application Rate 1.25 to 3 pts/A
|
||||||
|
Application Timing
|
||||||
|
Preplant, Preemergence,
|
||||||
|
Early Postemergence
|
||||||
|
(up to 11” corn)
|
||||||
|
Site-of-Action
|
||||||
|
Group*
|
||||||
|
15
|
||||||
|
Recommended
|
||||||
|
Tankmix Options
|
||||||
|
Atrazine 5
|
||||||
|
Corvus
|
||||||
|
®
|
||||||
|
2
|
||||||
|
|
||||||
|
27
|
||||||
|
herbicide
|
||||||
|
Balance® Flexx 27
|
||||||
|
herbicide
|
||||||
|
DiFlexx
|
||||||
|
®
|
||||||
|
herbicide
|
||||||
|
4
|
||||||
|
Roundup
|
||||||
|
PowerMAX
|
||||||
|
®
|
||||||
|
3 9
|
||||||
|
herbicide
|
||||||
|
*For more information on herbicide group numbers and site-of-action options, visit IWillTakeAction.com
|
||||||
|
LEARN MORE
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "huskie-complete",
|
||||||
|
"epa_reg_no": "264-1135",
|
||||||
|
"product_name": "Huskie Complete Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Pyrasulfotole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Bromoxynil Octanoate",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Bromoxynil Heptanoate",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Thiencarbazone-methyl",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Complete1c_Herbicide_Labelpdf",
|
||||||
|
"filename": "Huskie_Complete1c_Herbicide_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:06:33+00:00",
|
||||||
|
"page_count": 13,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "HUSKIE COMPLETE HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Complete_Herbicide1fd_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:04:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "HUSKIE COMPLETE HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Complete_Herbicide1df_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:59:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Huskie Complete & 2,4-D Ester or Widematch or Stinger Herbicide in Tank Mixture for Canada Thistle Suppression in Winter & Spring Wheat (Not for Use on Durum Wheat)",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Complete_Herbicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:19:41+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Huskie Complete Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie-Complete_2025pdf",
|
||||||
|
"last_modified": "2026-05-15T18:05:41+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/huskie-complete-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:55:56.385902+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,741 @@
|
|||||||
|
# Huskie Complete Herbicide
|
||||||
|
|
||||||
|
- **Product class:** herbicide
|
||||||
|
- **EPA Reg No:** 264-1135
|
||||||
|
- **Active ingredients:** Pyrasulfotole, Bromoxynil Octanoate, Bromoxynil Heptanoate, Thiencarbazone-methyl
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/herbicide/huskie-complete-herbicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Huskie_Complete1c_Herbicide_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
US84995908C (221219C) Huskie Complete Herbicide 2.14 Gal ETL
|
||||||
|
colors: cmyk 08/23/23 (Label Coordinator: Mark Schmidt)
|
||||||
|
Herbicide
|
||||||
|
Net
|
||||||
|
Contents:
|
||||||
|
2.14 Gallons
|
||||||
|
US84995908C 221219C 08/23
|
||||||
|
For Selective Postemergence Control of
|
||||||
|
Annual Grasses and Annual Broadleaf
|
||||||
|
Weeds in Wheat, including Durum Wheat.
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Thiencarbazone-methyl . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .0.45%
|
||||||
|
Pyrasulfotole . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2.82%
|
||||||
|
Bromoxynil . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .22.56%*
|
||||||
|
OTHER INGREDIENTS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .74.17%
|
||||||
|
* Represents Bromoxynil esters (octanoate+heptanoate) . TOTAL: 100.00%
|
||||||
|
Bromoxynil is present as bromoxynil phenol and mixed octanoate and heptanoate esters at 15 .77% in
|
||||||
|
bromoxynil phenol equivalent .
|
||||||
|
Contains petroleum distillates .
|
||||||
|
Contains 0 .042 pound Thiencarbazone-methyl, 0 .26 pound Pyrasulfotole, 1 .46 pounds Bromoxynil as
|
||||||
|
phenol or 2 .09 pounds bromoxynil esters per gallon .
|
||||||
|
EPA Reg. No. 264-1135
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
DANGER PELIGRO
|
||||||
|
Si usted no entiende la etiqueta, busque a alguien para que se la explique a usted en detalle. (If you do not
|
||||||
|
understand the label, find someone to explain it to you in detail.)
|
||||||
|
Please refer to booklet for additional precautionary statements and directions for use.
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
HUSKIE is a registered trademark of Bayer Group.
|
||||||
|
©2023 Bayer Group. All rights reserved.
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
Due to toxicity categories.
|
||||||
|
For retail sale to and use only by Certified Applicators or persons under their direct supervision
|
||||||
|
and only for those uses covered by the Certified Applicator’s certification.
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
GROUPBROMOXYNIL
|
||||||
|
PYRASULFOTOLE
|
||||||
|
HERBICIDE
|
||||||
|
HERBICIDE
|
||||||
|
HERBICIDE
|
||||||
|
2
|
||||||
|
27
|
||||||
|
6
|
||||||
|
THIENCARBAZONE-METHYL
|
||||||
|
|
||||||
|
1
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for 15-20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first 5 minutes, then continue rinsing.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF ON SKIN OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF SWALLOWED: • Immediately call a poison control center or doctor for treatment advice.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison control center or doctor.
|
||||||
|
• Do not give any liquid to the person. Do not give anything by mouth to an unconscious
|
||||||
|
person.
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling a poison control center or doctor or going
|
||||||
|
for treatment.
|
||||||
|
NOTE TO PHYSICIAN: No specific antidote is available. Possible mucosal damage may contraindicate the
|
||||||
|
use of gastric lavage. May pose an aspiration pneumonia hazard.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
DANGER
|
||||||
|
Corrosive. Causes irreversible eye damage. May be fatal if swallowed. Harmful if absorbed through skin.
|
||||||
|
Avoid contact with skin or clothing. Do not get in eyes or on clothing. Wear protective eyewear (goggles,
|
||||||
|
face shield, or safety glasses). Prolonged or frequently repeated skin contact may cause allergic reactions
|
||||||
|
in some individuals.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Applicators and other handlers must wear: Long-sleeved shirt and long pants, socks, shoes, chemical
|
||||||
|
resistant gloves made of barrier laminate, butyl rubber > 14 mils, nitrile rubber > 14 mils, neoprene rubber
|
||||||
|
> 14 mils, natural rubber ≥ 14 mils, polyethylene polyvinyl chloride (PVC) ≥ 14 mils, Viton ≥ 14 mils, and
|
||||||
|
protective eyewear (safety glasses).
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions for washables exist,
|
||||||
|
use detergent and hot water. Keep and wash PPE separately from other laundry.
|
||||||
|
Discard clothing and other absorbent materials that have been drenched or heavily contaminated with this
|
||||||
|
product’s concentrate. Do not reuse them. Follow manufacturer’s instructions for cleaning/maintaining Personal
|
||||||
|
Protective Equipment (PPE). If no such instructions for washables exists, use detergent and hot water. Keep and
|
||||||
|
wash PPE separately from other laundry.
|
||||||
|
ENGINEERING CONTROL STATEMENT
|
||||||
|
When handlers use closed systems, enclosed cabs, or aircraft in a manner that meets the requirements listed
|
||||||
|
in the Worker Protection Standard (WPS) for agricultural pesticides (40 CFR 170.240(d)(4-6), the handler PPE
|
||||||
|
requirements may be reduced or modified as specified in the WPS.
|
||||||
|
Handlers must use closed mixing loading systems during mixing/loading liquids for aerial applications to fallow
|
||||||
|
land and high-acreage field crops.
|
||||||
|
USER SAFETY RECOMMENDATIONSUsers should:
|
||||||
|
• Wash hands before eating, drinking, chewing gum, using tobacco or using the toilet.
|
||||||
|
• Remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly and put on clean clothing.
|
||||||
|
• Remove PPE immediately after handling this product. Wash the outside of gloves before removing. As soon as
|
||||||
|
possible, wash thoroughly and change into clean clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
This pesticide is toxic to fish and aquatic invertebrates. Do not apply directly to water, or to areas where surface
|
||||||
|
water is present or to intertidal areas below the mean high water mark. Do not contaminate any body of water
|
||||||
|
and do not apply when/where conditions could favor runoff. Do not contaminate water by cleaning of equipment or
|
||||||
|
disposal of equipment washwaters or rinsate. Do not allow sprays to drift onto desirable plants. Drift or runoff may
|
||||||
|
adversely affect non-target plants.
|
||||||
|
Ground Water Advisory
|
||||||
|
This chemical has properties and characteristics associated with chemicals detected in groundwater. This
|
||||||
|
chemical may leach into groundwater if used in areas where soils are permeable, particularly where the
|
||||||
|
water table is shallow.
|
||||||
|
Users are advised not to apply pyrasulfotole where soils have a rapid to very rapid permeability (such as loamy sand
|
||||||
|
to sand) and the water table of an underlying aquifer is shallow or to soils containing sinkholes over limestone
|
||||||
|
bedrock, severely fractured surfaces, and substrates which would allow direct introduction into an aquifer. Your local
|
||||||
|
agricultural agencies can provide further information on the type of soil in your area and the location of groundwater.
|
||||||
|
|
||||||
|
2
|
||||||
|
Surface Water Advisories
|
||||||
|
This product may impact surface water quality due to runoff of rain water. This is especially true for poorly
|
||||||
|
draining soils and soils with shallow ground water. This product is classified as having a medium potential
|
||||||
|
for reaching both surface water and aquatic sediment via runoff for several months or more after application.
|
||||||
|
A level, well-maintained vegetative buffer strip between areas to which this product is applied and surface
|
||||||
|
water features such as ponds, streams, and springs will reduce the potential loading of pyrasulfotole and
|
||||||
|
thiencarbazone-methyl from runoff water and sediment. Runoff of this product will be reduced by avoiding
|
||||||
|
applications when rainfall or irrigation is expected to occur within 48 hours.
|
||||||
|
Non-Target Organism Advisory
|
||||||
|
This product is toxic to plants and may adversely impact the forage and habitat of non-target organisms,
|
||||||
|
including pollinators, in areas adjacent to the treated site. Protect the forage and habitat of non-target
|
||||||
|
organisms by following label directions intended to minimize spray drift.
|
||||||
|
Reporting Ecological Incidents:
|
||||||
|
To report ecological incidents, including mortality, injury, or harm to plants and animals, call 1-866-99BAYER
|
||||||
|
(1-866-992-2937).
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with its labeling.
|
||||||
|
Do not use this product until you have read the entire label. Do not apply this product in a way that will contact
|
||||||
|
workers or other persons, either directly or through drift. Only protected handlers may be in the area during
|
||||||
|
application.
|
||||||
|
For any requirements specific to your State or Tribe, consult the agency responsible for pesticide regulation.
|
||||||
|
ENDANGERED SPECIES PROTECTION REQUIREMENTS
|
||||||
|
It is a Federal offense to use any pesticide in a manner that results in an unauthorized “take” (e.g., kill or otherwise
|
||||||
|
harm) of an endangered species and certain threatened species, under the Endangered Species Act section 9.
|
||||||
|
When using this product, you must follow the measures contained in the Endangered Species Protection Bulletin for
|
||||||
|
the area in which you are applying the product. You must obtain a Bulletin no earlier than six months before using
|
||||||
|
this product. To obtain Bulletins, consult http://www.epa.gov/espp/, call 1-844-447-3813, or email ESPP@epa.gov.
|
||||||
|
You must use the Bulletin valid for the month in which you will apply the product.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection Standard, 40 CFR
|
||||||
|
part 170. This Standard contains requirements for the protection of agricultural workers on farms,
|
||||||
|
forests, nurseries, and greenhouses, and handlers of agricultural pesticides. It contains requirements for
|
||||||
|
training, decontamination, notification, and emergency assistance. It also contains specific instructions
|
||||||
|
and exceptions pertaining to the statements on this label about personal protective equipment (PPE), and
|
||||||
|
restricted-entry interval. The requirements in this box only apply to uses of this product that are covered by
|
||||||
|
the Worker Protection Standard.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted entry interval (REI) of 24 hours.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted-entry interval (REI) of 2 days for
|
||||||
|
grass.
|
||||||
|
For early entry to treated areas that is permitted under the Worker Protection Standard and that involves contact
|
||||||
|
with anything that has been treated, such as plants, soil, or water, wear: coveralls over long-sleeved shirt and
|
||||||
|
long pants; socks and chemical resistant footwear. Wear goggles or face shield, and chemical resistant gloves
|
||||||
|
made of barrier laminate, butyl rubber > 14 mils, nitrile rubber > 14 mils, or neoprene rubber > 14 mils, natural
|
||||||
|
rubber ≥ 14 mils, polyethylene polyvinyl chloride (PVC) ≥ 14 mils, or Viton ≥ 14 mils.
|
||||||
|
USE INFORMATION
|
||||||
|
HUSKIE® COMPLETE Herbicide is designed for broad-spectrum postemergence control of important grass and
|
||||||
|
broadleaf weed species in wheat (including durum wheat).
|
||||||
|
ENVIRONMENTAL AND BIOLOGICAL ACTIVITY
|
||||||
|
HUSKIE COMPLETE Herbicide is a postemergence herbicide and best results are obtained when applications
|
||||||
|
are made to young actively growing weeds. HUSKIE COMPLETE Herbicide is primarily absorbed through the
|
||||||
|
foliage and thorough spray coverage is important. Do not apply to a crop that is under stress due to abnormal
|
||||||
|
environmental conditions such as extreme heat, low fertility, drought, flooding or disease and/or insect
|
||||||
|
damage as crop injury may result.
|
||||||
|
|
||||||
|
3
|
||||||
|
Mandatory Spray Drift
|
||||||
|
Aerial Applications
|
||||||
|
• Do not release spray at a height greater than 10 ft above the ground or vegetative canopy, unless a
|
||||||
|
greater application height is necessary for pilot safety.
|
||||||
|
• Applicators are required to use a medium or coarser droplet size (ASABE S641).
|
||||||
|
• Do not apply when wind speeds exceed 10 mph at the application site.
|
||||||
|
• The boom length must be 75% or less of the wingspan for fixed-wing aircraft and 90% or less of the rotor
|
||||||
|
diameter for helicopters.
|
||||||
|
• Applicators must use ½ swath displacement upwind at the downwind edge of the field.
|
||||||
|
• Do not apply during temperature inversions.
|
||||||
|
Ground Boom Applications
|
||||||
|
• Do not apply at a release height greater than 4 feet above the ground or crop canopy.
|
||||||
|
• Applicators are required to use a fine or coarser droplet size (ASABE S572).
|
||||||
|
• Do not apply when wind speeds exceed 10 mph at the application site.
|
||||||
|
• Do not apply during temperature inversions
|
||||||
|
SPRAY DRIFT ADVISORIES
|
||||||
|
THE APPLICATOR IS RESPONSIBLE FOR AVOIDING OFF-SITE SPRAY DRIFT.
|
||||||
|
BE AWARE OF NEARBY NON-TARGET SITES AND ENVIRONMENTAL CONDITIONS.
|
||||||
|
Importance Of Droplet Size
|
||||||
|
An effective way to reduce spray drift is to apply large droplets. Use the largest droplets that provide target
|
||||||
|
pest control. While applying larger droplets will reduce spray drift, the potential for drift will be greater if
|
||||||
|
applications are made improperly or under unfavorable environmental conditions.
|
||||||
|
Controlling Droplet Size - Ground Boom
|
||||||
|
• Volume - Increasing the spray volume so that larger droplets are produced will reduce spray drift. Use
|
||||||
|
the highest practical spray volume for the application. If a greater spray volume is needed, consider
|
||||||
|
using a nozzle with a higher flow rate.
|
||||||
|
• Pressure - Use the lowest spray pressure recommended for the nozzle to produce the target spray
|
||||||
|
volume and droplet size.
|
||||||
|
• Spray Nozzle - Use a spray nozzle that is designed for the intended application. Consider using nozzles
|
||||||
|
designed to reduce drift.
|
||||||
|
Controlling Droplet Size - Aircraft
|
||||||
|
Adjust Nozzles - Follow nozzle manufacturers recommendations for setting up nozzles. Generally, to reduce
|
||||||
|
fine droplets, nozzles should be oriented parallel with the airflow in flight.
|
||||||
|
Boom Height - Ground Boom
|
||||||
|
For ground equipment, the boom should remain level with the crop and have minimal bounce.
|
||||||
|
Release Height - Aircraft
|
||||||
|
Higher release heights increase the potential for spray drift.
|
||||||
|
Shielded Sprayers
|
||||||
|
Shielding the boom or individual nozzles can reduce spray drift. Consider using shielded sprayers. Verify that
|
||||||
|
the shields are not interfering with the uniform deposition of the spray on the target area.
|
||||||
|
Temperature And Humidity
|
||||||
|
When making applications in hot and dry conditions, use larger droplets to reduce effects of evaporation.
|
||||||
|
Temperature Inversions
|
||||||
|
Drift potential is high during a temperature inversion. Temperature inversions are characterized by increasing
|
||||||
|
temperature with altitude and are common on nights with limited cloud cover and light to no wind. The
|
||||||
|
presence of an inversion can be indicated by ground fog or by the movement of smoke from a ground source
|
||||||
|
or an aircraft smoke generator. Smoke that layers and moves laterally in a concentrated cloud (under low
|
||||||
|
wind conditions) indicates an inversion, while smoke that moves upward and rapidly dissipates indicates
|
||||||
|
good vertical air mixing.
|
||||||
|
Wind
|
||||||
|
Drift potential generally increases with wind speed. AVOID APPLICATIONS DURING GUSTY WIND CONDITIONS.
|
||||||
|
Applicators need to be familiar with local wind patterns and terrain that could affect spray drift.
|
||||||
|
Boomless Ground Applications:
|
||||||
|
Setting nozzles at the lowest effective height will help to reduce the potential for spray drift.
|
||||||
|
Handheld Technology Applications:
|
||||||
|
Take precautions to minimize spray drift.
|
||||||
|
|
||||||
|
4
|
||||||
|
WEED RESISTANCE MANAGEMENT
|
||||||
|
For resistance management, please note that HUSKIE COMPLETE Herbicide contains both a Group 6, Group
|
||||||
|
2, and Group 27 herbicide. Any weed population may contain plants naturally resistant to Group 2, Group 6
|
||||||
|
and/or Group 27 herbicides. The resistant individuals may dominate the weed population if these herbicides
|
||||||
|
are used repeatedly in the same fields. Appropriate resistance-management strategies should be followed.
|
||||||
|
To delay herbicide resistance take one or more of the following steps:
|
||||||
|
• Rotate the use of HUSKIE COMPLETE Herbicide or other Group 6, Group 2, and Group 27 herbicides within
|
||||||
|
a growing season sequence or among growing seasons with different herbicide groups that control the
|
||||||
|
same weeds in a field.
|
||||||
|
• Use tank mixtures with herbicides from a different group if such use is permitted; where information
|
||||||
|
on resistance in target weed species is available, use the less resistance-prone partner at a rate that
|
||||||
|
will control the target weed(s) equally as well as the more resistance-prone partner. Consult your local
|
||||||
|
extension service or certified crop advisor if you are unsure as to which active ingredient is currently less
|
||||||
|
prone to resistance.
|
||||||
|
• Adopt an integrated weed-management program for herbicide use that includes scouting and uses
|
||||||
|
historical information related to herbicide use and crop rotation, and that considers tillage ( or other
|
||||||
|
mechanical control methods), cultural ( e.g., higher crop seeding rates; precision fertilizer application
|
||||||
|
method and timing to favor the crop and not the weeds), biological (weed-competitive crops or varieties)
|
||||||
|
and other management practices.
|
||||||
|
• Scout after herbicide application to monitor weed populations for early signs of resistance development.
|
||||||
|
Indicators of possible herbicide resistance include: (1) failure to control a weed species normally
|
||||||
|
controlled by the herbicide at the dose applied, especially if control is achieved on adjacent weeds; (2)
|
||||||
|
a spreading patch of non-controlled plants of a particular weed species; (3) surviving plants mixed with
|
||||||
|
controlled individuals of the same species. If resistance is suspected, prevent weed seed production in
|
||||||
|
the affected area by an alternative herbicide from a different group or by a mechanical method such as
|
||||||
|
hoeing or tillage. Prevent movement of resistant weed seeds to other fields by cleaning harvesting and
|
||||||
|
tillage equipment when moving between fields, and planting clean seed.
|
||||||
|
• If a weed pest population continues to progress after treatment with this product, discontinue use of this
|
||||||
|
product, and switch to another management strategy or herbicide with a different mode of action, if available.
|
||||||
|
• Contact your local extension specialist or certified crop advisors for additional pesticide resistance-management
|
||||||
|
and/or integrated weed-management recommendations for specific crops and weed biotypes.
|
||||||
|
For further information or to report suspected resistance contact Bayer CropScience at 1-866-99BAYER
|
||||||
|
(1-866-992-2937). You can also contact your pesticide distributor or university extension specialist to
|
||||||
|
report resistance.
|
||||||
|
CROPS
|
||||||
|
HUSKIE COMPLETE Herbicide may be used in winter and spring wheat, including durum.
|
||||||
|
APPLICATION TIMING
|
||||||
|
Wheat
|
||||||
|
Apply HUSKIE COMPLETE Herbicide to the crop from 1 leaf up to 60 days prior to harvest in the states of
|
||||||
|
Minnesota, Montana, North Dakota, and South Dakota, and up to 70 days prior to harvest in other states. Do
|
||||||
|
not apply to crops under sown with legume species.
|
||||||
|
Weed Application Timing
|
||||||
|
Grass Weeds: HUSKIE COMPLETE Herbicide will control susceptible grass weeds in the 1-leaf (fully expanded)
|
||||||
|
up to the emergence of the 2nd tiller.
|
||||||
|
Broadleaf Weeds: See BROADLEAF WEED CONTROL CHART for a list of susceptible weed species and
|
||||||
|
maximum stage of growth at application for best results.
|
||||||
|
APPLICATION DOSAGE and METHODS
|
||||||
|
Dosage
|
||||||
|
Apply 13.7 fluid ounces per acre. Do not use less than 13.7 fl oz of HUSKIE COMPLETE Herbicide per acre. One case
|
||||||
|
will treat 40 acres.
|
||||||
|
Nitrogen sources
|
||||||
|
For optimal weed control, a spray grade quality ammonium sulfate fertilizer (21-0-0-24) from 0.5 lb/A up to 1.0
|
||||||
|
lb/A or a spray grade quality urea ammonium nitrate fertilizer (28-0-0 or 30-0-0 or 32-0-0) from 1 pt/A up to 1
|
||||||
|
qt/A may be added to HUSKIE COMPLETE Herbicide. If using an AMS or UAN containing product with a different
|
||||||
|
concentration, adjust the rate accordingly.
|
||||||
|
Compatibility
|
||||||
|
If HUSKIE COMPLETE Herbicide is to be tank mixed with liquid fertilizers, compatibility should be tested prior
|
||||||
|
to mixing. Do not use additives that alter the spray solution below 6.0 pH. Best results are obtained at spray
|
||||||
|
solution pH of 6.0 – 8.0.
|
||||||
|
|
||||||
|
5
|
||||||
|
Ground Application
|
||||||
|
Apply the appropriate dosage broadcast in 10 or more gallons of water per acre. Under conditions where large
|
||||||
|
grass weeds or dense weed populations are present or adverse environmental conditions exist, a greater
|
||||||
|
spray volume of 15 – 20 gallons of spray solution per acre is required for best weed control. Do not apply with
|
||||||
|
hollow cone type nozzles or other nozzles that produce a fine droplet spray. Use nozzles and spray pressure
|
||||||
|
for ground application that deliver medium spray droplets as indicated in the nozzle manufacturer’s catalogs
|
||||||
|
such as 80-degree or 110-degree flat-fan nozzles in accordance with ASABE Standard S-572.1 for optimum
|
||||||
|
spray coverage and canopy penetration. Use screens that are 50 mesh or larger.
|
||||||
|
Do not use flood-jet nozzles or cone nozzles. Nozzle types, nozzle spacings, and lower spray pressures that
|
||||||
|
produce coarse spray droplets may not provide adequate coverage of the weeds to ensure optimum control.
|
||||||
|
See the Spray Drift section of this label for additional information on proper application of HUSKIE COMPLETE
|
||||||
|
Herbicide.
|
||||||
|
Aerial Application
|
||||||
|
Calibrate aerial (fixed wing or helicopter) spray equipment prior to use. HUSKIE COMPLETE Herbicide should
|
||||||
|
be applied in a minimum spray volume of 5 gallons per acre if crop canopy and weed density allow adequate
|
||||||
|
spray coverage.
|
||||||
|
WEED CONTROL DIRECTIONS
|
||||||
|
HUSKIE COMPLETE Herbicide is a postemergence herbicide and best results are obtained when applications
|
||||||
|
are made to young actively growing weeds. Treat heavy weed infestations before they become competitive
|
||||||
|
with the crop. Thorough coverage of weeds is necessary to obtain good weed control.
|
||||||
|
Postemergence application of HUSKIE COMPLETE Herbicide will control the following grass and broadleaf weeds.
|
||||||
|
Grass Weed Control Chart
|
||||||
|
HUSKIE COMPLETE Herbicide will control susceptible grass weeds, including ACC-ace resistant ones, in the
|
||||||
|
1-leaf (fully expanded) up to the emergence of the 2nd tiller.
|
||||||
|
Grass Weed Species,
|
||||||
|
Common Name
|
||||||
|
Grass Weed Species,
|
||||||
|
Scientific Name
|
||||||
|
Wild oat Avena fatua
|
||||||
|
Green foxtail Setaria viridis
|
||||||
|
Yellow foxtail Setaria pumila
|
||||||
|
Barnyardgrass Echinochloa crus-galli
|
||||||
|
Canaryseed Phalaris canariensis
|
||||||
|
Broadleaf Weed Control Chart
|
||||||
|
Weed species controlled by HUSKIE COMPLETE Herbicide:
|
||||||
|
Weed Species Scientific name Weed Size
|
||||||
|
Bedstraw, catchweed/cleavers1 Galium aparine 1 - 6 whorls
|
||||||
|
Bittercress, small-flowered Cardamine parviflora 1 - 4 leaf
|
||||||
|
Buckwheat, wild Polygonum convolvulus 1- 6 leaf
|
||||||
|
Catchfly, nightflowering Silene noctiflora 1 - 4 leaf
|
||||||
|
Chickweed, common1 Stellaria media 1 - 6 leaf
|
||||||
|
Cocklebur, common Xanthium strumarium 1 - 4 leaf
|
||||||
|
Cockle, white 2 Melandrium noctiflorum 1 - 6 leaf
|
||||||
|
Cowcockle Vaccaria pyramidata 1 - 6 leaf
|
||||||
|
Dandelion 2 Taraxacum officinale 3 inch rosette
|
||||||
|
Field pennycress Thlaspi arvense 1 - 8 leaf or 4 inch diameter
|
||||||
|
Flixweed Descurainia sophia 4 inch diameter
|
||||||
|
Gromwell, corn Lithospermum arvense 1 - 6 leaf
|
||||||
|
Henbit Lamium amplexicaule 1 - 6 leaf
|
||||||
|
Hawksbeard, narrowleaf Crepis tectorum 1 - 4 leaf
|
||||||
|
Hempnettle, common Galeopsis tetrahit 1 - 6 leaf
|
||||||
|
Horseweed/Marestail1 Conyza canadensis 1 - 4 leaf
|
||||||
|
Kochia1 Kochia scoparia 1- 4 inch
|
||||||
|
Lambsquarters, common Chenopodium album 1 - 6 leaf
|
||||||
|
London rocket Sisymbrium irio 1 - 6 leaf
|
||||||
|
Mallow, common Malva neglecta 1 - 4 leaf
|
||||||
|
Marshelder Iva xanthifolia 1 - 4 leaf
|
||||||
|
Mustard, birdsrape/wild turnip Brassica rapa 1- 6 leaf or 4 inch diameter
|
||||||
|
Mustard, black Brassica nigra 1- 6 leaf or 4 inch diameter
|
||||||
|
Mustard, blue Chorispora tenella 1- 6 leaf or 4 inch diameter
|
||||||
|
|
||||||
|
6
|
||||||
|
Weed Species Scientific name Weed Size
|
||||||
|
Mustard, tumble/Jim Hill mustard Sisymbrium altissimum 1- 6 leaf or 4 inch diameter
|
||||||
|
Mustard, wild Sinapis arvensis 1- 6 leaf or 4 inch diameter
|
||||||
|
Nightshade, cutleaf Solanum triflorum 1 - 4 leaf
|
||||||
|
Nightshade, Eastern black Solanum ptycanthum 1 - 4 leaf
|
||||||
|
Nightshade, hairy Solanum sarrachoides 1 - 4 leaf
|
||||||
|
Palmer pigweed/Palmer amaranth Amaranthus palmeri 1 - 6 leaf
|
||||||
|
Pennsylvania smartweed Polygonum pensylvanicum 1 - 6 leaf
|
||||||
|
Pigweed, prostrate Amaranthus blitoides 1 - 6 leaf
|
||||||
|
Pigweed, redroot Amaranthus retroflexus 1 - 6 leaf
|
||||||
|
Prickly lettuce Lactuca serriola 1 - 6 leaf
|
||||||
|
Radish, wild Raphanus raphanistrum 1- 6 leaf or 4 inch diameter
|
||||||
|
Ragweed, common Ambrosia elatior 1 - 4 leaf
|
||||||
|
Ragweed, giant Ambrosia trifida 1 - 4 leaf
|
||||||
|
Russian thistle1 Salsola kali 2 inch
|
||||||
|
Shepherd’s-purse Capsella bursa-pastoris 1- 6 leaf or 4 inch diameter
|
||||||
|
Smartweed, pale Polygonum lapathifolium 1 - 4 leaf
|
||||||
|
Sowthistle1, annual Sonchus oleraceus 1 - 6 leaf
|
||||||
|
Sowthistle,1 spiny Sonchus asper 1 - 6 leaf
|
||||||
|
Sunflower1, annual Helianthus annuus 1 - 6 leaf
|
||||||
|
Tansymustard Descurainia pinnata 4 inch diameter
|
||||||
|
Velvetleaf Abultilon theophrasti 1 - 4 leaf
|
||||||
|
Vol. canola Brassica napus 1- 6 leaf or 4 inch diameter
|
||||||
|
Vol. soybean Glycine max 1 - 4 trifoliates
|
||||||
|
Wallflower, bushy Erysimum repandum 4 inch rosette
|
||||||
|
Waterhemp, tall Amaranthus tuberculatos 1 - 6 leaf
|
||||||
|
Western salsify Tragopogon dubius 1 - 4 leaf
|
||||||
|
1 Includes ALS, phenoxy, or glyphosate resistant biotypes
|
||||||
|
2 Non-overwintered plants
|
||||||
|
Partial Control
|
||||||
|
Bindweed, field Convolvulus arvensis
|
||||||
|
Japanese Brome Bromus japonicus
|
||||||
|
Canada thistle Cirsium arvense
|
||||||
|
Catchfly, cone Silene conoidea
|
||||||
|
Catchfly, conical Silene colorata
|
||||||
|
Chamomile, false Matricaria maritima
|
||||||
|
Dandelion (established) Taraxacum officinale
|
||||||
|
Dock, curly Rumex crispus
|
||||||
|
Jersalem artichoke Helianthus tuberosus
|
||||||
|
Lanceleaf sage Salvia reflexa
|
||||||
|
Persian darnel Lolium persicum
|
||||||
|
Pepperweed, Virginia Lepidium virginicum
|
||||||
|
Sowthistle1, perennial Sonchus arvensis
|
||||||
|
Swinecress Coronopus sp.
|
||||||
|
Volunteer flax Linum usitatissimum
|
||||||
|
Wormwood, absinth Artemesia absinthium
|
||||||
|
Wormood, biennial Artemisia biennis
|
||||||
|
Partially controlled weeds will be stunted in growth and/or be reduced in number as compared to non-treated
|
||||||
|
areas and performance may not be commercially acceptable. Best results are obtained when weeds are treated
|
||||||
|
with HUSKIE COMPLETE Herbicide before they reach 4 inches in height. The degree of weed control will vary
|
||||||
|
with weed size, density, coverage, and growing conditions.
|
||||||
|
|
||||||
|
7
|
||||||
|
TANK MIX INSTRUCTIONS
|
||||||
|
Compatibility Testing With Tank Mix Partners
|
||||||
|
If HUSKIE COMPLETE Herbicide is to be tank mixed with other pesticides, compatibility should be tested
|
||||||
|
prior to mixing. To test for compatibility, use a small container and mix a small amount (0.5 to 1 qt) of spray,
|
||||||
|
combining all ingredients in the same ratio as the anticipated use. If any indications of physical incompatibility
|
||||||
|
develop, do not use this mixture for spraying. Indications of incompatibility usually will appear within 5-15
|
||||||
|
minutes after mixing. Read and follow the label of each tank-mix product used for precautionary statements,
|
||||||
|
directions for use, geographic and other restrictions.
|
||||||
|
Tank mixtures for Insect and Disease Control
|
||||||
|
HUSKIE COMPLETE Herbicide may be applied in tank mix combination with labeled rates of insecticide and
|
||||||
|
fungicide products labeled for postemergence use in wheat at the corresponding herbicide timing. Refer
|
||||||
|
to the specific fungicide and insecticide labels for use directions, application rates, application timings,
|
||||||
|
restrictions and a list of pests controlled.
|
||||||
|
Follow mixing instructions as outlined on this label. When tank mixing, do not exceed specified application rates
|
||||||
|
and use only in accordance with the most restrictive precautions and limitations on the respective product labels.
|
||||||
|
Do not apply HUSKIE COMPLETE herbicide in tank mixture with tebuconazole.
|
||||||
|
Tank mix applications of herbicides with fungicides may cause temporary yellowing, leaf burn and or height reduction
|
||||||
|
of the crop.
|
||||||
|
Tank mixtures For Weed Control
|
||||||
|
HUSKIE COMPLETE Herbicide is a broad-spectrum herbicide. However, in certain weed control situations, it
|
||||||
|
may be advantageous to tank mix HUSKIE COMPLETE Herbicide with the herbicides listed below to provide
|
||||||
|
expanded weed control. When tank mixing, read and follow the precautionary statements, directions for use,
|
||||||
|
weeds controlled, geographic, and other restrictions on the labeling of each tank mix partner used. Use in
|
||||||
|
accordance with the most restrictive label limitations and precautions. Do not mix with dicamba containing
|
||||||
|
products as grass control will be reduced.
|
||||||
|
Possible tank-mix partners include:
|
||||||
|
EXPRESS®
|
||||||
|
MCP Ester 1
|
||||||
|
OLYMPUS™ 2
|
||||||
|
1 MCP Ester may be added as a broadleaf tank mix partner with HUSKIE COMPLETE Herbicide at no more
|
||||||
|
than 0.25 lb ai/A.
|
||||||
|
2 Olympus can be added to HUSKIE COMPLETE Herbicide at a rate of 0.2 oz/A. Refer to Olympus label concerning crop
|
||||||
|
rotation restrictions.
|
||||||
|
MIXING INSTRUCTIONS
|
||||||
|
HUSKIE COMPLETE Herbicide must be applied with clean and properly calibrated equipment. Prior to adding
|
||||||
|
HUSKIE COMPLETE Herbicide to the spray tank, ensure that the spray tank, filters, and nozzles have been
|
||||||
|
thoroughly cleaned. In-line strainers and nozzle screens should be 50 mesh or coarser.
|
||||||
|
1. Fill the spray tank 1/4 to 1/2 full with clean water and begin agitation or bypass.
|
||||||
|
2. Add the appropriate rate of HUSKIE COMPLETE Herbicide directly to the spray tank. Maintain sufficient
|
||||||
|
agitation during both mixing and application. DO NOT pre-slurry by adding any quantity of HUSKIE
|
||||||
|
COMPLETE Herbicide to a small amount of water.
|
||||||
|
3. Add a listed tank mix partner, if desired.
|
||||||
|
4. Fill the spray tank with balance of water needed.
|
||||||
|
5. Continue agitation during HUSKIE COMPLETE Herbicide application to ensure uniform spray coverage.
|
||||||
|
HUSKIE COMPLETE Herbicide may settle if left standing without agitation. If the spray solution is allowed to
|
||||||
|
stand for one hour or more, re-agitate the spray solution for a minimum of 10 minutes before application.
|
||||||
|
TANK CLEANUP PROCEDURE
|
||||||
|
1. Drain the tank completely, and then wash out tank, boom and hoses with clean water. Drain again.
|
||||||
|
2. Half fill the tank with clean water and add ammonia (i.e., 3% domestic ammonia solution) at a dilution rate of
|
||||||
|
1% (i.e., 1 gallon of domestic ammonia for every 100 gallons of rinsate). Complete filling of the tank with water.
|
||||||
|
Agitate/recirculate and flush through boom and hoses. Leave agitation on for 10 minutes. Drain tank completely.
|
||||||
|
3. Repeat step 2.
|
||||||
|
4. Remove nozzles and screens and soak them in a 1% ammonia solution. Inspect nozzles and screens and
|
||||||
|
remove visible residues.
|
||||||
|
5. Flush tank, boom, and hoses with clean water.
|
||||||
|
6. Inspect tank for visible residues. If present, repeat step 2.
|
||||||
|
CROP ROTATION GUIDELINES
|
||||||
|
The following crops have been field-tested and may be safely planted at the prescribed interval after an
|
||||||
|
application of HUSKIE COMPLETE Herbicide. HUSKIE COMPLETE Herbicide breakdown in the soil is due mainly
|
||||||
|
to microbial action. Under adverse conditions such as cold and drought, degradation may be slowed.
|
||||||
|
|
||||||
|
8
|
||||||
|
Where a crop is not specified, conduct a field bioassay as described in “FIELD BIOASSAY” section of this label.
|
||||||
|
Do not plant any rotational crop within 90 days following application.
|
||||||
|
3 Month: Wheat.
|
||||||
|
9 Month: Alfalfa*, Barley (spring), Canola, Corn (field), Dry Beans, Grain Sorghum, Flax, Oats (spring), Peas**
|
||||||
|
(field), Soybeans, Sugarbeets, Sunflowers.
|
||||||
|
18 Months: Lentils, Potatoes.
|
||||||
|
* Thorough tillage prior to planting alfalfa and a minimum of 12 inches of rainfall, overhead or flood irrigation
|
||||||
|
or any combination of these water sources totaling 12 inches is required between the time following a
|
||||||
|
Huskie Complete® Herbicide application and the time of alfalfa seeding.
|
||||||
|
**Field peas: 9 months for all states except 18 months in MT.
|
||||||
|
FIELD BIOASSAY
|
||||||
|
A field bioassay must be conducted for crops not listed on this label. To conduct a field bioassay, plant strips
|
||||||
|
of the crop you want to grow the season following HUSKIE COMPLETE Herbicide application. Monitor the crop
|
||||||
|
for response to HUSKIE COMPLETE Herbicide to determine if the crop can be grown safely in previously treated
|
||||||
|
HUSKIE COMPLETE Herbicide areas.
|
||||||
|
PRECAUTIONS FOR USE
|
||||||
|
• Rainfall within 1 hour may result in reduced weed control.
|
||||||
|
• Apply to actively growing weeds. Weed control may be reduced when weeds are under stress due to severe
|
||||||
|
weather conditions, drought, very cold temperatures, etc. Weed control may be reduced if the herbicide
|
||||||
|
application is made under dry, dusty conditions – especially in the wheel track areas. Ground speed for
|
||||||
|
application should not exceed 10 mph.
|
||||||
|
• Tank mix applications of herbicides with fungicides may cause temporary yellowing, leaf burn and or height
|
||||||
|
reduction of the crop.
|
||||||
|
RESTRICTIONS FOR USE
|
||||||
|
• Do not apply to crops undersown with legume species.
|
||||||
|
• Do not apply more than 13.7 oz/A per 365 days (0.0045 lb/acre thiencarbazone-methyl)(0.0278 lb/acre
|
||||||
|
pyrasulfotole)(0.2236 lb/acre bromoxynil esters)
|
||||||
|
• Do not make more than one application of HUSKIE COMPLETE Herbicide per season.
|
||||||
|
• Do not apply HUSKIE COMPLETE Herbicide in tank mixture with tebuconazole.
|
||||||
|
• Do not graze or cut for wheat forage within 25 days, or cut for hay within 30 days of application.
|
||||||
|
• Do not harvest wheat for grain or straw within 60 days of application in the states of Minnesota, Montana,
|
||||||
|
North Dakota, and South Dakota, 70 days prior to harvest in other states.
|
||||||
|
• Aerial application to fallow land is restricted within 25 feet of residential areas (e.g., homes, schools,
|
||||||
|
playgrounds, shopping areas, hospitals, etc.).
|
||||||
|
• Handlers must use closed mixing loading systems during mixing/loading liquids for aerial applications to
|
||||||
|
fallow land and high-acreage field crops.
|
||||||
|
• HUSKIE COMPLETE Herbicide contains 0.25 pounds of mefenpyr-diethyl per gallon of product. Applying the
|
||||||
|
maximum-labeled rate of HUSKIE COMPLETE Herbicide delivers 0.027 lbs. of mefenpyr-diethyl per acre. Do not
|
||||||
|
apply more than 0.053 pounds of mefenpyr-diethyl per acre per year.
|
||||||
|
• A closed system is required for mixers/loaders of aerial applications.
|
||||||
|
• Do not apply through any type of irrigation system.
|
||||||
|
• Do not apply in combination with dicamba containing products as grass control will be reduced.
|
||||||
|
• Do not apply this product to golf course turf.
|
||||||
|
|
||||||
|
9
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Proper pesticide storage and disposal are essential to protect against exposure to people and the
|
||||||
|
environment due to leaks and spills, excess product or waste, and vandalism. Do not allow this product to
|
||||||
|
contaminate water, foodstuffs, feed or seed by storage or disposal.
|
||||||
|
PESTICIDE STORAGE: Store pesticides away from food, pet food, feed, seed, fertilizers, and veterinary
|
||||||
|
supplies. Keep container closed to prevent spills and contamination.
|
||||||
|
PESTICIDE DISPOSAL: To avoid wastes, use all material in this container, including rinsate, by application
|
||||||
|
according to label directions. If wastes cannot be avoided, offer remaining product to a waste disposal facility
|
||||||
|
or pesticide disposal program. Such programs are often run by state or local governments or by industry. All
|
||||||
|
disposal must be in accordance with applicable federal, state and local regulations and procedures
|
||||||
|
CONTAINER HANDLING AND DISPOSAL:
|
||||||
|
Nonrefillable container.
|
||||||
|
For nonrefillable containers of 5-gallon capacity or less
|
||||||
|
Do not reuse the container to hold materials other than pesticides or dilute pesticides (rinsate). After
|
||||||
|
emptying and cleaning, it may be allowable to temporarily hold rinsate or other pesticide-related materials
|
||||||
|
in the container. Contact your state regulatory agency to determine allowable practices in your state.
|
||||||
|
Triple rinse or pressure rinse (or equivalent) the container promptly after emptying.
|
||||||
|
Triple rinse as follows: Empty the remaining contents into application equipment or a mix tank and drain
|
||||||
|
for 10 seconds after the flow begins to drip. Fill the container ¼ full with water and recap. Shake for 10
|
||||||
|
seconds. Pour rinsate into application equipment or a mix-tank or store rinsate for later use or disposal.
|
||||||
|
Drain for 10 seconds after the flow begins to drip. Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application equipment or a mix tank and
|
||||||
|
continue to drain for 10 seconds after the flow begins to drip. Hold container upside down over application
|
||||||
|
equipment or mix-tank while rinsing, or collect rinsate for later use or disposal. Insert pressure rinsing
|
||||||
|
nozzle in the side of the container and rinse at about 40 PSI for at least 30 seconds. Drain for 10 seconds
|
||||||
|
after the flow begins to drip.
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability before
|
||||||
|
using this product. If terms are not acceptable, return the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties and Limitations
|
||||||
|
of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must be followed carefully.
|
||||||
|
However, it is impossible to eliminate all risks associated with the use of this product. Crop injury, ineffectiveness
|
||||||
|
or other unintended consequences may result because of such factors as weather conditions, presence of other
|
||||||
|
materials, or the manner of use or application, all of which are beyond the control of Bayer CropScience. All such
|
||||||
|
risks shall be assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE
|
||||||
|
MAKES NO OTHER WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL. NO
|
||||||
|
AGENT OF BAYER CROPSCIENCE IS AUTHORIZED TO MAKE ANY WARRANTIES BEYOND THOSE CONTAINED
|
||||||
|
HEREIN OR TO MODIFY THE WARRANTIES CONTAINED HEREIN. TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, BAYER CROPSCIENCE DISCLAIMS ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR
|
||||||
|
CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, THE EXCLUSIVE REMEDY
|
||||||
|
OF THE USER OR BUYER FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR
|
||||||
|
HANDLING OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY OR
|
||||||
|
OTHERWISE, SHALL NOT EXCEED THE PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE’S ELECTION, THE
|
||||||
|
REPLACEMENT OF PRODUCT.
|
||||||
|
Warning: This product contains a chemical known to the State of California to cause developmental harm.
|
||||||
|
Bayer, Bayer Cross, Huskie® and Olympus® are registered trademarks of Bayer Group.
|
||||||
|
Express is a trademark of E.I. DuPont de Nemours Company.
|
||||||
|
|
||||||
|
10
|
||||||
|
|
||||||
|
11
|
||||||
|
|
||||||
|
US84995908C (221219C) Huskie Complete Herbicide 2.14 Gal base
|
||||||
|
colors: black 08/23/23 (Label Coordinator: Mark Schmidt)
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
GROUPBROMOXYNIL
|
||||||
|
PYRASULFOTOLE
|
||||||
|
HERBICIDE
|
||||||
|
HERBICIDE
|
||||||
|
HERBICIDE
|
||||||
|
2
|
||||||
|
27
|
||||||
|
6
|
||||||
|
THIENCARBAZONE-METHYL
|
||||||
|
RESTRICTED USE
|
||||||
|
PESTICIDE
|
||||||
|
Due to toxicity categories.
|
||||||
|
For retail sale to and use only by Certified
|
||||||
|
Applicators or persons under their direct
|
||||||
|
supervision and only for those uses covered by
|
||||||
|
the Certified Applicator’s certification.
|
||||||
|
HUSKIE® COMPLETE Herbicide
|
||||||
|
For Selective Postemergence Control of Annual
|
||||||
|
Grasses and Annual Broadleaf Weeds in Wheat,
|
||||||
|
including Durum Wheat.
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
Thiencarbazone-methyl . . . . . . . . . . . . . . . . . . . .0.45%
|
||||||
|
Pyrasulfotole . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2.82%
|
||||||
|
Bromoxynil . . . . . . . . . . . . . . . . . . . . . . . . . . . . .22.56%*
|
||||||
|
OTHER INGREDIENTS . . . . . . . . . . . . . . . . . . 74.17%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
*Represents Bromoxynil esters (octanoate+heptanoate) .
|
||||||
|
Bromoxynil is present as bromoxynil phenol and
|
||||||
|
mixed octanoate and heptanoate esters at 15 .77% in
|
||||||
|
bromoxynil phenol equivalent .
|
||||||
|
Contains petroleum distillates .
|
||||||
|
Contains 0 .042 pound Thiencarbazone-methyl, 0 .26
|
||||||
|
pound Pyrasulfotole, 1 .46 pounds Bromoxynil as
|
||||||
|
phenol or 2 .09 pounds bromoxynil esters per gallon .
|
||||||
|
EPA Reg. No. 264-1135
|
||||||
|
KEEP OUT OF REACH
|
||||||
|
OF CHILDREN
|
||||||
|
DANGER PELIGRO
|
||||||
|
Si usted no entiende la etiqueta, busque a alguien
|
||||||
|
para que se la explique a usted en detalle.
|
||||||
|
(If you do not understand the label, find someone to
|
||||||
|
explain it to you in detail.)
|
||||||
|
Please refer to booklet for additional precautionary
|
||||||
|
statements and directions for use .
|
||||||
|
For MEDICAL And TRANSPORTATION
|
||||||
|
Emergencies ONLY Call 24 Hours A Day
|
||||||
|
1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call
|
||||||
|
1-866-99BAYER (1-866-992-2937)
|
||||||
|
FIRST AID
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and
|
||||||
|
gently with water for 15-20 minutes .
|
||||||
|
• Remove contact lenses, if present,
|
||||||
|
after the first 5 minutes, then
|
||||||
|
continue rinsing .
|
||||||
|
• Call a poison control center or doctor
|
||||||
|
for treatment advice .
|
||||||
|
IF ON
|
||||||
|
SKIN OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing .
|
||||||
|
• Rinse skin immediately with plenty of
|
||||||
|
water for 15-20 minutes .
|
||||||
|
• Call a poison control center or doctor
|
||||||
|
for treatment advice .
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Immediately call a poison control
|
||||||
|
center or doctor for treatment advice .
|
||||||
|
• Do not induce vomiting unless told to
|
||||||
|
do so by a poison control center or
|
||||||
|
doctor .
|
||||||
|
• Do not give any liquid to the person .
|
||||||
|
Do not give anything by mouth to an
|
||||||
|
unconscious person .
|
||||||
|
For MEDICAL Emergencies Call 24 Hours A Day
|
||||||
|
1-800-334-7577.
|
||||||
|
Have the product container or label with you when
|
||||||
|
calling a poison control center or doctor or going
|
||||||
|
for treatment.
|
||||||
|
NOTE TO PHYSICIAN: No specific antidote is available .
|
||||||
|
Possible mucosal damage may contraindicate the use
|
||||||
|
of gastric lavage . May pose an aspiration pneumonia
|
||||||
|
hazard .
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
DANGER
|
||||||
|
Corrosive . Causes irreversible eye damage . May be fatal
|
||||||
|
if swallowed . Harmful if absorbed through skin . Avoid
|
||||||
|
contact with skin or clothing . Do not get in eyes or on
|
||||||
|
clothing . Wear protective eyewear (goggles, face shield,
|
||||||
|
or safety glasses) . Prolonged or frequently repeated skin
|
||||||
|
contact may cause allergic reactions in some individuals .
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
RESTRICTED USE PESTICIDE
|
||||||
|
It is a violation of Federal law to use this product in
|
||||||
|
a manner inconsistent with its labeling.
|
||||||
|
Do not use this product until you have read the
|
||||||
|
entire label.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Proper pesticide storage and disposal are essential
|
||||||
|
to protect against exposure to people and the
|
||||||
|
environment due to leaks and spills, excess product
|
||||||
|
or waste, and vandalism . Do not allow this product
|
||||||
|
to contaminate water, foodstuffs, feed or seed by
|
||||||
|
storage or disposal .
|
||||||
|
PESTICIDE STORAGE: Store pesticides away from
|
||||||
|
food, pet food, feed, seed, fertilizers, and veterinary
|
||||||
|
supplies . Keep container closed to prevent spills and
|
||||||
|
contamination .
|
||||||
|
PESTICIDE DISPOSAL: To avoid wastes, use
|
||||||
|
all material in this container, including rinsate, by
|
||||||
|
application according to label directions . If wastes
|
||||||
|
cannot be avoided, offer remaining product to a waste
|
||||||
|
disposal facility or pesticide disposal program . Such
|
||||||
|
programs are often run by state or local governments
|
||||||
|
or by industry . All disposal must be in accordance
|
||||||
|
with applicable federal, state and local regulations and
|
||||||
|
procedures
|
||||||
|
CONTAINER HANDLING AND DISPOSAL:
|
||||||
|
Nonrefillable container .
|
||||||
|
For nonrefillable containers of 5-gallon capacity
|
||||||
|
or less
|
||||||
|
Do not reuse the container to hold materials other
|
||||||
|
than pesticides or dilute pesticides (rinsate) . After
|
||||||
|
emptying and cleaning, it may be allowable to
|
||||||
|
temporarily hold rinsate or other pesticide-related
|
||||||
|
materials in the container . Contact your state
|
||||||
|
regulatory agency to determine allowable practices
|
||||||
|
in your state .
|
||||||
|
Triple rinse or pressure rinse (or equivalent) the
|
||||||
|
container promptly after emptying .
|
||||||
|
Triple rinse as follows: Empty the remaining contents
|
||||||
|
into application equipment or a mix tank and drain
|
||||||
|
for 10 seconds after the flow begins to drip . Fill the
|
||||||
|
container ¼ full with water and recap . Shake for 10
|
||||||
|
seconds . Pour rinsate into application equipment or
|
||||||
|
a mix-tank or store rinsate for later use or disposal .
|
||||||
|
Drain for 10 seconds after the flow begins to drip .
|
||||||
|
Repeat this procedure two more times .
|
||||||
|
Pressure rinse as follows: Empty the remaining contents
|
||||||
|
into application equipment or a mix tank and continue to
|
||||||
|
drain for 10 seconds after the flow begins to drip . Hold
|
||||||
|
container upside down over application equipment or
|
||||||
|
mix-tank while rinsing, or collect rinsate for later use or
|
||||||
|
disposal . Insert pressure rinsing nozzle in the side of the
|
||||||
|
container and rinse at about 40 PSI for at least 30 seconds .
|
||||||
|
Drain for 10 seconds after the flow begins to drip .
|
||||||
|
Warning: This product contains a chemical known to
|
||||||
|
the State of California to cause developmental harm.
|
||||||
|
Produced for
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N . Lindbergh Blvd .
|
||||||
|
St . Louis, MO 63167
|
||||||
|
HUSKIE is a registered trademark of Bayer Group .
|
||||||
|
©2023 Bayer Group . All rights reserved .
|
||||||
|
US84995908C 221219C 08/23
|
||||||
|
NET CONTENTS: 2.14 GALLONS
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "huskie-fx",
|
||||||
|
"epa_reg_no": "264-1208",
|
||||||
|
"product_name": "Huskie FX Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "fluroxypyr",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Pyrasulfotole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Bromoxynil Octanoate",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Bromoxynil Heptanoate",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_FX_Label1dpdf",
|
||||||
|
"filename": "Huskie_FX_Label1dpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:08:57+00:00",
|
||||||
|
"page_count": 14,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "HUSKIE FX MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_FX_MSDS1impdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:28+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "HUSKIE FX MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_FX_MSDS1inpdf",
|
||||||
|
"last_modified": "2026-01-30T14:03:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Huskie FX Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie-FX_2025pdf",
|
||||||
|
"last_modified": "2026-05-15T18:09:50+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/huskie-fx-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:58:41.441922+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,97 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "huskie",
|
||||||
|
"epa_reg_no": "264-1023",
|
||||||
|
"product_name": "Huskie Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Pyrasulfotole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Bromoxynil Octanoate",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Bromoxynil Heptanoate",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Herbicide_Label1cpdf",
|
||||||
|
"filename": "Huskie_Herbicide_Label1cpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:24:46+00:00",
|
||||||
|
"page_count": 13,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "HUSKIE HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Herbicide_MSDS1itpdf",
|
||||||
|
"last_modified": "2026-01-30T14:15:04+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "HUSKIE HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Herbicide_MSDS1tipdf",
|
||||||
|
"last_modified": "2026-01-30T14:15:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tank Mixture with Osprey & Starane Flex for Broadleaf Control in Winter Wheat",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Herbicide_2EE1wpdf",
|
||||||
|
"last_modified": "2026-01-30T14:04:43+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Horseweed/Marestail in Wheat, Barley, & Rye Triticale",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Herbicide_Section_24c1bppdf",
|
||||||
|
"last_modified": "2026-01-30T14:15:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Chemigation Directions for Huskie Tankmixed with MCP Ester or Buctril 4 EC for use in Wheat or Barley",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Herbicide_2EE2pdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:02+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tank Mixture in Winter Wheat for Broad Spectrum Grass & Broadleaf Weed Control",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Herbicide_2EE3apdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tank Mixture with Starane Flex for Broadleaf Control in Winter Wheat",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_Herbicide_2EE2fpdf",
|
||||||
|
"last_modified": "2026-01-30T14:27:50+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "2017 Huskie Complete Application Card",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/herbicides/huskie-complete/2017 Huskie Complete Application Card.pdf",
|
||||||
|
"last_modified": "2022-12-01T18:59:52+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Huskie Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Huskie_2025pdf",
|
||||||
|
"last_modified": "2026-05-15T18:14:25+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/huskie-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:55:22.521959+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,111 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "laudis",
|
||||||
|
"epa_reg_no": "264-860-ZA",
|
||||||
|
"product_name": "Laudis Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Tembotrione",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_Label1mpdf",
|
||||||
|
"filename": "Laudis_Herbicide_Label1mpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:29:50+00:00",
|
||||||
|
"page_count": 29,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LAUDIS HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_MSDS1gpdf",
|
||||||
|
"last_modified": "2026-01-30T14:23:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LAUDIS HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_MSDS1hpdf",
|
||||||
|
"last_modified": "2026-01-30T14:21:12+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Supplemental",
|
||||||
|
"title": "For Control of Annual Broadleaf & Grass Weeds in Field & Silage Corn, Seed Corn, Sweet Corn, & Popcorn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_Supplemental_Labelpdf",
|
||||||
|
"last_modified": "2026-01-30T14:09:50+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Plus Glyphosate Herbicide in Tank Mixture for Use on Glyphosate-Tolerant Field Corn to Control Emerged Annual Grasses & Broadleaf Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_2EE3pdf",
|
||||||
|
"last_modified": "2026-01-30T14:08:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Tank Mix with Status for Improved Control of Broadleaf Weeds in Seed Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_2EE3bpdf",
|
||||||
|
"last_modified": "2026-01-30T14:08:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Aerial Application in Field & Silage Corn, Seed Corn, Sweet Corn, & Popcorn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_Section_24c1ippdf",
|
||||||
|
"last_modified": "2026-01-30T14:06:35+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "To Allow Aerial Application in Field & Silage Corn, Seed Corn, Sweet Corn & Popcorn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide1hg_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:25+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Aerial Application in Field & Silage Corn, Seed Corn, Sweet Corn, & Popcorn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_Section_24c1drpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:52+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Laudis + Dicamba Tank Mixture for the Control of Emerged Grasses & Broadleaf Weeds in Field Corn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_2EE1vpdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:03+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "To Allow Aerial Application in Field & Silage Corn, Seed Corn, Sweet Corn, & Popcorn",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_Section_24c1hdpdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:43+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Plus Glyphosate Herbicide in Tank Mixture for Use on Glyphosate-Tolerant Field Corn to Control Emerged Annual Grasses & Broadleaf Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_2EE1apdf",
|
||||||
|
"last_modified": "2026-01-30T14:21:04+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Plus Glyphosate Herbicide in Tank Mixture for Use on Glyphosate-Tolerant Field Corn to Control Emerged Annual Grasses & Broadleaf Weeds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_Herbicide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:25:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Laudis Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Laudis_2025pdf",
|
||||||
|
"last_modified": "2026-05-15T18:16:10+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/laudis-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:55:38.322900+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "leverage-360",
|
||||||
|
"epa_reg_no": "264-1104",
|
||||||
|
"product_name": "Leverage 360 Insecticide",
|
||||||
|
"product_class": "insecticide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Imidacloprid",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "BETA-CYFLUTHRIN",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_Label8pdf",
|
||||||
|
"filename": "Leverage_360_Insecticide_Label8pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:02:40+00:00",
|
||||||
|
"page_count": 37,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LEVERAGE 360 INSECTICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide1vb_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:11:25+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LEVERAGE 360 INSECTICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide1bv_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:56:53+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Potato to Control Brown Marmorated Stink Bug",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE1ppdf",
|
||||||
|
"last_modified": "2026-01-30T14:06:30+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Grape",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE2pdf",
|
||||||
|
"last_modified": "2026-01-30T13:57:43+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Spotted Wing Drosophila on Pome Fruit",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE2zpdf",
|
||||||
|
"last_modified": "2026-01-30T13:45:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Spotted Wing Drosophila on Grape",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE2ypdf",
|
||||||
|
"last_modified": "2026-01-30T14:14:38+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Spotted Wing Drosophila on Pome Fruit",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE3zpdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:06+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Brown Marmorated Stink Bug (BMSB) in Citrus, Grape, & Potato",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide1ui_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T13:37:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For the Suppression of Soybean Stem Borer (Dectes Stem Borer) Adults on Soybean",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide1i_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:56+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Asian Citrus Psyllid on Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide1q_Section_24cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:18:11+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Grape & Potato to Control Brown Marmorated Stink Bug",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE3epdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:00+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Earwigs on Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE3wpdf",
|
||||||
|
"last_modified": "2026-01-30T14:02:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Spiders on Grape",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE3ypdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:25+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Grape",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:02:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Spotted Wing Drosophila on Stone Fruit",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE2xpdf",
|
||||||
|
"last_modified": "2026-01-30T14:01:46+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Cabbage Maggot, Garden Symphylan, & Seed Corn Maggot in Brassica Leafy Vegetables Crop Group 5 & Leafy Greens Crop Group 4A",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE3xpdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Cabbage Maggot, Garden Symphylan, & Seed Corn Maggot in Brassica Leafy Vegetables Crop Group 5 & Leafy Vegetables Crop Group 4A",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE1azpdf",
|
||||||
|
"last_modified": "2026-01-30T14:02:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Cabbage Maggot, Garden Symphylan, & Seed Corn Maggot in Brassica Leafy Vegetables Crop Group 5 & Leafy Vegetables Crop Group 4A",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide_2EE2wpdf",
|
||||||
|
"last_modified": "2026-01-30T14:03:06+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Grape & Potato to Control Brown Marmorated Stink Bug",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage_360_Insecticide1e_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:12:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Leverage 360 Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage-360_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T23:50:36+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Leverage 360 - Soybeans - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Leverage-360_Soybeans_2025pdf",
|
||||||
|
"last_modified": "2026-05-21T23:51:30+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/insecticide/leverage-360-insecticide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:06:57.034938+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,104 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "luna-experience",
|
||||||
|
"epa_reg_no": "264-1091",
|
||||||
|
"product_name": "Luna Experience Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Fluopyram",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Tebuconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_Label1fepdf",
|
||||||
|
"filename": "Luna_Experience_Label1fepdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:36:06+00:00",
|
||||||
|
"page_count": 34,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA EXPERIENCE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_MSDS1ppdf",
|
||||||
|
"last_modified": "2026-01-30T13:41:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA EXPERIENCE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_MSDS1mpdf",
|
||||||
|
"last_modified": "2026-01-30T13:46:01+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Watermelon",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_2EE3jpdf",
|
||||||
|
"last_modified": "2026-01-30T13:45:53+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Pistachio",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_2EE1updf",
|
||||||
|
"last_modified": "2026-01-30T13:45:57+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Walnut & New Disease Phomopsis Canker & Blight",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_2EE1ppdf",
|
||||||
|
"last_modified": "2026-01-30T13:53:16+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Aerial Applications to Almond, Pistachio, & Stone Fruit (Group 12) with Standing Water",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_Section_24c2updf",
|
||||||
|
"last_modified": "2026-01-30T13:55:06+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Red Leaf Blotch in Almonds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_2EE1hupdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:34+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Almond",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Experience_2EE1npdf",
|
||||||
|
"last_modified": "2026-01-30T13:35:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Movento Walnuts Botryosphaeria Technical Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/fungicides/luna/Luna-Movento-Walnuts-Botryosphaeria-Technical-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-01T17:35:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "2018 Luna Increases Yield in Almonds Technical Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/fungicides/luna/Luna-Increases-Yield-in Almonds-Technical-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-01T17:35:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Experience Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Experience_California_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:01:05+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/luna-experience-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:02:45.081904+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,98 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "luna-flex",
|
||||||
|
"epa_reg_no": "264-1218",
|
||||||
|
"product_name": "Luna Flex Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Fluopyram",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Difenoconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Flex_Label1fepdf",
|
||||||
|
"filename": "Luna_Flex_Label1fepdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-29T12:05:03+00:00",
|
||||||
|
"page_count": 33,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA FLEX MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/LUNA_FLEX1_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:12+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA FLEX MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/LUNA_FLEX_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:47:01+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Flex - Apples - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Flex_Apples_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:10:13+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Flex - Cucurbits-BVS - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Flex_Cucurbits-BVS_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:25:00+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Flex - Bushberries - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Flex_Bushberries_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:11:12+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Flex - Fruiting Vegetables - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Flex_FruitingVeg_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:26:19+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Flex - Cucurbits - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Flex_Cucurbits_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:16:34+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Flex - Citrus - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Flex_Citrus_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:14:36+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Flex - Strawberries - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Flex_Strawberries_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:28:41+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Flex - Stone Fruits - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Flex_StoneFruits_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:27:35+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/luna-flex-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:05:41.849851+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "luna-pro",
|
||||||
|
"epa_reg_no": "264-1084",
|
||||||
|
"product_name": "Luna Pro Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Fluopyram",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Prothioconazole",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_PRO_Label1pdf",
|
||||||
|
"filename": "Luna_PRO_Label1pdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:43:37+00:00",
|
||||||
|
"page_count": 9,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA PRO MSDS - ",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_PRO_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:49:34+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna PRO Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Pro_2026pdf",
|
||||||
|
"last_modified": "2026-05-14T14:31:21+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/luna-pro-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:05:46.385907+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,626 @@
|
|||||||
|
# Luna Pro Fungicide
|
||||||
|
|
||||||
|
- **Product class:** fungicide
|
||||||
|
- **EPA Reg No:** 264-1084
|
||||||
|
- **Active ingredients:** Fluopyram, Prothioconazole
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/fungicide/luna-pro-fungicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Luna_PRO_Label1pdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Net Contents:
|
||||||
|
US89047528B 221207Bv2 04/23
|
||||||
|
US89047528B (221207Bv2) Luna Pro 2.5 Gal
|
||||||
|
COLORS: CMYK DATE: 04/20/23
|
||||||
|
Label Coordinator: Mark Schmidt
|
||||||
|
2.5 Gallon
|
||||||
|
A fungicide for control of diseases in: Potato
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
FLUOPYRAM*: ......................................................................................................... 17.4%
|
||||||
|
PROTHIOCONAZOLE*: .............................................................................................. 17.4%
|
||||||
|
OTHER INGREDIENTS: ............................................................................................. 65.2%
|
||||||
|
TOTAL: 100.0%
|
||||||
|
Contains 1.67 lbs FLUOPYRAM and 1.67 lbs PROTHIOCONAZOLE per gallon
|
||||||
|
*(CAS Numbers 658066-35-4 and 178928-70-6)
|
||||||
|
EPA Reg. No. 264-1084
|
||||||
|
SUSPENSION CONCENTRATE
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
See additional precautionary statements and directions for use on label.
|
||||||
|
PRODUCED FOR
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
Luna® PRO is registered trademarks of Bayer Group.
|
||||||
|
©2023 Bayer Group. All rights reserved.
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
PROTHIOCONAZOLE
|
||||||
|
FLUOPYRAM
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
3
|
||||||
|
7
|
||||||
|
|
||||||
|
1
|
||||||
|
FIRST AID
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center or doctor immediately for treatment advice.
|
||||||
|
• DO NOT induce vomiting unless told to do so by a poison control center or
|
||||||
|
doctor.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• DO NOT give anything by mouth to an unconscious person.
|
||||||
|
IF ON
|
||||||
|
SKIN OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give artificial
|
||||||
|
respiration, preferably mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
IF IN EYES: • Hold eye open and rinse slowly and gently with water for 15 to 20 minutes.
|
||||||
|
Remove contact lenses, if present, after the first 5 minutes, then continue
|
||||||
|
rinsing eye.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
In case of spills, poisoning or fire call telephone emergency response number
|
||||||
|
1-800-334-7577 (24 hours a day).
|
||||||
|
Take container, label or product name and registration number with you
|
||||||
|
when seeking medical attention.
|
||||||
|
TOXICOLOGICAL INFORMATION: Treat Symptomatically. Medical Personnel should contact
|
||||||
|
Bayer’s medical information services, Toll Free: 1-800-334-7577.
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
Harmful if swallowed, inhaled, or absorbed through skin. Avoid contact with skin, eyes, or
|
||||||
|
clothing. Wash thoroughly with soap and water after handling and before eating, drinking,
|
||||||
|
chewing gum, and using tobacco or using the toilet.
|
||||||
|
Personal Protective Equipment (PPE):
|
||||||
|
Applicators and other handlers must wear long-sleeved shirt and long pants, shoes plus
|
||||||
|
socks, and chemical-resistant gloves made of barrier laminate, butyl rubber (≥14 mils), nitrile
|
||||||
|
rubber (≥14 mils), neoprene rubber (≥14 mils), polyvinyl chloride (≥14 mils), or Viton (≥14 mils).
|
||||||
|
User Safety Requirements
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions exist for
|
||||||
|
washables, use detergent and hot water. Keep and wash PPE separately from other laundry.
|
||||||
|
Engineering Control Statements:
|
||||||
|
When handlers use closed systems, enclosed cabs, or aircraft in a manner that meets the
|
||||||
|
requirements listed in the Worker Protection Standard (WPS) for agricultural pesticides
|
||||||
|
40 CFR 170.240(d)(4-6), the handler PPE requirements may be reduced or modified as
|
||||||
|
specified in the WPS.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
Users should:
|
||||||
|
• Remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly and put
|
||||||
|
on clean clothing.
|
||||||
|
• User should remove PPE immediately after handling this product. Wash the outside of
|
||||||
|
gloves before removing. As soon as possible, wash thoroughly and change into clean
|
||||||
|
clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
Surface Water Advisory
|
||||||
|
This product may impact surface water quality due to runoff of rain water. This is especially true
|
||||||
|
for poorly draining soils and soils with shallow ground water. This product is classified as having
|
||||||
|
high potential for reaching surface water via runoff for several months or more after application. A
|
||||||
|
level, well-maintained vegetative buffer strip between areas to which this product is applied and
|
||||||
|
surface water features such as ponds, streams, and springs will reduce the potential loading of
|
||||||
|
these chemicals and their degradates from runoff water and sediment. Runoff of this product will
|
||||||
|
be reduced by avoiding applications when rainfall or irrigation is expected to occur within 48 hours.
|
||||||
|
|
||||||
|
2
|
||||||
|
Ground Water Advisory
|
||||||
|
Degradates of prothioconazole are known to leach through soil into groundwater under certain
|
||||||
|
conditions as a result of label use. These chemicals may leach into groundwater if used in
|
||||||
|
areas where soils are permeable, particularly where the water table is shallow.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of federal law to use this product in a manner inconsistent with its labeling.
|
||||||
|
READ THE LABEL AND BROCHURE BEFORE USING
|
||||||
|
Read entire label before using this product.
|
||||||
|
DO NOT apply this product in a way that will contact workers or other persons, either directly or
|
||||||
|
through drift. Only protected handlers may be in the area during application. For any requirements
|
||||||
|
specific to your State or Tribe, consult the agency responsible for pesticide regulation.
|
||||||
|
DO NOT use with handheld application equipment, including mechanically pressurized spray gun,
|
||||||
|
backpack or tank pressurized spray gun, or handheld boom applicators.
|
||||||
|
Not for sale, distribution, or use in Nassau and Suffolk counties, New York except as
|
||||||
|
permitted under FIFRA 24(c), Special Local Need registration.
|
||||||
|
Aerial application is prohibited in Nassau and Suffolk County, New York.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection
|
||||||
|
Standard, 40 CFR part 170. This Standard contains requirements for the protection
|
||||||
|
of agricultural workers on farms, forests, nurseries, and greenhouses, and handlers of
|
||||||
|
agricultural pesticides. It contains requirements for training, decontamination, notification,
|
||||||
|
and emergency assistance. It also contains specific instructions and exceptions pertaining
|
||||||
|
to the statements on this label about personal protective equipment (PPE) and restricted
|
||||||
|
entry interval. The requirements in this box only apply to uses of this product that are
|
||||||
|
covered by the Worker Protection Standard.
|
||||||
|
DO NOT enter or allow worker entry into treated areas during the restricted-entry interval
|
||||||
|
(REI) of 12 hours.
|
||||||
|
PPE required for early entry to treated areas that is permitted under the Worker Protection Standard
|
||||||
|
and that involves contact with anything that has been treated, such as plants, soil, or water is:
|
||||||
|
coveralls over long-sleeved shirt and long pants, socks and shoes, and chemical-resistant gloves
|
||||||
|
made of barrier laminate, butyl rubber (≥14 mils), nitrile rubber (≥14 mils), neoprene rubber (≥14 mils),
|
||||||
|
polyvinyl chloride (≥14 mils), or Viton (≥14 mils).
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
LUNA® PRO is a broad-spectrum fungicide with preventative, systemic, and curative
|
||||||
|
properties labeled for the control or suppression of certain crop diseases.
|
||||||
|
LABELED USES
|
||||||
|
Potato
|
||||||
|
RESISTANCE MANAGEMENT
|
||||||
|
For resistance management, please note that LUNA PRO Fungicide contains a Group 3
|
||||||
|
(prothioconazole) and a Group 7 (fluopyram) fungicide. Any fungal population may contain individuals
|
||||||
|
naturally resistant to LUNA PRO Fungicide and other Group 3 (prothioconazole) and Group 7 (fluopyram)
|
||||||
|
fungicides. A gradual or total loss of pest control may occur over time if these fungicides are used
|
||||||
|
repeatedly in the same fields. Appropriate resistance-management strategies should be followed.
|
||||||
|
To delay fungicide resistance, take one or more of the following steps:
|
||||||
|
• Rotate the use of LUNA PRO Fungicide or other Group 3 (prothioconazole) and Group 7 (fluopyram)
|
||||||
|
fungicide within a growing season sequence with different groups that control the same pathogens.
|
||||||
|
• Use tank mixtures with fungicides from a different group that are equally effective on the target
|
||||||
|
pest when such use is permitted. Use at least the minimum application rate as labeled by the
|
||||||
|
manufacturer.
|
||||||
|
• Adopt an integrated disease management program for fungicide use that includes scouting, uses
|
||||||
|
historical information related to pesticide use, and crop rotation, and which considers host plant
|
||||||
|
resistance, impact of environmental conditions on disease development, disease thresholds, as
|
||||||
|
well as cultural, biological and other chemical control practices.
|
||||||
|
• Where possible, make use of predictive disease models to effectively time fungicide applications.
|
||||||
|
Note that using predictive models alone is not sufficient to manage resistance.
|
||||||
|
• Monitor treated fungal/bacterial populations for resistance development.
|
||||||
|
• Contact your local extension specialist or certified crop advisor for any additional pesticide
|
||||||
|
resistance-management and/or IPM recommendations for specific crops and pathogens.
|
||||||
|
• For further information or to report suspected resistance contact Bayer CropScience at
|
||||||
|
1-866-99BAYER (1-866-992-2937). You can also contact your pesticide distributor or university
|
||||||
|
extension specialist to report resistance.
|
||||||
|
|
||||||
|
3
|
||||||
|
MANDATORY SPRAY DRIFT
|
||||||
|
Aerial Applications
|
||||||
|
• DO NOT release spray at a height greater than 10 ft above the ground or vegetative canopy, unless
|
||||||
|
a greater application height is necessary for pilot safety.
|
||||||
|
• For all applications, applicators are required to use a medium or coarser droplet size (ASABE S572. I).
|
||||||
|
• The boom length must not exceed 65% of the wingspan for airplanes or 75% of the rotor blade
|
||||||
|
diameter for helicopters
|
||||||
|
• Applicators must use ½ swath displacement upwind at the downwind edge of the field.
|
||||||
|
• Nozzles must be oriented so the spray is directed toward the back of the aircraft.
|
||||||
|
• DO NOT apply when wind speeds exceed 10 mph at the application site.
|
||||||
|
• DO NOT apply during temperature inversions.
|
||||||
|
Ground Applications
|
||||||
|
• Apply with the nozzle height recommended by the manufacturer, but no more than 3 feet above
|
||||||
|
the ground or crop canopy.
|
||||||
|
• For all applications, applicators are required to use a medium or coarser droplet size
|
||||||
|
(ASABE S572. I).
|
||||||
|
• DO NOT apply when wind speeds exceed 10 miles per hour at the application site.
|
||||||
|
• DO NOT apply during temperature inversions.
|
||||||
|
Boom-less Ground Applications
|
||||||
|
• Applicators are required to use a medium or coarser droplet size (ASABE S572. I) for all
|
||||||
|
applications.
|
||||||
|
• DO NOT apply when wind speeds exceed 10 miles per hour at the application site.
|
||||||
|
• DO NOT apply during temperature inversions.
|
||||||
|
SPRAY DRIFT ADVISORIES
|
||||||
|
• THE APPLICATOR IS RESPONSIBLE FOR AVOIDING OFF-SITE SPRAY DRIFT.
|
||||||
|
• BE AWARE OF NEARBY NON-TARGET SITES AND ENVIRONMENTAL CONDITIONS.
|
||||||
|
IMPORTANCE OF DROPLET SIZE
|
||||||
|
An effective way to reduce spray drift is to apply large droplets. Use the largest droplets that provide
|
||||||
|
target pest control. While applying larger droplets will reduce spray drift, the potential for drift will be
|
||||||
|
greater if applications are made improperly or under unfavorable environmental conditions.
|
||||||
|
Controlling Droplet Size - Ground Boom
|
||||||
|
• Volume - Increasing the spray volume so that larger droplets are produced will reduce spray
|
||||||
|
drift. Use the highest practical spray volume for the application. If a greater spray volume is
|
||||||
|
needed, consider using a nozzle with a higher flow rate.
|
||||||
|
• Pressure - Use the lowest spray pressure recommended for the nozzle to produce the target
|
||||||
|
spray volume and droplet size.
|
||||||
|
• Spray Nozzle - Use a spray nozzle that is designed for the intended application. Consider using
|
||||||
|
nozzles designed to reduce drift.
|
||||||
|
Controlling Droplet Size – Aircraft
|
||||||
|
Adjust Nozzles - Follow nozzle manufacturer’s recommendations for setting up nozzles. Generally,
|
||||||
|
to reduce fine droplets, nozzles should be oriented parallel with the airflow in flight. For all
|
||||||
|
applications, applicators are required to use a medium or coarser spray droplet size (ASABE S572.1)
|
||||||
|
BOOM HEIGHT – Ground Boom
|
||||||
|
For ground equipment, the boom should remain level with the crop and have minimal bounce.
|
||||||
|
RELEASE HEIGHT – Aircraft
|
||||||
|
DO NOT release spray at a height greater than 10 ft above the vegetative canopy, unless a greater
|
||||||
|
application height is necessary for pilot safety. Higher release heights increase the potential for
|
||||||
|
spray drift.
|
||||||
|
SHIELDED SPRAYERS
|
||||||
|
Shielding the boom or individual nozzles can reduce spray drift. Consider using shielded sprayers.
|
||||||
|
Verify that the shields are not interfering with the uniform deposition of the spray on the target area.
|
||||||
|
TEMPERATURE AND HUMIDITY
|
||||||
|
When making applications in hot and dry conditions, use larger droplets to reduce effects of
|
||||||
|
evaporation.
|
||||||
|
TEMPERATURE INVERSIONS
|
||||||
|
Drift potential is high during a temperature inversion. Temperature inversions are characterized by
|
||||||
|
increasing temperature with altitude and are common on nights with limited cloud cover and light
|
||||||
|
to no wind. The presence of an inversion can be indicated by ground fog or by the movement
|
||||||
|
|
||||||
|
4
|
||||||
|
of smoke from a ground source or an aircraft smoke generator. Smoke that layers and moves
|
||||||
|
laterally in a concentrated cloud (under low wind conditions) indicates an inversion, while smoke
|
||||||
|
that moves upward and rapidly dissipates indicates good vertical air mixing. Avoid applications
|
||||||
|
during temperature inversion.
|
||||||
|
WIND
|
||||||
|
Drift potential generally increases with wind speed. AVOID APPLICATIONS DURING GUSTY WIND
|
||||||
|
CONDITIONS. Applicators need to be familiar with local wind patterns and terrain that could affect
|
||||||
|
spray drift.
|
||||||
|
BOOM-LESS GROUND APPLICATIONS
|
||||||
|
Setting nozzles at the lowest effective height will help to reduce the potential for spray drift.
|
||||||
|
APPLICATION INFORMATION
|
||||||
|
Use sufficient water volume to provide thorough and uniform coverage to obtain the most effective
|
||||||
|
disease control. DO NOT make applications when conditions favor drift.
|
||||||
|
Ground Application
|
||||||
|
DO NOT use with handheld application equipment, including backpack or mechanically/manually
|
||||||
|
pressurized hand equipment.
|
||||||
|
For optimum disease control, apply in sufficient water to ensure thorough coverage of foliage,
|
||||||
|
bloom, and fruit.
|
||||||
|
Aerial Application
|
||||||
|
For aerial application equipment, a minimum of 2 gallons of water per acre for field and vegetable
|
||||||
|
crops is required. No aerial application is allowed in Nassau and Suffolk County, New York.
|
||||||
|
In-furrow at-plant applications
|
||||||
|
Where permitted by crop specific use directions apply in-furrow during planting operations. Direct
|
||||||
|
applications into the open furrow and cover with soil.
|
||||||
|
Chemigation Application
|
||||||
|
Apply LUNA PRO only through center pivot, motorized-lateral move, traveling gun, solid set or
|
||||||
|
portable (wheel move, side roll, end tow, or hand move) and drip irrigation systems. DO NOT
|
||||||
|
apply this product through any other type of irrigation system. Crop injury, lack of effectiveness,
|
||||||
|
or illegal pesticide residues in the crop can result from non-uniform distribution of treated water.
|
||||||
|
If you have questions about calibration, contact State Extension Service specialists, equipment
|
||||||
|
manufacturers or other experts.
|
||||||
|
A person knowledgeable of the chemigation system and responsible for its operation or under
|
||||||
|
the supervision of the responsible person, must shut the system down and make necessary
|
||||||
|
adjustments should the need arise.
|
||||||
|
LUNA PRO has not been sufficiently tested when applied through irrigation systems to assure
|
||||||
|
consistent product performance for all labeled uses. Sprinkler chemigation is usually most effective
|
||||||
|
via an irrigation of one tenth to one fourth inch. The following application techniques are provided
|
||||||
|
for user reference but do not constitute a warranty of fitness for application through sprinkler
|
||||||
|
irrigation equipment. Users must check with state and local regulatory agencies for potential use
|
||||||
|
restrictions before applying any agricultural chemical through sprinkler irrigation equipment.
|
||||||
|
DO NOT connect an irrigation system (including greenhouse systems) used for pesticide application to
|
||||||
|
a public water system, unless the pesticide label prescribed safety devices for public water systems are
|
||||||
|
in place. ‘Public water system’ means a system for the provision to the public of piped water for human
|
||||||
|
consumption if such system has at least 15 service connections or regularly serves an average of at least
|
||||||
|
25 individuals daily at least 60 days out of the year. Chemigation systems connected to public water
|
||||||
|
systems must contain a functional, reduced-pressure zone (RPZ), back flow preventer, or the functional
|
||||||
|
equivalent in the water supply line upstream from the point of pesticide introduction. As an alternative
|
||||||
|
to the RPZ, the water from the public water system must be discharged into a reservoir tank prior to
|
||||||
|
pesticide introduction.
|
||||||
|
There must be a complete physical break (air gap) between the flow outlet end of the fill pipe and the
|
||||||
|
top or overflow rim of the reservoir tank of at least twice the inside diameter of the fill pipe. The pesticide
|
||||||
|
injection pipeline must contain a functional, automatic, quick-closing check valve to prevent the flow
|
||||||
|
of fluid back toward the injection pump. Pesticide injection pipeline must contain a functional, normally
|
||||||
|
closed, solenoid-operated valve located on the intake side of the injection pump and connected to
|
||||||
|
the system interlock to prevent fluid from being withdrawn from the supply tank when the irrigation
|
||||||
|
system is either automatically or manually shut down. The systems must contain functional interlocking
|
||||||
|
controls, to automatically shut off the pesticide injection pump when the water pump motor stops, or in
|
||||||
|
cases where there is no water pump, when the water pressure decreases to the point where pesticide
|
||||||
|
distribution is adversely affected. Systems must use a metering pump, such as a positive displacement
|
||||||
|
injection pump (e.g., diaphragm pump) effectively designed and constructed of materials that are
|
||||||
|
compatible with pesticides and capable of being fitted with a system interlock.
|
||||||
|
|
||||||
|
5
|
||||||
|
DO NOT apply when wind speed favors drift. Spray mixture in the chemical supply tank must
|
||||||
|
be agitated at all times, otherwise settling and uneven application may occur. Apply pesticide
|
||||||
|
continuously for the duration of the water application. For mixing instructions, please refer to
|
||||||
|
directions in the “Spray mixing and compatibility” section.
|
||||||
|
This product may be used through two basic types of irrigation systems as outlined in Sections
|
||||||
|
A and B below. The system must contain a functional check valve, vacuum relief valve, and
|
||||||
|
low-pressure drain appropriately located on the irrigation pipeline to prevent water source
|
||||||
|
contamination from back flow. Determine which type of irrigation is in place, then refer to the
|
||||||
|
appropriate directions provided below for each type. See crops section on the label for required
|
||||||
|
treatment rates and additional use information.
|
||||||
|
A. Center Pivot, Motorized-Lateral Move and Traveling Gun Irrigation Equipment
|
||||||
|
For injections of pesticides, these continuously moving systems must use a positive
|
||||||
|
displacement injection pump of either diaphragm or piston type and be constructed of materials
|
||||||
|
that are compatible with pesticides. They must also be capable of being fitted with a system
|
||||||
|
interlock and capable of injection at pressures approximately 2-3 times those encountered
|
||||||
|
within the irrigation water line. Venturi applicator units cannot be used on these systems.
|
||||||
|
Thoroughly mix required amount of this product for acreage to be covered into same amount
|
||||||
|
of water used during calibration and inject into system continuously for one revolution or run.
|
||||||
|
Mixture in the chemical supply tank must be continuously agitated during the injection run. Shut
|
||||||
|
off injection equipment after one revolution or run, but continue to operate irrigation system until
|
||||||
|
this product has been cleared from the last sprinkler head.
|
||||||
|
B. Solid-Set, Portable (Wheel Move, Side Roll, End Tow, or Hand Move) and Drip Irrigation
|
||||||
|
Equipment
|
||||||
|
With stationary systems, an effectively designed in-line Venturi applicator unit is preferred to
|
||||||
|
support even and quick distribution. For solid set systems, determine acreage covered by
|
||||||
|
sprinkler. Fill the tank of injection equipment with water and adjust flow to use contents over
|
||||||
|
30 to 45 minutes. Mix desired amount of this product for acreage to be covered with water so
|
||||||
|
that the total mixture of this product plus water in the injection tank is equal to the quantity
|
||||||
|
of water used during calibration. Provide chemical supply tank agitation sufficient for mixing
|
||||||
|
until chemigation is completed. Operate entire system at normal pressures as advised by the
|
||||||
|
manufacturer of injection equipment used, for amount of time established during calibration.
|
||||||
|
This product can be injected during the irrigation cycle or as a separate application. Stop
|
||||||
|
injection equipment with any system after treatment is completed and continue to operate
|
||||||
|
irrigation system until this product has been cleared from the last sprinkler head.
|
||||||
|
SPRAY MIXING AND COMPATIBILITY
|
||||||
|
Begin with clean spray equipment and add one-half of the required amount of water to the spray
|
||||||
|
or mixing tank and start agitation. Add the required quantity of fungicide and the tank-mix partner
|
||||||
|
if applicable to the water and complete filling with water to the required total volume. Follow the
|
||||||
|
recommendations of your State Cooperative Extension Service for tank mixing with other products.
|
||||||
|
In general, follow the order beginning first with water conditioners, water soluble packaging (wait
|
||||||
|
for it to completely dissolve), wettable powders and water-dispersible granular products, liquid
|
||||||
|
flowables and suspension concentrates, emulsifiable concentrates, and adjuvants last. Maintain
|
||||||
|
agitation throughout spraying. DO NOT allow spray mixture to remain in the tank overnight, or for
|
||||||
|
long periods during the day without agitation.
|
||||||
|
LUNA PRO is physically compatible with most commonly used fungicide, herbicide, insecticide, and
|
||||||
|
foliar nutrient products. However, the compatibility of LUNA PRO with all potential tank-mix partners
|
||||||
|
has not been fully investigated. If tank mixing with other pesticides is desirable, conduct a jar test with
|
||||||
|
the volumes and rates typically used in agricultural application. Using a small container of water, add
|
||||||
|
the proportionate amounts of the products: wettable powders and water-dispersible granular products
|
||||||
|
first, then liquid flowables, and emulsifiable concentrates last. After thoroughly mixing, let stand for at
|
||||||
|
least 15 minutes. Look for signs of separation, globules, sludge, flakes, or other precipitates. Physical
|
||||||
|
compatibility is indicated if the combination remains mixed or can be remixed readily.
|
||||||
|
The crop safety of all potential tank-mixes with LUNA PRO has not been tested on all crops listed
|
||||||
|
on the label. Before applying any tank-mixture not specified on this label, safety to the target crop
|
||||||
|
must be confirmed on a small portion of the crop listed on the label to be treated to ensure an
|
||||||
|
adverse response will not occur.
|
||||||
|
It is the pesticide user’s responsibility to ensure that all products are registered for the intended
|
||||||
|
use. Read and follow the applicable restrictions and limitations and directions for use on all
|
||||||
|
product labels involved in tank mixing. Users must follow the most restrictive directions for use
|
||||||
|
and precautionary statements of each product in the tank mixture.
|
||||||
|
|
||||||
|
6
|
||||||
|
PRODUCT RESTRICTIONS AND LIMITATIONS
|
||||||
|
DO NOT apply more than the maximum yearly rate for each specific crop from any combination of
|
||||||
|
products containing FLUOPYRAM or PROTHIOCONAZOLE.
|
||||||
|
DO NOT use with handheld application equipment, including backpack or mechanically/manually
|
||||||
|
pressurized hand equipment.
|
||||||
|
ROTATIONAL CROP RESTRICTIONS
|
||||||
|
The following crops may be planted immediately: Barley; Buckwheat; Canola; Corn; Cotton
|
||||||
|
(subgroup 20C); Crambe; Cucurbits (subgroups 9A/9B); Dried Beans; Lowbush Blueberry and
|
||||||
|
Lingonberry; Millet (Pearl and Proso); Oats; Peanut; Potato; Rapeseed; Rye; Small Berries
|
||||||
|
(Bushberries ) (13-07B); Soybean; Sugarbeet; Triticale; Wheat.
|
||||||
|
Alfalfa may be replanted 14 days after the last application of LUNA PRO.
|
||||||
|
The following crops can be replanted after 30 days after the last application of LUNA PRO:
|
||||||
|
Artichoke, (Globe); Brassica (Cole) leafy vegetables (group 5); Bulb vegetables (group 3-07); Carrot;
|
||||||
|
Citrus (group 10-10); Dill seed; Fruiting Vegetables (group 8-10); Ginseng; Grapes and small vines
|
||||||
|
(except fuzzy kiwifruit) (subgroup 13-07F); Herb (subgroup 19A); Hops; Leafy vegetables (except
|
||||||
|
watercress) (group 4); Legume Vegetables (except cowpea and dried peas); Low-growing berries,
|
||||||
|
except cranberry, strawberry, Lowbush Blueberry and Lingonberry (subgroup 13-07G); Pome
|
||||||
|
fruit (group 11-10); Rapeseed (subgroup 20A); Root vegetables (except sugarbeet)(subgroup 1B);
|
||||||
|
Small Berries (caneberries) (subgroups 13-07A); Sorghum; Stone Fruits (group 12-12); Sugarcane
|
||||||
|
(in region 3); Sunflower (subgroup 20B); Teosinte; Tobacco; Tree Nuts (group 14-12); Tuberous and
|
||||||
|
corm vegetables (subgroup 1D).
|
||||||
|
DO NOT rotate to crops other than those listed above.
|
||||||
|
USE DIRECTIONS FOR SPECIFIC CROPS
|
||||||
|
POTATO
|
||||||
|
Disease Controlled Application Rate Application Instructions
|
||||||
|
Early blight (Alternaria solani)
|
||||||
|
Brown spot (Alternaria alternata)
|
||||||
|
Botrytis leaf spot (Botrytis cinerea)
|
||||||
|
Black dot (Colletotrichum coccodes)
|
||||||
|
White mold (Sclerotinia sclerotiorum)
|
||||||
|
10.0 fl oz/acre
|
||||||
|
(0.130 lb/acre
|
||||||
|
fluopyram)
|
||||||
|
(0.130 lb/acre
|
||||||
|
prothioconazole)
|
||||||
|
Apply at the critical timings for disease
|
||||||
|
control. Refer to University and/or
|
||||||
|
extension guidelines for best application
|
||||||
|
timings. Continue as needed on a 7- to
|
||||||
|
14-day interval as long as the maximum
|
||||||
|
annual rate is not exceeded.
|
||||||
|
Restrictions:
|
||||||
|
• Maximum single application rate: 10.0 fl oz/acre of LUNA PRO (0.130 lb/acre fluopyram and
|
||||||
|
0.130 lb/acre prothioconazole)
|
||||||
|
• Maximum annual application rate: 20.0 fl oz/acre of LUNA PRO (0.260 lb/acre fluopyram and
|
||||||
|
0.260 lb/acre prothioconazole).
|
||||||
|
• Maximum number of applications per year: 2
|
||||||
|
• Minimum retreatment interval: 7 days
|
||||||
|
• Regardless of formulation or method of application, DO NOT apply more than 0.446 lbs
|
||||||
|
fluopyram or 0.267 lbs prothioconazole per acre per year from all uses, including seed
|
||||||
|
treatment, soil and foliar applications.
|
||||||
|
• Apply by ground, aerial, or chemigation application equipment.
|
||||||
|
• Aerial application is not allowed in Nassau and Suffolk County, New York
|
||||||
|
• Pre-Harvest Interval (PHI): 14 days
|
||||||
|
• To limit the potential for development of disease resistance to this fungicide, DO NOT make
|
||||||
|
more than 2 sequential applications of LUNA PRO or any Group 7 or Group 3 containing
|
||||||
|
fungicide before rotating with a fungicide from a different Group.
|
||||||
|
• DO NOT use with handheld application equipment, including mechanically pressurized spray
|
||||||
|
gun, backpack or tank pressurized spray gun, or handheld boom applicators.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
DO NOT contaminate water, food, or feed by storage or disposal.
|
||||||
|
Storage: Store in a cool, dry place and in such a manner as to prevent cross contamination
|
||||||
|
with other pesticides, fertilizers, food, and feed. Store in original container and out of the reach
|
||||||
|
of children, preferably in a locked storage area.
|
||||||
|
Handle and open container in a manner as to prevent spillage. If container is leaking or material
|
||||||
|
spilled for any reason or cause, carefully dam up spilled material to prevent runoff. Refer to
|
||||||
|
Precautionary Statements on label for hazards associated with the handling of this material. DO
|
||||||
|
NOT walk through spilled material. Dispose of as directed for pesticides below. In spill or leak
|
||||||
|
incidents, keep unauthorized people away. You may contact the Bayer CropScience Emergency
|
||||||
|
Response Team for decontamination procedures or any other assistance that may be necessary.
|
||||||
|
The Bayer CropScience Emergency Response telephone number is 1-800-334-7577.
|
||||||
|
|
||||||
|
7
|
||||||
|
Pesticide Disposal: Wastes resulting from using this product may be disposed of on-site
|
||||||
|
or at an approved waste disposal facility. If these wastes cannot be disposed of according
|
||||||
|
to label instructions, contact your State Pesticide or Environmental Control Agency, or the
|
||||||
|
Hazardous Waste representatives at the nearest EPA Regional Office for guidance.
|
||||||
|
Container Handling:
|
||||||
|
Non-Refillable Containers
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. DO NOT reuse or refill this container. Offer for recycling, if available.
|
||||||
|
Triple rinse or pressure rinse container (or equivalent) promptly after emptying. Triple rinse as
|
||||||
|
follows: Empty the remaining contents into application equipment or a mix tank and drain for
|
||||||
|
10 seconds after the flow begins to drip. Fill the container 1/4 full with water and recap. Shake
|
||||||
|
for 10 seconds. Pour rinsate into application equipment or a mix tank or store rinsate for later
|
||||||
|
use or disposal. Drain for 10 seconds after the flow begins to drip. Repeat this procedure
|
||||||
|
two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application equipment or a mix
|
||||||
|
tank and continue to drain for 10 seconds after the flow begins to drip. Hold container upside
|
||||||
|
down over application equipment or mix tank or collect rinsate for later use or disposal. Insert
|
||||||
|
pressure rinsing nozzle in the side of the container, and rinse at about 40 PSI for at least
|
||||||
|
30 seconds. Drain for 10 seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary
|
||||||
|
landfill or by other procedures approved by state and local authorities.
|
||||||
|
IMPORTANT: READ BEFORE USE
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability
|
||||||
|
before using this product. If terms are not acceptable, return the unopened product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties and
|
||||||
|
Limitations of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must be
|
||||||
|
followed carefully. However, it is impossible to eliminate all risks associated with the use of this
|
||||||
|
product. Crop injury, ineffectiveness or other unintended consequences may result because of such
|
||||||
|
factors as weather conditions, presence of other materials, or the manner of use or application, all
|
||||||
|
of which are beyond the control of Bayer CropScience. All such risks shall be assumed by the user
|
||||||
|
or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER
|
||||||
|
CROPSCIENCE MAKES NO OTHER WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY
|
||||||
|
OR OF FITNESS FOR A PARTICULAR PURPOSE OR OTHERWISE, THAT EXTEND BEYOND THE
|
||||||
|
STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience is authorized to make any
|
||||||
|
warranties beyond those contained herein or to modify the warranties contained herein. TO THE
|
||||||
|
EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE SHALL NOT BE LIABLE
|
||||||
|
FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR
|
||||||
|
HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, THE
|
||||||
|
EXCLUSIVE REMEDY OF THE USER OR BUYER FOR ANY AND ALL LOSSES, INJURIES OR
|
||||||
|
DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT, WHETHER IN
|
||||||
|
CONTRACT, WARRANTY , TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, SHALL
|
||||||
|
NOT EXCEED THE PURCHASE PRICE PAID, OR AT BAYER CROPSCIENCE’S ELECTION, THE
|
||||||
|
REPLACEMENT OF PRODUCT.
|
||||||
|
LUNA PRO is specially formulated and sold by Bayer Group for the control of various pathogens
|
||||||
|
according to the directions on this label. The purchase price of LUNA PRO includes a prepaid
|
||||||
|
license under which purchaser agrees to employ the purchased quantity of LUNA PRO only for
|
||||||
|
the above-specified uses and to provide notice of the terms and conditions of this license to any
|
||||||
|
subsequent purchaser. Uses of LUNA PRO other than those specified on this label are not licensed
|
||||||
|
through the purchase of this product.
|
||||||
|
Bayer, Bayer Cross and Luna® PRO are registered trademarks of Bayer Group.
|
||||||
|
|
||||||
|
US89047528B 221207Bv2 04/23
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
|
US89047528B (221207Bv2) LUNA PRO BASE LABEL
|
||||||
|
COLORS: CMYK DATE: 04/20/23
|
||||||
|
Label Coordinator: Mark Schmidt
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
DO NOT contaminate water, food, or feed by storage
|
||||||
|
or disposal.
|
||||||
|
Storage: Store in a cool, dry place and in such a
|
||||||
|
manner as to prevent cross contamination with other
|
||||||
|
pesticides, fertilizers, food, and feed. Store in original
|
||||||
|
container and out of the reach of children, preferably
|
||||||
|
in a locked storage area.
|
||||||
|
Handle and open container in a manner as to prevent
|
||||||
|
spillage. If container is leaking or material spilled for
|
||||||
|
any reason or cause, carefully dam up spilled material
|
||||||
|
to prevent runoff. Refer to Precautionary Statements
|
||||||
|
on label for hazards associated with the handling of
|
||||||
|
this material. DO NOT walk through spilled material.
|
||||||
|
Dispose of as directed for pesticides below. In spill
|
||||||
|
or leak incidents, keep unauthorized people away.
|
||||||
|
You may contact the Bayer CropScience Emergency
|
||||||
|
Response Team for decontamination procedures or
|
||||||
|
any other assistance that may be necessary. The
|
||||||
|
Bayer CropScience Emergency Response telephone
|
||||||
|
number is 1-800-334-7577.
|
||||||
|
Pesticide Disposal: Wastes resulting from using this
|
||||||
|
product may be disposed of on-site or at an approved
|
||||||
|
waste disposal facility. If these wastes cannot be
|
||||||
|
disposed of according to label instructions, contact
|
||||||
|
your State Pesticide or Environmental Control
|
||||||
|
Agency, or the Hazardous Waste representatives at
|
||||||
|
the nearest EPA Regional Office for guidance.
|
||||||
|
Container Handling: Non-Refillable Containers
|
||||||
|
Rigid, Non-refillable containers (equal to or less than
|
||||||
|
5 gallons)
|
||||||
|
Non-refillable container. DO NOT reuse or refill this
|
||||||
|
container. Offer for recycling, if available. Triple rinse or
|
||||||
|
pressure rinse container (or equivalent) promptly after
|
||||||
|
emptying. Triple rinse as follows: Empty the remaining
|
||||||
|
contents into application equipment or a mix tank and
|
||||||
|
drain for 10 seconds after the flow begins to drip. Fill
|
||||||
|
the container 1/4 full with water and recap. Shake for
|
||||||
|
10 seconds. Pour rinsate into application equipment or
|
||||||
|
a mix tank or store rinsate for later use or disposal. Drain
|
||||||
|
for 10 seconds after the flow begins to drip. Repeat this
|
||||||
|
procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents
|
||||||
|
into application equipment or a mix tank and continue
|
||||||
|
to drain for 10 seconds after the flow begins to drip.
|
||||||
|
Hold container upside down over application equipment
|
||||||
|
or mix tank or collect rinsate for later use or disposal.
|
||||||
|
Insert pressure rinsing nozzle in the side of the container,
|
||||||
|
and rinse at about 40 PSI for at least 30 seconds. Drain
|
||||||
|
for 10 seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or
|
||||||
|
puncture and dispose of in a sanitary landfill or by other
|
||||||
|
procedures approved by state and local authorities.
|
||||||
|
PRODUCED FOR
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
Luna® PRO is a registered trademark of Bayer
|
||||||
|
Group. ©2023 Bayer Group. All rights reserved.
|
||||||
|
FIRST AID
|
||||||
|
IF
|
||||||
|
SWALLOWED:
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor immediately for treatment
|
||||||
|
advice.
|
||||||
|
• DO NOT induce vomiting unless
|
||||||
|
told to do so by a poison control
|
||||||
|
center or doctor.
|
||||||
|
• Have person sip a glass of water if
|
||||||
|
able to swallow.
|
||||||
|
• DO NOT give anything by mouth
|
||||||
|
to an unconscious person.
|
||||||
|
IF ON
|
||||||
|
SKIN OR
|
||||||
|
CLOTHING:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty
|
||||||
|
of water for 15-20 minutes.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
IF INHALED • Move person to fresh air.
|
||||||
|
• If person is not breathing, call
|
||||||
|
911 or an ambulance, then give
|
||||||
|
artificial respiration, preferably
|
||||||
|
mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for further treatment advice.
|
||||||
|
IF IN EYES • Hold eye open and rinse slowly
|
||||||
|
and gently with water for 15 to 20
|
||||||
|
minutes. Remove contact lenses,
|
||||||
|
if present, after the first 5 minutes,
|
||||||
|
then continue rinsing eye.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
In case of spills, poisoning or fire call telephone
|
||||||
|
emergency response number
|
||||||
|
1-800-334-7577 (24 hours a day).
|
||||||
|
Take container, label or product name and
|
||||||
|
registration number with you when seeking
|
||||||
|
medical attention.
|
||||||
|
TOXICOLOGICAL INFORMATION: Treat
|
||||||
|
Symptomatically. Medical Personnel should
|
||||||
|
contact Bayer’s medical information services,
|
||||||
|
Toll Free: 1-800-334-7577.
|
||||||
|
For PRODUCT USE Information Call
|
||||||
|
1-866-99BAYER (1-866-992-2937)
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
Harmful if swallowed, inhaled, or absorbed through
|
||||||
|
skin. Avoid contact with skin, eyes, or clothing.
|
||||||
|
Wash thoroughly with soap and water after handling
|
||||||
|
and before eating, drinking, chewing gum, and using
|
||||||
|
tobacco or using the toilet.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of federal law to use this product
|
||||||
|
in a manner inconsistent with its labeling.
|
||||||
|
READ THE LABEL AND BROCHURE BEFORE USING
|
||||||
|
Read entire label before using this product.
|
||||||
|
Luna® PRO
|
||||||
|
A fungicide for control of diseases in: Potato
|
||||||
|
ACTIVE INGREDIENTS:
|
||||||
|
FLUOPYRAM*: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17.4%
|
||||||
|
PROTHIOCONAZOLE*: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17.4%
|
||||||
|
OTHER INGREDIENTS: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65.2%
|
||||||
|
TOTAL: 100.0%
|
||||||
|
Contains 1.67 lbs FLUOPYRAM and 1.67 lbs PROTHIOCONAZOLE per gallon
|
||||||
|
*(CAS Numbers 658066-35-4 and 178928-70-6)
|
||||||
|
EPA Reg. No. 264-1084 SUSPENSION CONCENTRATE
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
See additional precautionary statements and directions for use on label.
|
||||||
|
GROUP
|
||||||
|
GROUP
|
||||||
|
PROTHIOCONAZOLE
|
||||||
|
FLUOPYRAM
|
||||||
|
FUNGICIDE
|
||||||
|
FUNGICIDE
|
||||||
|
3
|
||||||
|
7
|
||||||
@@ -0,0 +1,152 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "luna-sensation",
|
||||||
|
"epa_reg_no": "264-1090",
|
||||||
|
"product_name": "Luna Sensation Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Fluopyram",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Trifloxystrobin",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_Label1tjpdf",
|
||||||
|
"filename": "Luna_Sensation_Label1tjpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:17:11+00:00",
|
||||||
|
"page_count": 45,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA SENSATION MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_MSDS1hgpdf",
|
||||||
|
"last_modified": "2026-01-30T14:11:24+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA SENSATION MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_MSDS1ghpdf",
|
||||||
|
"last_modified": "2026-01-30T14:02:41+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Walnut",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1wpdf",
|
||||||
|
"last_modified": "2025-08-17T08:38:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Red Leaf Blotch in Almonds",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1bhpdf",
|
||||||
|
"last_modified": "2026-01-30T13:58:51+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Ring Spot in Brussels Sprouts",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1npdf",
|
||||||
|
"last_modified": "2026-01-30T14:11:19+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rates in Grape",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1djpdf",
|
||||||
|
"last_modified": "2026-01-30T13:54:33+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Anthracnose in Leafy Vegetables (4A & 4B)",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1mpdf",
|
||||||
|
"last_modified": "2026-01-30T14:12:13+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Anthracnose in Walnut",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1bnpdf",
|
||||||
|
"last_modified": "2026-01-30T14:03:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Peach",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1vpdf",
|
||||||
|
"last_modified": "2026-01-30T14:15:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Alternaria Rot, Black Rot, Brooks Fruit Spot, Grey Mold, & Quince Rust in Apple",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1fpdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Citrus Diseases at Reduced Application Rates",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1cpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:43+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Almond",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation_2EE1updf",
|
||||||
|
"last_modified": "2026-01-30T14:03:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Septoria Spot in Fruit, Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Sensation1h_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:15:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Movento Walnuts Botryosphaeria Technical Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/fungicides/luna/Luna-Movento-Walnuts-Botryosphaeria-Technical-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-01T17:35:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "2018 Luna Increases Yield in Almonds Technical Bulletin",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/fungicides/luna/Luna-Increases-Yield-in Almonds-Technical-Bulletin.pdf",
|
||||||
|
"last_modified": "2022-12-01T17:35:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Sensation California Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Sensation_California_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T14:41:09+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna-Sensation - Lettuce - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Sensation_Lettuce_2026pdf",
|
||||||
|
"last_modified": "2026-05-14T14:45:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Managing Almond RLB with Luna Sensation Fungicide",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Sensation_RLB_2026pdf",
|
||||||
|
"last_modified": "2026-05-14T14:51:50+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna-Sensation Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Sensation_2026pdf",
|
||||||
|
"last_modified": "2026-05-14T14:40:10+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/luna-sensation-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:05:17.705956+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,86 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "luna-tranquility",
|
||||||
|
"epa_reg_no": "264-1085",
|
||||||
|
"product_name": "Luna Tranquility Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Pyrimethanil",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Fluopyram",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Tranquility_Label1etpdf",
|
||||||
|
"filename": "Luna_Tranquility_Label1etpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:04:23+00:00",
|
||||||
|
"page_count": 17,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA TRANQUILITY MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Tranquility1ip_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:16:04+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "LUNA TRANQUILITY MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Tranquility1iu_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:04:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Pome Fruit",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Tranquility_2EE1dpdf",
|
||||||
|
"last_modified": "2026-01-30T13:53:16+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Grey Mold in Apple",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Tranquility_2EE1wpdf",
|
||||||
|
"last_modified": "2026-01-30T14:04:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Management of Potato Early Dying & Verticillium Wilt with Programs of Emesto Silver, Velum Prime, & Luna Tranquility",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Tranquility_2EE1npdf",
|
||||||
|
"last_modified": "2026-01-30T14:08:56+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Reduced Application Rate for Use in Potato",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna_Tranquility_2EE1ppdf",
|
||||||
|
"last_modified": "2026-01-30T14:12:52+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Luna Protect Potatoes Early Blight White Mold Disease",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/fungicides/luna/Luna-Protect-Potatoes-Early-Blight-White-Mold-Disease.pdf",
|
||||||
|
"last_modified": "2022-12-01T17:35:55+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Luna Tranquility Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Luna-Tranquility_2025pdf",
|
||||||
|
"last_modified": "2026-05-14T16:45:04+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/luna-tranquility-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:03:05.834918+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,81 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "minuet",
|
||||||
|
"epa_reg_no": "264-1202",
|
||||||
|
"product_name": "Minuet Biological Fungicide",
|
||||||
|
"product_class": "fungicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Bacillus Subtilis, QST 713 strain",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_Label1dpdf",
|
||||||
|
"filename": "Minuet_Label1dpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:45:24+00:00",
|
||||||
|
"page_count": 21,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "MINUET MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_MSDS1gpdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:35+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "MINUET MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_MSDS1dpdf",
|
||||||
|
"last_modified": "2026-01-30T13:55:38+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Aerial & Foliar Application for Suppression of Bakanae Gibberella fujikuroi, Fusarium spp., Macrophomina spp., Phytophthora spp., Pythium spp., Rhizoctonia spp., & Verticillium spp. as a Foliar Application to Crops of Rice Subgroups (15 22f)",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_2EE1hupdf",
|
||||||
|
"last_modified": "2026-01-30T13:35:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "MINUET Organic Certificate",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_Organic_Certificate7pdf",
|
||||||
|
"last_modified": "2026-01-30T13:43:40+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Minuet - Strawberries - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_Strawberries_2026pdf",
|
||||||
|
"last_modified": "2026-05-21T19:24:48+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Minuet - Potatoes - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_Potatoes_2026pdf",
|
||||||
|
"last_modified": "2026-05-21T19:23:45+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Minuet Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_California_2026pdf",
|
||||||
|
"last_modified": "2026-05-21T19:21:46+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Minuet - Corn - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Minuet_Corn_2026pdf",
|
||||||
|
"last_modified": "2026-05-21T19:22:50+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/fungicide/minuet-fungicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:05:28.481929+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,719 @@
|
|||||||
|
# Minuet Biological Fungicide
|
||||||
|
|
||||||
|
- **Product class:** fungicide
|
||||||
|
- **EPA Reg No:** 264-1202
|
||||||
|
- **Active ingredients:** Bacillus Subtilis, QST 713 strain
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/fungicide/minuet-fungicide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Minuet_Label1dpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
BACILLUS SUBTILIS GROUP BM02 FUNGICIDE
|
||||||
|
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Bacillus subtilis strain QST 713* ................................ 9.89%
|
||||||
|
OTHER INGREDIENTS: ................................................. 90.11%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
*Contains a minimum of 2.7 x 1010 colony forming units (cfu)/g
|
||||||
|
of product
|
||||||
|
EPA Reg. No. 264-1202 EPA Est. No. 264-MEX-001
|
||||||
|
US86728311D (220217D) LABMC MINUET BOOKLET - MEXICO colors: cmyk 5/11/22
|
||||||
|
Label Coordinator: Andi Wiegert
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
Please refer to booklet for first aid, additional
|
||||||
|
precautionary statements and directions for use.
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY
|
||||||
|
Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER
|
||||||
|
(1-866-992-2937)
|
||||||
|
Produced For: Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
Minuet™ is a trademark of Bayer Group.
|
||||||
|
©2022 Bayer Group. All rights reserved.
|
||||||
|
Product of Mexico
|
||||||
|
US86728311D 220217D 05/22
|
||||||
|
1 Gal. (3.785 L)
|
||||||
|
Net Contents:
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
COVER
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
1
|
||||||
|
FIRST AID
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give artificial respiration, preferably by
|
||||||
|
mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency Response
|
||||||
|
Telephone No. 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling the poison control center
|
||||||
|
or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if inhaled. Avoid breathing spray mist.
|
||||||
|
• Remove and wash contaminated clothing before reuse
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
The PPE requirements below apply to both Worker Protection Standard (WPS) uses (in general, agricultural-plant uses are
|
||||||
|
covered by the Worker Protection Standard (40 CFR Part 170)) and Non-WPS uses.
|
||||||
|
Mixer/Loader and Applicators must wear:
|
||||||
|
• Long-sleeved shirt and long pants
|
||||||
|
• Shoes plus socks
|
||||||
|
• Waterproof or Chemical-resistant Gloves
|
||||||
|
• NIOSH-approved particulate respirator with a minimum of a NIOSH-approved particulate filtering facepiece respirator with
|
||||||
|
any N, R or P filter; OR a NIOSH-approved elastomeric particulate respirator with any N, R or P filter; OR a NIOSH-approved
|
||||||
|
power air-purifying respirator with an HE filter.
|
||||||
|
Repeated exposure to high concentrations of microbial proteins can cause allergic sensitization.
|
||||||
|
Follow manufacturer’s instructions for cleaning and maintaining PPE. If no instructions are available, use detergent and hot
|
||||||
|
water for washables. Keep and wash PPE separately from other laundry.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
2
|
||||||
|
ENGINEERING CONTROLS
|
||||||
|
When handlers use closed systems, enclosed cabs, or aircraft in a manner that meets requirements listed in the Worker
|
||||||
|
Protection Standard (WPS) for agricultural pesticides (40 CFR 170.607(d), (e), and (f), the handler PPE requirements may be
|
||||||
|
reduced or modified as specified in the WPS.
|
||||||
|
IMPORTANT: When reduced PPE is worn because a closed system is being used, handlers must be provided all PPE specified
|
||||||
|
above for “mixer/loader and applicators” and have such PPE immediately available for use in an emergency, such as a spill
|
||||||
|
or equipment break-down.
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
• Users should wash hands before eating, drinking, chewing gum, using tobacco or using the toilet.
|
||||||
|
• Users should remove clothing/PPE immediately if pesticide gets inside. Then wash thoroughly and put on clean clothing.
|
||||||
|
• Users should remove PPE immediately after handling this product. Wash the outside of gloves before removing. As soon
|
||||||
|
as possible, wash thoroughly and change into clean clothing.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
For Terrestrial Use:
|
||||||
|
Do not apply directly to water, or to areas where surface water is present or to intertidal areas below the mean high water
|
||||||
|
mark. Do not contaminate water when disposing of equipment washwater or rinsate. Do not apply when weather conditions
|
||||||
|
favor drift or run-off from treated areas.
|
||||||
|
CONDITIONS OF SALE AND LIMITATIONS OF WARRANTY AND LIABILITY
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations of Liability before using this product.
|
||||||
|
If terms are not acceptable, return the unopened product at once for a refund of the purchase price.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of Warranties, and Limitations of Liability.
|
||||||
|
These terms may only be modified by a written document signed by a duly authorized representative of Bayer CropScience LP .
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and must be followed carefully. However, it
|
||||||
|
is impossible to eliminate all risks associated with the use of this product. Crop injury, ineffectiveness or other unintended
|
||||||
|
consequences may result because of such factors as weather conditions, presence of other materials, or the manner of use or
|
||||||
|
application, all of which are beyond the control of Bayer CropScience LP . All such risks shall be assumed by the user or buyer.
|
||||||
|
To the extent consistent with applicable law, all such risks shall be assumed by the user or buyer.
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE LP MAKES NO OTHER
|
||||||
|
WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY, OR OF FITNESS FOR A PARTICULAR PURPOSE OR OTHERWISE,
|
||||||
|
THAT EXTEND BEYOND THE STATEMENTS MADE ON THIS LABEL. No agent of Bayer CropScience LP is authorized to make
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
3
|
||||||
|
any warranties beyond those contained herein or to modify the warranties contained herein. TO THE EXTENT CONSISTENT
|
||||||
|
WITH APPLICABLE LAW, BAYER CROPSCIENCE LP DISCLAIMS ANY LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL, OR
|
||||||
|
CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE LAW THE EXCLUSIVE REMEDY OF THE USER
|
||||||
|
OR BUYER FOR ANY AND ALL LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT,
|
||||||
|
WHETHER IN CONTRACT, WARRANTY, TORT, NEGLIGENCE, STRICT LIABILITY, OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE
|
||||||
|
PRICE PAID, OR AT BAYER CROPSCIENCE LP’S ELECTION, THE REPLACEMENT OF PRODUCT.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons, either directly or through drift. Only protected handlers
|
||||||
|
may be in the area during application. For any requirements specific to your State or Tribe, consult the State or Tribal agency
|
||||||
|
responsible for pesticide regulation. [For use only as described on the labeling. Not for isolation or deformulation. Do not culture.]
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection Standard, 40 CFR part 170. This
|
||||||
|
Standard contains requirements for the protection of agricultural workers on farms, forests, nurseries, and greenhouses
|
||||||
|
and handlers of agricultural pesticides. It contains requirements for training, decontamination, and emergency assistance.
|
||||||
|
It also contains specific instructions and exceptions pertaining to the statements on this label about personal protective
|
||||||
|
equipment (PPE), notification to workers, and restricted-entry interval. The requirements in this box only apply to uses of
|
||||||
|
this product that are covered by the Worker Protection Standard.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted entry interval (REI) of 4 hours.
|
||||||
|
Exception: If the product is soil injected or soil incorporated, the Worker Protection Standard under certain circumstances,
|
||||||
|
allows workers to enter the treated area if there will be no contact with anything that has been treated.
|
||||||
|
For early entry into treated areas that is permitted under the Worker Protection Standard and that involves contact
|
||||||
|
with anything that has been treated, such as plants, soil, or water, wear:
|
||||||
|
• Coveralls
|
||||||
|
• Shoes plus socks
|
||||||
|
• Waterproof or Chemical-resistant Gloves
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
4
|
||||||
|
NON-AGRICULTURAL USE REQUIREMENTS
|
||||||
|
The requirements in this box apply to uses that are NOT within the scope of the Worker Protection Standard for agricultural
|
||||||
|
pesticides (40 CFR Part 170). The Worker Protection Standard (WPS) applies when this product is used to produce
|
||||||
|
agricultural plants on farms, forests, nurseries or greenhouses.
|
||||||
|
[For commercial treatment of plants that are in ornamental gardens, parks, golf courses, and public or residential turf
|
||||||
|
and grounds, and that are intended only for aesthetic purposes or climatic modification, Keep unprotected persons out of
|
||||||
|
treated areas until sprays have dried.]
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
MINUETTM :
|
||||||
|
• contains bacteria that, when applied to the soil, will germinate to colonize the developing root system and provide
|
||||||
|
suppression of disease-causing organisms such as Fusarium, Pythium and Rhizoctonia that can attack plant roots. For
|
||||||
|
disease prevention, use MINUET in a tank-mix or rotational program with other registered fungicides and bactericides.
|
||||||
|
• provides benefits which can result in healthier plants. As the plant’s root system develops, the bacteria in MINUET,
|
||||||
|
formulated and provided at optimized levels, grows with the roots, and aids in the establishment of a vigorous root
|
||||||
|
system. Improved plant health may help the host plant tolerate environmental stresses and increase nutrient utilization,
|
||||||
|
plant stand and yield.
|
||||||
|
APPLICATION INSTRUCTIONS
|
||||||
|
Ground
|
||||||
|
This product can be applied by commonly used ground equipment, such as hose-end, pressurized, greenhouse and hand-held
|
||||||
|
sprayers. Consult spray nozzle and accessory documentation for specific information on proper equipment calibration. Maintain
|
||||||
|
agitation during mixing and application to ensure uniform product suspension. Use the application rate indicated in the Specific
|
||||||
|
Crop Directions tables of this label, in sufficient water to achieve thorough coverage. Overall, to achieve good coverage, use
|
||||||
|
proper spray pressure, gallonage per acre, nozzles, nozzle spacing and ground speed.
|
||||||
|
Chemigation
|
||||||
|
This product can be applied through sprinkler (center pivot, lateral move, end tow, side (wheel) roll, traveler, solid set or hand
|
||||||
|
move) or drip-type irrigation systems. Refer to the Chemigation section of this label for additional directions and precautions.
|
||||||
|
Maintain agitation during mixing and application to ensure uniform product suspension. Use the application rate, indicated for
|
||||||
|
the appropriate crop in the Application Rate tables for this label, in sufficient water to achieve thorough coverage.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
5
|
||||||
|
USE RESTRICTIONS
|
||||||
|
• Do not apply when wind speed favors drift beyond the area intended for treatment.
|
||||||
|
• Remove scale, pesticide residues, and other foreign matter from the chemical supply tank and entire injector system.
|
||||||
|
Flush with clean water. Failure to provide a clean tank, void of scale or residues, may cause MINUET to lose effectiveness
|
||||||
|
or strength.
|
||||||
|
• Do not combine MINUET with pesticides, surfactants, or fertilizers for application through chemigation equipment unless
|
||||||
|
prior experience has shown the combination physically compatible, effective, and non-injurious under conditions of use.
|
||||||
|
MINUET has not been fully evaluated for compatibility with all of these.
|
||||||
|
• Conduct a spray compatibility test if mixture with other pesticides, surfactants, or fertilizers is planned.
|
||||||
|
FUNGICIDE RESISTANCE MANAGEMENT RECOMMENDATIONS
|
||||||
|
MINUET contains an active ingredient with a mode of action classified as a Group 44 Fungicide, i.e., a Microbial fungicide.
|
||||||
|
• Integrate MINUET into an overall disease and pest management strategy. Follow practices known to reduce disease
|
||||||
|
development.
|
||||||
|
• Consult local agricultural authorities for specific IPM strategies developed for your crop(s) and location.
|
||||||
|
• Be sure use of this product conforms to resistance management strategies, which may include rotating and/or tank mixing
|
||||||
|
with other products with different modes of action.
|
||||||
|
CHEMIGATION
|
||||||
|
Types of irrigation systems
|
||||||
|
Apply this product only through the following types of equipment:
|
||||||
|
• Sprinkler irrigation systems including center pivot, lateral move, end tow, side (wheel) roll, traveler, solid set or hand move)
|
||||||
|
• Drip-type and micro-jet irrigation systems.
|
||||||
|
Do not apply this product through any other type of irrigation system.
|
||||||
|
Maintain agitation during mixing and application to ensure uniform product suspension. Use the application rate indicated in the
|
||||||
|
Specific Crop Directions tables of this label, in sufficient water to achieve thorough coverage.
|
||||||
|
Uniform Water Distribution and System Calibration
|
||||||
|
The chemigation system must provide uniform distribution of treated water. Crop injury or lack of effectiveness can result from
|
||||||
|
non-uniform distribution of treated water. The chemigation system must be calibrated to uniformly apply the rates specified
|
||||||
|
in crop-specific label sections. If you have questions about calibration, you should contact State Extension Service specialists,
|
||||||
|
equipment manufacturers, or other experts.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
6
|
||||||
|
Chemigation Monitoring
|
||||||
|
A person knowledgeable of the chemigation system and responsible for its operation, or under the supervision of the responsible
|
||||||
|
person, shall shut the system down and make necessary adjustments should the need arise.
|
||||||
|
Required System Safety Devices
|
||||||
|
The system must contain a functional check valve, a vacuum relief valve, and a low-pressure drain appropriately located on
|
||||||
|
the irrigation pipeline to prevent water source contamination from backflow. The pesticide injection pipeline must contain
|
||||||
|
a functional automatic quick-closing check valve to prevent the flow of fluid back toward the injection pump. The pesticide
|
||||||
|
injection pipeline must also contain a functional, normally closed, solenoid-operated valve located on the intake side of the
|
||||||
|
injection pump and connected to the system interlock to prevent fluid from being withdrawn from the supply tank when the
|
||||||
|
irrigation system is either automatically or manually shut down. The system must contain functional interlocking controls
|
||||||
|
to automatically shut off the pesticide injection pump when the water pump motor stops. The irrigation line or water pump
|
||||||
|
must include a functional pressure switch, which will stop the water pump motor when the water pressure decreases to the
|
||||||
|
point where pesticide distribution is adversely affected. Systems must use a metering pump such as a positive displacement
|
||||||
|
injection pump (e.g. diaphragm pump), effectively designed and constructed of materials that are compatible with pesticides
|
||||||
|
and capable of being fitted with a system interlock.
|
||||||
|
Using Water From Public Water Systems
|
||||||
|
Do not connect an irrigation system (including greenhouse systems) used for pesticide application to a public water system unless
|
||||||
|
the pesticide label-prescribed safety devices for public water systems are in place.
|
||||||
|
Public water system means a system for the provision to the public of piped water for human consumption if such system has at least
|
||||||
|
15 service connections or regularly serves an average of at least 25 individuals daily at least 60 days out of the year. Chemigation
|
||||||
|
systems connected to public water systems must contain a functional, reduced-pressure zone (RPZ), back-flow preventer or the
|
||||||
|
functional equivalent in the water supply line upstream from the point of pesticide introduction. As an option to the RPZ, the water
|
||||||
|
from the public water system should be discharged into a reservoir tank prior to pesticide introduction. There shall be a complete
|
||||||
|
physical break (air gap) between the outlet end of the fill pipe and the top or overflow rim of the reservoir tank of at least twice the
|
||||||
|
inside diameter of the fill pipe. The pesticide injection pipeline must contain a functional, automatic quick-closing check valve to
|
||||||
|
prevent the flow of fluid back toward the injection pump. The pesticide injection pipeline must contain a functional normally closed
|
||||||
|
solenoid-operated valve located on the intake side of the injection pump and connected to the system interlock to prevent fluid from
|
||||||
|
being withdrawn from the supply tank when the irrigation system is either automatically or manually shut down. The system must
|
||||||
|
contain functional interlocking controls to automatically shut off the pesticide injection pump when the water pump motor stops or
|
||||||
|
in cases where there is no water pump, when the water pressure decreases to the point where pesticide distribution is adversely
|
||||||
|
affected. Systems must use a metering pump such as a positive displacement injection pump (e.g. diaphragm pump) effectively
|
||||||
|
designed and constructed of materials that are compatible with pesticides and capable of being fitted with a system interlock.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
7
|
||||||
|
Injection for Chemigation
|
||||||
|
Inject the specified dosage of MINUET into the irrigation main water stream: (1) through a constant flow, metering device; (2) into
|
||||||
|
the center of the main line flow via a pivot tube or equivalent; (3) at a point ahead of at least one, right-angle turn in the main
|
||||||
|
stream flow such that thorough mixing with the irrigation water is ensured.
|
||||||
|
Center Pivot, Lateral Move, End Tow, and Traveler Irrigation Equipment (Use only with electric or oil hydraulic drive systems
|
||||||
|
that provide a uniform water distribution)
|
||||||
|
• Determine size of area to be treated.
|
||||||
|
• Determine the time required to apply no more than 1/4 inch of water (6,750 gallons water per acre) over the area to
|
||||||
|
be treated when the system and injection equipment are operated at normal pressures specified by the equipment
|
||||||
|
manufacturer. Run system at 80 to 95% of manufacturer’s rated capacity.
|
||||||
|
• Using only water, determine the injection pump output when operated at normal line pressure.
|
||||||
|
• Determine the amount of MINUET fungicide required to treat area.
|
||||||
|
• Add required amount of MINUET fungicide and sufficient water to meet the injection time requirements of the solution tank.
|
||||||
|
• Maintain constant solution tank agitation during the injection period.
|
||||||
|
• Stop injection equipment after treatment is completed. Continue to operate the system until MINUET fungicide solution
|
||||||
|
has cleared the sprinkler head.
|
||||||
|
Solid Set, Side (Wheel) Roll, and Hand Move Irrigation Equipment
|
||||||
|
• Determine acreage covered by sprinkler.
|
||||||
|
• Fill injector solution tank with water and adjust flow rate to use contents over a 10- to 30-minute interval.
|
||||||
|
• Determine the amount of MINUET fungicide required to treat area.
|
||||||
|
• Add the required amount of MINUET fungicide into the same quantity of water used to calibrate the injection equipment.
|
||||||
|
• Maintain constant solution tank agitation during the injection period.
|
||||||
|
• Operate system at normal pressures specified by the manufacturer of the injection equipment and used for the time
|
||||||
|
interval established during calibration.
|
||||||
|
• Inject MINUET fungicide at the end of the irrigation cycle or as a separate application to maximize foliar fungicide retention.
|
||||||
|
• Stop injection equipment after treatment is completed. Continue to operate the system until MINUET fungicide solution
|
||||||
|
has cleared the last sprinkler head.
|
||||||
|
Flushing and Cleaning the Chemical Injection System
|
||||||
|
At the end of the application period, allow time for all lines to flush the pesticide through all nozzles or emitters before turning
|
||||||
|
off irrigation water. To ensure the lines are flushed and free of pesticides, a dye indicator may be injected into the lines to mark
|
||||||
|
the end of the application period.
|
||||||
|
In order to apply pesticides accurately, the chemical injection system must be kept clean, free of chemical or fertilizer residues
|
||||||
|
and sediments. Refer to your owner’s manual or ask your equipment supplier for the cleaning procedure for your injection system.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
8
|
||||||
|
SPRAY DRIFT MANAGEMENT
|
||||||
|
The interaction of many equipment and weather related factors determine the potential for spray drift. The applicator is responsible for
|
||||||
|
considering all of these factors when making application decisions. Consult the local Cooperative Extension for additional information.
|
||||||
|
Avoiding spray drift is the responsibility of the applicator.
|
||||||
|
Droplet Size
|
||||||
|
Use the largest droplet size which provides sufficient control and coverage. Higher flow nozzles and lower pressures will
|
||||||
|
produce larger droplets and minimize drift. Low drift and air induction nozzles will provide lower drift potential. Use larger
|
||||||
|
droplet size when applying in hot, dry conditions (droplet evaporation is higher under these conditions, thus reducing the
|
||||||
|
effective droplet size and increasing drift potential).
|
||||||
|
Wind Speed
|
||||||
|
Drift potential increases at wind speeds of less than 3 mph (due to inversion potential) or more than 10 mph. Applications
|
||||||
|
during gusty or calm wind conditions should be avoided. However, many factors, including droplet size, canopy and equipment
|
||||||
|
specifications determine drift potential at any given wind speed. For applications made in-furrow or below soil-level, wind
|
||||||
|
speed restrictions are not applicable.
|
||||||
|
Temperature Inversions
|
||||||
|
Drift potential is high during temperature inversions and applications should be avoided under these conditions. Temperature
|
||||||
|
inversions are common on nights with limited cloud cover and light to no wind. They begin to form as the sun sets and
|
||||||
|
often continue into the morning. Their presence can be indicated by ground fog. If fog is not present, inversions can also
|
||||||
|
be identified by the movement of smoke or dust from a ground source -- smoke or dust that layers and moves laterally in a
|
||||||
|
concentrated cloud (under low wind conditions) indicates an inversion.
|
||||||
|
Sensitive Areas
|
||||||
|
When applying adjacent to residential areas, bodies of water, habitats known to have threatened or endangered species, or non-target
|
||||||
|
crops, drift can be minimized to these areas by making application when the wind direction is away from these areas.
|
||||||
|
Where states or local authorities have more stringent regulations, they should be observed.
|
||||||
|
COMPATIBILITY TESTING AND TANK MIX PARTNERS
|
||||||
|
Compatibility
|
||||||
|
MINUET is physically and biologically compatible with many commonly used pesticides, fertilizers, adjuvants, and surfactants
|
||||||
|
but has not been fully evaluated with all of these. To ensure compatibility of tank-mix combinations, evaluate them prior to
|
||||||
|
use as follows: Using a suitable container, add proportional amounts of product to water. Add wettable powders first, followed
|
||||||
|
by water dispersible granules, then by liquid flowables, and lastly, emulsifiable concentrates. Mix thoroughly and let stand for
|
||||||
|
at least five minutes. If the combination stays mixed or can be remixed, it is physically compatible. Test the combination on a
|
||||||
|
small portion of the crop to be treated to ensure that a phytotoxic response does not occur as a result of application.
|
||||||
|
Do not combine MINUET with pesticides, surfactants, or fertilizers with which there has been no previous experience or use
|
||||||
|
demonstrating that they are physically compatible, effective, and non-injurious under your use conditions.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
9
|
||||||
|
Order of Mixing
|
||||||
|
MINUET may be tank-mixed with other registered pesticides to enhance plant disease control or suppression. This product
|
||||||
|
cannot be mixed with any product with a prohibition against such mixing. When tank-mixing MINUET with other registered
|
||||||
|
pesticides, always read and follow all use directions, restrictions, and precautions of both MINUET and the tank-mix partner(s).
|
||||||
|
Use of the resulting tank mix must be in accordance with the more restrictive label limitations and precautions. Do not exceed
|
||||||
|
label dosage rates.
|
||||||
|
1. Partially fill the spray tank with clean water and begin agitation.
|
||||||
|
2. Add the specified amount of MINUET
|
||||||
|
3. Finish filling the tank to the volume necessary to obtain the proper spray concentration.
|
||||||
|
It is critical that the spray solution be agitated during mixing and application to assure a uniform suspension. Do not allow
|
||||||
|
spray mixture to stand overnight or for prolonged periods. Maintain a spray solution pH between 4.5 and 8.5.
|
||||||
|
SPECIFIC CROP DIRECTIONS
|
||||||
|
CROP USE DIRECTIONS
|
||||||
|
• MINUET has a 0-Day Pre-Harvest Interval for all crops contained on this label.
|
||||||
|
• Applying MINUET to the soil at plant establishment will enhance root colonization.
|
||||||
|
• For improved performance under moderate to severe disease pressure, use the stated higher rates and reduced spray
|
||||||
|
intervals as stated or use MINUET in a tank-mix or rotational program with other registered fungicides.
|
||||||
|
Soil Treatment Application Instructions
|
||||||
|
MINUET is a broad spectrum fungicide and bactericide for the prevention, suppression [and control] of soil borne diseases on
|
||||||
|
a wide range of horticultural and broadacre crops. For all crops, MINUET may be applied as a soil surface drench, shanked-in,
|
||||||
|
side-dress, injected and in-furrow at any time.
|
||||||
|
Greenhouse Application Instructions
|
||||||
|
MINUET may be applied as a soil treatment in Greenhouses with good resistance management programs. See soil treatment
|
||||||
|
application instructions. Crop safety has not been confirmed on all cultivars. Plant compatibility testing is recommended when
|
||||||
|
first using under your greenhouse conditions.
|
||||||
|
Preventative Applications for Plant Health and Optimum Disease Control
|
||||||
|
MINUET provides benefits which can result in healthier plants. MINUET colonizes plants, preventing the establishment of
|
||||||
|
disease-causing fungi and bacteria. As the plant’s root system develops, the bacteria in MINUET, formulated and provided at
|
||||||
|
optimized levels, grow with the roots, providing protection throughout the growing season and resulting in the establishment
|
||||||
|
of a vigorous root system. Improved plant health may help the host plant tolerate environmental stresses such as drought,
|
||||||
|
heat, and cold temperatures. MINUET improves plant utilization of nitrogen, phosphorus, potassium, other micronutrients and
|
||||||
|
iron. Overall increased plant health may improve crop vigor, yields and quality, especially under stressful conditions.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
10
|
||||||
|
BRASSICA (COLE) LEAFY VEGETABLES – SOIL APPLICATION
|
||||||
|
Crops of Crop Group 5 Including: Broccoli, Broccoli raab (rapini), Brussels sprouts, Cabbage, Cauliflower, Cavalo broccolo,
|
||||||
|
Chinese broccoli (gai lon), Chinese cabbage (bok choy and napa), Chinese mustard cabbage (gai choy), Collards, Kale,
|
||||||
|
Kohlrabi, Mizuna, Mustard greens, Mustard spinach, Rape greens, and other brassica leafy vegetable crops. Includes
|
||||||
|
cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Fusarium spp.
|
||||||
|
Pythium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
12 - 24
|
||||||
|
CEREAL GRAINS (EXCEPT CORN) – SOIL APPLICATION
|
||||||
|
(INCLUDING FORAGE, FODDER OR STRAW FROM CEREAL GRAINS)
|
||||||
|
Crops of Crop Group 15 (and 16) Including: Barley, Buckwheat, Millet (pearl and proso), Oats, Rice, Rye, Sorghum, Teosinte,
|
||||||
|
Triticale, Wheat, Wild rice, and other cereal grain crops. Includes cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
6 - 12
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
11
|
||||||
|
CORN – SOIL APPLICATION
|
||||||
|
(INCLUDING FORAGE and FODDER FROM CORN)
|
||||||
|
Corn (field, sweet, and popcorn). Includes cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
3 – 6
|
||||||
|
CITRUS FRUITS – SOIL APPLICATION
|
||||||
|
Crops of Crop Group 10 Including: Calamondin, Citrus citron, Citrus hybrids (including chironja, tangelo, tangor), Grapefruit,
|
||||||
|
Kumquat, Lemon, Lime, Mandarin (tangerine), Orange (sweet and sour), Pummelo, Satsuma mandarin, and other citrus fruit
|
||||||
|
crops. Includes cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Phytophthora spp. 12 - 24
|
||||||
|
Citrus Application Instructions:
|
||||||
|
MINUET Soil drench rate for immature citrus. Apply 12 to 24 ounces per acre as a soil drench using a metered dose directed
|
||||||
|
to the soil around the trunk. Make applications in a volume not to exceed 32 ounces of diluted spray solution per tree
|
||||||
|
(8 to 16 ounces is recommended).
|
||||||
|
Rate per Acre Trees Fluid ounces / Tree
|
||||||
|
12 oz rate 140 trees 0.09 fl oz
|
||||||
|
18 oz rate 140 trees 0.14 fl oz
|
||||||
|
24 oz rate 140 trees 0.18 fl oz
|
||||||
|
MINUET rates for mature citrus. Apply 12 to 24 ounces per acre as a soil drench or chemigated injection through micro-jet
|
||||||
|
irrigation systems.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
12
|
||||||
|
CUCURBIT VEGETABLES – SOIL APPLICATION
|
||||||
|
Crops of Crop Group 9 including: Balsam apple, Balsam pear, Bitter melon, Cantaloupe, Chayote (fruit), Cucumber, Chinese
|
||||||
|
cucumber, Chinese waxgourd, Gherkin, Gourd (edible), Citron melon, Muskmelon, Pumpkin, Summer squash, Winter squash,
|
||||||
|
Watermelon, and other cucurbit vegetable crops. Includes cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
12 - 24
|
||||||
|
FRUITING VEGETABLES – SOIL APPLICATION
|
||||||
|
Crops of Crop Group 8 Including: Eggplant, Groundcherry, Pepino, Pepper (including bell, chili, cooking, pimento and sweet),
|
||||||
|
Tomatillo, Tomato, and other fruiting vegetable crops. Includes cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Southern blight - Sclerotium rolfsii
|
||||||
|
Verticillium spp.
|
||||||
|
12 - 24
|
||||||
|
HOPS – SOIL APPLICATION
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
12 - 24
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
13
|
||||||
|
LEAFY VEGETABLES (EXCEPT BRASSICA) – SOIL APPLICATION
|
||||||
|
Crops of Crop Group 4 Including: Amaranth (leafy), Arugula, Cardoon, Celery, Chinese celery, Celtuce, Chervil,
|
||||||
|
Chrysanthemum (edible-leaved and garland), Corn salad, Cress (garden and upland), Dandelion, Dock (sorrel), Endive
|
||||||
|
(escarole), Florence fennel (finochio), Sea kale, Lettuce (head and leaf), Orach, Parsley, Puslane (garden and winter),
|
||||||
|
Radicchio (red chicory), Rhubarb, Spinach (including chinese, new zealand and vine), Swiss chard, Tampala, and other leafy
|
||||||
|
vegetable crops. Includes cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Sclerotinia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
12 - 24
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
14
|
||||||
|
LEGUME VEGETABLES – SOIL APPLICATION
|
||||||
|
Crops of Crop Group 6 (Except Soybean) Including: Edible Podded and Succulent Shelled Pea & Bean and
|
||||||
|
Dried Shelled Pea and Bean
|
||||||
|
Bean (Lupinus spp., including grain lupin, sweet lupin, white lupin, and white sweet lupin)
|
||||||
|
Bean (Phaseolus spp., including field bean, kidney bean, lima bean, navy bean, pinto bean, runner bean, snap bean, tepary
|
||||||
|
bean, wax bean)
|
||||||
|
Bean (Vigna spp., including adzuki bean, asparagus bean, blackeyed pea, catjang, Chinese longbean, cowpea, Crowder pea,
|
||||||
|
moth bean, mung bean, rice bean, Southern pea, urd bean, yardlong bean)
|
||||||
|
Pea (Pisum spp. including dwarf pea, edible-pod pea, English pea, field pea, garden pea, green pea, snow pea, sugar snap pea)
|
||||||
|
Other Beans and Peas (Broad bean (fava), Chickpea (garbanzo bean), Guar, Jackbean, Lablab bean (hyacinth bean), Lentil,
|
||||||
|
Pigeon pea, Sword bean, and other legume vegetable crops.
|
||||||
|
Includes cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
12 - 24
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
15
|
||||||
|
PEANUT – SOIL APPLICATION
|
||||||
|
(including those grown for oil production)
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Aspergillus spp.*
|
||||||
|
Cylindrocladium Black Rot*
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
White Mold - Sclerotium rolfsii
|
||||||
|
*NOT FOR USE IN CALIFORNIA
|
||||||
|
3 - 24
|
||||||
|
POTATOES – SOIL APPLICATION
|
||||||
|
Including: Potato, Sweet potato and other potato crops. Includes cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Colletotrichum spp.
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Sclerotium rolfsii
|
||||||
|
Verticillium spp.
|
||||||
|
Common Scab - Streptomyces scabies
|
||||||
|
12 - 24
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
16
|
||||||
|
SUGARBEET AND CARROT – SOIL APPLICATION
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Colletotrichum spp.
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Sclerotium rolfsii
|
||||||
|
Verticillium spp.
|
||||||
|
Common Scab - Streptomyces scabies
|
||||||
|
6 - 12
|
||||||
|
SOYBEANS – SOIL APPLICATION
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Aphanomyces spp.*
|
||||||
|
Fusarium spp.
|
||||||
|
Macrophomina spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
*NOT FOR USE IN CALIFORNIA
|
||||||
|
3 - 12
|
||||||
|
STRAWBERRY – SOIL APPLICATION
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Phytophthora spp.
|
||||||
|
Verticillium Wilt
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Fusarium spp.
|
||||||
|
12 - 24
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
17
|
||||||
|
GRASS FORAGE, FODDER, AND HAY – SOIL APPLICATION
|
||||||
|
Crops of Crop Group 17 Including: Bluegrass, Fescue, Orchard grass and other grass seed production crops. Includes
|
||||||
|
cultivars, varieties and/or hybrids of these commodities.
|
||||||
|
Target Diseases Rate (oz/acre)
|
||||||
|
Fusarium spp.
|
||||||
|
Phytophthora spp.
|
||||||
|
Pythium spp.
|
||||||
|
Rhizoctonia spp.
|
||||||
|
Verticillium spp.
|
||||||
|
3 - 6
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal.
|
||||||
|
Pesticide storage
|
||||||
|
Store in a dry area inaccessible to children. Store in original container only. Keep container closed when not in use. Store at room
|
||||||
|
temperature.
|
||||||
|
Pesticide disposal
|
||||||
|
To avoid wastes, use all material in this container by application according to label directions. If wastes cannot be avoided, offer remaining
|
||||||
|
product to a waste disposal facility or pesticide disposal program (often such programs are run by state or local governments or by industry).
|
||||||
|
Container handling
|
||||||
|
Non-Refillable Containers
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Triple rinse or pressure rinse container (or equivalent) promptly after emptying.
|
||||||
|
Triple rinse as follows: Empty the remaining contents into application equipment or a mix tank and drain for 10 seconds after the flow
|
||||||
|
begins to drip. Fill the container 1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into application equipment or a mix
|
||||||
|
tank or store rinsate for later use or disposal. Drain for 10 seconds after the flow begins to drip. Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application equipment or a mix tank and continue to drain for 10 seconds
|
||||||
|
after the flow begins to drip. Hold container upside down over application equipment or mix tank or collect rinsate for later use or disposal.
|
||||||
|
Insert pressure rinsing nozzle in the side of the container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10 seconds after the
|
||||||
|
flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose of in a sanitary landfill or by incineration.
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
18
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
19
|
||||||
|
140 mm
|
||||||
|
120 mm
|
||||||
|
BOOKLET
|
||||||
|
135 mm
|
||||||
|
125 mm
|
||||||
|
|
||||||
|
BACILLUS SUBTILIS GROUP BM02 FUNGICIDE
|
||||||
|
Lot No.: Net Contents: 1 Gal. (3.785 L)
|
||||||
|
MINUET
|
||||||
|
TM
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner inconsistent
|
||||||
|
with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food, or feed by storage or disposal.
|
||||||
|
Pesticide storage: Store in a dry area inaccessible to children. Store in original
|
||||||
|
container only. Keep container closed when not in use. Store at room temperature.
|
||||||
|
Pesticide disposal: To avoid wastes, use all material in this container by
|
||||||
|
application according to label directions. If wastes cannot be avoided, offer
|
||||||
|
remaining product to a waste disposal facility or pesticide disposal program
|
||||||
|
(often such programs are run by state or local governments or by industry).
|
||||||
|
Container handling
|
||||||
|
Non-Refillable Containers
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Triple rinse or pressure
|
||||||
|
rinse container (or equivalent) promptly after emptying. Triple rinse as follows:
|
||||||
|
Empty the remaining contents into application equipment or a mix tank and drain
|
||||||
|
for 10 seconds after the flow begins to drip. Fill the container 1/4 full with water
|
||||||
|
and recap. Shake for 10 seconds. Pour rinsate into application equipment or a mix
|
||||||
|
tank or store rinsate for later use or disposal. Drain for 10 seconds after the flow
|
||||||
|
begins to drip. Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application
|
||||||
|
equipment or a mix tank and continue to drain for 10 seconds after the flow
|
||||||
|
begins to drip. Hold container upside down over application equipment
|
||||||
|
or mix tank or collect rinsate for later use or disposal. Insert pressure
|
||||||
|
rinsing nozzle in the side of the container, and rinse at about 40 PSI for
|
||||||
|
at least 30 seconds. Drain for 10 seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose
|
||||||
|
of in a sanitary landfill or by incineration.
|
||||||
|
Produced For: Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
Bayer and Bayer Cross are registered trademarks of Bayer Group.
|
||||||
|
MinuetTM is a trademark of Bayer Group. ©2022 Bayer Group. All rights reserved.
|
||||||
|
All other trademarks are the property of their respective owners.
|
||||||
|
US86728311D 220217D 05/22
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Bacillus subtilis strain QST 713* ............................................. 9.89%
|
||||||
|
OTHER INGREDIENTS: .............................................................. 90.11%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
*Contains a minimum of 2.7 x 1010 colony forming units (cfu)/g of product
|
||||||
|
EPA Reg. No. 264-1202 EPA Est. No. 264-MEX-001
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
Please refer to booklet for first aid, additional precautionary
|
||||||
|
statements and directions for use.
|
||||||
|
For MEDICAL And TRANSPORTATION Emergencies ONLY Call 24 Hours
|
||||||
|
A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER
|
||||||
|
(1-866-992-2937)
|
||||||
|
FIRST AID
|
||||||
|
IF INHALED: • Move person to fresh air.
|
||||||
|
• If person is not breathing, call 911 or an ambulance, then give
|
||||||
|
artificial respiration, preferably by mouth-to-mouth if possible.
|
||||||
|
• Call a poison control center or doctor for further treatment advice.
|
||||||
|
In case of emergency call toll free the Bayer CropScience Emergency Response
|
||||||
|
Telephone No. 1-800-334-7577.
|
||||||
|
Have the product container or label with you when calling the poison control
|
||||||
|
center or doctor, or going for treatment.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if inhaled. Avoid breathing spray mist.
|
||||||
|
• Remove and wash contaminated clothing before reuse
|
||||||
|
BASE LABEL
|
||||||
|
140 mm
|
||||||
|
145 mm
|
||||||
|
135 mm
|
||||||
|
150 mm
|
||||||
|
5mm 5mm
|
||||||
|
5mm
|
||||||
|
5mm
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "movento-hl",
|
||||||
|
"epa_reg_no": "264-1188",
|
||||||
|
"product_name": "MOVENTO HL INSECTICIDE",
|
||||||
|
"product_class": "insecticide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Spirotetramat",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_HL1t_Labelpdf",
|
||||||
|
"filename": "Movento_HL1t_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:06:34+00:00",
|
||||||
|
"page_count": 17,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "MOVENTO HL MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_HL_MSDS1rpdf",
|
||||||
|
"last_modified": "2026-01-30T14:17:43+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "MOVENTO HL MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_HL_MSDS1dpdf",
|
||||||
|
"last_modified": "2026-01-30T13:57:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Control of Two-Spotted Spider Mite in Sugar Beet",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_HL_2EE1pdf",
|
||||||
|
"last_modified": "2026-01-30T14:08:52+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Suppression of Springtails in Sugar Beets (WEST OF HIGHWAY 83)",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_HL_2EEpdf",
|
||||||
|
"last_modified": "2026-01-30T14:13:42+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Movento HL Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento-HL_2026pdf",
|
||||||
|
"last_modified": "2026-05-22T00:00:22+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/insecticide/movento-hl-insecticide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:08:14.337899+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,858 @@
|
|||||||
|
# MOVENTO HL INSECTICIDE
|
||||||
|
|
||||||
|
- **Product class:** insecticide
|
||||||
|
- **EPA Reg No:** 264-1188
|
||||||
|
- **Active ingredients:** Spirotetramat
|
||||||
|
- **Source:** https://www.cropscience.bayer.us/crop-protection/insecticide/movento-hl-insecticide
|
||||||
|
- **Label PDF:** https://cs-assets.bayer.com/is/content/bayer/Movento_HL1t_Labelpdf
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Net
|
||||||
|
Contents:
|
||||||
|
2.5 Gallons
|
||||||
|
GROUP 23 INSECTICIDE
|
||||||
|
4.50”
|
||||||
|
4.25”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
Produced for:
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
MOVENTO is a registered trademark of Bayer.
|
||||||
|
©2019 Bayer CropScience
|
||||||
|
|
||||||
|
US84932604D 170713Dv2 01/19
|
||||||
|
For Agricultural Use Only: For control of listed insects on certain field
|
||||||
|
and vegetable crops.
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Spirotetramat: cis-3-(2,5-dimethlyphenyl)-
|
||||||
|
8-methoxy-2-oxo-1-azaspiro[4.5]dec-3-en-4-yl-ethyl carbonate .................... 42.86%
|
||||||
|
OTHER INGREDIENTS: .................................................. 57.14%
|
||||||
|
TOTAL: 100.00%
|
||||||
|
MOVENTO HL contains 4.00 pounds Spirotetramat per U.S. gallon (480 grams AI/liter)
|
||||||
|
EPA Reg. No. 264-1188
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Please refer to booklet for additional precautionary statements and directions for use.
|
||||||
|
US84932604D (170713Dv2) LABMC MOVENTO HL 2.5 GAL US CMYK 01/29/19
|
||||||
|
|
||||||
|
1
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
FIRST AID
|
||||||
|
If on skin
|
||||||
|
or clothing:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty of water for 15 to 20
|
||||||
|
minutes.
|
||||||
|
• Call a poison control center or doctor for treatment advice.
|
||||||
|
If swallowed: • Call a poison control center or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
• Have person sip a glass of water if able to swallow.
|
||||||
|
• Do not induce vomiting unless told to do so by a poison
|
||||||
|
control center or doctor.
|
||||||
|
• Do not give anything by mouth to an unconscious person.
|
||||||
|
If in eyes: • Hold eye open and rinse slowly and gently with water for 15-
|
||||||
|
20 minutes.
|
||||||
|
• Remove contact lenses, if present, after the first five minutes,
|
||||||
|
then continue rinsing.
|
||||||
|
• Call a poison control center or doctor immediately for
|
||||||
|
treatment advice.
|
||||||
|
Have a product container or label with you when calling a poison
|
||||||
|
|
||||||
|
control center or doctor, or going for treatment. You may also contact
|
||||||
|
1-800-334-7577 for emergency medical treatment information.
|
||||||
|
Note to Physician: No specific antidote is available. Treat the patient symptomatically.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if swallowed or absorbed through skin.
|
||||||
|
• Causes moderate eye irritation.
|
||||||
|
• Avoid contact with skin, eyes, or clothing.
|
||||||
|
• Wash thoroughly with soap and water after handling and before eating, drinking,
|
||||||
|
chewing gum, or using tobacco.
|
||||||
|
• Prolonged or frequently repeated skin contact may cause allergic reactions in
|
||||||
|
some individuals.
|
||||||
|
PERSONAL PROTECTIVE EQUIPMENT (PPE)
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such
|
||||||
|
instructions for washables, use detergent and hot water. Keep and wash PPE
|
||||||
|
separately from other laundry.
|
||||||
|
Applicators and other handlers must wear:
|
||||||
|
• Long-sleeved shirt and long pants
|
||||||
|
• Chemical resistant gloves made of barrier laminate, butyl rubber ≥ 14 mils, nitrile
|
||||||
|
rubber ≥ 14 mils, natural rubber ≥ 14 mils, polyethylene, polyvinyl chloride ≥ 14
|
||||||
|
mils, or viton ≥ 14 mils.
|
||||||
|
• Shoes plus socks
|
||||||
|
ENGINEERING CONTROLS
|
||||||
|
When handlers use closed systems, or enclosed cabs in a manner that meets
|
||||||
|
the requirements listed in the Worker Protection Standard (WPS) for agricultural
|
||||||
|
pesticides [40 CFR 170.240 (d)(4-6)], the handler PPE requirements may be
|
||||||
|
reduced or modified as specified in the WPS.
|
||||||
|
|
||||||
|
2
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
USER SAFETY RECOMMENDATIONS
|
||||||
|
• Users should wash hands before eating, drinking, chewing gum, using tobacco,
|
||||||
|
or using the toilet.
|
||||||
|
• Users should remove clothing/PPE immediately if pesticide gets inside. Then
|
||||||
|
wash thoroughly and put on clean clothing.
|
||||||
|
• Users should remove PPE immediately after handling this product.
|
||||||
|
USER SAFETY REQUIREMENTS
|
||||||
|
Follow manufacturer’s instructions for cleaning/maintaining PPE. If no such instructions
|
||||||
|
for washables exist, use detergent and hot water. Keep and wash PPE separately from
|
||||||
|
other laundry.
|
||||||
|
ENVIRONMENTAL HAZARDS
|
||||||
|
For Terrestrial Use: This pesticide is toxic to aquatic invertebrates and oysters.
|
||||||
|
Do not apply directly to water, to areas where surface water is present, or to
|
||||||
|
intertidal areas below the mean high water mark. This product may contaminate
|
||||||
|
water through drift of spray in wind. Do not apply when weather conditions favor
|
||||||
|
drift from treated areas. Drift and runoff from treated areas may be hazardous
|
||||||
|
to aquatic organisms in neighboring areas. Do not contaminate water when
|
||||||
|
disposing of equipment washwaters or rinsate.
|
||||||
|
This chemical has properties and characteristics associated with chemicals
|
||||||
|
detected in ground water. The use of this chemical in areas where soils are
|
||||||
|
permeable, particularly where the water table is shallow, may result in ground-
|
||||||
|
water contamination.
|
||||||
|
This product is potentially toxic to honey bee larvae through residues in pollen
|
||||||
|
and nectar, but not to adult honeybees. Exposure of adult bees to direct treatment
|
||||||
|
or residues on blooming crops can lead to effects on honeybee larvae. See the
|
||||||
|
“Directions for Use” section of this label for specific crop application instructions
|
||||||
|
that minimize risk to honey bee larvae.
|
||||||
|
Runoff Management
|
||||||
|
This product may contaminate water through runoff or drift of spray in wind. This
|
||||||
|
product has a high potential for runoff for several weeks after application. Poorly
|
||||||
|
draining soils and soils with shallow water tables are more prone to produce runoff
|
||||||
|
that contains this product. A level well maintained vegetative buffer strip between
|
||||||
|
areas to which this product is applied and surface water features such as ponds,
|
||||||
|
streams, and springs will reduce the potential for contamination of water from
|
||||||
|
rainfall runoff. Runoff of this product will be reduced by avoiding applications when
|
||||||
|
rainfall is forecasted to occur within 48 hours.
|
||||||
|
Endangered Species Advisory/Protection Requirements
|
||||||
|
The use of any pesticide in a manner that may kill or otherwise harm endangered
|
||||||
|
species or adversely modify their habitat is a violation of Federal law.
|
||||||
|
CONDITIONS OF SALE AND LIMITATIONS OF WARRANTY AND LIABILITY
|
||||||
|
Read the entire Directions for Use, Conditions, Disclaimer of Warranties and Limitations
|
||||||
|
of Liability before using this product. If terms are not acceptable, return the unopened
|
||||||
|
product container at once.
|
||||||
|
By using this product, user or buyer accepts the following Conditions, Disclaimer of
|
||||||
|
Warranties and Limitations of Liability.
|
||||||
|
CONDITIONS: The directions for use of this product are believed to be adequate and
|
||||||
|
must be followed carefully. However, it is impossible to eliminate all risks associated with
|
||||||
|
the use of this product. Crop injury, ineffectiveness or other unintended consequences
|
||||||
|
may result because of such factors as weather conditions, presence of other materials,
|
||||||
|
or the manner of use or application, all of which are beyond the control of Bayer
|
||||||
|
CropScience. To the extent consistent with applicable law, all such risks shall be
|
||||||
|
assumed by the user or buyer.
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
3
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
DISCLAIMER OF WARRANTIES: TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, BAYER CROPSCIENCE MAKES NO OTHER WARRANTIES, EXPRESS OR
|
||||||
|
IMPLIED, OF MERCHANTABILITY OR OF FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
OR OTHERWISE, THAT EXTEND BEYOND THE STATEMENTS MADE ON THIS
|
||||||
|
LABEL. No agent of Bayer CropScience is authorized to make any warranties beyond
|
||||||
|
those contained herein or to modify the warranties contained herein. TO THE EXTENT
|
||||||
|
CONSISTENT WITH APPLICABLE LAW, BAYER CROPSCIENCE DISCLAIMS ANY
|
||||||
|
LIABILITY WHATSOEVER FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL
|
||||||
|
DAMAGES RESULTING FROM THE USE OR HANDLING OF THIS PRODUCT.
|
||||||
|
LIMITATIONS OF LIABILITY: TO THE EXTENT CONSISTENT WITH APPLICABLE
|
||||||
|
LAW, THE EXCLUSIVE REMEDY OF THE USER OR BUYER FOR ANY AND ALL
|
||||||
|
LOSSES, INJURIES OR DAMAGES RESULTING FROM THE USE OR HANDLING
|
||||||
|
OF THIS PRODUCT, WHETHER IN CONTRACT, WARRANTY , TORT, NEGLIGENCE,
|
||||||
|
STRICT LIABILITY OR OTHERWISE, SHALL NOT EXCEED THE PURCHASE
|
||||||
|
PRICE PAID, OR AT BAYER CROPSCIENCE’S ELECTION, THE REPLACEMENT OF
|
||||||
|
PRODUCT.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product in a manner
|
||||||
|
inconsistent with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
Do not apply this product in a way that will contact workers or other persons, either
|
||||||
|
directly or through drift. Only protected handlers may be in the area during application.
|
||||||
|
For any requirements specific to your State or Tribe, consult the agency responsible
|
||||||
|
for pesticide regulation.
|
||||||
|
AGRICULTURAL USE REQUIREMENTS
|
||||||
|
Use this product only in accordance with its labeling and with the Worker Protection
|
||||||
|
Standard, 40 CFR part 170. This Standard contains requirements for the protection
|
||||||
|
of agricultural workers on farms, forests, nurseries, and greenhouses, and handlers
|
||||||
|
of agricultural pesticides. It contains requirements for training, decontamination,
|
||||||
|
notification, and emergency assistance. It also contains specific instructions and
|
||||||
|
exceptions pertaining to the statements on this label about personal protective
|
||||||
|
equipment (PPE), notification to workers, and restricted-entry interval. The
|
||||||
|
requirements in this box only apply to uses of this product that are covered by the
|
||||||
|
Worker Protection Standard.
|
||||||
|
Do not enter or allow worker entry into treated areas during the restricted entry
|
||||||
|
interval (REI) of 24 hours following application.
|
||||||
|
PPE required for early entry to treated areas (that is permitted under the
|
||||||
|
Worker Protection Standard and that involves contact with anything that has
|
||||||
|
been treated, such as plants, soil, or water), is:
|
||||||
|
• Coveralls
|
||||||
|
• Chemical resistant gloves made of barrier laminate, butyl rubber ≥ 14 mils, nitrile
|
||||||
|
rubber ≥ 14 mils, natural rubber ≥ 14 mils, polyethylene, polyvinyl chloride ≥ 14
|
||||||
|
mils, or viton ≥ 14 mils.
|
||||||
|
• Shoes plus socks
|
||||||
|
PRODUCT INFORMATION
|
||||||
|
MOVENTO® HL:
|
||||||
|
• Is a suspension concentrate formulation and is active primarily by ingestion against
|
||||||
|
immature target pest life stages. In addition, fertility of adult female target pests, such
|
||||||
|
as aphids and whiteflies, may be reduced.
|
||||||
|
• Can be applied by air, ground equipment or through chemigation as a preventative
|
||||||
|
treatment or timed to coincide with an early threshold level in developing insect
|
||||||
|
populations.
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
4
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
• Must be tank mixed with a spray adjuvant / additive having spreading and penetrating
|
||||||
|
properties to maximize leaf uptake and systemicity of the active ingredient within
|
||||||
|
treated plants; please contact your local Bayer CropScience representative or PCA
|
||||||
|
for specific recommendations by crop.
|
||||||
|
• Following application to plant foliage, MOVENTO HL is fully systemic, moving through
|
||||||
|
phloem and xylem to new shoot, leaf and root tissues; systemicity and efficacy may
|
||||||
|
be hindered during periods of cold temperatures, under drought conditions, or when
|
||||||
|
plants are not actively growing.
|
||||||
|
APPLICATION INSTRUCTIONS
|
||||||
|
• Foliar spray applications must be made using properly calibrated ground sprayers,
|
||||||
|
fixed- or rotary-winged aircraft or through properly designed, sprinkler-type,
|
||||||
|
chemigation equipment (See Chemigation Application section). Sufficient spray
|
||||||
|
volume, based on the size and density of the treated crop, must be utilized that
|
||||||
|
allows for good coverage of both young and old foliage without runoff or collection of
|
||||||
|
spray solution on leaf margins or other plant tissues. Good coverage will help ensure
|
||||||
|
maximum uptake by leaf surfaces and optimum systemicity within the plant.
|
||||||
|
° Ground applications must be made in a minimum of 15 gallons of water per
|
||||||
|
acre on potato and vegetable crops; 10 gallons of water per acre on field
|
||||||
|
crops.
|
||||||
|
° Aerial applications must be made in a minimum of 5 gallons of water per acre
|
||||||
|
in field, vegetable, and potato crops. The higher dosage of MOVENTO HL
|
||||||
|
within the crop/pest-specific section may be necessary for optimum control
|
||||||
|
for aerial applications.
|
||||||
|
USE RESTRICTIONS
|
||||||
|
• Do not use in enclosed structures, such as greenhouses or planthouses.
|
||||||
|
• For annual crops where multiple plantings can occur within a calendar year, do
|
||||||
|
not apply more than 15 fl oz/A, which is 0.47 lb spirotetramat/A within a calendar
|
||||||
|
year unless specified otherwise within a crop-specific section for a given crop.
|
||||||
|
• The tank mixture of MOVENTO HL with an adjuvant / additive having sticking
|
||||||
|
properties or crop protection product formulations containing built-in stickers
|
||||||
|
have been shown to interfere with leaf uptake and should be avoided.
|
||||||
|
• Do not apply when winds are greater than 15 mph and avoid gusty and windless
|
||||||
|
conditions.
|
||||||
|
Refer to the specific use directions and restrictions in each Crop, Crop Group or
|
||||||
|
Crop Subgroup table.
|
||||||
|
INSECT RESISTANCE MANAGEMENT RECOMMENDATIONS
|
||||||
|
MOVENTO HL contains an active ingredient with a mode of action classified as a
|
||||||
|
Group 23 Insecticide, i.e., a lipid biosynthesis inhibitor (LBI). To delay insecticide
|
||||||
|
resistance:
|
||||||
|
• Some insects are known to develop resistance to insecticides after repeated
|
||||||
|
use. As with any insecticide, the use of this product should conform to resistance
|
||||||
|
management strategies established for the use area.
|
||||||
|
• Bayer CropScience strongly encourages that MOVENTO HL, applied alone or
|
||||||
|
in tank mix combination with another Group 23 product, be applied in a block
|
||||||
|
rotation or windowed approach with products from other chemical classes
|
||||||
|
having a different mode of action before using additional applications of Group
|
||||||
|
23 insecticides against the same target pest. Using a block rotation or windowed
|
||||||
|
approach, along with other IPM practices, is considered an effective use strategy
|
||||||
|
for preventing or delaying an insect pest’s ability to develop resistance to a given
|
||||||
|
class of chemistry.
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
5
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Contact your local extension specialist, certified crop advisor, and/or Bayer CropScience
|
||||||
|
representative for additional resistance management or IPM recommendations. Also,
|
||||||
|
for more information on Insect Resistance Management (IRM), visit the Insecticide
|
||||||
|
Resistance Action Committee (IRAC) on the web at http://irac-online.org.
|
||||||
|
CHEMIGATION - VEGETABLE AND POTATO CROPS ONLY
|
||||||
|
Types of irrigation systems
|
||||||
|
Apply this product only through:
|
||||||
|
• Sprinkler type irrigation systems only .
|
||||||
|
• These types include: center pivot, lateral move, side roll, or overhead solid set
|
||||||
|
irrigation systems.
|
||||||
|
• Do not apply MOVENTO HL through any other type of irrigation system.
|
||||||
|
• Do not apply when wind speed favors drift beyond the area intended for treatment.
|
||||||
|
Uniform water distribution and system calibration
|
||||||
|
The irrigation system must provide uniform distribution of treated water. Crop injury,
|
||||||
|
lack of effectiveness, or illegal pesticide residues in the crop can result from non-
|
||||||
|
uniform distribution of treated water. The chemigation system must be calibrated to
|
||||||
|
uniformly apply the rates specified in crop-specific label sections. If you have questions
|
||||||
|
about calibration, contact your Cooperative Extension Service agent, equipment
|
||||||
|
manufacturers, or other experts.
|
||||||
|
Chemigation monitoring
|
||||||
|
A person knowledgeable of the chemigation system and responsible for its operation,
|
||||||
|
or under the supervision of the responsible person, shall shut the system down and
|
||||||
|
make necessary adjustments should the need arise.
|
||||||
|
Required system safety devices
|
||||||
|
The system must contain a functional check valve, vacuum relief valve, and low-
|
||||||
|
pressure drain appropriately located on the irrigation pipeline to prevent water
|
||||||
|
source contamination from backflow. The pesticide injection pipeline must contain a
|
||||||
|
functional, automatic, quick-closing check valve to prevent the flow of fluid back toward
|
||||||
|
the injection pump. The pesticide injection pipeline must also contain a functional,
|
||||||
|
normally closed, solenoid-operated valve located on the intake side of the injection
|
||||||
|
pump and connected to the system interlock to prevent fluid from being withdrawn
|
||||||
|
from the supply tank when the irrigation system is either automatically or manually
|
||||||
|
shut down. The system must contain functional interlocking controls to automatically
|
||||||
|
shut off the pesticide injection pump when the water pump motor/engine stops or in
|
||||||
|
cases where there is no water pump, when water pressure decreases to the point
|
||||||
|
where pesticide distribution is adversely affected. The irrigation line or water pump
|
||||||
|
must include a functional pressure switch, which will stop the water pump motor when
|
||||||
|
the water pressure decreases to the point where pesticide distribution is adversely
|
||||||
|
affected. Systems must use a metering pump, such as a positive displacement injection
|
||||||
|
pump (e.g. diaphragm pump) effectively designed and constructed of materials that
|
||||||
|
are compatible with pesticides and capable of being fitted with a system interlock.
|
||||||
|
Using water from public water systems
|
||||||
|
Do not connect an irrigation system (including greenhouse system) used for pesticide
|
||||||
|
application to a public water system unless the pesticide label-prescribed safety
|
||||||
|
devices for public water systems are in place. Public water system means a system for
|
||||||
|
the provision to the public of piped water for human consumption if such system has at
|
||||||
|
least 15 service connections or regularly serves an average of at least 25 individuals
|
||||||
|
daily at least 60 days out of the year. Chemigation systems connected to public water
|
||||||
|
systems must contain a functional, reduced-pressure zone, back-flow preventer
|
||||||
|
(RPZ) or the functional equivalent in the water supply line upstream from the point of
|
||||||
|
pesticide introduction. As an option to the RPZ, the water from the public water system
|
||||||
|
should be discharged into a reservoir tank prior to pesticide introduction. There shall
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
6
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
be a complete physical break (air gap) between the outlet end of the fill pipe and the
|
||||||
|
top or overflow rim of the reservoir tank of at least twice the inside diameter of the fill
|
||||||
|
pipe. The pesticide injection pipeline must contain a functional automatic quick-closing
|
||||||
|
check valve to prevent the flow of fluid back toward the injection pump. The pesticide
|
||||||
|
injection pipeline must contain a functional normally closed solenoid-operated valve
|
||||||
|
located on the intake side of the injection pump and connected to the system interlock
|
||||||
|
to prevent fluid from being withdrawn from the supply tank when the irrigation system
|
||||||
|
is either automatically or manually shut down. The system must contain functional
|
||||||
|
interlocking controls to automatically shut off the pesticide injection pump when the
|
||||||
|
water pump motor stops or in cases where there is no water pump, when the water
|
||||||
|
pressure decreases to the point where pesticide distribution is adversely affected.
|
||||||
|
Systems must use a metering pump such as a positive displacement injection pump
|
||||||
|
(e.g. diaphragm pump) effectively designed and constructed of materials that are
|
||||||
|
compatible with pesticides and capable of being fitted with a system interlock.
|
||||||
|
Injection for chemigation
|
||||||
|
Inject the specified dosage of MOVENTO HL into the irrigation main water stream: (1)
|
||||||
|
through a constant flow, metering device; (2) into the center of the main line flow via a
|
||||||
|
pitot tube or equivalent; (3) at a point ahead of at least one, right-angle turn in the main
|
||||||
|
stream flow such that thorough mixing with the irrigation water is ensured.
|
||||||
|
Center-pivot and automatic-move linear systems
|
||||||
|
Inject the specified dosage per acre continuously for one complete revolution (center
|
||||||
|
pivot) or move of the system. The system should be run at maximum speed. It is
|
||||||
|
recommended that nozzles in the immediate area of control panels, chemical supply
|
||||||
|
tanks, pumps, and system safety devices be plugged to prevent chemical contamination
|
||||||
|
of these areas. The use of END GUNS is NOT RECOMMENDED. End guns that
|
||||||
|
provide uneven distribution of treated water can result in lack of effectiveness or illegal
|
||||||
|
pesticide residues in or on the crop.
|
||||||
|
Solid set and manually controlled linear systems
|
||||||
|
Injection should be during the last 30 to 60 minutes of regular irrigation period or as a
|
||||||
|
separate 30 to 60 minute application not associated with a regular irrigation.
|
||||||
|
Chemigation Application Instructions
|
||||||
|
Chemigation applications must be made as concentrated as possible. For best
|
||||||
|
results apply at 100% input/travel speed, for center pivots or 0.1 inch (2,716 gallons)
|
||||||
|
up to 0.15
|
||||||
|
inch (4,073 gallons) of water/A, for other systems. The higher dosage of
|
||||||
|
MOVENTO HL within the crop-specific/pest section may be necessary for optimum
|
||||||
|
control for chemigation applications.
|
||||||
|
Flushing and Cleaning the chemical injection system
|
||||||
|
At the end of the application period, allow time for all lines to flush the pesticide
|
||||||
|
through all nozzles or emitters before turning off irrigation water. To ensure the lines
|
||||||
|
are flushed and free of pesticides, a dye indicator may be injected into the lines to
|
||||||
|
mark the end of the application period.
|
||||||
|
In order to apply pesticides accurately, the chemical injection system must be kept
|
||||||
|
clean, free of chemical or fertilizer residues and sediments. Refer to your owner’s
|
||||||
|
manual or ask your equipment supplier for the cleaning procedure for your injection
|
||||||
|
system.
|
||||||
|
SPRAY DRIFT MANAGEMENT
|
||||||
|
Do not apply when wind speed favors drift beyond the area intended for treatment. The
|
||||||
|
interaction of many equipment and weather related factors determine the potential
|
||||||
|
for spray drift. The applicator is responsible for considering all of these factors when
|
||||||
|
making application decisions. Avoiding spray drift is the responsibility of the applicator.
|
||||||
|
Droplet Size
|
||||||
|
An important factor influencing drift is droplet size. Select nozzles and pressure that
|
||||||
|
deliver medium spray droplets as indicated in nozzle manufacturer’s catalogs and in
|
||||||
|
accordance with ASAE Standard S-572. Nozzles that deliver coarse spray droplets
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
7
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
may be used to reduce spray drift provided spray volume per acre (GPA) is increased
|
||||||
|
to maintain crop coverage. For aerial application, spray should be released at the
|
||||||
|
lowest possible height consistent with good pest control and flight safety. Applications
|
||||||
|
more than 10 feet above the crop canopy should be avoided. Low humidity and high
|
||||||
|
temperature increase the evaporation rate of spray droplets and therefore the likelihood
|
||||||
|
of spray drift to aquatic areas. Avoid spraying during conditions of low humidity and/
|
||||||
|
or high temperature.
|
||||||
|
Wind Speed
|
||||||
|
Drift potential increases at wind speeds of less than 3 mph (due to inversion potential)
|
||||||
|
or more than 10 mph. However, many factors, including droplet size, canopy and
|
||||||
|
equipment specifications determine drift potential at any given wind speed. Do not
|
||||||
|
apply when winds are greater than 15 mph and avoid gusty and windless conditions.
|
||||||
|
Avoiding applications when wind direction is toward an aquatic area can reduce risk
|
||||||
|
exposure to sensitive aquatic areas.
|
||||||
|
Temperature Inversions
|
||||||
|
Do not make aerial or ground applications during temperature inversions. Drift
|
||||||
|
potential is high during temperature inversions. Temperature inversions restrict vertical
|
||||||
|
air mixing, which causes small-suspended droplets to remain close to the ground and
|
||||||
|
move laterally in a concentrated cloud. Temperature inversions are characterized by
|
||||||
|
increasing temperature with altitude and are common on nights with limited cloud
|
||||||
|
cover and light to no wind. They begin to form as the sun sets and often continue
|
||||||
|
into the morning. Their presence can be indicated by ground fog. However, if fog
|
||||||
|
is not present, the movement of smoke from a ground source can also identify
|
||||||
|
inversions. Smoke that layers and moves laterally in a concentrated cloud (under low
|
||||||
|
wind conditions) indicates an inversion, while smoke that moves upward and rapidly
|
||||||
|
dissipates indicates good vertical air mixing.
|
||||||
|
Aerial Applications
|
||||||
|
• Mount the spray boom on the aircraft so as to minimize drift caused by wing tip
|
||||||
|
vortices.
|
||||||
|
• The minimum practical boom length should be used, and should not exceed
|
||||||
|
75% of the wing span or rotor diameter.
|
||||||
|
• Applications should not be made at a height greater than 10 feet above the top
|
||||||
|
of the largest plants unless a greater height is required for aircraft safety.
|
||||||
|
COMPATIBILITY TESTING AND TANK MIX PARTNERS
|
||||||
|
It is the pesticide user’s responsibility to ensure that all products are registered
|
||||||
|
for the intended use. Read and follow the applicable restrictions and limitations
|
||||||
|
and directions for use on all product labels involved in tank mixing. Users must
|
||||||
|
follow the most restrictive directions for use and precautionary statements of each
|
||||||
|
product in the tank mixture.
|
||||||
|
• When considering mixing MOVENTO HL with other pesticides, or other additives,
|
||||||
|
first contact your supplier for advice.
|
||||||
|
• For further information, contact your local Bayer representative.
|
||||||
|
• If your supplier and Bayer representative have no experience with the
|
||||||
|
combination you are considering, you should conduct a test to determine
|
||||||
|
physical compatibility.
|
||||||
|
• T o determine physical compatibility , add the recommended proportions of each
|
||||||
|
chemical with the same proportion of water, as will be present in the chemical
|
||||||
|
supply tank, into a suitable container, mix thoroughly and allow to stand for
|
||||||
|
five minutes. If the combination remains mixed, or can be readily re-mixed, the
|
||||||
|
mixture is considered physically compatible.
|
||||||
|
|
||||||
|
8
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Compatibility
|
||||||
|
MOVENTO HL is physically and biologically compatible with many registered
|
||||||
|
pesticides and fertilizers or micronutrients. However, it is known that many
|
||||||
|
components, including crop protection products, fertilizers, micronutrients, and
|
||||||
|
spray adjuvants, may be present in a tank mix combination. There is potential for
|
||||||
|
adverse chemical reactions. It is impossible to determine physical, biological,
|
||||||
|
and plant compatibility for all scenarios that may be encountered; therefore, it is
|
||||||
|
recommended that users determine the chemical, physical, biological and plant
|
||||||
|
compatibility of such mixes prior to making applications on a broad commercial
|
||||||
|
scale. Observe the most restrictive of the labeling instructions and precautions of
|
||||||
|
all products used in mixtures.
|
||||||
|
Order of Mixing
|
||||||
|
The proper mixing procedure for MOVENTO HL alone or in tank mix combinations with
|
||||||
|
other pesticides is:
|
||||||
|
1. Fill the spray tank 1/4 to 1/3 full with clean water;
|
||||||
|
2. While recirculating and with the agitator running, add any products in Polyvinyl
|
||||||
|
acetate (PVA) bags (See Note). Allow time for thorough mixing;
|
||||||
|
3. Continue to fill spray tank with water until 1/2 full;
|
||||||
|
4. Add any other wettable powder (WP) or wettable granules (WG) products;
|
||||||
|
5. Add the required amount of MOVENTO HL, and any other “flowable” (FL or SC)
|
||||||
|
type products; add required amount of MOVENTO HL, and;
|
||||||
|
6. Allow enough time for thorough mixing of each product added to tank;
|
||||||
|
7. If applicable, add any remaining tank mix components: emulsifiable concentrates
|
||||||
|
(EC), fertilizers and micronutrients;
|
||||||
|
8. Fill spray tank to desired level and maintain constant agitation to ensure uniformity
|
||||||
|
of spray mixture.
|
||||||
|
NOTE: Do not use PVA packets in a tank mix with products that contain boron or
|
||||||
|
release free chlorine. The resultant reaction of PVA and boron or free chlorine is a
|
||||||
|
plastic that is not soluble in water or solvents. For tank mixing with MOVENTO HL,
|
||||||
|
WSP packaged product user must carefully follow the label directions provided on
|
||||||
|
those product labels.
|
||||||
|
ROTATIONAL CROPS
|
||||||
|
• T reated areas may be replanted with any crop specified on this label, or any crop
|
||||||
|
for which a tolerance exists for the active ingredient, as soon as practical following
|
||||||
|
the last application.
|
||||||
|
• Do not plant or replant any crop not listed on this label within 30 days after the last
|
||||||
|
application except watercress, which has a 260-day plant-back interval (PBI).
|
||||||
|
SPECIFIC CROP DIRECTIONS
|
||||||
|
CROP USE DIRECTIONS
|
||||||
|
Apply specified dosage of MOVENTO HL early in the infestation as the population
|
||||||
|
begins to develop or at early threshold for the target insect pest. Apply higher dosages
|
||||||
|
specified within the crop specific sections when applied as a preventive application,
|
||||||
|
for moderate to heavy insect pressure, or where longer residual control is desired.
|
||||||
|
Degree of efficacy against labeled pests will be determined, in part, by the stage of
|
||||||
|
pest development at application and infestation level of those pests.
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
9
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
Apply in adequate water for uniform coverage. For field crops, apply in a minimum
|
||||||
|
of 10 GPA by ground and 5 GPA by aerial application. For vegetable and potato
|
||||||
|
crops, apply in a minimum of 15 GPA by ground and 5 GPA by aerial application.
|
||||||
|
MOVENTO HL may also be applied through overhead irrigation systems as
|
||||||
|
designated in the CHEMIGATION section of this label under Chemigation
|
||||||
|
Application Instructions.
|
||||||
|
MOVENTO HL must be tank mixed with a spray adjuvant / additive having
|
||||||
|
spreading and penetrating properties to maximize leaf uptake and systemicity
|
||||||
|
of the active ingredient within treated plants; please contact your local Bayer
|
||||||
|
CropScience representative or PCA for specific recommendations by crop.
|
||||||
|
The tank mixture of MOVENTO HL with an adjuvant / additive having sticking
|
||||||
|
properties or crop protection product formulations containing built-in stickers have
|
||||||
|
been shown to interfere with leaf uptake and should be avoided. Sufficient leaf
|
||||||
|
tissue must be present for uptake and translocation of this product.
|
||||||
|
BULB VEGETABLES
|
||||||
|
Crops of Crop SubGroup 3-07A Including: Daylily (bulb), Fritillaria (bulb),
|
||||||
|
Garlic (bulbs of common, great-headed, Serpent), Lily (bulb), Onion (bulbs of
|
||||||
|
common, Chinese, Pearl, potato onion), Shallot (bulb), plus cultivars, varieties,
|
||||||
|
and/or hybrids of these.
|
||||||
|
Crops of Crop Subgroup 3-07B Including: Chinese Chive (fresh leaves),
|
||||||
|
Chive (fresh leaves), Elegans hosta, Fritillaria (leaves), Kurrat, Leek (Allium
|
||||||
|
porrum, Lady’s, Wild), Onion (Beltsville bunching, fresh, green, macrostem,
|
||||||
|
tree [tops], Welsh [tops]), Shallot (fresh leaves), plus cultivars, varieties, and/or
|
||||||
|
hybrids of these.
|
||||||
|
Pests Controlled Product Rate
|
||||||
|
Onion thrips (larvae)
|
||||||
|
(fl oz/A) (lb ai/A)
|
||||||
|
2.5 0.08
|
||||||
|
Foliar Application Restrictions:
|
||||||
|
Pre-Harvest Interval (PHI): 3 day(s) (members of Subgroup 3-07A); 7 days
|
||||||
|
(members of Subgroup 3-07B)
|
||||||
|
Minimum interval between applications: 7 days
|
||||||
|
Maximum MOVENTO HL allowed per crop season: 5 fl oz/A
|
||||||
|
Maximum spirotetramat per crop season: 0.16 lb ai/A
|
||||||
|
For Onions, Leeks, and Chives grown for seed production, do not apply 4
|
||||||
|
months prior to bloom, during bloom or until after petal fall.
|
||||||
|
|
||||||
|
10
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
LEGUME VEGETABLES
|
||||||
|
Crops of Crop Group 6 (except soybean, dry) Including: Edible Podded and
|
||||||
|
Succulent Shelled Pea and Bean and Dried Shelled Pea and Bean
|
||||||
|
Bean (Lupinus spp., including grain lupin, sweet lupin, white lupin, and white sweet
|
||||||
|
lupin)
|
||||||
|
Bean (Phaseolus spp., including field bean, kidney bean, lima bean, navy bean,
|
||||||
|
pinto bean, runner bean, snap bean, tepary bean, wax bean)
|
||||||
|
Bean (Vigna spp., including adzuki bean, asparagus bean, blackeyed pea, catjang,
|
||||||
|
Chinese longbean, cowpea, Crowder pea, moth bean, mung bean, rice bean,
|
||||||
|
Southern pea, urd bean, yardlong bean)
|
||||||
|
Pea (Pisum spp. including dwarf pea, edible-pod pea, English pea, field pea, garden
|
||||||
|
pea, green pea, snow pea, sugar snap pea)
|
||||||
|
Other Beans and Peas (Broad bean (fava), Chickpea (garbanzo bean), Guar,
|
||||||
|
Jackbean, Lablab bean (hyacinth bean), Lentil, Pigeon pea, soybean (immature
|
||||||
|
seed), Sword bean
|
||||||
|
)
|
||||||
|
Pests Controlled Product Rate
|
||||||
|
Aphids
|
||||||
|
Whiteflies
|
||||||
|
|
||||||
|
(fl oz/A) (lb ai/A)
|
||||||
|
2.0 – 2.5 0.06 – 0.08
|
||||||
|
Pests Suppressed
|
||||||
|
Leafminers
|
||||||
|
Melon thrips (larvae)
|
||||||
|
Nematodes
|
||||||
|
Twospotted spider mite
|
||||||
|
Western flower thrips (larvae)
|
||||||
|
Foliar Application Restrictions:
|
||||||
|
Pre-Harvest Interval (PHI): 1 day(s) (edible podded and succulent beans and
|
||||||
|
peas); 7 day (dry shelled beans and peas).
|
||||||
|
Minimum interval between applications: 7 days
|
||||||
|
Maximum MOVENTO HL allowed per crop season: 5 fl oz/A
|
||||||
|
Maximum spirotetramat per crop season: 0.16 lb ai/A
|
||||||
|
|
||||||
|
11
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
POTATO
|
||||||
|
Pests Controlled Product Rate
|
||||||
|
Aphids
|
||||||
|
Psyllids
|
||||||
|
Whiteflies
|
||||||
|
(fl oz/A) (lb ai/A)
|
||||||
|
2.0 – 2.5 0.06 – 0.08
|
||||||
|
Pests Suppressed
|
||||||
|
Nematodes
|
||||||
|
Twospotted spider mite
|
||||||
|
Western flower thrips (larvae)
|
||||||
|
Wireworms
|
||||||
|
Foliar Application Restrictions:
|
||||||
|
Pre-Harvest Interval (PHI): 7 day(s)
|
||||||
|
Minimum interval between applications: 7 days
|
||||||
|
Maximum MOVENTO HL allowed per crop season: 5 fl oz/A
|
||||||
|
Maximum spirotetramat per crop season: 0.16 lb ai/A
|
||||||
|
SUGAR BEET
|
||||||
|
Pests Controlled Product Rate
|
||||||
|
Bean aphid
|
||||||
|
Root Aphid
|
||||||
|
Whiteflies
|
||||||
|
(fl oz/A) (lb ai/A)
|
||||||
|
2.25 – 4.5 0.07 – 0.14Pests Suppressed
|
||||||
|
Root Maggot
|
||||||
|
Sugar beet cyst nematode
|
||||||
|
Foliar Application Restrictions:
|
||||||
|
Pre-Harvest Interval (PHI): 28 day(s)
|
||||||
|
Minimum interval between applications: 14 days
|
||||||
|
Maximum MOVENTO HL allowed per crop season: 9 fl oz/A
|
||||||
|
Maximum spirotetramat per crop season: 0.28 lb ai/A
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage or disposal.
|
||||||
|
Pesticide storage
|
||||||
|
MOVENTO HL is packaged in poly-ethylene containers. Do not allow product or
|
||||||
|
containers to freeze. Store in a cool, dry place and in such a manner as to prevent
|
||||||
|
cross contamination with other pesticides, fertilizers, food, and feed. Store in original
|
||||||
|
container and out of the reach of children, preferably in a locked storage area.
|
||||||
|
Handle and open container in a manner as to prevent spillage. If container is
|
||||||
|
leaking, invert to prevent leakage. If the container is leaking or material is spilled
|
||||||
|
for any reason or cause, carefully dam up spilled material to prevent runoff. Refer
|
||||||
|
to Precautionary Statements on label for hazards associated with the handling
|
||||||
|
(continued)
|
||||||
|
|
||||||
|
12
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
of this material. Do not walk through spilled material. Absorb spilled material
|
||||||
|
with absorbing type compounds and dispose of as directed for pesticides below.
|
||||||
|
In spill or leak incidents, keep unauthorized people away. Y ou may contact
|
||||||
|
the Bayer CropScience Emergency Response Team for decontamination
|
||||||
|
procedures or any other assistance that may be necessary. The Bayer CropScience
|
||||||
|
Emergency Response Telephone No. is (800) 334-7577, or contact Chemtrec at
|
||||||
|
(800) 424-9300.
|
||||||
|
Pesticide disposal
|
||||||
|
Pesticide wastes are toxic. Improper disposal of excess pesticide, spray mixture,
|
||||||
|
or rinsate is a violation of Federal Law. If these wastes cannot be disposed of by
|
||||||
|
use according to label instructions, contact your State Pesticide or Environmental
|
||||||
|
Control Agency, or the Hazardous Waste representative at the nearest EPA
|
||||||
|
Regional Office for guidance.
|
||||||
|
Container handling
|
||||||
|
Rigid, Non-refillable containers (equal to or less than 5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this container. Offer for recycling,
|
||||||
|
if available. Triple rinse or pressure rinse container (or equivalent) promptly after
|
||||||
|
emptying. Triple rinse as follows: Empty the remaining contents into application
|
||||||
|
equipment or a mix tank and drain for 10 seconds after the flow begins to drip. Fill
|
||||||
|
the container 1/4 full with water and recap. Shake for 10 seconds. Pour rinsate into
|
||||||
|
application equipment or a mix tank or store rinsate for later use or disposal. Drain
|
||||||
|
for 10 seconds after the flow begins to drip. Repeat this procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining contents into application
|
||||||
|
equipment or a mix tank and continue to drain for 10 seconds after the flow begins
|
||||||
|
to drip. Hold container upside down over application equipment or mix tank or
|
||||||
|
collect rinsate for later use or disposal. Insert pressure rinsing nozzle in the side
|
||||||
|
of the container, and rinse at about 40 PSI for at least 30 seconds. Drain for 10
|
||||||
|
seconds after the flow begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available or puncture and dispose
|
||||||
|
of in a sanitary landfill.
|
||||||
|
|
||||||
|
13
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
14
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
15
|
||||||
|
4.50”
|
||||||
|
4.0625”
|
||||||
|
7.75”
|
||||||
|
7.375”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
|
||||||
|
PLACE BAR CODE HERE
|
||||||
|
NET CONTENTS: 2 1/2 GALLONS
|
||||||
|
(01) 0 0785740 53360 4
|
||||||
|
5.50”
|
||||||
|
BASE LABEL
|
||||||
|
4.125”0.875” 0.50”
|
||||||
|
7.75”
|
||||||
|
7.50”
|
||||||
|
COPY AREA
|
||||||
|
COPY AREA
|
||||||
|
cross contamination with other pesticides, fertilizers,
|
||||||
|
food, and feed. Store in original container and out of the
|
||||||
|
reach of children, preferably in a locked storage area.
|
||||||
|
Handle and open container in a manner as to prevent
|
||||||
|
spillage. If container is leaking, invert to prevent leakage.
|
||||||
|
If the container is leaking or material is spilled for any
|
||||||
|
reason or cause, carefully dam up spilled material to
|
||||||
|
prevent runoff. Refer to Precautionary Statements on
|
||||||
|
label for hazards associated with the handling of this
|
||||||
|
material. Do not walk through spilled material. Absorb
|
||||||
|
spilled material with absorbing type compounds and
|
||||||
|
dispose of as directed for pesticides below. In spill
|
||||||
|
or leak incidents, keep unauthorized people away.
|
||||||
|
Y ou may contact the Bayer CropScience Emergency
|
||||||
|
Response Team for decontamination procedures or
|
||||||
|
any other assistance that may be necessary. The
|
||||||
|
Bayer CropScience Emergency Response Telephone
|
||||||
|
No. is (800) 334-7577, or contact Chemtrec at (800)
|
||||||
|
424-9300.
|
||||||
|
Pesticide disposal
|
||||||
|
Pesticide wastes are toxic. Improper disposal of excess
|
||||||
|
pesticide, spray mixture, or rinsate is a violation of
|
||||||
|
Federal Law. If these wastes cannot be disposed of by
|
||||||
|
use according to label instructions, contact your State
|
||||||
|
Pesticide or Environmental Control Agency, or the
|
||||||
|
Hazardous Waste representative at the nearest EPA
|
||||||
|
Regional Office for guidance.
|
||||||
|
Container handling
|
||||||
|
Rigid, Non-refillable containers (equal to or less than
|
||||||
|
5 gallons)
|
||||||
|
Non-refillable container. Do not reuse or refill this
|
||||||
|
container. Offer for recycling, if available. Triple rinse or
|
||||||
|
pressure rinse container (or equivalent) promptly after
|
||||||
|
emptying. Triple rinse as follows: Empty the remaining
|
||||||
|
contents into application equipment or a mix tank and
|
||||||
|
drain for 10 seconds after the flow begins to drip. Fill
|
||||||
|
the container 1/4 full with water and recap. Shake for 10
|
||||||
|
seconds. Pour rinsate into application equipment or a
|
||||||
|
mix tank or store rinsate for later use or disposal. Drain
|
||||||
|
for 10 seconds after the flow begins to drip. Repeat this
|
||||||
|
procedure two more times.
|
||||||
|
Pressure rinse as follows: Empty the remaining
|
||||||
|
contents into application equipment or a mix tank and
|
||||||
|
continue to drain for 10 seconds after the flow begins
|
||||||
|
to drip. Hold container upside down over application
|
||||||
|
equipment or mix tank or collect rinsate for later use
|
||||||
|
or disposal. Insert pressure rinsing nozzle in the side
|
||||||
|
of the container, and rinse at about 40 PSI for at
|
||||||
|
least 30 seconds. Drain for 10 seconds after the flow
|
||||||
|
begins to drip.
|
||||||
|
Once container is rinsed, offer for recycling if available
|
||||||
|
or puncture and dispose of in a sanitary landfill.
|
||||||
|
Bayer CropScience LP
|
||||||
|
800 N. Lindbergh Blvd.
|
||||||
|
St. Louis, MO 63167
|
||||||
|
MOVENTO is a registered trademark of Bayer.
|
||||||
|
©2019 Bayer CropScience
|
||||||
|
US84932604D 170713Dv2 01/19
|
||||||
|
FIRST AID
|
||||||
|
If on skin or
|
||||||
|
clothing:
|
||||||
|
• Take off contaminated clothing.
|
||||||
|
• Rinse skin immediately with plenty
|
||||||
|
of water for 15 to 20 minutes.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor for treatment advice.
|
||||||
|
If swallowed: • Call a poison control center or
|
||||||
|
doctor immediately for treatment
|
||||||
|
advice.
|
||||||
|
• Have person sip a glass of water if
|
||||||
|
able to swallow.
|
||||||
|
• Do not induce vomiting unless told
|
||||||
|
to do so by a poison control center
|
||||||
|
or doctor.
|
||||||
|
• Do not give anything by mouth to
|
||||||
|
an unconscious person.
|
||||||
|
If in eyes: • Hold eye open and rinse slowly
|
||||||
|
and gently with water for 15-20
|
||||||
|
minutes.
|
||||||
|
• Remove contact lenses, if present,
|
||||||
|
after the first five minutes, then
|
||||||
|
continue rinsing.
|
||||||
|
• Call a poison control center or
|
||||||
|
doctor immediately for treatment
|
||||||
|
advice.
|
||||||
|
Have a product container or label with you
|
||||||
|
when calling a poison control center or
|
||||||
|
doctor, or going for treatment. You may also
|
||||||
|
contact 1-800-334-7577 for emergency medical
|
||||||
|
treatment information.
|
||||||
|
Note to Physician: No specific antidote is available.
|
||||||
|
Treat the patient symptomatically.
|
||||||
|
PRECAUTIONARY STATEMENTS
|
||||||
|
HAZARDS TO HUMANS AND DOMESTIC ANIMALS
|
||||||
|
CAUTION
|
||||||
|
• Harmful if swallowed or absorbed through skin.
|
||||||
|
• Causes moderate eye irritation.
|
||||||
|
• Avoid contact with skin, eyes, or clothing.
|
||||||
|
• Wash thoroughly with soap and water after handling
|
||||||
|
and before eating, drinking, chewing gum, or using
|
||||||
|
tobacco.
|
||||||
|
• Prolonged or frequently repeated skin contact may
|
||||||
|
cause allergic reactions in some individuals.
|
||||||
|
DIRECTIONS FOR USE
|
||||||
|
It is a violation of Federal law to use this product
|
||||||
|
in a manner inconsistent with its labeling.
|
||||||
|
Read the entire label before using this product.
|
||||||
|
STORAGE AND DISPOSAL
|
||||||
|
Do not contaminate water, food or feed by storage or
|
||||||
|
disposal.
|
||||||
|
Pesticide storage
|
||||||
|
MOVENTO HL is packaged in poly-ethylene containers.
|
||||||
|
Do not allow product or containers to freeze. Store in
|
||||||
|
a cool, dry place and in such a manner as to prevent
|
||||||
|
MOVENTO® HL
|
||||||
|
For Agricultural Use Only: For control of listed insects on certain field and
|
||||||
|
vegetable crops.
|
||||||
|
ACTIVE INGREDIENT:
|
||||||
|
Spirotetramat: cis-3-(2,5-dimethlyphenyl)-8-
|
||||||
|
methoxy-2-oxo-1-azaspiro[4.5]dec-3-en-4-yl-ethyl carbonate .............................. 42.86%
|
||||||
|
OTHER INGREDIENTS: ............................................................ 57.14%
|
||||||
|
MOVENTO HL contains 4.00 pounds Spirotetramat per U.S. gallon (480 grams AI/liter) TOTAL: 100.00%
|
||||||
|
EPA Reg. No. 264-1188
|
||||||
|
KEEP OUT OF REACH OF CHILDREN
|
||||||
|
CAUTION
|
||||||
|
For MEDICAL and TRANSPORTATION Emergencies ONLY Call 24 Hours A Day 1-800-334-7577
|
||||||
|
For PRODUCT USE Information Call 1-866-99BAYER (1-866-992-2937)
|
||||||
|
Please refer to booklet for additional precautionary statements and directions for use.
|
||||||
|
GROUP 23 INSECTICIDE
|
||||||
@@ -0,0 +1,99 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "movento-mpc",
|
||||||
|
"epa_reg_no": "264-1065",
|
||||||
|
"product_name": "Movento MPC Insecticide",
|
||||||
|
"product_class": "insecticide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Spirotetramat",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC_Label1gtpdf",
|
||||||
|
"filename": "Movento_MPC_Label1gtpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:50:54+00:00",
|
||||||
|
"page_count": 21,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "MOVENTO MPC MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC1iu_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:48:33+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "MOVENTO MPC MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC1ui_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T13:53:27+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Citrus",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC_2EE1ypdf",
|
||||||
|
"last_modified": "2026-01-30T13:50:52+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Asian Citrus Psyllid (ACP) on Citrus during Bloom Periods",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC_Section_24c1apdf",
|
||||||
|
"last_modified": "2026-01-30T13:48:50+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Citrus to Control Citrus Red Mite, Citrus Rust Mites, Snow Scale, & Purple Scale",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC_2EE2pdf",
|
||||||
|
"last_modified": "2026-01-30T13:40:46+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Citrus to control False Spider Mite",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC_2EE2apdf",
|
||||||
|
"last_modified": "2026-01-30T13:38:33+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For the Control of Asian Citrus Psyllids in Citrus during Bloom",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC_Section_24c1ppdf",
|
||||||
|
"last_modified": "2026-01-30T13:54:30+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Use on Young Immature Citrus Trees - via Handgun or Hoopboom Application",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC_2EE2bpdf",
|
||||||
|
"last_modified": "2026-01-30T13:58:49+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For the Control of Asian Citrus Psyllids in Citrus during Bloom",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MPC_Section_24c1vppdf",
|
||||||
|
"last_modified": "2026-01-30T13:45:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Movento MPC - Vegetables - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento-MPC_Vegetables_2026pdf",
|
||||||
|
"last_modified": "2026-05-22T00:06:00+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Movento MPC - Citrus - Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento-MPC_Citrus_2026pdf",
|
||||||
|
"last_modified": "2026-05-22T00:04:09+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/insecticide/movento-mpc-insecticide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:06:32.913940+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,69 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "movento",
|
||||||
|
"epa_reg_no": "264-1050",
|
||||||
|
"product_name": "Movento Insecticide",
|
||||||
|
"product_class": "insecticide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Spirotetramat",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento2h_Labelpdf",
|
||||||
|
"filename": "Movento2h_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T13:58:19+00:00",
|
||||||
|
"page_count": 66,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "MOVENTO MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MSDS1popdf",
|
||||||
|
"last_modified": "2026-01-30T14:01:47+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "MOVENTO MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_MSDS1oppdf",
|
||||||
|
"last_modified": "2026-01-30T14:25:58+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Control & Suppression of Pests Infesting Young Tree Nuts, Citrus, Stone Fruit, & Grapes & Application to Crops via Handgun or Smart Sprayer",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_2EE1zpdf",
|
||||||
|
"last_modified": "2026-01-30T14:23:39+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Asian Citrus Psyllid (ACP) on Citrus During Bloom Periods",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_Section_24c1ippdf",
|
||||||
|
"last_modified": "2026-01-30T13:53:16+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Other",
|
||||||
|
"title": "Movento Treat Nematodes Root Health Tree Longevity",
|
||||||
|
"url": "https://www.cs-contentapi.bayer.com/content/dam/regional-folders/na/united-states/english/staging/e2e-migration-folder/cp-pdps/insecticides/movento/Movento-Treat-Nematodes-Root-Health-Tree-Longevity.pdf",
|
||||||
|
"last_modified": "2022-12-02T16:05:44+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "Bulletin",
|
||||||
|
"title": "Movento Product Bulletin",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Movento_2026pdf",
|
||||||
|
"last_modified": "2026-05-15T19:36:49+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/insecticide/movento-insecticide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T01:05:55.929883+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,81 @@
|
|||||||
|
{
|
||||||
|
"source": "bayer",
|
||||||
|
"source_key": "nortron-sc",
|
||||||
|
"epa_reg_no": "264-613-ZC",
|
||||||
|
"product_name": "Nortron SC Herbicide",
|
||||||
|
"product_class": "herbicide",
|
||||||
|
"registrant": null,
|
||||||
|
"active_ingredients": [
|
||||||
|
{
|
||||||
|
"name": "Ethofumesate",
|
||||||
|
"cas": null,
|
||||||
|
"percent": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"signal_word": null,
|
||||||
|
"label": {
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_SC1k_Herbicide_Labelpdf",
|
||||||
|
"filename": "Nortron_SC1k_Herbicide_Labelpdf",
|
||||||
|
"accepted_date": null,
|
||||||
|
"last_modified": "2026-01-30T14:06:34+00:00",
|
||||||
|
"page_count": 21,
|
||||||
|
"text_layer": true
|
||||||
|
},
|
||||||
|
"supplemental_documents": [
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "NORTRON SC HERBICIDE MSDS - Spanish",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_SC1p_Herbicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:10:47+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "MSDS",
|
||||||
|
"title": "NORTRON SC HERBICIDE MSDS - English",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_SC1o_Herbicide_MSDSpdf",
|
||||||
|
"last_modified": "2026-01-30T14:01:20+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Selective Control of Weeds in Barden Beets",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_SC_Herbicide_Section_24c1bnpdf",
|
||||||
|
"last_modified": "2026-01-29T12:28:53+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "For Use on Sugar Beets",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_SC_Herbicide_2EE4bpdf",
|
||||||
|
"last_modified": "2026-01-30T13:57:41+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Plus Betamix - For Use on Sugar Beets",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_Sc_Herbicide_(6-09-06_Mn_Nd_Mt_Id_Ne_Co_Wy_Or__Wa_plus_Betamix_-_For_Use_On_Sugar_Beets_)_2eepdf",
|
||||||
|
"last_modified": "2026-01-30T13:55:25+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Weeds in Spinach Grown for Seed",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_SC_Herbicide_Section_24c1jupdf",
|
||||||
|
"last_modified": "2026-01-30T14:00:01+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "2EE",
|
||||||
|
"title": "Plus Progress for Use on Sugar Beets",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_Sc_Herbicide_(020306_Mn_Nd_Mt_Id_Ne_Co_Wy_Or__Wa_plus_Progress_For_Use_On_Sugar_Beets)_2eepdf",
|
||||||
|
"last_modified": "2026-01-30T14:15:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "24C",
|
||||||
|
"title": "For Control of Ladysthumb, Pale Smartweed, Wild Buckwheat, & Prostrate Knotweed in Table Beets & Swiss Chard Grown for Seed",
|
||||||
|
"url": "https://cs-assets.bayer.com/is/content/bayer/Nortron_SC_Herbicide_Section_24c1sxpdf",
|
||||||
|
"last_modified": "2026-01-30T14:07:52+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source_urls": {
|
||||||
|
"product_page": "https://www.cropscience.bayer.us/crop-protection/herbicide/nortron-sc-herbicide",
|
||||||
|
"label_api": null,
|
||||||
|
"label_index": null
|
||||||
|
},
|
||||||
|
"fetched_at": "2026-05-24T00:55:49.401904+00:00",
|
||||||
|
"scraper_version": "0.1.0"
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user