├── .gitignore ├── CHANGELOG.md ├── README.md ├── analysis_options.yaml ├── composer.json ├── data.kv ├── diff.txt ├── diff2.txt ├── example └── gbt2260_example.dart ├── lib ├── gbt2260.dart └── src │ └── gbt2260_base.dart ├── package.json ├── php └── Getter.php ├── pubspec.yaml ├── resource-builder ├── .origin.json ├── .origin.lock ├── Builder.php ├── Download.php ├── OriginArrayable.php └── bin.php ├── resources ├── 1980.json ├── 1981.json ├── 1982.json ├── 1983.json ├── 1984.json ├── 1985.json ├── 1986.json ├── 1987.json ├── 1988.json ├── 1989.json ├── 1990.json ├── 1991.json ├── 1992.json ├── 1993.json ├── 1994.json ├── 1995.json ├── 1996.json ├── 1997.json ├── 1998.json ├── 1999.json ├── 2000.json ├── 2001.json ├── 2002.json ├── 2003.json ├── 2004.json ├── 2005.json ├── 2006.json ├── 2007.json ├── 2008.json ├── 2009.json ├── 2010.json ├── 2011.json ├── 2012.json ├── 2013.json ├── 2014.json ├── 2015.json ├── 2016.json ├── 2017.json ├── 2018.json ├── 2019.json ├── 2020.json ├── diff.txt ├── diff │ ├── 1980-next.json │ ├── 1981-next.json │ ├── 1981-previous.json │ ├── 1982-next.json │ ├── 1982-previous.json │ ├── 1983-next.json │ ├── 1983-previous.json │ ├── 1984-next.json │ ├── 1984-previous.json │ ├── 1985-next.json │ ├── 1985-previous.json │ ├── 1986-next.json │ ├── 1986-previous.json │ ├── 1987-next.json │ ├── 1987-previous.json │ ├── 1988-next.json │ ├── 1988-previous.json │ ├── 1989-next.json │ ├── 1989-previous.json │ ├── 1990-next.json │ ├── 1990-previous.json │ ├── 1991-next.json │ ├── 1991-previous.json │ ├── 1992-next.json │ ├── 1992-previous.json │ ├── 1993-next.json │ ├── 1993-previous.json │ ├── 1994-next.json │ ├── 1994-previous.json │ ├── 1995-next.json │ ├── 1995-previous.json │ ├── 1996-next.json │ ├── 1996-previous.json │ ├── 1997-next.json │ ├── 1997-previous.json │ ├── 1998-next.json │ ├── 1998-previous.json │ ├── 1999-next.json │ ├── 1999-previous.json │ ├── 2000-next.json │ ├── 2000-previous.json │ ├── 2001-next.json │ ├── 2001-previous.json │ ├── 2002-next.json │ ├── 2002-previous.json │ ├── 2003-next.json │ ├── 2003-previous.json │ ├── 2004-next.json │ ├── 2004-previous.json │ ├── 2005-next.json │ ├── 2005-previous.json │ ├── 2006-next.json │ ├── 2006-previous.json │ ├── 2007-next.json │ ├── 2007-previous.json │ ├── 2008-next.json │ ├── 2008-previous.json │ ├── 2009-next.json │ ├── 2009-previous.json │ ├── 2010-next.json │ ├── 2010-previous.json │ ├── 2011-next.json │ ├── 2011-previous.json │ ├── 2012-next.json │ ├── 2012-previous.json │ ├── 2013-next.json │ ├── 2013-previous.json │ ├── 2014-next.json │ ├── 2014-previous.json │ ├── 2015-next.json │ ├── 2015-previous.json │ ├── 2016-next.json │ ├── 2016-previous.json │ ├── 2017-next.json │ ├── 2017-previous.json │ ├── 2018-next.json │ ├── 2018-previous.json │ ├── 2019-next.json │ ├── 2019-previous.json │ └── 2020-previous.json ├── last.alias └── map.json ├── test └── gbt2260_test.dart └── 规则.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/composer.json -------------------------------------------------------------------------------- /data.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/data.kv -------------------------------------------------------------------------------- /diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/diff.txt -------------------------------------------------------------------------------- /diff2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/diff2.txt -------------------------------------------------------------------------------- /example/gbt2260_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/example/gbt2260_example.dart -------------------------------------------------------------------------------- /lib/gbt2260.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/lib/gbt2260.dart -------------------------------------------------------------------------------- /lib/src/gbt2260_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/lib/src/gbt2260_base.dart -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/package.json -------------------------------------------------------------------------------- /php/Getter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/php/Getter.php -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /resource-builder/.origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resource-builder/.origin.json -------------------------------------------------------------------------------- /resource-builder/.origin.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resource-builder/.origin.lock -------------------------------------------------------------------------------- /resource-builder/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resource-builder/Builder.php -------------------------------------------------------------------------------- /resource-builder/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resource-builder/Download.php -------------------------------------------------------------------------------- /resource-builder/OriginArrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resource-builder/OriginArrayable.php -------------------------------------------------------------------------------- /resource-builder/bin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resource-builder/bin.php -------------------------------------------------------------------------------- /resources/1980.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1980.json -------------------------------------------------------------------------------- /resources/1981.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1981.json -------------------------------------------------------------------------------- /resources/1982.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1982.json -------------------------------------------------------------------------------- /resources/1983.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1983.json -------------------------------------------------------------------------------- /resources/1984.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1984.json -------------------------------------------------------------------------------- /resources/1985.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1985.json -------------------------------------------------------------------------------- /resources/1986.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1986.json -------------------------------------------------------------------------------- /resources/1987.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1987.json -------------------------------------------------------------------------------- /resources/1988.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1988.json -------------------------------------------------------------------------------- /resources/1989.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1989.json -------------------------------------------------------------------------------- /resources/1990.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1990.json -------------------------------------------------------------------------------- /resources/1991.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1991.json -------------------------------------------------------------------------------- /resources/1992.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1992.json -------------------------------------------------------------------------------- /resources/1993.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1993.json -------------------------------------------------------------------------------- /resources/1994.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1994.json -------------------------------------------------------------------------------- /resources/1995.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1995.json -------------------------------------------------------------------------------- /resources/1996.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1996.json -------------------------------------------------------------------------------- /resources/1997.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1997.json -------------------------------------------------------------------------------- /resources/1998.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1998.json -------------------------------------------------------------------------------- /resources/1999.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/1999.json -------------------------------------------------------------------------------- /resources/2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2000.json -------------------------------------------------------------------------------- /resources/2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2001.json -------------------------------------------------------------------------------- /resources/2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2002.json -------------------------------------------------------------------------------- /resources/2003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2003.json -------------------------------------------------------------------------------- /resources/2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2004.json -------------------------------------------------------------------------------- /resources/2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2005.json -------------------------------------------------------------------------------- /resources/2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2006.json -------------------------------------------------------------------------------- /resources/2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2007.json -------------------------------------------------------------------------------- /resources/2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2008.json -------------------------------------------------------------------------------- /resources/2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2009.json -------------------------------------------------------------------------------- /resources/2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2010.json -------------------------------------------------------------------------------- /resources/2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2011.json -------------------------------------------------------------------------------- /resources/2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2012.json -------------------------------------------------------------------------------- /resources/2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2013.json -------------------------------------------------------------------------------- /resources/2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2014.json -------------------------------------------------------------------------------- /resources/2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2015.json -------------------------------------------------------------------------------- /resources/2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2016.json -------------------------------------------------------------------------------- /resources/2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2017.json -------------------------------------------------------------------------------- /resources/2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2018.json -------------------------------------------------------------------------------- /resources/2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2019.json -------------------------------------------------------------------------------- /resources/2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/2020.json -------------------------------------------------------------------------------- /resources/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff.txt -------------------------------------------------------------------------------- /resources/diff/1980-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1980-next.json -------------------------------------------------------------------------------- /resources/diff/1981-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1981-next.json -------------------------------------------------------------------------------- /resources/diff/1981-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1981-previous.json -------------------------------------------------------------------------------- /resources/diff/1982-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1982-next.json -------------------------------------------------------------------------------- /resources/diff/1982-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1982-previous.json -------------------------------------------------------------------------------- /resources/diff/1983-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1983-next.json -------------------------------------------------------------------------------- /resources/diff/1983-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1983-previous.json -------------------------------------------------------------------------------- /resources/diff/1984-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1984-next.json -------------------------------------------------------------------------------- /resources/diff/1984-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1984-previous.json -------------------------------------------------------------------------------- /resources/diff/1985-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1985-next.json -------------------------------------------------------------------------------- /resources/diff/1985-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1985-previous.json -------------------------------------------------------------------------------- /resources/diff/1986-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1986-next.json -------------------------------------------------------------------------------- /resources/diff/1986-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1986-previous.json -------------------------------------------------------------------------------- /resources/diff/1987-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1987-next.json -------------------------------------------------------------------------------- /resources/diff/1987-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1987-previous.json -------------------------------------------------------------------------------- /resources/diff/1988-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1988-next.json -------------------------------------------------------------------------------- /resources/diff/1988-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1988-previous.json -------------------------------------------------------------------------------- /resources/diff/1989-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1989-next.json -------------------------------------------------------------------------------- /resources/diff/1989-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1989-previous.json -------------------------------------------------------------------------------- /resources/diff/1990-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1990-next.json -------------------------------------------------------------------------------- /resources/diff/1990-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1990-previous.json -------------------------------------------------------------------------------- /resources/diff/1991-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1991-next.json -------------------------------------------------------------------------------- /resources/diff/1991-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1991-previous.json -------------------------------------------------------------------------------- /resources/diff/1992-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1992-next.json -------------------------------------------------------------------------------- /resources/diff/1992-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1992-previous.json -------------------------------------------------------------------------------- /resources/diff/1993-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1993-next.json -------------------------------------------------------------------------------- /resources/diff/1993-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1993-previous.json -------------------------------------------------------------------------------- /resources/diff/1994-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1994-next.json -------------------------------------------------------------------------------- /resources/diff/1994-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1994-previous.json -------------------------------------------------------------------------------- /resources/diff/1995-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1995-next.json -------------------------------------------------------------------------------- /resources/diff/1995-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1995-previous.json -------------------------------------------------------------------------------- /resources/diff/1996-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1996-next.json -------------------------------------------------------------------------------- /resources/diff/1996-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1996-previous.json -------------------------------------------------------------------------------- /resources/diff/1997-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1997-next.json -------------------------------------------------------------------------------- /resources/diff/1997-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1997-previous.json -------------------------------------------------------------------------------- /resources/diff/1998-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1998-next.json -------------------------------------------------------------------------------- /resources/diff/1998-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1998-previous.json -------------------------------------------------------------------------------- /resources/diff/1999-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1999-next.json -------------------------------------------------------------------------------- /resources/diff/1999-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/1999-previous.json -------------------------------------------------------------------------------- /resources/diff/2000-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2000-next.json -------------------------------------------------------------------------------- /resources/diff/2000-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2000-previous.json -------------------------------------------------------------------------------- /resources/diff/2001-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2001-next.json -------------------------------------------------------------------------------- /resources/diff/2001-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2001-previous.json -------------------------------------------------------------------------------- /resources/diff/2002-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2002-next.json -------------------------------------------------------------------------------- /resources/diff/2002-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2002-previous.json -------------------------------------------------------------------------------- /resources/diff/2003-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2003-next.json -------------------------------------------------------------------------------- /resources/diff/2003-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2003-previous.json -------------------------------------------------------------------------------- /resources/diff/2004-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2004-next.json -------------------------------------------------------------------------------- /resources/diff/2004-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2004-previous.json -------------------------------------------------------------------------------- /resources/diff/2005-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2005-next.json -------------------------------------------------------------------------------- /resources/diff/2005-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2005-previous.json -------------------------------------------------------------------------------- /resources/diff/2006-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2006-next.json -------------------------------------------------------------------------------- /resources/diff/2006-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2006-previous.json -------------------------------------------------------------------------------- /resources/diff/2007-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2007-next.json -------------------------------------------------------------------------------- /resources/diff/2007-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2007-previous.json -------------------------------------------------------------------------------- /resources/diff/2008-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2008-next.json -------------------------------------------------------------------------------- /resources/diff/2008-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2008-previous.json -------------------------------------------------------------------------------- /resources/diff/2009-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2009-next.json -------------------------------------------------------------------------------- /resources/diff/2009-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2009-previous.json -------------------------------------------------------------------------------- /resources/diff/2010-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2010-next.json -------------------------------------------------------------------------------- /resources/diff/2010-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2010-previous.json -------------------------------------------------------------------------------- /resources/diff/2011-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2011-next.json -------------------------------------------------------------------------------- /resources/diff/2011-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2011-previous.json -------------------------------------------------------------------------------- /resources/diff/2012-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2012-next.json -------------------------------------------------------------------------------- /resources/diff/2012-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2012-previous.json -------------------------------------------------------------------------------- /resources/diff/2013-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2013-next.json -------------------------------------------------------------------------------- /resources/diff/2013-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2013-previous.json -------------------------------------------------------------------------------- /resources/diff/2014-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2014-next.json -------------------------------------------------------------------------------- /resources/diff/2014-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2014-previous.json -------------------------------------------------------------------------------- /resources/diff/2015-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2015-next.json -------------------------------------------------------------------------------- /resources/diff/2015-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2015-previous.json -------------------------------------------------------------------------------- /resources/diff/2016-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2016-next.json -------------------------------------------------------------------------------- /resources/diff/2016-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2016-previous.json -------------------------------------------------------------------------------- /resources/diff/2017-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2017-next.json -------------------------------------------------------------------------------- /resources/diff/2017-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2017-previous.json -------------------------------------------------------------------------------- /resources/diff/2018-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2018-next.json -------------------------------------------------------------------------------- /resources/diff/2018-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2018-previous.json -------------------------------------------------------------------------------- /resources/diff/2019-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2019-next.json -------------------------------------------------------------------------------- /resources/diff/2019-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2019-previous.json -------------------------------------------------------------------------------- /resources/diff/2020-previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/diff/2020-previous.json -------------------------------------------------------------------------------- /resources/last.alias: -------------------------------------------------------------------------------- 1 | 2020 -------------------------------------------------------------------------------- /resources/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/resources/map.json -------------------------------------------------------------------------------- /test/gbt2260_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/test/gbt2260_test.dart -------------------------------------------------------------------------------- /规则.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/gbt2260/HEAD/规则.md --------------------------------------------------------------------------------