_dephell()
{
  local first second current double
  COMPREPLY=()
  first="${COMP_WORDS[1]}"
  second="${COMP_WORDS[2]}"
  double="${COMP_WORDS[1]} ${COMP_WORDS[2]}"
  current="${COMP_WORDS[COMP_CWORD]}"

  # autocomplete command first word
  if [[ ${first} == ${current} ]] ; then
    COMPREPLY=( $(compgen -W "deps venv generate project vendor docker self inspect package jail --help" -- ${current}) )
    return 0
  fi

  # autocomplete command second word
  if [[ ${second} == ${current} ]] ; then
    case "${first}" in
      
        deps)
          COMPREPLY=( $(compgen -W "tree add check audit licenses sync outdated convert install " -- ${current}) )
          return 0
          ;;
      
        docker)
          COMPREPLY=( $(compgen -W "stop create shell destroy prepare tags run " -- ${current}) )
          return 0
          ;;
      
        generate)
          COMPREPLY=( $(compgen -W "config license travis editorconfig contributing authors " -- ${current}) )
          return 0
          ;;
      
        inspect)
          COMPREPLY=( $(compgen -W "versioning venv config project auth self gadget " -- ${current}) )
          return 0
          ;;
      
        jail)
          COMPREPLY=( $(compgen -W "install show list remove try " -- ${current}) )
          return 0
          ;;
      
        package)
          COMPREPLY=( $(compgen -W "changelog purge show bug search verify list downloads remove install releases " -- ${current}) )
          return 0
          ;;
      
        project)
          COMPREPLY=( $(compgen -W "bump register build test validate upload " -- ${current}) )
          return 0
          ;;
      
        self)
          COMPREPLY=( $(compgen -W "auth upgrade autocomplete uncache " -- ${current}) )
          return 0
          ;;
      
        vendor)
          COMPREPLY=( $(compgen -W "import download " -- ${current}) )
          return 0
          ;;
      
        venv)
          COMPREPLY=( $(compgen -W "entrypoint create shell destroy run " -- ${current}) )
          return 0
          ;;
      
      *)
      ;;
    esac
  fi

  # autocomplete one-word command arguments
  case "${first}" in
    
      "deps add")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps audit")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps check")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo --dotenv -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps convert")
        COMPREPLY=( $(compgen -W "-c --to-format --level --tests --envs --to --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --sdist-ratio --versioning --repo -h --mutations --to-path --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps install")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo --dotenv -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps licenses")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps outdated")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps sync")
        COMPREPLY=( $(compgen -W "-c --to-format --level --tests --envs --to --venv --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --sdist-ratio --versioning --repo --dotenv -h --mutations --to-path --format --bin --bitbucket --cache-ttl --env --strategy --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps tree")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --type --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker create")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker destroy")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker prepare")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker run")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker shell")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker stop")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker tags")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate authors")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate config")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate contributing")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate editorconfig")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate license")
        COMPREPLY=( $(compgen -W "-c --level --tests --owner --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate travis")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect auth")
        COMPREPLY=( $(compgen -W "-e -c --level --nocolors --pdb --env --silent --filter --table -h --config --help --traceback --format " -- ${current}) )
        return 0
        ;;
    
      "inspect config")
        COMPREPLY=( $(compgen -W "-c --to-format --level --tests --envs --to --venv --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --sdist-ratio --versioning --repo --dotenv -h --mutations --to-path --format --bin --bitbucket --cache-ttl --env --strategy --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect gadget")
        COMPREPLY=( $(compgen -W "-e -c --env -h --config --help " -- ${current}) )
        return 0
        ;;
    
      "inspect project")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect self")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect venv")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect versioning")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail install")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --prereleases --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --mutations --format --bin --cache-ttl --env --strategy --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail list")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail remove")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail show")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail try")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --command --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package bug")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package changelog")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package downloads")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "package install")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --prereleases --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --mutations --format --bin --cache-ttl --env --strategy --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package list")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package purge")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package releases")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "package remove")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package search")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "package show")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package verify")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "project build")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project bump")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --tag --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project register")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project test")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project upload")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --upload-identity --config --ca --upload-url --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --upload-sign --versioning -h --format --bin --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project validate")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning -h --format --bin --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "self auth")
        COMPREPLY=( $(compgen -W "-e -c --level --nocolors --pdb --env --silent --filter --table -h --config --help --traceback --format " -- ${current}) )
        return 0
        ;;
    
      "self autocomplete")
        COMPREPLY=( $(compgen -W "-e -c --level --nocolors --pdb --env --silent --filter --table -h --config --help --traceback --format " -- ${current}) )
        return 0
        ;;
    
      "self uncache")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "self upgrade")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "vendor download")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "vendor import")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv create")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv destroy")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv entrypoint")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --command --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv run")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv shell")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
    *)
    ;;
  esac

  # autocomplete two-words command arguments
  case "${double}" in
    
      "deps add")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps audit")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps check")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo --dotenv -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps convert")
        COMPREPLY=( $(compgen -W "-c --to-format --level --tests --envs --to --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --sdist-ratio --versioning --repo -h --mutations --to-path --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps install")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo --dotenv -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps licenses")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps outdated")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps sync")
        COMPREPLY=( $(compgen -W "-c --to-format --level --tests --envs --to --venv --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --sdist-ratio --versioning --repo --dotenv -h --mutations --to-path --format --bin --bitbucket --cache-ttl --env --strategy --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "deps tree")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --type --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker create")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker destroy")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker prepare")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker run")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker shell")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker stop")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "docker tags")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --docker-repo --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --docker-container -h --format --bin --cache-ttl --docker-tag --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate authors")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate config")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate contributing")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate editorconfig")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate license")
        COMPREPLY=( $(compgen -W "-c --level --tests --owner --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "generate travis")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect auth")
        COMPREPLY=( $(compgen -W "-e -c --level --nocolors --pdb --env --silent --filter --table -h --config --help --traceback --format " -- ${current}) )
        return 0
        ;;
    
      "inspect config")
        COMPREPLY=( $(compgen -W "-c --to-format --level --tests --envs --to --venv --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --sdist-ratio --versioning --repo --dotenv -h --mutations --to-path --format --bin --bitbucket --cache-ttl --env --strategy --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect gadget")
        COMPREPLY=( $(compgen -W "-e -c --env -h --config --help " -- ${current}) )
        return 0
        ;;
    
      "inspect project")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect self")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect venv")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "inspect versioning")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail install")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --prereleases --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --mutations --format --bin --cache-ttl --env --strategy --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail list")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail remove")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail show")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "jail try")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --command --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package bug")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package changelog")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package downloads")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "package install")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --prereleases --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --mutations --format --bin --cache-ttl --env --strategy --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package list")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package purge")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package releases")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "package remove")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package search")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "package show")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "package verify")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "project build")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project bump")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --warehouse --nocolors --pdb --project --silent --filter --tag --from-format --cache-path --help -e --from --versioning --repo -h --format --bin --bitbucket --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project register")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project test")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project upload")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --upload-identity --config --ca --upload-url --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --upload-sign --versioning -h --format --bin --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "project validate")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning -h --format --bin --cache-ttl --env --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "self auth")
        COMPREPLY=( $(compgen -W "-e -c --level --nocolors --pdb --env --silent --filter --table -h --config --help --traceback --format " -- ${current}) )
        return 0
        ;;
    
      "self autocomplete")
        COMPREPLY=( $(compgen -W "-e -c --level --nocolors --pdb --env --silent --filter --table -h --config --help --traceback --format " -- ${current}) )
        return 0
        ;;
    
      "self uncache")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "self upgrade")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "vendor download")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "vendor import")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --prereleases --ca --warehouse --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --repo -h --mutations --format --bin --bitbucket --cache-ttl --env --strategy --table --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv create")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv destroy")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning -h --bin --format --cache-ttl --env --table --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv entrypoint")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --command --venv --config --ca --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv run")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --warehouse --nocolors --pdb --project --silent --filter --cache-path --help -e --versioning --repo --dotenv -h --format --bin --bitbucket --cache-ttl --env --table --python --traceback " -- ${current}) )
        return 0
        ;;
    
      "venv shell")
        COMPREPLY=( $(compgen -W "-c --level --tests --envs --venv --config --ca --nocolors --pdb --project --silent --filter --from-format --cache-path --help -e --from --versioning --dotenv -h --format --bin --cache-ttl --env --table --python --from-path --traceback " -- ${current}) )
        return 0
        ;;
    
    *)
    ;;
  esac
}

complete -F _dephell dephell
