├── .htaccess ├── INSTALL.md ├── LICENSE ├── README.md ├── UPDATE.md ├── admin.php ├── admin ├── appmarket │ ├── appupgrade.php │ ├── check_upgrade.php │ ├── cloudappmarket.php │ ├── cp.php │ ├── default.php │ ├── edit.php │ ├── extopen.php │ ├── function │ │ └── function_appmarket.php │ ├── images │ │ └── market.css │ ├── import.php │ ├── index.php │ ├── install_app_ajax.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── scripts │ │ └── jquery-ui.js │ ├── template │ │ ├── appdefault.htm │ │ ├── cloudappmarket.htm │ │ ├── edit.htm │ │ ├── extopen.htm │ │ ├── import.htm │ │ ├── index.htm │ │ ├── lyear │ │ │ ├── lyear_header_search.htm │ │ │ └── lyear_left.htm │ │ ├── notinstall.htm │ │ ├── right_header.htm │ │ ├── uninstall_confirm.htm │ │ └── upgrade.htm │ ├── upgrade.php │ └── upgrade_app_ajax.php ├── cloud │ ├── add.php │ ├── edit.php │ ├── images │ │ └── connect.css │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── movetool.php │ ├── movetool_run.php │ ├── oauth.php │ ├── router.php │ ├── routeredit.php │ ├── space.php │ ├── spaceadd.php │ └── template │ │ ├── add.htm │ │ ├── cloud.htm │ │ ├── edit.htm │ │ ├── lyear │ │ └── lyear_left.htm │ │ ├── movetool.htm │ │ ├── movetool_run.htm │ │ ├── oauth_ALIOSS.htm │ │ ├── oauth_disk.htm │ │ ├── oauth_ftp.htm │ │ ├── oauth_qcos.htm │ │ ├── oauth_qiniu.htm │ │ ├── right_header.htm │ │ ├── router.htm │ │ ├── routeredit.htm │ │ ├── space.htm │ │ └── spaceadd.htm ├── dzzofficefiles.md5 ├── function │ └── function_admin.php ├── images │ └── loadding.gif ├── language │ └── zh-cn │ │ └── lang.php ├── login │ ├── classes │ │ └── adminlogin.php │ └── login.php ├── member │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── profileset.php │ ├── template │ │ ├── lyear │ │ │ └── lyear_left.htm │ │ ├── profileset.htm │ │ ├── profileset_edit.htm │ │ ├── verify.htm │ │ ├── verifyset.htm │ │ └── verifyset_edit.htm │ ├── verify.php │ └── verifyset.php ├── scripts │ ├── admin.js │ └── uploadpic.js ├── setting │ ├── ajax.php │ ├── assistant.php │ ├── images │ │ ├── 0.png │ │ ├── c.png │ │ ├── template1.jpg │ │ ├── template2.jpg │ │ ├── template3.jpg │ │ └── template4.jpg │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── mailcheck.php │ ├── permgroup.php │ ├── smiley.php │ ├── template │ │ ├── ajax.htm │ │ ├── lyear │ │ │ └── lyear_left.htm │ │ ├── mailcheck.htm │ │ ├── main.htm │ │ ├── perm_group.htm │ │ ├── smiley.htm │ │ └── smileyedit.htm │ ├── upload.php │ ├── wxsyn.php │ └── wxsyn_down.php ├── system │ ├── cron.php │ ├── database.php │ ├── fileperms.php │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── systemupgrade.php │ ├── template │ │ ├── cron.htm │ │ ├── database.htm │ │ ├── fileperms.htm │ │ ├── lyear │ │ │ └── lyear_left.htm │ │ ├── updatecache.htm │ │ ├── upgrade.htm │ │ └── upgrade_iframe.htm │ └── updatecache.php ├── systemlog │ ├── admin.php │ ├── classes │ │ └── systemlog.php │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ └── template │ │ ├── admin.htm │ │ ├── list.htm │ │ └── lyear │ │ └── lyear_left.htm └── template │ ├── header_left.htm │ └── lyear │ └── lyear_header_left.htm ├── avatar.php ├── config ├── config_default.php ├── config_frame.php └── index.html ├── core ├── adminstart.php ├── api │ ├── BaiduPCS │ │ ├── Baidu.php │ │ ├── BaiduApiClient.php │ │ ├── BaiduException.php │ │ ├── BaiduOAuth2.php │ │ ├── BaiduPCS.class.php │ │ ├── BaiduStore.php │ │ ├── BaiduUtils.php │ │ └── baiduRequestCore.class.php │ ├── OneDrive │ │ ├── Client.php │ │ └── autoload.php │ ├── Qcos │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── index.php │ │ ├── phpunit.xml │ │ ├── sample │ │ │ └── selectObjectContent.php │ │ ├── src │ │ │ └── Qcloud │ │ │ │ └── Cos │ │ │ │ ├── Client.php │ │ │ │ ├── CommandToRequestTransformer.php │ │ │ │ ├── Common.php │ │ │ │ ├── Copy.php │ │ │ │ ├── CosTransformer.php │ │ │ │ ├── Exception │ │ │ │ ├── CosException.php │ │ │ │ └── ServiceResponseException.php │ │ │ │ ├── ExceptionMiddleware.php │ │ │ │ ├── ExceptionParser.php │ │ │ │ ├── MultipartUpload.php │ │ │ │ ├── Request │ │ │ │ └── BodyLocation.php │ │ │ │ ├── ResultTransformer.php │ │ │ │ ├── Serializer.php │ │ │ │ ├── Service.php │ │ │ │ ├── Signature.php │ │ │ │ ├── SignatureMiddleware.php │ │ │ │ └── Tests │ │ │ │ ├── Test.php │ │ │ │ └── TestHelper.php │ │ └── vendor │ │ │ ├── autoload.php │ │ │ ├── composer │ │ │ ├── ClassLoader.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_files.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ └── installed.json │ │ │ ├── guzzlehttp │ │ │ ├── command │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Command.php │ │ │ │ │ ├── CommandInterface.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── CommandClientException.php │ │ │ │ │ ├── CommandException.php │ │ │ │ │ └── CommandServerException.php │ │ │ │ │ ├── HasDataTrait.php │ │ │ │ │ ├── Result.php │ │ │ │ │ ├── ResultInterface.php │ │ │ │ │ ├── ServiceClient.php │ │ │ │ │ ├── ServiceClientInterface.php │ │ │ │ │ └── ToArrayInterface.php │ │ │ ├── guzzle-services │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ │ ├── Description.php │ │ │ │ │ ├── DescriptionInterface.php │ │ │ │ │ ├── Deserializer.php │ │ │ │ │ ├── GuzzleClient.php │ │ │ │ │ ├── Handler │ │ │ │ │ │ └── ValidatedDescriptionHandler.php │ │ │ │ │ ├── Operation.php │ │ │ │ │ ├── Parameter.php │ │ │ │ │ ├── QuerySerializer │ │ │ │ │ │ ├── QuerySerializerInterface.php │ │ │ │ │ │ └── Rfc3986Serializer.php │ │ │ │ │ ├── RequestLocation │ │ │ │ │ │ ├── AbstractLocation.php │ │ │ │ │ │ ├── BodyLocation.php │ │ │ │ │ │ ├── FormParamLocation.php │ │ │ │ │ │ ├── HeaderLocation.php │ │ │ │ │ │ ├── JsonLocation.php │ │ │ │ │ │ ├── MultiPartLocation.php │ │ │ │ │ │ ├── QueryLocation.php │ │ │ │ │ │ ├── RequestLocationInterface.php │ │ │ │ │ │ └── XmlLocation.php │ │ │ │ │ ├── ResponseLocation │ │ │ │ │ │ ├── AbstractLocation.php │ │ │ │ │ │ ├── BodyLocation.php │ │ │ │ │ │ ├── HeaderLocation.php │ │ │ │ │ │ ├── JsonLocation.php │ │ │ │ │ │ ├── ReasonPhraseLocation.php │ │ │ │ │ │ ├── ResponseLocationInterface.php │ │ │ │ │ │ ├── StatusCodeLocation.php │ │ │ │ │ │ └── XmlLocation.php │ │ │ │ │ ├── SchemaFormatter.php │ │ │ │ │ ├── SchemaValidator.php │ │ │ │ │ └── Serializer.php │ │ │ │ └── tests │ │ │ │ │ ├── Asset │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CustomCommandException.php │ │ │ │ │ │ └── OtherCustomCommandException.php │ │ │ │ │ └── test.html │ │ │ │ │ ├── DescriptionTest.php │ │ │ │ │ ├── DeserializerTest.php │ │ │ │ │ ├── GuzzleClientTest.php │ │ │ │ │ ├── Handler │ │ │ │ │ └── ValidatedDescriptionHandlerTest.php │ │ │ │ │ ├── OperationTest.php │ │ │ │ │ ├── ParameterTest.php │ │ │ │ │ ├── QuerySerializer │ │ │ │ │ └── Rfc3986SerializerTest.php │ │ │ │ │ ├── RequestLocation │ │ │ │ │ ├── BodyLocationTest.php │ │ │ │ │ ├── FormParamLocationTest.php │ │ │ │ │ ├── HeaderLocationTest.php │ │ │ │ │ ├── JsonLocationTest.php │ │ │ │ │ ├── MultiPartLocationTest.php │ │ │ │ │ ├── QueryLocationTest.php │ │ │ │ │ └── XmlLocationTest.php │ │ │ │ │ ├── ResponseLocation │ │ │ │ │ ├── BodyLocationTest.php │ │ │ │ │ ├── HeaderLocationTest.php │ │ │ │ │ ├── JsonLocationTest.php │ │ │ │ │ ├── ReasonPhraseLocationTest.php │ │ │ │ │ ├── StatusCodeLocationTest.php │ │ │ │ │ └── XmlLocationTest.php │ │ │ │ │ ├── SchemaFormatterTest.php │ │ │ │ │ ├── SchemaValidatorTest.php │ │ │ │ │ └── SerializerTest.php │ │ │ ├── guzzle │ │ │ │ ├── .php_cs │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Dockerfile │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── UPGRADING.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ ├── Cookie │ │ │ │ │ ├── CookieJar.php │ │ │ │ │ ├── CookieJarInterface.php │ │ │ │ │ ├── FileCookieJar.php │ │ │ │ │ ├── SessionCookieJar.php │ │ │ │ │ └── SetCookie.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── BadResponseException.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── ConnectException.php │ │ │ │ │ ├── GuzzleException.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── RequestException.php │ │ │ │ │ ├── SeekException.php │ │ │ │ │ ├── ServerException.php │ │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ │ └── TransferException.php │ │ │ │ │ ├── Handler │ │ │ │ │ ├── CurlFactory.php │ │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ │ ├── CurlHandler.php │ │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ │ ├── EasyHandle.php │ │ │ │ │ ├── MockHandler.php │ │ │ │ │ ├── Proxy.php │ │ │ │ │ └── StreamHandler.php │ │ │ │ │ ├── HandlerStack.php │ │ │ │ │ ├── MessageFormatter.php │ │ │ │ │ ├── Middleware.php │ │ │ │ │ ├── Pool.php │ │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ │ ├── RequestOptions.php │ │ │ │ │ ├── RetryMiddleware.php │ │ │ │ │ ├── TransferStats.php │ │ │ │ │ ├── UriTemplate.php │ │ │ │ │ ├── functions.php │ │ │ │ │ └── functions_include.php │ │ │ ├── promises │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── AggregateException.php │ │ │ │ │ ├── CancellationException.php │ │ │ │ │ ├── Coroutine.php │ │ │ │ │ ├── EachPromise.php │ │ │ │ │ ├── FulfilledPromise.php │ │ │ │ │ ├── Promise.php │ │ │ │ │ ├── PromiseInterface.php │ │ │ │ │ ├── PromisorInterface.php │ │ │ │ │ ├── RejectedPromise.php │ │ │ │ │ ├── RejectionException.php │ │ │ │ │ ├── TaskQueue.php │ │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ │ ├── functions.php │ │ │ │ │ └── functions_include.php │ │ │ └── psr7 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── AppendStream.php │ │ │ │ ├── BufferStream.php │ │ │ │ ├── CachingStream.php │ │ │ │ ├── DroppingStream.php │ │ │ │ ├── FnStream.php │ │ │ │ ├── InflateStream.php │ │ │ │ ├── LazyOpenStream.php │ │ │ │ ├── LimitStream.php │ │ │ │ ├── MessageTrait.php │ │ │ │ ├── MultipartStream.php │ │ │ │ ├── NoSeekStream.php │ │ │ │ ├── PumpStream.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Rfc7230.php │ │ │ │ ├── ServerRequest.php │ │ │ │ ├── Stream.php │ │ │ │ ├── StreamDecoratorTrait.php │ │ │ │ ├── StreamWrapper.php │ │ │ │ ├── UploadedFile.php │ │ │ │ ├── Uri.php │ │ │ │ ├── UriNormalizer.php │ │ │ │ ├── UriResolver.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ │ ├── psr │ │ │ └── http-message │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── RequestInterface.php │ │ │ │ ├── ResponseInterface.php │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ ├── StreamInterface.php │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ └── UriInterface.php │ │ │ └── ralouphie │ │ │ └── getallheaders │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── getallheaders.php │ ├── oss_sdk │ │ ├── conf.inc.php │ │ ├── demo │ │ │ └── tutorial.php │ │ ├── lang │ │ │ └── zh.inc.php │ │ ├── lib │ │ │ └── requestcore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── requestcore.class.php │ │ ├── sdk.class.php │ │ └── util │ │ │ └── mimetypes.class.php │ ├── qiniu │ │ ├── auth_digest.php │ │ ├── conf.php │ │ ├── fop.php │ │ ├── http.php │ │ ├── io.php │ │ ├── resumable_io.php │ │ ├── rs.php │ │ ├── rs_utils.php │ │ ├── rsf.php │ │ └── utils.php │ └── wopi │ │ ├── index.php │ │ └── wopi.php ├── class │ ├── PHPExcel │ │ ├── Autoloader.php │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ ├── CachedObjectStorageFactory.php │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ ├── Calculation.php │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ ├── Cell.php │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ ├── Chart.php │ │ ├── Chart │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ ├── Comment.php │ │ ├── DocumentProperties.php │ │ ├── DocumentSecurity.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ ├── ReferenceHelper.php │ │ ├── RichText.php │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ ├── Style.php │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ ├── Worksheet.php │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ ├── WorksheetIterator.php │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ ├── cache │ │ ├── cache_file.php │ │ └── cache_sql.php │ ├── chinesetable │ │ ├── big5-unicode.table │ │ ├── gb-big5.table │ │ └── gb-unicode.table │ ├── class_CException.php │ ├── class_Chinese.php │ ├── class_DbException.php │ ├── class_Des.php │ ├── class_FileDownload.php │ ├── class_GifMerge.php │ ├── class_JSSDK.php │ ├── class_Minifier.php │ ├── class_PHPExcel.php │ ├── class_QRcode.php │ ├── class_Wechat.php │ ├── class_ZipStream.php │ ├── class_bbcode.php │ ├── class_command.php │ ├── class_core.php │ ├── class_image.php │ ├── class_pinyin.php │ ├── class_qyWechat.php │ ├── class_seccode.php │ ├── class_template.php │ ├── class_uploadhandler.php │ ├── class_xml.php │ ├── class_zip.php │ ├── class_zip1.php │ ├── db │ │ ├── db_driver_mysqli.php │ │ └── db_driver_mysqli_slave.php │ ├── dzz │ │ ├── Datareturn.php │ │ ├── Hook.php │ │ ├── HookRead.php │ │ ├── Tpdb.php │ │ ├── Tpsqli.php │ │ ├── apprun.php │ │ ├── config.php │ │ ├── dzz_admincp.php │ │ ├── dzz_app.php │ │ ├── dzz_base.php │ │ ├── dzz_censor.php │ │ ├── dzz_container.php │ │ ├── dzz_cron.php │ │ ├── dzz_database.php │ │ ├── dzz_error.php │ │ ├── dzz_ftp.php │ │ ├── dzz_io.php │ │ ├── dzz_memory.php │ │ ├── dzz_mime.php │ │ ├── dzz_mode.php │ │ ├── dzz_notification.php │ │ ├── dzz_process.php │ │ ├── dzz_session.php │ │ ├── dzz_session_close.php │ │ ├── dzz_sftp.php │ │ ├── dzz_table.php │ │ ├── dzz_table_archive.php │ │ ├── dzz_upgrade.php │ │ ├── dzz_upgrade_app.php │ │ ├── dzz_view_mode.php │ │ ├── modroute.php │ │ ├── modrun.php │ │ ├── returninfo.php │ │ └── route.php │ ├── helper │ │ ├── helper_browser.php │ │ ├── helper_config.php │ │ ├── helper_dbtool.php │ │ ├── helper_form.php │ │ ├── helper_json.php │ │ ├── helper_log.php │ │ ├── helper_output.php │ │ ├── helper_page.php │ │ ├── helper_security.php │ │ ├── helper_sysmessage.php │ │ └── helper_util.php │ ├── io │ │ ├── io_ALIOSS.php │ │ ├── io_OneDrive.php │ │ ├── io_QCOS.php │ │ ├── io_api.php │ │ ├── io_baiduPCS.php │ │ ├── io_disk.php │ │ ├── io_dzz.php │ │ ├── io_ftp.php │ │ ├── io_qiniu.php │ │ └── io_remote.php │ ├── memory │ │ ├── memory_driver_apc.php │ │ ├── memory_driver_eaccelerator.php │ │ ├── memory_driver_memcache.php │ │ ├── memory_driver_memcached.php │ │ ├── memory_driver_redis.php │ │ ├── memory_driver_wincache.php │ │ └── memory_driver_xcache.php │ ├── perm │ │ ├── perm_FileSPerm.php │ │ ├── perm_FolderSPerm.php │ │ ├── perm_binPerm.php │ │ └── perm_check.php │ └── table │ │ ├── table_admincp_session.php │ │ ├── table_app_market.php │ │ ├── table_app_open.php │ │ ├── table_app_open_default.php │ │ ├── table_app_organization.php │ │ ├── table_app_pic.php │ │ ├── table_app_relative.php │ │ ├── table_app_tag.php │ │ ├── table_app_user.php │ │ ├── table_attachment.php │ │ ├── table_cache.php │ │ ├── table_collect.php │ │ ├── table_comment.php │ │ ├── table_comment_at.php │ │ ├── table_comment_attach.php │ │ ├── table_connect.php │ │ ├── table_connect_disk.php │ │ ├── table_connect_ftp.php │ │ ├── table_connect_onedrive.php │ │ ├── table_connect_pan.php │ │ ├── table_connect_storage.php │ │ ├── table_cron.php │ │ ├── table_district.php │ │ ├── table_document.php │ │ ├── table_document_event.php │ │ ├── table_document_reversion.php │ │ ├── table_failedlogin.php │ │ ├── table_folder.php │ │ ├── table_folder_attr.php │ │ ├── table_folder_default.php │ │ ├── table_folder_flag.php │ │ ├── table_folder_flag_formlist.php │ │ ├── table_folder_sub.php │ │ ├── table_form_setting.php │ │ ├── table_hooks.php │ │ ├── table_icon.php │ │ ├── table_iconview.php │ │ ├── table_imagetype.php │ │ ├── table_local_router.php │ │ ├── table_local_storage.php │ │ ├── table_mailcron.php │ │ ├── table_mailqueue.php │ │ ├── table_notification.php │ │ ├── table_onlinetime.php │ │ ├── table_organization.php │ │ ├── table_organization_admin.php │ │ ├── table_organization_job.php │ │ ├── table_organization_upjob.php │ │ ├── table_organization_user.php │ │ ├── table_process.php │ │ ├── table_resources.php │ │ ├── table_resources_attr.php │ │ ├── table_resources_cat.php │ │ ├── table_resources_clipboard.php │ │ ├── table_resources_collect.php │ │ ├── table_resources_event.php │ │ ├── table_resources_path.php │ │ ├── table_resources_permgroup.php │ │ ├── table_resources_recyle.php │ │ ├── table_resources_statis.php │ │ ├── table_resources_tag.php │ │ ├── table_resources_version.php │ │ ├── table_session.php │ │ ├── table_setting.php │ │ ├── table_shares.php │ │ ├── table_shorturl.php │ │ ├── table_smiley.php │ │ ├── table_syscache.php │ │ ├── table_tag.php │ │ ├── table_thame.php │ │ ├── table_user.php │ │ ├── table_user_field.php │ │ ├── table_user_profile.php │ │ ├── table_user_profile_setting.php │ │ ├── table_user_salf.php │ │ ├── table_user_sdk.php │ │ ├── table_user_setting.php │ │ ├── table_user_status.php │ │ ├── table_user_verify.php │ │ ├── table_user_verify_info.php │ │ ├── table_user_wechat.php │ │ ├── table_usergroup.php │ │ ├── table_usergroup_field.php │ │ ├── table_vote.php │ │ ├── table_vote_item.php │ │ ├── table_vote_item_count.php │ │ └── table_wx_app.php ├── coreBase.php ├── core_version.php ├── cron │ ├── cron_cache_cleanup_week.php │ ├── cron_clean_copys0_attachment_by_month.php │ ├── cron_clean_notification_month.php │ ├── cron_database_backup.php │ ├── cron_fragment_cleanup_day.php │ ├── cron_getAtoken_by_Rtoken_week.php │ ├── cron_imgcache_cleanup_week.php │ └── cron_movetospace_attachment.php ├── dzzstart.php ├── function │ ├── cache │ │ ├── cache_fields_optional.php │ │ ├── cache_fields_register.php │ │ ├── cache_fields_required.php │ │ ├── cache_organization.php │ │ ├── cache_profilesetting.php │ │ ├── cache_setting.php │ │ ├── cache_smileycodes.php │ │ ├── cache_smileytypes.php │ │ ├── cache_smilies.php │ │ ├── cache_smilies_js.php │ │ ├── cache_usergroups.php │ │ └── cache_userstats.php │ ├── function_cache.php │ ├── function_code.php │ ├── function_core.php │ ├── function_debug.php │ ├── function_filesock.php │ ├── function_mail.php │ ├── function_message.php │ ├── function_misc.php │ ├── function_organization.php │ ├── function_seccode.php │ └── function_security.php ├── language │ └── zh-cn │ │ └── lang.php └── template │ ├── default │ └── common │ │ ├── about.htm │ │ ├── commer_header.htm │ │ ├── footer.htm │ │ ├── footer_ajax.htm │ │ ├── footer_reload.htm │ │ ├── footer_simple.htm │ │ ├── header.htm │ │ ├── header_ajax.htm │ │ ├── header_common.htm │ │ ├── header_end.htm │ │ ├── header_left.htm │ │ ├── header_reload.htm │ │ ├── header_right.htm │ │ ├── header_simple.htm │ │ ├── header_simple_end.htm │ │ ├── header_simple_start.htm │ │ ├── header_simple_start_none.htm │ │ ├── header_simple_start_xh.htm │ │ ├── header_start.htm │ │ ├── mobile_about.htm │ │ ├── mobile_simple_end.htm │ │ ├── mobile_simple_process.htm │ │ ├── mobile_simple_start.htm │ │ ├── safechk.htm │ │ ├── seccheck.htm │ │ ├── showmessage.htm │ │ ├── showtips.htm │ │ ├── wx_ajax.htm │ │ ├── wx_appinfo.htm │ │ ├── wx_menu.htm │ │ └── wx_mpinfo.htm │ └── lyear │ ├── common │ ├── copyright.htm │ ├── footer.htm │ ├── footer_simple.htm │ ├── header_common.htm │ ├── header_reload.htm │ ├── header_simple.htm │ ├── header_simple_end.htm │ ├── header_simple_noleft_end.htm │ ├── header_simple_start.htm │ ├── lyear_about.htm │ ├── lyear_header_left.htm │ ├── safechk.htm │ ├── seccheck.htm │ ├── showmessage.htm │ └── showtips.htm │ └── dzz_style_lyear.xml ├── cron.php ├── crossdomain.xml ├── data ├── attachment │ ├── .htaccess │ ├── appico │ │ ├── 201712 │ │ │ └── 21 │ │ │ │ ├── 103805dczcm89b0gi8i9gc.png │ │ │ │ ├── 113527zz2665xg7d3h2777.png │ │ │ │ ├── 128754pb0s666i6sjws1jc.png │ │ │ │ ├── 131016is1wjww2uwvljllw.png │ │ │ │ ├── 150002d834yjjqnq82qj8z.png │ │ │ │ ├── 152718k9g2pc6wouwkklwl.png │ │ │ │ ├── 160537cikgw2v6s6z4scuv.png │ │ │ │ ├── 160754fwfmziiiift3gwsw.png │ │ │ │ ├── 165535t47bad99b7qqqdwq.png │ │ │ │ ├── 171106u1dk40digrrr79ed.png │ │ │ │ ├── 175535t47bad99b7sssdwq.png │ │ │ │ └── 184312rthhhg9oujti9tuu.png │ │ └── 202411 │ │ │ ├── 02 │ │ │ ├── 170040bgapsjg4pt4nuee4.png │ │ │ ├── 170328nz056he0mixeezpo.png │ │ │ ├── 184008xbuvo0sh8y1xey8f.png │ │ │ ├── 184037v0by6dzb1wwobdy3.png │ │ │ └── index.html │ │ │ └── index.html │ ├── appimg │ │ └── index.html │ ├── cache │ │ └── index.html │ ├── common │ │ ├── index.html │ │ └── verify │ │ │ ├── 1 │ │ │ ├── index.html │ │ │ └── verify_icon.jpg │ │ │ └── index.html │ ├── dzz │ │ └── index.html │ ├── icon │ │ └── 201405 │ │ │ ├── 29 │ │ │ ├── index.html │ │ │ └── localhost_qgiob2bi.png │ │ │ ├── 30 │ │ │ ├── index.html │ │ │ ├── localhost_g21939b3.png │ │ │ ├── localhost_g4449m8c.png │ │ │ ├── localhost_kae23q2i.png │ │ │ ├── localhost_kzf18fqm.png │ │ │ └── localhost_ovu7buw7.png │ │ │ └── index.html │ ├── imgcache │ │ └── index.html │ ├── qrcode │ │ └── index.html │ └── temp │ │ └── index.html ├── avatar │ ├── camera.swf │ ├── index.html │ ├── locale.xml │ ├── noavatar_big.gif │ ├── noavatar_middle.gif │ └── noavatar_small.gif ├── cache │ └── index.html ├── extdata │ └── exts.php ├── log │ └── index.html ├── sysdata │ └── index.html └── template │ └── index.html ├── dzz ├── DPlayer │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── images │ │ ├── DPlayer.min.js │ │ ├── dash.all.min.js │ │ ├── flv.min.js │ │ ├── hls.min.js │ │ ├── index.htm │ │ └── webtorrent.min.js │ ├── index.htm │ ├── index.php │ ├── player.php │ └── template │ │ └── index.htm ├── appmanagement │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ └── template │ │ ├── lyear │ │ └── lyear_header_left.htm │ │ ├── main.htm │ │ ├── online.htm │ │ ├── stats.htm │ │ └── systemcheck.htm ├── attach │ ├── Uploader.class.php │ ├── action_crawler.php │ ├── action_upload.php │ ├── ajax.php │ ├── config.json │ ├── controller.php │ ├── down.php │ ├── preview.php │ ├── saveto.php │ └── view.php ├── class │ ├── class_UploadHandler.php │ ├── class_caiji.php │ ├── class_encode.php │ ├── class_ico.php │ └── class_json.php ├── comment │ ├── ajax.php │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── down.php │ ├── images │ │ ├── comment.css │ │ ├── comment_triangle.gif │ │ ├── folder.css │ │ ├── ico_feed.gif │ │ ├── ico_feed.png │ │ ├── ico_pub.gif │ │ ├── ico_pub.png │ │ ├── ico_tab_v1.png │ │ ├── ico_upload.gif │ │ ├── icons.png │ │ ├── img.png │ │ ├── jquery.artZoom.css │ │ ├── jquery.atwho.css │ │ ├── loading.gif │ │ ├── lyear_comment.css │ │ ├── max.ico │ │ ├── min.ico │ │ ├── qunatip.gif │ │ ├── sort_asc.gif │ │ ├── sort_desc.gif │ │ ├── video100.png │ │ ├── video50.png │ │ ├── zoom.ico │ │ ├── zoomin.cur │ │ └── zoomout.cur │ ├── index.php │ ├── language │ │ ├── index.htm │ │ └── zh-cn │ │ │ ├── index.htm │ │ │ └── lang.php │ ├── preview.php │ ├── saveto.php │ ├── scripts │ │ ├── comment.js │ │ └── lyear_comment.js │ └── template │ │ ├── ajax.htm │ │ ├── edit_form.htm │ │ ├── header_search.htm │ │ ├── list.htm │ │ ├── lyear │ │ ├── lyear_ajax.htm │ │ ├── lyear_edit_form.htm │ │ ├── lyear_left.htm │ │ ├── lyear_publish_form.htm │ │ ├── lyear_reply_form.htm │ │ ├── lyear_reply_item.htm │ │ └── lyear_thread_item.htm │ │ ├── publish_form.htm │ │ ├── reply_form.htm │ │ ├── reply_item.htm │ │ └── thread_item.htm ├── config │ ├── config-sample.php │ └── config.php ├── connect │ ├── addcloud.php │ ├── ajax.php │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── images │ │ ├── ALIOSS.png │ │ ├── JSS.png │ │ ├── baiduPCS.png │ │ ├── checkbox.png │ │ ├── connect.css │ │ ├── dropbox.png │ │ ├── ftp.png │ │ ├── home.png │ │ ├── icons48.png │ │ ├── selected_folder.png │ │ └── webdav.png │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── oauth.php │ ├── scripts │ │ └── mycloud.js │ └── template │ │ ├── addcloud.htm │ │ ├── connect_index.htm │ │ ├── oauth.htm │ │ ├── oauth_ALIOSS.htm │ │ ├── oauth_JSS.htm │ │ ├── oauth_disk.htm │ │ ├── oauth_ftp.htm │ │ ├── oauth_qcos.htm │ │ ├── oauth_qiniu.htm │ │ └── right_header.htm ├── dzzvote │ ├── ajax.php │ ├── images │ │ ├── lyear_vote.css │ │ └── vote.css │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── scripts │ │ ├── jquery.dzzvote.js │ │ └── lyear_jquery.dzzvote.js │ └── template │ │ ├── index.htm │ │ ├── lyear │ │ ├── lyear_vote_ajax.htm │ │ └── lyear_vote_user.htm │ │ ├── vote_ajax.htm │ │ └── vote_user.htm ├── explorer │ ├── ajax.php │ ├── app.php │ ├── catsearch.php │ ├── cloud.php │ ├── collection.php │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── cron │ │ └── cron_explorer_recycle.php │ ├── dynamic.php │ ├── dzzcp.php │ ├── explorerfile.php │ ├── filestatis.php │ ├── function │ │ ├── function_explorer.php │ │ ├── function_use.php │ │ └── index.htm │ ├── group.php │ ├── groupmanage.php │ ├── grouptree.php │ ├── home.php │ ├── images │ │ ├── ic-creator.png │ │ ├── ic-files.png │ │ ├── ic-imgMoreAdd1.jpg │ │ ├── ic-manager.png │ │ ├── ic-systemManager.png │ │ ├── index.css │ │ ├── index.htm │ │ ├── link_small_bg.png │ │ ├── noFilePage-FileChoice.png │ │ ├── noFilePage-collect.png │ │ ├── noFilePage-dynamic.png │ │ ├── noFilePage-groupFileForbidden.png │ │ ├── noFilePage-groupForbidden.png │ │ └── noFilePage-recycle.png │ ├── index.htm │ ├── index.php │ ├── js │ │ ├── _hotkey.js │ │ ├── _perm.js │ │ ├── _select.js │ │ ├── explorer.js │ │ ├── filemanage.js │ │ ├── header-search.js │ │ ├── index.htm │ │ ├── selorg.js │ │ ├── uplodfile.js │ │ └── uplodfile.lang.js │ ├── json.php │ ├── language │ │ ├── index.htm │ │ └── zh-cn │ │ │ ├── index.htm │ │ │ └── lang.php │ ├── mygroup.php │ ├── orgtree.php │ ├── recent.php │ ├── recycle.php │ ├── searchFile.php │ ├── search_condition.php │ ├── share.php │ ├── template │ │ ├── ajax.htm │ │ ├── app_manage.htm │ │ ├── cloud_content.htm │ │ ├── cloud_list.htm │ │ ├── collection_content.htm │ │ ├── dynamic_content.htm │ │ ├── file_content.htm │ │ ├── fileright_dynamic.htm │ │ ├── group_ajax.htm │ │ ├── groupmanage.htm │ │ ├── historyversion_content.htm │ │ ├── index.htm │ │ ├── lyear_header_search.htm │ │ ├── lyear_left.htm │ │ ├── mydocument_content.htm │ │ ├── mygroup.htm │ │ ├── noFilePage-dynamic.htm │ │ ├── noFilePage-recent.htm │ │ ├── noFilePage-recycle.htm │ │ ├── noFilePage-search.htm │ │ ├── noFilePage_mydocument.htm │ │ ├── recent_content.htm │ │ ├── recyle_content.htm │ │ ├── right_contextmenu.htm │ │ ├── right_folder_menu.htm │ │ ├── right_menu.htm │ │ ├── searchFile.htm │ │ ├── share_content.htm │ │ ├── template_dynamic_list.htm │ │ ├── template_file_detaillist.htm │ │ ├── template_file_detaillist_cat.htm │ │ ├── template_file_detaillist_collection.htm │ │ ├── template_file_detaillist_recycle.htm │ │ ├── template_file_detaillist_search.htm │ │ ├── template_file_middleicon.htm │ │ ├── template_file_navtopfile.htm │ │ ├── template_file_toolButton.htm │ │ ├── template_historyversion_list.htm │ │ ├── template_more_dynamic.htm │ │ └── template_right_popbox.htm │ ├── uninstall.php │ └── upgrade.php ├── filemanage │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── images │ │ ├── folder.css │ │ ├── sort_asc.gif │ │ └── sort_desc.gif │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ └── template │ │ ├── list.htm │ │ └── lyear │ │ └── lyear_left.htm ├── function │ └── function_appperm.php ├── images │ ├── b.gif │ ├── close.png │ ├── cur │ │ ├── aero_arrow.cur │ │ ├── aero_link.cur │ │ ├── aero_no.cur │ │ ├── aero_nwse.cur │ │ ├── aero_ru.cur │ │ ├── aero_shan.cur │ │ └── aero_suo.cur │ ├── default │ │ ├── app_start_bg.gif │ │ ├── delete.png │ │ ├── e.png │ │ ├── icobg.png │ │ ├── icodefault.png │ │ ├── imageloading.gif │ │ ├── loading.gif │ │ ├── loading.png │ │ ├── new.gif │ │ ├── notice_system.png │ │ ├── shortcut.png │ │ ├── start.png │ │ ├── system │ │ │ ├── ALIOSS.png │ │ │ ├── Dropbox.png │ │ │ ├── JSS.png │ │ │ ├── OneDrive.png │ │ │ ├── QCOS.png │ │ │ ├── baiduPCS.png │ │ │ ├── bucket.png │ │ │ ├── desktop.png │ │ │ ├── disk.png │ │ │ ├── dock.png │ │ │ ├── document.png │ │ │ ├── filemanage.png │ │ │ ├── folder-all.png │ │ │ ├── folder-only-download.png │ │ │ ├── folder-only-write1.png │ │ │ ├── folder-only-write2.png │ │ │ ├── folder-read-write1.png │ │ │ ├── folder-read-write2.png │ │ │ ├── folder-read-write3.png │ │ │ ├── folder-read.png │ │ │ ├── folder.png │ │ │ ├── folder_read.png │ │ │ ├── folder_write.png │ │ │ ├── ftp.png │ │ │ ├── home.png │ │ │ ├── organization.png │ │ │ ├── qiniu.png │ │ │ ├── recycle.png │ │ │ ├── recycle1.png │ │ │ ├── thumb.jpg │ │ │ └── video.png │ │ ├── thumb.png │ │ ├── upload_failure.png │ │ └── uploading.png │ ├── extimg │ │ ├── 7z.png │ │ ├── ace.png │ │ ├── ai.png │ │ ├── apk.png │ │ ├── arj.png │ │ ├── asf.png │ │ ├── asp.png │ │ ├── aspx.png │ │ ├── avi.png │ │ ├── bat.png │ │ ├── blog.png │ │ ├── c.png │ │ ├── cab.png │ │ ├── ccd.png │ │ ├── chm.png │ │ ├── conf.png │ │ ├── cpp.png │ │ ├── css.png │ │ ├── cue.png │ │ ├── db.png │ │ ├── dll.png │ │ ├── doc.png │ │ ├── document.png │ │ ├── docx.png │ │ ├── dps.png │ │ ├── dzzdoc.png │ │ ├── dzzppt.png │ │ ├── dzzxls.png │ │ ├── editor.png │ │ ├── eps.png │ │ ├── epub.png │ │ ├── et.png │ │ ├── exe.png │ │ ├── f.png │ │ ├── file_broken.png │ │ ├── fla.png │ │ ├── flv.png │ │ ├── folder.png │ │ ├── fon.png │ │ ├── gif.png │ │ ├── h.png │ │ ├── hta.png │ │ ├── htc.png │ │ ├── htm.png │ │ ├── html.png │ │ ├── idd.png │ │ ├── img.png │ │ ├── ini.png │ │ ├── iso.png │ │ ├── jar.png │ │ ├── java.png │ │ ├── jpeg.png │ │ ├── jpg.png │ │ ├── js.png │ │ ├── json.png │ │ ├── jsp.png │ │ ├── l.png │ │ ├── link.png │ │ ├── log.png │ │ ├── m4a.png │ │ ├── m4v.png │ │ ├── mds.png │ │ ├── meiti.png │ │ ├── mid.png │ │ ├── midi.png │ │ ├── mkv.png │ │ ├── mov.png │ │ ├── mp3.png │ │ ├── mp4.png │ │ ├── mp4v.png │ │ ├── mpeg.png │ │ ├── mpg.png │ │ ├── music.png │ │ ├── mv.png │ │ ├── notepad.png │ │ ├── nrg.png │ │ ├── o.png │ │ ├── otf.png │ │ ├── p.png │ │ ├── pdf.png │ │ ├── pfm.png │ │ ├── php.png │ │ ├── php3.png │ │ ├── php4.png │ │ ├── php5.png │ │ ├── png.png │ │ ├── ppt.png │ │ ├── pptx.png │ │ ├── proj.png │ │ ├── psd.png │ │ ├── py.png │ │ ├── rar.png │ │ ├── rmvb.png │ │ ├── rtf.png │ │ ├── s.png │ │ ├── sit.png │ │ ├── sql.png │ │ ├── swf.png │ │ ├── tif.png │ │ ├── topic.png │ │ ├── torrent.png │ │ ├── ttf.png │ │ ├── txt.png │ │ ├── unknow.png │ │ ├── url.png │ │ ├── vb.png │ │ ├── vbs.png │ │ ├── vcd.png │ │ ├── video.png │ │ ├── wav.png │ │ ├── wma.png │ │ ├── wmv.png │ │ ├── wps.png │ │ ├── xdoc.png │ │ ├── xls.png │ │ ├── xlsx.png │ │ ├── xml.png │ │ ├── y.png │ │ └── zip.png │ ├── extimg_small │ │ ├── 7z.png │ │ ├── ace.png │ │ ├── ai.png │ │ ├── apk.png │ │ ├── arj.png │ │ ├── asf.png │ │ ├── asp.png │ │ ├── aspx.png │ │ ├── avi.png │ │ ├── bat.png │ │ ├── blog.png │ │ ├── c.png │ │ ├── cab.png │ │ ├── ccd.png │ │ ├── chm.png │ │ ├── conf.png │ │ ├── cpp.png │ │ ├── css.png │ │ ├── cue.png │ │ ├── db.png │ │ ├── dll.png │ │ ├── doc.png │ │ ├── document.png │ │ ├── docx.png │ │ ├── dps.png │ │ ├── dzzdoc.png │ │ ├── dzzppt.png │ │ ├── dzzxls.png │ │ ├── editor.png │ │ ├── eps.png │ │ ├── epub.png │ │ ├── et.png │ │ ├── exe.png │ │ ├── f.png │ │ ├── file_broken.png │ │ ├── flv.png │ │ ├── folder.png │ │ ├── fon.png │ │ ├── h.png │ │ ├── hta.png │ │ ├── htc.png │ │ ├── htm.png │ │ ├── html.png │ │ ├── img.png │ │ ├── ini.png │ │ ├── iso.png │ │ ├── jar.png │ │ ├── java.png │ │ ├── js.png │ │ ├── json.png │ │ ├── jsp.png │ │ ├── l.png │ │ ├── link.png │ │ ├── log.png │ │ ├── m4a.png │ │ ├── m4v.png │ │ ├── mds.png │ │ ├── meiti.png │ │ ├── mid.png │ │ ├── midi.png │ │ ├── mkv.png │ │ ├── mov.png │ │ ├── mp3.png │ │ ├── mp4.png │ │ ├── mp4v.png │ │ ├── mpeg.png │ │ ├── mpg.png │ │ ├── music.png │ │ ├── mv.png │ │ ├── notepad.png │ │ ├── nrg.png │ │ ├── o.png │ │ ├── otf.png │ │ ├── p.png │ │ ├── pdf.png │ │ ├── pfm.png │ │ ├── php.png │ │ ├── php3.png │ │ ├── php4.png │ │ ├── php5.png │ │ ├── ppt.png │ │ ├── pptx.png │ │ ├── psd.png │ │ ├── py.png │ │ ├── rar.png │ │ ├── rmvb.png │ │ ├── rtf.png │ │ ├── s.png │ │ ├── sit.png │ │ ├── sql.png │ │ ├── swf.png │ │ ├── tif.png │ │ ├── topic.png │ │ ├── torrent.png │ │ ├── ttf.png │ │ ├── txt.png │ │ ├── unknow.png │ │ ├── url.png │ │ ├── vb.png │ │ ├── vbs.png │ │ ├── vcd.png │ │ ├── video.png │ │ ├── wav.png │ │ ├── wma.png │ │ ├── wmv.png │ │ ├── wps.png │ │ ├── xdoc.png │ │ ├── xls.png │ │ ├── xlsx.png │ │ ├── xml.png │ │ ├── y.png │ │ └── zip.png │ ├── icons │ │ ├── appwindow.png │ │ ├── delete.png │ │ ├── docx.png │ │ ├── filesave.png │ │ ├── mp3.png │ │ ├── newwindow.png │ │ ├── pptx.png │ │ └── xlsx.png │ ├── loading.gif │ ├── logo-blue.png │ ├── logo.png │ └── newfile │ │ ├── excel.xlsx │ │ ├── pdf.pdf │ │ ├── ppt.pptx │ │ └── word.docx ├── index │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ └── template │ │ ├── lyear │ │ ├── lyear_header_left.htm │ │ └── lyear_left.htm │ │ ├── main.htm │ │ └── statis.htm ├── io │ ├── download.php │ ├── getStream.php │ ├── setStream.php │ └── thumbnail.php ├── language │ └── zh-cn │ │ └── lang.php ├── link │ ├── OpenPicWin │ │ ├── OpenPicWin.md5 │ │ ├── dzz_app_OpenPicWin.xml │ │ └── index.htm │ └── index.htm ├── orguser │ ├── ajax.php │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── edituser.php │ ├── export.php │ ├── export_tmpl.php │ ├── images │ │ ├── add_guide.png │ │ ├── icon-addPotr@2x.png │ │ ├── icons.png │ │ ├── icons_24.png │ │ ├── orguser.css │ │ └── user_bg.png │ ├── import.php │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── scripts │ │ └── orguser.js │ ├── template.xlsx │ ├── template │ │ ├── adduser.htm │ │ ├── detail_org.htm │ │ ├── edituser.htm │ │ ├── export.htm │ │ ├── guide.htm │ │ ├── import_guide.htm │ │ ├── import_list.htm │ │ ├── index.htm │ │ ├── lyear │ │ │ ├── lyear_header_left.htm │ │ │ ├── lyear_header_search.htm │ │ │ └── lyear_left.htm │ │ ├── main.htm │ │ └── profile.htm │ └── view.php ├── pdf │ ├── build │ │ ├── pdf.js │ │ └── pdf.worker.js │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── dzz_app_pdf.xml │ ├── index.htm │ ├── index.php │ ├── pdf.md5 │ ├── template │ │ ├── index.htm │ │ └── viewer.htm │ └── web │ │ ├── cmaps │ │ ├── 78-EUC-H.bcmap │ │ ├── 78-EUC-V.bcmap │ │ ├── 78-H.bcmap │ │ ├── 78-RKSJ-H.bcmap │ │ ├── 78-RKSJ-V.bcmap │ │ ├── 78-V.bcmap │ │ ├── 78ms-RKSJ-H.bcmap │ │ ├── 78ms-RKSJ-V.bcmap │ │ ├── 83pv-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-V.bcmap │ │ ├── 90msp-RKSJ-H.bcmap │ │ ├── 90msp-RKSJ-V.bcmap │ │ ├── 90pv-RKSJ-H.bcmap │ │ ├── 90pv-RKSJ-V.bcmap │ │ ├── Add-H.bcmap │ │ ├── Add-RKSJ-H.bcmap │ │ ├── Add-RKSJ-V.bcmap │ │ ├── Add-V.bcmap │ │ ├── Adobe-CNS1-0.bcmap │ │ ├── Adobe-CNS1-1.bcmap │ │ ├── Adobe-CNS1-2.bcmap │ │ ├── Adobe-CNS1-3.bcmap │ │ ├── Adobe-CNS1-4.bcmap │ │ ├── Adobe-CNS1-5.bcmap │ │ ├── Adobe-CNS1-6.bcmap │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ ├── Adobe-GB1-0.bcmap │ │ ├── Adobe-GB1-1.bcmap │ │ ├── Adobe-GB1-2.bcmap │ │ ├── Adobe-GB1-3.bcmap │ │ ├── Adobe-GB1-4.bcmap │ │ ├── Adobe-GB1-5.bcmap │ │ ├── Adobe-GB1-UCS2.bcmap │ │ ├── Adobe-Japan1-0.bcmap │ │ ├── Adobe-Japan1-1.bcmap │ │ ├── Adobe-Japan1-2.bcmap │ │ ├── Adobe-Japan1-3.bcmap │ │ ├── Adobe-Japan1-4.bcmap │ │ ├── Adobe-Japan1-5.bcmap │ │ ├── Adobe-Japan1-6.bcmap │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ ├── Adobe-Korea1-0.bcmap │ │ ├── Adobe-Korea1-1.bcmap │ │ ├── Adobe-Korea1-2.bcmap │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ ├── B5-H.bcmap │ │ ├── B5-V.bcmap │ │ ├── B5pc-H.bcmap │ │ ├── B5pc-V.bcmap │ │ ├── CNS-EUC-H.bcmap │ │ ├── CNS-EUC-V.bcmap │ │ ├── CNS1-H.bcmap │ │ ├── CNS1-V.bcmap │ │ ├── CNS2-H.bcmap │ │ ├── CNS2-V.bcmap │ │ ├── ETHK-B5-H.bcmap │ │ ├── ETHK-B5-V.bcmap │ │ ├── ETen-B5-H.bcmap │ │ ├── ETen-B5-V.bcmap │ │ ├── ETenms-B5-H.bcmap │ │ ├── ETenms-B5-V.bcmap │ │ ├── EUC-H.bcmap │ │ ├── EUC-V.bcmap │ │ ├── Ext-H.bcmap │ │ ├── Ext-RKSJ-H.bcmap │ │ ├── Ext-RKSJ-V.bcmap │ │ ├── Ext-V.bcmap │ │ ├── GB-EUC-H.bcmap │ │ ├── GB-EUC-V.bcmap │ │ ├── GB-H.bcmap │ │ ├── GB-V.bcmap │ │ ├── GBK-EUC-H.bcmap │ │ ├── GBK-EUC-V.bcmap │ │ ├── GBK2K-H.bcmap │ │ ├── GBK2K-V.bcmap │ │ ├── GBKp-EUC-H.bcmap │ │ ├── GBKp-EUC-V.bcmap │ │ ├── GBT-EUC-H.bcmap │ │ ├── GBT-EUC-V.bcmap │ │ ├── GBT-H.bcmap │ │ ├── GBT-V.bcmap │ │ ├── GBTpc-EUC-H.bcmap │ │ ├── GBTpc-EUC-V.bcmap │ │ ├── GBpc-EUC-H.bcmap │ │ ├── GBpc-EUC-V.bcmap │ │ ├── H.bcmap │ │ ├── HKdla-B5-H.bcmap │ │ ├── HKdla-B5-V.bcmap │ │ ├── HKdlb-B5-H.bcmap │ │ ├── HKdlb-B5-V.bcmap │ │ ├── HKgccs-B5-H.bcmap │ │ ├── HKgccs-B5-V.bcmap │ │ ├── HKm314-B5-H.bcmap │ │ ├── HKm314-B5-V.bcmap │ │ ├── HKm471-B5-H.bcmap │ │ ├── HKm471-B5-V.bcmap │ │ ├── HKscs-B5-H.bcmap │ │ ├── HKscs-B5-V.bcmap │ │ ├── Hankaku.bcmap │ │ ├── Hiragana.bcmap │ │ ├── KSC-EUC-H.bcmap │ │ ├── KSC-EUC-V.bcmap │ │ ├── KSC-H.bcmap │ │ ├── KSC-Johab-H.bcmap │ │ ├── KSC-Johab-V.bcmap │ │ ├── KSC-V.bcmap │ │ ├── KSCms-UHC-H.bcmap │ │ ├── KSCms-UHC-HW-H.bcmap │ │ ├── KSCms-UHC-HW-V.bcmap │ │ ├── KSCms-UHC-V.bcmap │ │ ├── KSCpc-EUC-H.bcmap │ │ ├── KSCpc-EUC-V.bcmap │ │ ├── Katakana.bcmap │ │ ├── LICENSE │ │ ├── NWP-H.bcmap │ │ ├── NWP-V.bcmap │ │ ├── RKSJ-H.bcmap │ │ ├── RKSJ-V.bcmap │ │ ├── Roman.bcmap │ │ ├── UniCNS-UCS2-H.bcmap │ │ ├── UniCNS-UCS2-V.bcmap │ │ ├── UniCNS-UTF16-H.bcmap │ │ ├── UniCNS-UTF16-V.bcmap │ │ ├── UniCNS-UTF32-H.bcmap │ │ ├── UniCNS-UTF32-V.bcmap │ │ ├── UniCNS-UTF8-H.bcmap │ │ ├── UniCNS-UTF8-V.bcmap │ │ ├── UniGB-UCS2-H.bcmap │ │ ├── UniGB-UCS2-V.bcmap │ │ ├── UniGB-UTF16-H.bcmap │ │ ├── UniGB-UTF16-V.bcmap │ │ ├── UniGB-UTF32-H.bcmap │ │ ├── UniGB-UTF32-V.bcmap │ │ ├── UniGB-UTF8-H.bcmap │ │ ├── UniGB-UTF8-V.bcmap │ │ ├── UniJIS-UCS2-H.bcmap │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ ├── UniJIS-UCS2-V.bcmap │ │ ├── UniJIS-UTF16-H.bcmap │ │ ├── UniJIS-UTF16-V.bcmap │ │ ├── UniJIS-UTF32-H.bcmap │ │ ├── UniJIS-UTF32-V.bcmap │ │ ├── UniJIS-UTF8-H.bcmap │ │ ├── UniJIS-UTF8-V.bcmap │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ ├── UniJISPro-UCS2-V.bcmap │ │ ├── UniJISPro-UTF8-V.bcmap │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ ├── UniKS-UCS2-H.bcmap │ │ ├── UniKS-UCS2-V.bcmap │ │ ├── UniKS-UTF16-H.bcmap │ │ ├── UniKS-UTF16-V.bcmap │ │ ├── UniKS-UTF32-H.bcmap │ │ ├── UniKS-UTF32-V.bcmap │ │ ├── UniKS-UTF8-H.bcmap │ │ ├── UniKS-UTF8-V.bcmap │ │ ├── V.bcmap │ │ └── WP-Symbol.bcmap │ │ ├── debugger.js │ │ ├── images │ │ ├── annotation-check.svg │ │ ├── annotation-comment.svg │ │ ├── annotation-help.svg │ │ ├── annotation-insert.svg │ │ ├── annotation-key.svg │ │ ├── annotation-newparagraph.svg │ │ ├── annotation-noicon.svg │ │ ├── annotation-note.svg │ │ ├── annotation-paragraph.svg │ │ ├── findbarButton-next-rtl.png │ │ ├── findbarButton-next-rtl@2x.png │ │ ├── findbarButton-next.png │ │ ├── findbarButton-next@2x.png │ │ ├── findbarButton-previous-rtl.png │ │ ├── findbarButton-previous-rtl@2x.png │ │ ├── findbarButton-previous.png │ │ ├── findbarButton-previous@2x.png │ │ ├── grab.cur │ │ ├── grabbing.cur │ │ ├── loading-icon.gif │ │ ├── loading-small.png │ │ ├── loading-small@2x.png │ │ ├── secondaryToolbarButton-documentProperties.png │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ ├── secondaryToolbarButton-firstPage.png │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ ├── secondaryToolbarButton-handTool.png │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ ├── secondaryToolbarButton-lastPage.png │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ ├── secondaryToolbarButton-rotateCw.png │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ ├── secondaryToolbarButton-scrollHorizontal.png │ │ ├── secondaryToolbarButton-scrollHorizontal@2x.png │ │ ├── secondaryToolbarButton-scrollVertical.png │ │ ├── secondaryToolbarButton-scrollVertical@2x.png │ │ ├── secondaryToolbarButton-scrollWrapped.png │ │ ├── secondaryToolbarButton-scrollWrapped@2x.png │ │ ├── secondaryToolbarButton-selectTool.png │ │ ├── secondaryToolbarButton-selectTool@2x.png │ │ ├── secondaryToolbarButton-spreadEven.png │ │ ├── secondaryToolbarButton-spreadEven@2x.png │ │ ├── secondaryToolbarButton-spreadNone.png │ │ ├── secondaryToolbarButton-spreadNone@2x.png │ │ ├── secondaryToolbarButton-spreadOdd.png │ │ ├── secondaryToolbarButton-spreadOdd@2x.png │ │ ├── shadow.png │ │ ├── texture.png │ │ ├── toolbarButton-bookmark.png │ │ ├── toolbarButton-bookmark@2x.png │ │ ├── toolbarButton-download.png │ │ ├── toolbarButton-download@2x.png │ │ ├── toolbarButton-menuArrows.png │ │ ├── toolbarButton-menuArrows@2x.png │ │ ├── toolbarButton-openFile.png │ │ ├── toolbarButton-openFile@2x.png │ │ ├── toolbarButton-pageDown-rtl.png │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ ├── toolbarButton-pageDown.png │ │ ├── toolbarButton-pageDown@2x.png │ │ ├── toolbarButton-pageUp-rtl.png │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ ├── toolbarButton-pageUp.png │ │ ├── toolbarButton-pageUp@2x.png │ │ ├── toolbarButton-presentationMode.png │ │ ├── toolbarButton-presentationMode@2x.png │ │ ├── toolbarButton-print.png │ │ ├── toolbarButton-print@2x.png │ │ ├── toolbarButton-search.png │ │ ├── toolbarButton-search@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ ├── toolbarButton-sidebarToggle.png │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ ├── toolbarButton-viewAttachments.png │ │ ├── toolbarButton-viewAttachments@2x.png │ │ ├── toolbarButton-viewOutline-rtl.png │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ ├── toolbarButton-viewOutline.png │ │ ├── toolbarButton-viewOutline@2x.png │ │ ├── toolbarButton-viewThumbnail.png │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ ├── toolbarButton-zoomIn.png │ │ ├── toolbarButton-zoomIn@2x.png │ │ ├── toolbarButton-zoomOut.png │ │ ├── toolbarButton-zoomOut@2x.png │ │ ├── treeitem-collapsed-rtl.png │ │ ├── treeitem-collapsed-rtl@2x.png │ │ ├── treeitem-collapsed.png │ │ ├── treeitem-collapsed@2x.png │ │ ├── treeitem-expanded.png │ │ └── treeitem-expanded@2x.png │ │ ├── locale │ │ ├── ach │ │ │ └── viewer.properties │ │ ├── af │ │ │ └── viewer.properties │ │ ├── an │ │ │ └── viewer.properties │ │ ├── ar │ │ │ └── viewer.properties │ │ ├── ast │ │ │ └── viewer.properties │ │ ├── az │ │ │ └── viewer.properties │ │ ├── be │ │ │ └── viewer.properties │ │ ├── bg │ │ │ └── viewer.properties │ │ ├── bn │ │ │ └── viewer.properties │ │ ├── bo │ │ │ └── viewer.properties │ │ ├── br │ │ │ └── viewer.properties │ │ ├── brx │ │ │ └── viewer.properties │ │ ├── bs │ │ │ └── viewer.properties │ │ ├── ca │ │ │ └── viewer.properties │ │ ├── cak │ │ │ └── viewer.properties │ │ ├── cs │ │ │ └── viewer.properties │ │ ├── cy │ │ │ └── viewer.properties │ │ ├── da │ │ │ └── viewer.properties │ │ ├── de │ │ │ └── viewer.properties │ │ ├── dsb │ │ │ └── viewer.properties │ │ ├── el │ │ │ └── viewer.properties │ │ ├── en-CA │ │ │ └── viewer.properties │ │ ├── en-GB │ │ │ └── viewer.properties │ │ ├── en-US │ │ │ └── viewer.properties │ │ ├── eo │ │ │ └── viewer.properties │ │ ├── es-AR │ │ │ └── viewer.properties │ │ ├── es-CL │ │ │ └── viewer.properties │ │ ├── es-ES │ │ │ └── viewer.properties │ │ ├── es-MX │ │ │ └── viewer.properties │ │ ├── et │ │ │ └── viewer.properties │ │ ├── eu │ │ │ └── viewer.properties │ │ ├── fa │ │ │ └── viewer.properties │ │ ├── ff │ │ │ └── viewer.properties │ │ ├── fi │ │ │ └── viewer.properties │ │ ├── fr │ │ │ └── viewer.properties │ │ ├── fy-NL │ │ │ └── viewer.properties │ │ ├── ga-IE │ │ │ └── viewer.properties │ │ ├── gd │ │ │ └── viewer.properties │ │ ├── gl │ │ │ └── viewer.properties │ │ ├── gn │ │ │ └── viewer.properties │ │ ├── gu-IN │ │ │ └── viewer.properties │ │ ├── he │ │ │ └── viewer.properties │ │ ├── hi-IN │ │ │ └── viewer.properties │ │ ├── hr │ │ │ └── viewer.properties │ │ ├── hsb │ │ │ └── viewer.properties │ │ ├── hu │ │ │ └── viewer.properties │ │ ├── hy-AM │ │ │ └── viewer.properties │ │ ├── hye │ │ │ └── viewer.properties │ │ ├── ia │ │ │ └── viewer.properties │ │ ├── id │ │ │ └── viewer.properties │ │ ├── is │ │ │ └── viewer.properties │ │ ├── it │ │ │ └── viewer.properties │ │ ├── ja │ │ │ └── viewer.properties │ │ ├── ka │ │ │ └── viewer.properties │ │ ├── kab │ │ │ └── viewer.properties │ │ ├── kk │ │ │ └── viewer.properties │ │ ├── km │ │ │ └── viewer.properties │ │ ├── kn │ │ │ └── viewer.properties │ │ ├── ko │ │ │ └── viewer.properties │ │ ├── lij │ │ │ └── viewer.properties │ │ ├── lo │ │ │ └── viewer.properties │ │ ├── locale.properties │ │ ├── lt │ │ │ └── viewer.properties │ │ ├── ltg │ │ │ └── viewer.properties │ │ ├── lv │ │ │ └── viewer.properties │ │ ├── meh │ │ │ └── viewer.properties │ │ ├── mk │ │ │ └── viewer.properties │ │ ├── mr │ │ │ └── viewer.properties │ │ ├── ms │ │ │ └── viewer.properties │ │ ├── my │ │ │ └── viewer.properties │ │ ├── nb-NO │ │ │ └── viewer.properties │ │ ├── ne-NP │ │ │ └── viewer.properties │ │ ├── nl │ │ │ └── viewer.properties │ │ ├── nn-NO │ │ │ └── viewer.properties │ │ ├── oc │ │ │ └── viewer.properties │ │ ├── pa-IN │ │ │ └── viewer.properties │ │ ├── pl │ │ │ └── viewer.properties │ │ ├── pt-BR │ │ │ └── viewer.properties │ │ ├── pt-PT │ │ │ └── viewer.properties │ │ ├── rm │ │ │ └── viewer.properties │ │ ├── ro │ │ │ └── viewer.properties │ │ ├── ru │ │ │ └── viewer.properties │ │ ├── scn │ │ │ └── viewer.properties │ │ ├── si │ │ │ └── viewer.properties │ │ ├── sk │ │ │ └── viewer.properties │ │ ├── sl │ │ │ └── viewer.properties │ │ ├── son │ │ │ └── viewer.properties │ │ ├── sq │ │ │ └── viewer.properties │ │ ├── sr │ │ │ └── viewer.properties │ │ ├── sv-SE │ │ │ └── viewer.properties │ │ ├── ta │ │ │ └── viewer.properties │ │ ├── te │ │ │ └── viewer.properties │ │ ├── th │ │ │ └── viewer.properties │ │ ├── tl │ │ │ └── viewer.properties │ │ ├── tr │ │ │ └── viewer.properties │ │ ├── trs │ │ │ └── viewer.properties │ │ ├── uk │ │ │ └── viewer.properties │ │ ├── ur │ │ │ └── viewer.properties │ │ ├── uz │ │ │ └── viewer.properties │ │ ├── vi │ │ │ └── viewer.properties │ │ ├── wo │ │ │ └── viewer.properties │ │ ├── xh │ │ │ └── viewer.properties │ │ ├── zh-CN │ │ │ └── viewer.properties │ │ └── zh-TW │ │ │ └── viewer.properties │ │ ├── viewer.css │ │ ├── viewer.html │ │ └── viewer.js ├── share │ ├── ajax.php │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── index.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ └── template │ │ ├── lyear │ │ └── lyear_left.htm │ │ └── share.htm ├── shares │ ├── ajax.php │ ├── config │ │ ├── config.php │ │ └── index.htm │ ├── file.php │ ├── images │ │ ├── index.css │ │ ├── index.htm │ │ └── link_small_bg.png │ ├── index.php │ ├── json.php │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── save.php │ ├── scripts │ │ ├── _hotkey.js │ │ ├── explorer.js │ │ ├── filemanage.js │ │ ├── index.htm │ │ ├── uplodfile.js │ │ └── uplodfile.lang.js │ └── template │ │ ├── ajax.htm │ │ ├── index.htm │ │ └── lyear │ │ ├── lyear_header_left.htm │ │ └── lyear_header_search.htm ├── styles │ ├── icoblock │ │ └── default │ │ │ ├── images │ │ │ ├── checkbox.png │ │ │ ├── link_small_bg.png │ │ │ ├── ops.png │ │ │ ├── play.png │ │ │ ├── saveto.png │ │ │ ├── selected.png │ │ │ ├── selected_folder.png │ │ │ ├── share.png │ │ │ ├── share1.png │ │ │ ├── share2.png │ │ │ ├── share3.png │ │ │ ├── tips_1.png │ │ │ ├── tips_2.png │ │ │ ├── tips_3.png │ │ │ ├── tips_4.png │ │ │ ├── tishibg.png │ │ │ ├── user100.png │ │ │ ├── user50.png │ │ │ ├── video100.png │ │ │ └── video50.png │ │ │ └── style.css │ ├── images │ │ └── b.gif │ ├── index.css │ ├── showwindow │ │ ├── images │ │ │ ├── CLOSE.png │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── right.png │ │ │ ├── selected.png │ │ │ └── showwindow_y.png │ │ └── style.css │ └── thame │ │ ├── colorful │ │ ├── color.css │ │ ├── dzz_theme_colorful.xml │ │ ├── style.css │ │ ├── system │ │ │ ├── ALIOSS.png │ │ │ ├── Dropbox.png │ │ │ ├── JSS.png │ │ │ ├── OneDrive.png │ │ │ ├── baiduPCS.png │ │ │ ├── bucket.png │ │ │ ├── desktop.png │ │ │ ├── disk.png │ │ │ ├── dock.png │ │ │ ├── document.png │ │ │ ├── filemanage.png │ │ │ ├── folder-all.png │ │ │ ├── folder-only-download.png │ │ │ ├── folder-only-write1.png │ │ │ ├── folder-only-write2.png │ │ │ ├── folder-read-write1.png │ │ │ ├── folder-read-write2.png │ │ │ ├── folder-read-write3.png │ │ │ ├── folder-read.png │ │ │ ├── folder.png │ │ │ ├── folder_read.png │ │ │ ├── folder_write.png │ │ │ ├── ftp.png │ │ │ ├── home.png │ │ │ ├── organization.png │ │ │ ├── recycle.png │ │ │ ├── recycle1.png │ │ │ ├── thumb.jpg │ │ │ ├── thumb.png │ │ │ └── video.png │ │ └── thumb.jpg │ │ └── window_jd │ │ ├── color.css │ │ ├── config.txt │ │ ├── dzz_theme_window_jd.xml │ │ ├── style.css │ │ └── thumb.jpg ├── system │ ├── app_ajax.php │ ├── at.php │ ├── attachment.php │ ├── config │ │ └── config.php │ ├── css │ │ ├── file_detailed.css │ │ ├── filelist_detaillist │ │ │ ├── images │ │ │ │ ├── index.htm │ │ │ │ ├── sort_asc.gif │ │ │ │ ├── sort_desc.gif │ │ │ │ └── treeshow.png │ │ │ ├── index.htm │ │ │ ├── style.css │ │ │ └── thumb.jpg │ │ ├── filelist_middleicon │ │ │ ├── images │ │ │ │ ├── checkbox.png │ │ │ │ ├── index.htm │ │ │ │ ├── link_small_bg.png │ │ │ │ ├── ops.png │ │ │ │ ├── play.png │ │ │ │ ├── saveto.png │ │ │ │ ├── selected.png │ │ │ │ ├── selected_folder.png │ │ │ │ ├── share.png │ │ │ │ ├── share1.png │ │ │ │ ├── share2.png │ │ │ │ ├── share3.png │ │ │ │ ├── tips_1.png │ │ │ │ ├── tips_2.png │ │ │ │ ├── tips_3.png │ │ │ │ ├── tips_4.png │ │ │ │ ├── tishibg.png │ │ │ │ ├── user100.png │ │ │ │ ├── user50.png │ │ │ │ ├── video100.png │ │ │ │ └── video50.png │ │ │ ├── index.htm │ │ │ └── style.css │ │ ├── mobile │ │ │ └── mobile_member.css │ │ ├── rightmenu.css │ │ ├── rightmenu │ │ │ ├── images │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── index.htm │ │ │ │ ├── menu.gif │ │ │ │ ├── menu_downarrow.png │ │ │ │ ├── menu_rightarrow.png │ │ │ │ ├── menu_sep.png │ │ │ │ └── menu_split_downarrow.png │ │ │ ├── index.htm │ │ │ └── style.css │ │ ├── select-file.css │ │ └── selfilewindow.css │ ├── filelist.php │ ├── filesave.php │ ├── fileselection.php │ ├── fileselection │ │ ├── ajax.php │ │ ├── dzzcp.php │ │ ├── explorerfile.php │ │ ├── file.php │ │ ├── json.php │ │ ├── listcontent.php │ │ ├── listtree.php │ │ └── save.php │ ├── filewindow.php │ ├── function │ │ └── function_filerouterule.php │ ├── images │ │ ├── 32px.png │ │ ├── ALIOSS.png │ │ ├── FTP.png │ │ ├── JSS.png │ │ ├── OneDrive.png │ │ ├── baiduPCS.png │ │ ├── checkbox-box.png │ │ ├── checkbox-check.png │ │ ├── department.png │ │ ├── desktop.png │ │ ├── dock.png │ │ ├── document.png │ │ ├── dropbox.png │ │ ├── file.png │ │ ├── folder.png │ │ ├── group.png │ │ ├── home.png │ │ ├── image.png │ │ ├── link.png │ │ ├── music.png │ │ ├── organization.png │ │ ├── recycle.png │ │ ├── root.png │ │ ├── type.png │ │ ├── user.png │ │ └── video.png │ ├── language │ │ └── zh-cn │ │ │ └── lang.php │ ├── mobile_selectuser.php │ ├── mobilefileselection.php │ ├── mobilefileselection │ │ ├── ajax.php │ │ ├── file.php │ │ ├── group.php │ │ ├── home.php │ │ ├── json.php │ │ ├── listtree.php │ │ ├── save.php │ │ ├── search.php │ │ └── searchfile.php │ ├── notification.php │ ├── orgtree.php │ ├── positionlist.php │ ├── save.php │ ├── scripts │ │ ├── _hotkey.js │ │ ├── _perm.js │ │ ├── _select.js │ │ ├── contextmenu.js │ │ ├── explorer.js │ │ ├── filemanage.js │ │ ├── jquery.cookie.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.jstree.all.js │ │ ├── jquery.jstree.js │ │ ├── jquery.jstree.min.js │ │ ├── lyear_select-file.js │ │ ├── mobile │ │ │ ├── appevent.js │ │ │ ├── explorer.js │ │ │ └── file_keep.js │ │ ├── select-file.js │ │ ├── selorg.js │ │ ├── selorguser.js │ │ ├── themes │ │ │ ├── apple │ │ │ │ ├── bg.jpg │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ ├── classic │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ ├── default-rtl │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dots.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ └── default │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ └── uplodfile.js │ ├── selectfile.php │ ├── selorguser.php │ ├── selposition.php │ ├── template │ │ ├── app_ajax.htm │ │ ├── filelist.htm │ │ ├── fileselection │ │ │ ├── ajax.htm │ │ │ ├── content.htm │ │ │ ├── index.htm │ │ │ ├── listcontent.htm │ │ │ ├── lyear_index.htm │ │ │ ├── right_contextmenu.htm │ │ │ ├── template_file_detaillist.htm │ │ │ ├── template_file_detaillist_cat.htm │ │ │ └── template_file_middleicon.htm │ │ ├── header_left.htm │ │ ├── header_search.htm │ │ ├── layer_selorguser.htm │ │ ├── lyear │ │ │ ├── lyear_app_ajax.htm │ │ │ ├── lyear_header_search.htm │ │ │ ├── lyear_left.htm │ │ │ ├── lyear_notification.htm │ │ │ ├── lyear_orgtree.htm │ │ │ └── lyear_selorguser.htm │ │ ├── mobile_commer_header.htm │ │ ├── mobile_selectuser.htm │ │ ├── mobilefileselection │ │ │ ├── commer_header.htm │ │ │ ├── filelist.htm │ │ │ ├── flie_select.htm │ │ │ ├── footer_menu.htm │ │ │ ├── group.htm │ │ │ ├── index.htm │ │ │ ├── index_content.htm │ │ │ ├── search.htm │ │ │ └── searchfile.htm │ │ ├── notification.htm │ │ ├── notification_list.htm │ │ ├── orgtree.htm │ │ ├── positionlist.htm │ │ ├── selectfile.htm │ │ ├── selorguser.htm │ │ └── selposition.htm │ ├── ueditor │ │ ├── README.md │ │ ├── dialogs │ │ │ ├── ai │ │ │ │ ├── ai.html │ │ │ │ └── ai.js │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── audio │ │ │ │ ├── audio.css │ │ │ │ ├── audio.html │ │ │ │ ├── audio.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── contentimport │ │ │ │ ├── contentimport.html │ │ │ │ ├── contentimport.js │ │ │ │ ├── mammoth.browser.min.js │ │ │ │ └── showdown.min.js │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ ├── emotion1.html │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── formula │ │ │ │ ├── formula.html │ │ │ │ └── formula.js │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ ├── webapp │ │ │ │ └── webapp.html │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ ├── lang │ │ │ ├── en-us │ │ │ │ ├── en-us.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ ├── php │ │ │ ├── Uploader.class.php │ │ │ ├── action_crawler.php │ │ │ ├── action_list.php │ │ │ ├── action_upload.php │ │ │ ├── config.json │ │ │ └── controller.php │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor_add.css │ │ │ │ ├── dialog.css │ │ │ │ ├── dialogbase.css │ │ │ │ ├── exts │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── apk.svg │ │ │ │ │ ├── chm.svg │ │ │ │ │ ├── css.svg │ │ │ │ │ ├── doc.svg │ │ │ │ │ ├── docx.svg │ │ │ │ │ ├── dwg.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── gif.svg │ │ │ │ │ ├── html.svg │ │ │ │ │ ├── jpeg.svg │ │ │ │ │ ├── jpg.svg │ │ │ │ │ ├── log.svg │ │ │ │ │ ├── mp3.svg │ │ │ │ │ ├── mp4.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── png.svg │ │ │ │ │ ├── ppt.svg │ │ │ │ │ ├── pptx.svg │ │ │ │ │ ├── psd.svg │ │ │ │ │ ├── rar.svg │ │ │ │ │ ├── svg.svg │ │ │ │ │ ├── torrent.svg │ │ │ │ │ ├── txt.svg │ │ │ │ │ ├── unknown.svg │ │ │ │ │ ├── xls.svg │ │ │ │ │ ├── xlsx.svg │ │ │ │ │ └── zip.svg │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── drafts.png │ │ │ │ │ ├── dzzfile.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons1.png │ │ │ │ │ ├── img-cracked.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── save.png │ │ │ │ │ ├── savever.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ ├── iframe.css │ │ │ └── iframe1.css │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── clipboard │ │ │ │ ├── clipboard.js │ │ │ │ └── clipboard.swf │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── dzzattach │ │ │ │ ├── dzzattach.css │ │ │ │ ├── dzzattach.js │ │ │ │ ├── images │ │ │ │ │ ├── ico_feed.png │ │ │ │ │ ├── tip_bottom.png │ │ │ │ │ ├── tip_top.png │ │ │ │ │ └── tip_up.gif │ │ │ │ ├── lyear_dzzattach.css │ │ │ │ ├── lyear_dzzattach.js │ │ │ │ └── preview │ │ │ │ │ ├── b.gif │ │ │ │ │ ├── btn_switch.gif │ │ │ │ │ ├── btn_switch.png │ │ │ │ │ ├── hint_cor.png │ │ │ │ │ ├── hint_icon.gif │ │ │ │ │ ├── hint_icon.png │ │ │ │ │ ├── icon_handle.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── popup_title.gif │ │ │ │ │ └── popup_title.png │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── showdown.js │ │ │ ├── snapscreen │ │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── vue.js │ │ │ ├── webuploader │ │ │ │ ├── webuploader.css │ │ │ │ └── webuploader.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.js │ │ ├── ueditor.config.js │ │ └── ueditor.parse.js │ ├── wxredirect.php │ └── wxreply.php ├── template │ └── lyear │ │ └── lyear_header_left.htm └── test │ ├── admin.php │ ├── cache │ └── cache_test.php │ ├── class │ ├── class_Chareset.php │ └── table │ │ └── table_test.php │ ├── classes │ └── testone.php │ ├── config │ └── config.php │ ├── cron │ └── cron_test.php │ ├── css │ └── test.css │ ├── disable.php │ ├── dzz_app_test.xml │ ├── enable.php │ ├── function │ └── function_test.php │ ├── images │ └── logo.png │ ├── index.php │ ├── install.php │ ├── language │ ├── en-us │ │ └── lang.php │ └── zh-cn │ │ └── lang.php │ ├── template │ ├── admin.htm │ ├── header_left.htm │ ├── index.htm │ └── left.htm │ ├── uninstall.php │ └── upgrade.php ├── favicon.ico ├── htaccess_default.txt ├── index.php ├── install ├── data │ ├── common_district_1.sql │ ├── common_district_2.sql │ ├── common_district_3.sql │ ├── install.sql │ └── install_data.sql ├── images │ ├── error.png │ ├── logo.png │ ├── right.png │ ├── sel.png │ ├── seled.png │ └── style.css ├── include │ ├── install_function.php │ ├── install_mysqli.php │ └── install_var.php ├── index.php ├── language │ └── zh-cn │ │ └── lang.php └── update.php ├── misc.php ├── misc ├── ajax.php ├── classes │ └── init.php ├── movetospace.php ├── seccode.php ├── seluser.php ├── sendmail.php ├── sendwx.php ├── setunrun.php ├── stat.php ├── syscache.php ├── template │ └── misc_seluser.htm └── upgrade.php ├── oauth.php ├── share.php ├── short.php ├── static ├── atwho │ ├── css │ │ ├── jquery.atwho.css │ │ └── jquery.atwho.min.css │ └── js │ │ ├── jquery.atwho.js │ │ ├── jquery.atwho.min.js │ │ ├── jquery.caret.js │ │ └── jquery.caret.min.js ├── bootstrap │ ├── colorselector │ │ ├── css │ │ │ └── bootstrap-colorselector.css │ │ └── js │ │ │ └── bootstrap-colorselector.js │ ├── css │ │ ├── bootstrap-slider.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── bootstrapSwitch.css │ │ ├── buttons.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap-slider.js │ │ ├── bootstrap-typeahead.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── bootstrapSwitch.js │ │ ├── html5shiv.min.js │ │ ├── npm.js │ │ └── respond.min.js ├── clipboard │ ├── clipboard.js │ └── clipboard.min.js ├── css │ ├── app_manage.css │ ├── calendar.css │ ├── checkbox.css │ ├── common.css │ ├── jquery-ui-1.10.4.custom.min.css │ ├── mabile_common.css │ ├── pc-commer-header.css │ ├── smilies.css │ └── tip.css ├── dzzicon │ ├── fonts │ │ ├── dzz.eot │ │ ├── dzz.svg │ │ ├── dzz.ttf │ │ └── dzz.woff │ └── icon.css ├── dzzthumb │ ├── jquery.dzzthumb.css │ ├── jquery.dzzthumb.js │ └── preview │ │ ├── b.gif │ │ ├── btn_switch.gif │ │ ├── btn_switch.png │ │ ├── hint_cor.png │ │ ├── hint_icon.gif │ │ ├── hint_icon.png │ │ ├── icon_handle.gif │ │ ├── loading.gif │ │ ├── loading.svg │ │ ├── loading1.gif │ │ ├── popup_title.gif │ │ └── popup_title.png ├── icheck │ ├── icheck.min.js │ └── skins │ │ ├── all.css │ │ ├── flat │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── flat.css │ │ ├── flat.png │ │ ├── flat@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ │ ├── futurico │ │ ├── futurico.css │ │ ├── futurico.png │ │ └── futurico@2x.png │ │ ├── line │ │ ├── _all.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── green.css │ │ ├── grey.css │ │ ├── line.css │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── orange.css │ │ ├── pink.css │ │ ├── purple.css │ │ ├── red.css │ │ └── yellow.css │ │ ├── minimal │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── minimal.css │ │ ├── minimal.png │ │ ├── minimal@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ │ ├── polaris │ │ ├── polaris.css │ │ ├── polaris.png │ │ └── polaris@2x.png │ │ └── square │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── square.css │ │ ├── square.png │ │ ├── square@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png ├── image │ ├── avatar │ │ ├── noavatar_big.gif │ │ ├── noavatar_middle.gif │ │ └── noavatar_small.gif │ ├── common │ │ ├── arw_r.gif │ │ ├── b.gif │ │ ├── check_error.gif │ │ ├── check_right.gif │ │ ├── clipboard.swf │ │ ├── close.gif │ │ ├── delete.png │ │ ├── error.png │ │ ├── ic-filtrate.png │ │ ├── icon_main.png │ │ ├── info.png │ │ ├── left_drager.png │ │ ├── left_drager_op1.gif │ │ ├── left_drager_op2.gif │ │ ├── loading.gif │ │ ├── loading.png │ │ ├── logo.png │ │ ├── noFilePage-fail.png │ │ ├── noFilePage-successful.png │ │ ├── no_list.png │ │ ├── none.gif │ │ ├── passlevel.png │ │ ├── player.swf │ │ ├── qq.gif │ │ ├── qq_big.gif │ │ ├── qq_bind.gif │ │ ├── qq_bind_small.gif │ │ ├── qq_login.gif │ │ ├── rank1.png │ │ ├── rank2.png │ │ ├── rank3.png │ │ ├── right.gif │ │ ├── right.png │ │ ├── tip_bottom.png │ │ ├── tip_top.png │ │ ├── tip_up.gif │ │ ├── tip_up_grey.gif │ │ ├── tree_heng.gif │ │ ├── tree_heng1.gif │ │ ├── tree_su.gif │ │ ├── wloading.gif │ │ └── wloading.png │ ├── index.htm │ ├── seccode │ │ ├── background │ │ │ ├── bg-1.jpg │ │ │ ├── bg-10.jpg │ │ │ ├── bg-2.jpg │ │ │ ├── bg-3.jpg │ │ │ ├── bg-4.jpg │ │ │ ├── bg-5.jpg │ │ │ ├── bg-6.jpg │ │ │ ├── bg-7.jpg │ │ │ ├── bg-8.jpg │ │ │ └── bg-9.jpg │ │ ├── flash │ │ │ ├── flash1.swf │ │ │ ├── flash2.swf │ │ │ └── index.htm │ │ ├── font │ │ │ ├── ch │ │ │ │ └── index.htm │ │ │ ├── en │ │ │ │ ├── en_arial.ttf │ │ │ │ └── index.htm │ │ │ └── index.htm │ │ ├── gif │ │ │ ├── OCR_A_Extended │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ ├── 9.gif │ │ │ │ ├── b.gif │ │ │ │ ├── c.gif │ │ │ │ ├── e.gif │ │ │ │ ├── f.gif │ │ │ │ ├── g.gif │ │ │ │ ├── h.gif │ │ │ │ ├── index.htm │ │ │ │ ├── j.gif │ │ │ │ ├── k.gif │ │ │ │ ├── m.gif │ │ │ │ ├── p.gif │ │ │ │ ├── q.gif │ │ │ │ ├── r.gif │ │ │ │ ├── t.gif │ │ │ │ ├── v.gif │ │ │ │ ├── w.gif │ │ │ │ ├── x.gif │ │ │ │ └── y.gif │ │ │ ├── Small_Fonts │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ ├── 9.gif │ │ │ │ ├── b.gif │ │ │ │ ├── c.gif │ │ │ │ ├── e.gif │ │ │ │ ├── f.gif │ │ │ │ ├── g.gif │ │ │ │ ├── h.gif │ │ │ │ ├── index.htm │ │ │ │ ├── j.gif │ │ │ │ ├── k.gif │ │ │ │ ├── m.gif │ │ │ │ ├── p.gif │ │ │ │ ├── q.gif │ │ │ │ ├── r.gif │ │ │ │ ├── t.gif │ │ │ │ ├── v.gif │ │ │ │ ├── w.gif │ │ │ │ ├── x.gif │ │ │ │ └── y.gif │ │ │ └── index.htm │ │ ├── index.htm │ │ └── sound │ │ │ ├── c.mp3 │ │ │ ├── e.mp3 │ │ │ ├── f.mp3 │ │ │ ├── h.mp3 │ │ │ ├── index.htm │ │ │ ├── k.mp3 │ │ │ ├── l.mp3 │ │ │ ├── m.mp3 │ │ │ ├── n.mp3 │ │ │ ├── o.mp3 │ │ │ ├── p.mp3 │ │ │ ├── q.mp3 │ │ │ ├── r.mp3 │ │ │ ├── s.mp3 │ │ │ ├── t.mp3 │ │ │ ├── u.mp3 │ │ │ ├── v.mp3 │ │ │ ├── w.mp3 │ │ │ ├── x.mp3 │ │ │ ├── y.mp3 │ │ │ └── z.mp3 │ ├── smiley │ │ ├── default │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 72.gif │ │ │ ├── 73.gif │ │ │ ├── 74.gif │ │ │ ├── 75.gif │ │ │ ├── 76.gif │ │ │ ├── 77.gif │ │ │ ├── 78.gif │ │ │ ├── 79.gif │ │ │ ├── 8.gif │ │ │ ├── 80.gif │ │ │ ├── 81.gif │ │ │ ├── 82.gif │ │ │ ├── 83.gif │ │ │ ├── 84.gif │ │ │ ├── 85.gif │ │ │ ├── 86.gif │ │ │ ├── 87.gif │ │ │ ├── 88.gif │ │ │ ├── 89.gif │ │ │ └── 9.gif │ │ ├── dzz │ │ │ ├── dzz-em0001.png │ │ │ ├── dzz-em0002.png │ │ │ ├── dzz-em0003.png │ │ │ ├── dzz-em0004.png │ │ │ ├── dzz-em0005.png │ │ │ ├── dzz-em0006.png │ │ │ ├── dzz-em0007.png │ │ │ ├── dzz-em0008.png │ │ │ ├── dzz-em0009.png │ │ │ ├── dzz-em0010.png │ │ │ ├── dzz-em0011.png │ │ │ ├── dzz-em0012.png │ │ │ ├── dzz-em0013.png │ │ │ ├── dzz-em0014.png │ │ │ ├── dzz-em0015.png │ │ │ ├── dzz-em0016.png │ │ │ ├── dzz-em0017.png │ │ │ ├── dzz-em0018.png │ │ │ ├── dzz-em0019.png │ │ │ ├── dzz-em0020.png │ │ │ ├── dzz-em0021.png │ │ │ ├── dzz-em0022.png │ │ │ ├── dzz-em0023.png │ │ │ ├── dzz-em0024.png │ │ │ ├── dzz-em0025.png │ │ │ ├── dzz-em0026.png │ │ │ ├── dzz-em0027.png │ │ │ ├── dzz-em0028.png │ │ │ ├── dzz-em0029.png │ │ │ ├── dzz-em0030.png │ │ │ ├── dzz-em0031.png │ │ │ ├── dzz-em0032.png │ │ │ ├── dzz-em0033.png │ │ │ ├── dzz-em0034.png │ │ │ ├── dzz-em0035.png │ │ │ ├── dzz-em0036.png │ │ │ ├── dzz-em0037.png │ │ │ ├── dzz-em0038.png │ │ │ ├── dzz-em0039.png │ │ │ ├── dzz-em0040.png │ │ │ ├── dzz-em0041.png │ │ │ ├── dzz-em0042.png │ │ │ ├── dzz-em0043.png │ │ │ ├── dzz-em0044.png │ │ │ ├── dzz-em0045.png │ │ │ ├── dzz-em0046.png │ │ │ ├── dzz-em0047.png │ │ │ ├── dzz-em0048.png │ │ │ ├── dzz-em0049.png │ │ │ ├── dzz-em0050.png │ │ │ ├── dzz-em0051.png │ │ │ ├── dzz-em0052.png │ │ │ ├── dzz-em0053.png │ │ │ ├── dzz-em0054.png │ │ │ ├── dzz-em0055.png │ │ │ ├── dzz-em0056.png │ │ │ ├── dzz-em0057.png │ │ │ ├── dzz-em0058.png │ │ │ ├── dzz-em0059.png │ │ │ ├── dzz-em0060.png │ │ │ ├── dzz-em0061.png │ │ │ ├── dzz-em0062.png │ │ │ ├── dzz-em0063.png │ │ │ ├── dzz-em0064.png │ │ │ ├── dzz-em0065.png │ │ │ ├── dzz-em0066.png │ │ │ ├── dzz-em0067.png │ │ │ ├── dzz-em0068.png │ │ │ ├── dzz-em0069.png │ │ │ ├── dzz-em0070.png │ │ │ ├── dzz-em0071.png │ │ │ ├── dzz-em0072.png │ │ │ ├── dzz-em0073.png │ │ │ ├── dzz-em0074.png │ │ │ ├── dzz-em0075.png │ │ │ ├── dzz-em0076.png │ │ │ ├── dzz-em0077.png │ │ │ ├── dzz-em0078.png │ │ │ ├── dzz-em0079.png │ │ │ ├── dzz-em0080.png │ │ │ ├── dzz-em0081.png │ │ │ ├── dzz-em0082.png │ │ │ ├── dzz-em0083.png │ │ │ ├── dzz-em0084.png │ │ │ ├── dzz-em0085.png │ │ │ ├── dzz-em0086.png │ │ │ ├── dzz-em0087.png │ │ │ ├── dzz-em0088.png │ │ │ ├── dzz-em0089.png │ │ │ ├── dzz-em0090.png │ │ │ ├── dzz-em0091.png │ │ │ ├── dzz-em0092.png │ │ │ ├── dzz-em0093.png │ │ │ ├── dzz-em0094.png │ │ │ ├── dzz-em0095.png │ │ │ ├── dzz-em0096.png │ │ │ ├── dzz-em0097.png │ │ │ ├── dzz-em0098.png │ │ │ ├── dzz-em0099.png │ │ │ └── dzz-em0100.png │ │ └── index.htm │ ├── sound │ │ ├── index.htm │ │ ├── player.swf │ │ ├── pm_1.mp3 │ │ ├── pm_2.mp3 │ │ └── pm_3.mp3 │ └── tool │ │ ├── getcolor.htm │ │ └── transcolor.gif ├── index.htm ├── jquery │ ├── jquery-migrate-1.4.1.js │ ├── jquery-ui.js │ ├── jquery.json-2.4.min.js │ └── jquery.min.js ├── jquery_file_upload │ ├── jquery.fileupload-process.js │ ├── jquery.fileupload-validate.js │ ├── jquery.fileupload.js │ ├── jquery.iframe-transport.js │ └── jquery.ui.widget.js ├── jquery_weui │ ├── .project │ ├── css │ │ ├── jquery-weui.min.css │ │ └── weui.min.css │ └── js │ │ ├── appevent.js │ │ ├── clipboard.min.js │ │ ├── iscroll.js │ │ ├── jquery-weui.js │ │ ├── jquery-weui.min.js │ │ ├── navbarscroll.js │ │ └── swiper.min.js ├── js │ ├── ZeroClipboard │ │ ├── ZeroClipboard.js │ │ ├── ZeroClipboard.min.js │ │ └── ZeroClipboard.swf │ ├── bootstrap_datepicker │ │ ├── css │ │ │ └── bootstrap-datepicker.min.css │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── bootstrap-datepicker.min.js │ │ └── locales │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ ├── bootstrap-datepicker.nb.min.js │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ ├── bootstrap_datetimepicker │ │ ├── css │ │ │ └── bootstrap-datetimepicker.min.css │ │ ├── js │ │ │ └── bootstrap-datetimepicker.min.js │ │ └── locales │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ ├── bootstrap-datetimepicker.az.js │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ ├── bootstrap-datetimepicker.bn.js │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ ├── bootstrap-datetimepicker.hy.js │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ ├── bootstrap-datetimepicker.ka.js │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ ├── calendar.js │ ├── common.js │ ├── datepicker │ │ ├── datepicker.css │ │ ├── jquery-ui-sliderAccess.js │ │ ├── jquery-ui-timepicker-addon.css │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── jquery-ui-timepicker-zh-CN.js │ │ ├── jquery.datepicker-zh-CN.js │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.core.min.js │ │ ├── jquery.ui.datepicker.js │ │ └── jquery.ui.datepicker.min.js │ ├── echarts-plain.js │ ├── echarts.min.js │ ├── header.js │ ├── imgReady.js │ ├── input_field.js │ ├── jquery.dragsort.js │ ├── jquery.highlight.js │ ├── jquery.kpdragsort.js │ ├── jquery.leftDrager.js │ ├── jquery.mousewheel.min.js │ ├── jquery.placeholder.js │ ├── jquery.textareaexplander.js │ ├── jquery.ui.core.js │ ├── jquery.ui.mouse.js │ ├── jquery.ui.touch.js │ ├── jquery.ui.widget.js │ ├── jstree.min.js │ ├── mCustomScrollbar │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── jquery.mCustomScrollbar.css │ │ └── mCSB_buttons.png │ ├── md5.js │ ├── smilies.js │ ├── switchery.js │ ├── tmpl.js │ └── touch-0.2.14.min.js ├── jstree │ ├── 32px.png │ └── themes │ │ └── default │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── organization.png │ │ ├── style.css │ │ ├── style.min.css │ │ ├── throbber.gif │ │ └── user.png ├── lyear │ ├── css │ │ ├── animate.min.css │ │ ├── bootstrap.min.css │ │ ├── materialdesignicons.min.css │ │ └── style.min.css │ ├── fonts │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.ttf │ │ ├── materialdesignicons-webfont.woff │ │ └── materialdesignicons-webfont.woff2 │ ├── images │ │ └── loading.gif │ └── js │ │ ├── bootstrap-colorpicker │ │ ├── bootstrap-colorpicker.min.css │ │ └── bootstrap-colorpicker.min.js │ │ ├── bootstrap-datepicker │ │ ├── bootstrap-datepicker.min.js │ │ ├── bootstrap-datepicker3.min.css │ │ └── locales │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── bootstrap-daterangepicker │ │ ├── daterangepicker.css │ │ └── daterangepicker.min.js │ │ ├── bootstrap-datetimepicker │ │ ├── bootstrap-datetimepicker.min.css │ │ └── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-maxlength │ │ └── bootstrap-maxlength.min.js │ │ ├── bootstrap-select │ │ ├── bootstrap-select.min.css │ │ ├── bootstrap-select.min.js │ │ └── i18n │ │ │ ├── defaults-zh_CN.min.js │ │ │ └── defaults-zh_TW.min.js │ │ ├── bootstrap-selectN.js │ │ ├── bootstrap-table │ │ ├── bootstrap-table.css │ │ ├── bootstrap-table.js │ │ ├── bootstrap-table.min.css │ │ ├── bootstrap-table.min.js │ │ ├── extensions │ │ │ ├── addrbar │ │ │ │ └── bootstrap-table-addrbar.min.js │ │ │ ├── auto-refresh │ │ │ │ └── bootstrap-table-auto-refresh.min.js │ │ │ ├── cookie │ │ │ │ └── bootstrap-table-cookie.min.js │ │ │ ├── copy-rows │ │ │ │ └── bootstrap-table-copy-rows.min.js │ │ │ ├── defer-url │ │ │ │ └── bootstrap-table-defer-url.min.js │ │ │ ├── editable │ │ │ │ └── bootstrap-table-editable.min.js │ │ │ ├── export │ │ │ │ └── bootstrap-table-export.min.js │ │ │ ├── filter-control │ │ │ │ ├── bootstrap-table-filter-control.min.css │ │ │ │ ├── bootstrap-table-filter-control.min.js │ │ │ │ └── utils.min.js │ │ │ ├── fixed-columns │ │ │ │ ├── bootstrap-table-fixed-columns.min.css │ │ │ │ └── bootstrap-table-fixed-columns.min.js │ │ │ ├── group-by-v2 │ │ │ │ ├── bootstrap-table-group-by.min.css │ │ │ │ └── bootstrap-table-group-by.min.js │ │ │ ├── i18n-enhance │ │ │ │ └── bootstrap-table-i18n-enhance.min.js │ │ │ ├── key-events │ │ │ │ └── bootstrap-table-key-events.min.js │ │ │ ├── mobile │ │ │ │ └── bootstrap-table-mobile.min.js │ │ │ ├── multiple-sort │ │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ │ ├── page-jump-to │ │ │ │ ├── bootstrap-table-page-jump-to.min.css │ │ │ │ └── bootstrap-table-page-jump-to.min.js │ │ │ ├── pipeline │ │ │ │ └── bootstrap-table-pipeline.min.js │ │ │ ├── reorder-columns │ │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ │ ├── reorder-rows │ │ │ │ ├── bootstrap-table-reorder-rows.min.css │ │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ │ ├── resizable │ │ │ │ └── bootstrap-table-resizable.min.js │ │ │ ├── sticky-header │ │ │ │ ├── bootstrap-table-sticky-header.min.css │ │ │ │ └── bootstrap-table-sticky-header.min.js │ │ │ ├── toolbar │ │ │ │ └── bootstrap-table-toolbar.min.js │ │ │ └── treegrid │ │ │ │ └── bootstrap-table-treegrid.min.js │ │ └── locale │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ └── bootstrap-table-zh-TW.min.js │ │ ├── bootstrap-touchspin │ │ ├── jquery.bootstrap-touchspin.css │ │ └── jquery.bootstrap-touchspin.min.js │ │ ├── bootstrap.min.js │ │ ├── chart.min.js │ │ ├── common.js │ │ ├── cropper │ │ ├── cropper.min.css │ │ └── cropper.min.js │ │ ├── html5.min.js │ │ ├── jquery-tagsinput │ │ ├── jquery.tagsinput.min.css │ │ └── jquery.tagsinput.min.js │ │ ├── jquery-toolbar │ │ ├── jquery-toolbar.min.css │ │ └── jquery.toolbar.min.js │ │ ├── jquery.min.js │ │ ├── jstree │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── jstree.min.js │ │ ├── style.min.css │ │ └── throbber.gif │ │ ├── layer │ │ ├── layer.js │ │ └── theme │ │ │ └── lightyear │ │ │ ├── icon.png │ │ │ ├── loading.svg │ │ │ └── style.min.css │ │ ├── layui │ │ ├── css │ │ │ └── layui.css │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ └── layui.js │ │ ├── lyear-loading.js │ │ ├── main.min.js │ │ ├── momentjs │ │ ├── locale │ │ │ ├── zh-cn.min.js │ │ │ └── zh-tw.min.js │ │ └── moment.min.js │ │ ├── perfect-scrollbar.min.js │ │ ├── popper.min.js │ │ ├── respond.min.js │ │ ├── scroll-numbers.js │ │ ├── select2 │ │ ├── i18n │ │ │ └── zh-CN.js │ │ ├── select2.min.css │ │ └── select2.min.js │ │ └── webuploader │ │ └── webuploader.min.js ├── perfect-scrollbar │ ├── css │ │ └── perfect-scrollbar.css │ └── js │ │ ├── perfect-scrollbar.js │ │ └── perfect-scrollbar.min.js ├── popbox │ ├── jquery.popbox.js │ ├── loading.gif │ ├── loading.svg │ ├── loading1.gif │ ├── oval.svg │ └── popbox.css ├── select2 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── component.json │ ├── composer.json │ ├── package.json │ ├── release.sh │ ├── select2-bootstrap.css │ ├── select2-spinner.gif │ ├── select2.css │ ├── select2.jquery.json │ ├── select2.js │ ├── select2.min.js │ ├── select2.png │ ├── select2_locale_ar.js │ ├── select2_locale_az.js │ ├── select2_locale_bg.js │ ├── select2_locale_ca.js │ ├── select2_locale_cs.js │ ├── select2_locale_da.js │ ├── select2_locale_de.js │ ├── select2_locale_el.js │ ├── select2_locale_en.js.template │ ├── select2_locale_es.js │ ├── select2_locale_et.js │ ├── select2_locale_eu.js │ ├── select2_locale_fa.js │ ├── select2_locale_fi.js │ ├── select2_locale_fr.js │ ├── select2_locale_gl.js │ ├── select2_locale_he.js │ ├── select2_locale_hr.js │ ├── select2_locale_hu.js │ ├── select2_locale_id.js │ ├── select2_locale_is.js │ ├── select2_locale_it.js │ ├── select2_locale_ja.js │ ├── select2_locale_ka.js │ ├── select2_locale_ko.js │ ├── select2_locale_lt.js │ ├── select2_locale_lv.js │ ├── select2_locale_mk.js │ ├── select2_locale_ms.js │ ├── select2_locale_nl.js │ ├── select2_locale_no.js │ ├── select2_locale_pl.js │ ├── select2_locale_pt-BR.js │ ├── select2_locale_pt-PT.js │ ├── select2_locale_ro.js │ ├── select2_locale_rs.js │ ├── select2_locale_ru.js │ ├── select2_locale_sk.js │ ├── select2_locale_sv.js │ ├── select2_locale_th.js │ ├── select2_locale_tr.js │ ├── select2_locale_ug-CN.js │ ├── select2_locale_uk.js │ ├── select2_locale_vi.js │ ├── select2_locale_zh-CN.js │ ├── select2_locale_zh-TW.js │ └── select2x2.png ├── swiper │ ├── css │ │ └── swiper.min.css │ └── js │ │ ├── swiper.esm.bundle.js │ │ ├── swiper.esm.js │ │ ├── swiper.js │ │ ├── swiper.min.js │ │ └── swiper.min.js.map ├── switchery │ ├── switchery.min.css │ └── switchery.min.js └── tagsinput │ ├── jquery.tagsinput.css │ └── jquery.tagsinput.js ├── user.php └── user ├── ajax.php ├── classes ├── checklogin.php ├── init.php ├── route.php └── safechk.php ├── config └── config.php ├── function ├── function_profile.php └── function_user.php ├── language └── zh-cn │ └── lang.php ├── login ├── classes │ ├── logincheck.php │ └── loginvalchk.php ├── config │ └── config.php ├── images │ ├── login.jpg │ └── login_single4.css ├── logging.php ├── logging │ ├── getpasswd.php │ ├── login.php │ ├── logout.php │ └── lostpasswd.php ├── login.php └── template │ ├── copyright.htm │ ├── getpasswd.htm │ ├── login_copyright.htm │ ├── login_single1.htm │ ├── login_single2.htm │ ├── login_single3.htm │ ├── login_single4.htm │ ├── login_skip.htm │ └── lostpasswd.htm ├── profile ├── avatar.php ├── classes │ └── emailchk.php ├── config │ └── config.php ├── css │ └── passsafe.css ├── images │ └── step.png ├── index.php ├── password.php ├── safeverify.php ├── scripts │ └── cropper.js └── template │ ├── changeemail.htm │ ├── editpass.htm │ ├── login.htm │ ├── lyear │ └── lyear_left.htm │ ├── pass_safe.htm │ └── profile.htm ├── register ├── ajax.php ├── classes │ ├── checkvalue.php │ ├── regcommon.php │ └── register.php ├── images │ └── register.css ├── register.php └── template │ ├── register.htm │ ├── register3.htm │ └── register_bbrule.htm ├── scripts ├── login.js ├── md5.js ├── register.js └── setbacksize.js ├── space ├── about.php ├── index.php ├── navmenu.php └── template │ ├── lyear │ └── lyear_navmenu.htm │ ├── navmenu.htm │ └── space.htm └── template ├── ajax.htm └── lyear └── lyear_header_left.htm /admin/cloud/language/zh-cn/lang.php: -------------------------------------------------------------------------------- 1 | <?php 2 | $lang = array( 3 | 'appname' => '云设置和管理', 4 | ); 5 | ?> -------------------------------------------------------------------------------- /admin/images/loadding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/admin/images/loadding.gif -------------------------------------------------------------------------------- /admin/setting/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/admin/setting/images/0.png -------------------------------------------------------------------------------- /admin/setting/images/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/admin/setting/images/c.png -------------------------------------------------------------------------------- /admin/setting/images/template1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/admin/setting/images/template1.jpg -------------------------------------------------------------------------------- /admin/setting/images/template2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/admin/setting/images/template2.jpg -------------------------------------------------------------------------------- /admin/setting/images/template3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/admin/setting/images/template3.jpg -------------------------------------------------------------------------------- /admin/setting/images/template4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/admin/setting/images/template4.jpg -------------------------------------------------------------------------------- /config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/config/index.html -------------------------------------------------------------------------------- /core/api/Qcos/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .idea/ -------------------------------------------------------------------------------- /core/api/Qcos/index.php: -------------------------------------------------------------------------------- 1 | <?php 2 | require dirname(__FILE__) . '/vendor/autoload.php'; 3 | -------------------------------------------------------------------------------- /core/api/Qcos/vendor/guzzlehttp/guzzle-services/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | vendor/ 4 | artifacts/ 5 | -------------------------------------------------------------------------------- /core/class/chinesetable/gb-big5.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/core/class/chinesetable/gb-big5.table -------------------------------------------------------------------------------- /core/class/class_CException.php: -------------------------------------------------------------------------------- 1 | <?php 2 | if(!defined('IN_DZZ')) { 3 | exit('Access Denied'); 4 | } 5 | 6 | class CException extends Exception{ 7 | 8 | } 9 | ?> -------------------------------------------------------------------------------- /core/template/default/common/footer_ajax.htm: -------------------------------------------------------------------------------- 1 | <!--{echo output_ajax()}-->]]></root><!--{eval exit;}--> -------------------------------------------------------------------------------- /core/template/default/common/footer_reload.htm: -------------------------------------------------------------------------------- 1 | </body> 2 | </html> 3 | -------------------------------------------------------------------------------- /core/template/default/common/header.htm: -------------------------------------------------------------------------------- 1 | <!--{template common/header_common}--> 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /crossdomain.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8" ?> 2 | <cross-domain-policy> 3 | <allow-access-from domain="*"/> 4 | </cross-domain-policy> -------------------------------------------------------------------------------- /data/attachment/.htaccess: -------------------------------------------------------------------------------- 1 | <Files ~ "^.*\.(php|cgi|pl|php3|php4|php5|php6|phtml|inc|jsp|py|sql)"> 2 | Order allow,deny 3 | Deny from all 4 | </Files> -------------------------------------------------------------------------------- /data/attachment/appimg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/attachment/appimg/index.html -------------------------------------------------------------------------------- /data/attachment/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/attachment/cache/index.html -------------------------------------------------------------------------------- /data/attachment/common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/attachment/common/index.html -------------------------------------------------------------------------------- /data/attachment/dzz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/attachment/dzz/index.html -------------------------------------------------------------------------------- /data/attachment/imgcache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/attachment/imgcache/index.html -------------------------------------------------------------------------------- /data/attachment/qrcode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/attachment/qrcode/index.html -------------------------------------------------------------------------------- /data/attachment/temp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/attachment/temp/index.html -------------------------------------------------------------------------------- /data/avatar/camera.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/avatar/camera.swf -------------------------------------------------------------------------------- /data/avatar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/avatar/index.html -------------------------------------------------------------------------------- /data/avatar/noavatar_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/avatar/noavatar_big.gif -------------------------------------------------------------------------------- /data/avatar/noavatar_middle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/avatar/noavatar_middle.gif -------------------------------------------------------------------------------- /data/avatar/noavatar_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/avatar/noavatar_small.gif -------------------------------------------------------------------------------- /data/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/cache/index.html -------------------------------------------------------------------------------- /data/log/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/log/index.html -------------------------------------------------------------------------------- /data/sysdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/sysdata/index.html -------------------------------------------------------------------------------- /data/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/data/template/index.html -------------------------------------------------------------------------------- /dzz/DPlayer/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/DPlayer/config/index.htm -------------------------------------------------------------------------------- /dzz/DPlayer/images/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/DPlayer/images/index.htm -------------------------------------------------------------------------------- /dzz/DPlayer/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/DPlayer/index.htm -------------------------------------------------------------------------------- /dzz/comment/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/config/index.htm -------------------------------------------------------------------------------- /dzz/comment/images/ico_feed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/ico_feed.gif -------------------------------------------------------------------------------- /dzz/comment/images/ico_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/ico_feed.png -------------------------------------------------------------------------------- /dzz/comment/images/ico_pub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/ico_pub.gif -------------------------------------------------------------------------------- /dzz/comment/images/ico_pub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/ico_pub.png -------------------------------------------------------------------------------- /dzz/comment/images/ico_tab_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/ico_tab_v1.png -------------------------------------------------------------------------------- /dzz/comment/images/ico_upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/ico_upload.gif -------------------------------------------------------------------------------- /dzz/comment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/icons.png -------------------------------------------------------------------------------- /dzz/comment/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/img.png -------------------------------------------------------------------------------- /dzz/comment/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/loading.gif -------------------------------------------------------------------------------- /dzz/comment/images/max.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/max.ico -------------------------------------------------------------------------------- /dzz/comment/images/min.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/min.ico -------------------------------------------------------------------------------- /dzz/comment/images/qunatip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/qunatip.gif -------------------------------------------------------------------------------- /dzz/comment/images/sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/sort_asc.gif -------------------------------------------------------------------------------- /dzz/comment/images/sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/sort_desc.gif -------------------------------------------------------------------------------- /dzz/comment/images/video100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/video100.png -------------------------------------------------------------------------------- /dzz/comment/images/video50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/video50.png -------------------------------------------------------------------------------- /dzz/comment/images/zoom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/zoom.ico -------------------------------------------------------------------------------- /dzz/comment/images/zoomin.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/zoomin.cur -------------------------------------------------------------------------------- /dzz/comment/images/zoomout.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/images/zoomout.cur -------------------------------------------------------------------------------- /dzz/comment/language/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/language/index.htm -------------------------------------------------------------------------------- /dzz/comment/language/zh-cn/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/comment/language/zh-cn/index.htm -------------------------------------------------------------------------------- /dzz/comment/language/zh-cn/lang.php: -------------------------------------------------------------------------------- 1 | <?php 2 | $lang = array( 3 | 'appname' => '评论管理', 4 | ); 5 | 6 | ?> -------------------------------------------------------------------------------- /dzz/config/config.php: -------------------------------------------------------------------------------- 1 | <?php 2 | return array( 3 | 'allow_robot' => false, 4 | 'allow_view' => 0, 5 | ); -------------------------------------------------------------------------------- /dzz/connect/config/config.php: -------------------------------------------------------------------------------- 1 | <?php 2 | return array( 3 | 'allow_view' => 1, 4 | 'template' => 1, 5 | ); -------------------------------------------------------------------------------- /dzz/connect/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/config/index.htm -------------------------------------------------------------------------------- /dzz/connect/images/ALIOSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/ALIOSS.png -------------------------------------------------------------------------------- /dzz/connect/images/JSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/JSS.png -------------------------------------------------------------------------------- /dzz/connect/images/baiduPCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/baiduPCS.png -------------------------------------------------------------------------------- /dzz/connect/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/checkbox.png -------------------------------------------------------------------------------- /dzz/connect/images/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/dropbox.png -------------------------------------------------------------------------------- /dzz/connect/images/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/ftp.png -------------------------------------------------------------------------------- /dzz/connect/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/home.png -------------------------------------------------------------------------------- /dzz/connect/images/icons48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/icons48.png -------------------------------------------------------------------------------- /dzz/connect/images/webdav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/connect/images/webdav.png -------------------------------------------------------------------------------- /dzz/dzzvote/template/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/dzzvote/template/index.htm -------------------------------------------------------------------------------- /dzz/explorer/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/config/index.htm -------------------------------------------------------------------------------- /dzz/explorer/function/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/function/index.htm -------------------------------------------------------------------------------- /dzz/explorer/images/ic-creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/images/ic-creator.png -------------------------------------------------------------------------------- /dzz/explorer/images/ic-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/images/ic-files.png -------------------------------------------------------------------------------- /dzz/explorer/images/ic-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/images/ic-manager.png -------------------------------------------------------------------------------- /dzz/explorer/images/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/images/index.htm -------------------------------------------------------------------------------- /dzz/explorer/images/link_small_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/images/link_small_bg.png -------------------------------------------------------------------------------- /dzz/explorer/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/index.htm -------------------------------------------------------------------------------- /dzz/explorer/js/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/js/index.htm -------------------------------------------------------------------------------- /dzz/explorer/language/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/language/index.htm -------------------------------------------------------------------------------- /dzz/explorer/language/zh-cn/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/explorer/language/zh-cn/index.htm -------------------------------------------------------------------------------- /dzz/filemanage/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/filemanage/config/index.htm -------------------------------------------------------------------------------- /dzz/filemanage/images/sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/filemanage/images/sort_asc.gif -------------------------------------------------------------------------------- /dzz/filemanage/images/sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/filemanage/images/sort_desc.gif -------------------------------------------------------------------------------- /dzz/images/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/b.gif -------------------------------------------------------------------------------- /dzz/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/close.png -------------------------------------------------------------------------------- /dzz/images/cur/aero_arrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/cur/aero_arrow.cur -------------------------------------------------------------------------------- /dzz/images/cur/aero_link.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/cur/aero_link.cur -------------------------------------------------------------------------------- /dzz/images/cur/aero_no.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/cur/aero_no.cur -------------------------------------------------------------------------------- /dzz/images/cur/aero_nwse.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/cur/aero_nwse.cur -------------------------------------------------------------------------------- /dzz/images/cur/aero_ru.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/cur/aero_ru.cur -------------------------------------------------------------------------------- /dzz/images/cur/aero_shan.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/cur/aero_shan.cur -------------------------------------------------------------------------------- /dzz/images/cur/aero_suo.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/cur/aero_suo.cur -------------------------------------------------------------------------------- /dzz/images/default/app_start_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/app_start_bg.gif -------------------------------------------------------------------------------- /dzz/images/default/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/delete.png -------------------------------------------------------------------------------- /dzz/images/default/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/e.png -------------------------------------------------------------------------------- /dzz/images/default/icobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/icobg.png -------------------------------------------------------------------------------- /dzz/images/default/icodefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/icodefault.png -------------------------------------------------------------------------------- /dzz/images/default/imageloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/imageloading.gif -------------------------------------------------------------------------------- /dzz/images/default/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/loading.gif -------------------------------------------------------------------------------- /dzz/images/default/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/loading.png -------------------------------------------------------------------------------- /dzz/images/default/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/new.gif -------------------------------------------------------------------------------- /dzz/images/default/notice_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/notice_system.png -------------------------------------------------------------------------------- /dzz/images/default/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/shortcut.png -------------------------------------------------------------------------------- /dzz/images/default/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/start.png -------------------------------------------------------------------------------- /dzz/images/default/system/ALIOSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/ALIOSS.png -------------------------------------------------------------------------------- /dzz/images/default/system/Dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/Dropbox.png -------------------------------------------------------------------------------- /dzz/images/default/system/JSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/JSS.png -------------------------------------------------------------------------------- /dzz/images/default/system/QCOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/QCOS.png -------------------------------------------------------------------------------- /dzz/images/default/system/bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/bucket.png -------------------------------------------------------------------------------- /dzz/images/default/system/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/desktop.png -------------------------------------------------------------------------------- /dzz/images/default/system/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/disk.png -------------------------------------------------------------------------------- /dzz/images/default/system/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/dock.png -------------------------------------------------------------------------------- /dzz/images/default/system/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/folder.png -------------------------------------------------------------------------------- /dzz/images/default/system/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/ftp.png -------------------------------------------------------------------------------- /dzz/images/default/system/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/home.png -------------------------------------------------------------------------------- /dzz/images/default/system/qiniu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/qiniu.png -------------------------------------------------------------------------------- /dzz/images/default/system/recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/recycle.png -------------------------------------------------------------------------------- /dzz/images/default/system/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/thumb.jpg -------------------------------------------------------------------------------- /dzz/images/default/system/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/system/video.png -------------------------------------------------------------------------------- /dzz/images/default/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/thumb.png -------------------------------------------------------------------------------- /dzz/images/default/upload_failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/upload_failure.png -------------------------------------------------------------------------------- /dzz/images/default/uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/default/uploading.png -------------------------------------------------------------------------------- /dzz/images/extimg/7z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/7z.png -------------------------------------------------------------------------------- /dzz/images/extimg/ace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/ace.png -------------------------------------------------------------------------------- /dzz/images/extimg/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/ai.png -------------------------------------------------------------------------------- /dzz/images/extimg/apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/apk.png -------------------------------------------------------------------------------- /dzz/images/extimg/arj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/arj.png -------------------------------------------------------------------------------- /dzz/images/extimg/asf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/asf.png -------------------------------------------------------------------------------- /dzz/images/extimg/asp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/asp.png -------------------------------------------------------------------------------- /dzz/images/extimg/aspx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/aspx.png -------------------------------------------------------------------------------- /dzz/images/extimg/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/avi.png -------------------------------------------------------------------------------- /dzz/images/extimg/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/bat.png -------------------------------------------------------------------------------- /dzz/images/extimg/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/blog.png -------------------------------------------------------------------------------- /dzz/images/extimg/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/c.png -------------------------------------------------------------------------------- /dzz/images/extimg/cab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/cab.png -------------------------------------------------------------------------------- /dzz/images/extimg/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/ccd.png -------------------------------------------------------------------------------- /dzz/images/extimg/chm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/chm.png -------------------------------------------------------------------------------- /dzz/images/extimg/conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/conf.png -------------------------------------------------------------------------------- /dzz/images/extimg/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/cpp.png -------------------------------------------------------------------------------- /dzz/images/extimg/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/css.png -------------------------------------------------------------------------------- /dzz/images/extimg/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/cue.png -------------------------------------------------------------------------------- /dzz/images/extimg/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/db.png -------------------------------------------------------------------------------- /dzz/images/extimg/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/dll.png -------------------------------------------------------------------------------- /dzz/images/extimg/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/doc.png -------------------------------------------------------------------------------- /dzz/images/extimg/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/document.png -------------------------------------------------------------------------------- /dzz/images/extimg/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/docx.png -------------------------------------------------------------------------------- /dzz/images/extimg/dps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/dps.png -------------------------------------------------------------------------------- /dzz/images/extimg/dzzdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/dzzdoc.png -------------------------------------------------------------------------------- /dzz/images/extimg/dzzppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/dzzppt.png -------------------------------------------------------------------------------- /dzz/images/extimg/dzzxls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/dzzxls.png -------------------------------------------------------------------------------- /dzz/images/extimg/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/editor.png -------------------------------------------------------------------------------- /dzz/images/extimg/eps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/eps.png -------------------------------------------------------------------------------- /dzz/images/extimg/epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/epub.png -------------------------------------------------------------------------------- /dzz/images/extimg/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/et.png -------------------------------------------------------------------------------- /dzz/images/extimg/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/exe.png -------------------------------------------------------------------------------- /dzz/images/extimg/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/f.png -------------------------------------------------------------------------------- /dzz/images/extimg/file_broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/file_broken.png -------------------------------------------------------------------------------- /dzz/images/extimg/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/fla.png -------------------------------------------------------------------------------- /dzz/images/extimg/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/flv.png -------------------------------------------------------------------------------- /dzz/images/extimg/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/folder.png -------------------------------------------------------------------------------- /dzz/images/extimg/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/fon.png -------------------------------------------------------------------------------- /dzz/images/extimg/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/gif.png -------------------------------------------------------------------------------- /dzz/images/extimg/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/h.png -------------------------------------------------------------------------------- /dzz/images/extimg/hta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/hta.png -------------------------------------------------------------------------------- /dzz/images/extimg/htc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/htc.png -------------------------------------------------------------------------------- /dzz/images/extimg/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/htm.png -------------------------------------------------------------------------------- /dzz/images/extimg/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/html.png -------------------------------------------------------------------------------- /dzz/images/extimg/idd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/idd.png -------------------------------------------------------------------------------- /dzz/images/extimg/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/img.png -------------------------------------------------------------------------------- /dzz/images/extimg/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/ini.png -------------------------------------------------------------------------------- /dzz/images/extimg/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/iso.png -------------------------------------------------------------------------------- /dzz/images/extimg/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/jar.png -------------------------------------------------------------------------------- /dzz/images/extimg/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/java.png -------------------------------------------------------------------------------- /dzz/images/extimg/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/jpeg.png -------------------------------------------------------------------------------- /dzz/images/extimg/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/jpg.png -------------------------------------------------------------------------------- /dzz/images/extimg/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/js.png -------------------------------------------------------------------------------- /dzz/images/extimg/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/json.png -------------------------------------------------------------------------------- /dzz/images/extimg/jsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/jsp.png -------------------------------------------------------------------------------- /dzz/images/extimg/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/l.png -------------------------------------------------------------------------------- /dzz/images/extimg/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/link.png -------------------------------------------------------------------------------- /dzz/images/extimg/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/log.png -------------------------------------------------------------------------------- /dzz/images/extimg/m4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/m4a.png -------------------------------------------------------------------------------- /dzz/images/extimg/m4v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/m4v.png -------------------------------------------------------------------------------- /dzz/images/extimg/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mds.png -------------------------------------------------------------------------------- /dzz/images/extimg/meiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/meiti.png -------------------------------------------------------------------------------- /dzz/images/extimg/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mid.png -------------------------------------------------------------------------------- /dzz/images/extimg/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/midi.png -------------------------------------------------------------------------------- /dzz/images/extimg/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mkv.png -------------------------------------------------------------------------------- /dzz/images/extimg/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mov.png -------------------------------------------------------------------------------- /dzz/images/extimg/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mp3.png -------------------------------------------------------------------------------- /dzz/images/extimg/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mp4.png -------------------------------------------------------------------------------- /dzz/images/extimg/mp4v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mp4v.png -------------------------------------------------------------------------------- /dzz/images/extimg/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mpeg.png -------------------------------------------------------------------------------- /dzz/images/extimg/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mpg.png -------------------------------------------------------------------------------- /dzz/images/extimg/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/music.png -------------------------------------------------------------------------------- /dzz/images/extimg/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/mv.png -------------------------------------------------------------------------------- /dzz/images/extimg/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/notepad.png -------------------------------------------------------------------------------- /dzz/images/extimg/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/nrg.png -------------------------------------------------------------------------------- /dzz/images/extimg/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/o.png -------------------------------------------------------------------------------- /dzz/images/extimg/otf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/otf.png -------------------------------------------------------------------------------- /dzz/images/extimg/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/p.png -------------------------------------------------------------------------------- /dzz/images/extimg/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/pdf.png -------------------------------------------------------------------------------- /dzz/images/extimg/pfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/pfm.png -------------------------------------------------------------------------------- /dzz/images/extimg/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/php.png -------------------------------------------------------------------------------- /dzz/images/extimg/php3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/php3.png -------------------------------------------------------------------------------- /dzz/images/extimg/php4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/php4.png -------------------------------------------------------------------------------- /dzz/images/extimg/php5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/php5.png -------------------------------------------------------------------------------- /dzz/images/extimg/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/png.png -------------------------------------------------------------------------------- /dzz/images/extimg/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/ppt.png -------------------------------------------------------------------------------- /dzz/images/extimg/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/pptx.png -------------------------------------------------------------------------------- /dzz/images/extimg/proj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/proj.png -------------------------------------------------------------------------------- /dzz/images/extimg/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/psd.png -------------------------------------------------------------------------------- /dzz/images/extimg/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/py.png -------------------------------------------------------------------------------- /dzz/images/extimg/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/rar.png -------------------------------------------------------------------------------- /dzz/images/extimg/rmvb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/rmvb.png -------------------------------------------------------------------------------- /dzz/images/extimg/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/rtf.png -------------------------------------------------------------------------------- /dzz/images/extimg/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/s.png -------------------------------------------------------------------------------- /dzz/images/extimg/sit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/sit.png -------------------------------------------------------------------------------- /dzz/images/extimg/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/sql.png -------------------------------------------------------------------------------- /dzz/images/extimg/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/swf.png -------------------------------------------------------------------------------- /dzz/images/extimg/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/tif.png -------------------------------------------------------------------------------- /dzz/images/extimg/topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/topic.png -------------------------------------------------------------------------------- /dzz/images/extimg/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/torrent.png -------------------------------------------------------------------------------- /dzz/images/extimg/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/ttf.png -------------------------------------------------------------------------------- /dzz/images/extimg/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/txt.png -------------------------------------------------------------------------------- /dzz/images/extimg/unknow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/unknow.png -------------------------------------------------------------------------------- /dzz/images/extimg/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/url.png -------------------------------------------------------------------------------- /dzz/images/extimg/vb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/vb.png -------------------------------------------------------------------------------- /dzz/images/extimg/vbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/vbs.png -------------------------------------------------------------------------------- /dzz/images/extimg/vcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/vcd.png -------------------------------------------------------------------------------- /dzz/images/extimg/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/video.png -------------------------------------------------------------------------------- /dzz/images/extimg/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/wav.png -------------------------------------------------------------------------------- /dzz/images/extimg/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/wma.png -------------------------------------------------------------------------------- /dzz/images/extimg/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/wmv.png -------------------------------------------------------------------------------- /dzz/images/extimg/wps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/wps.png -------------------------------------------------------------------------------- /dzz/images/extimg/xdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/xdoc.png -------------------------------------------------------------------------------- /dzz/images/extimg/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/xls.png -------------------------------------------------------------------------------- /dzz/images/extimg/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/xlsx.png -------------------------------------------------------------------------------- /dzz/images/extimg/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/xml.png -------------------------------------------------------------------------------- /dzz/images/extimg/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/y.png -------------------------------------------------------------------------------- /dzz/images/extimg/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg/zip.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/7z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/7z.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/ace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/ace.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/ai.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/apk.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/arj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/arj.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/asf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/asf.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/asp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/asp.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/aspx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/aspx.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/avi.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/bat.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/blog.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/c.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/cab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/cab.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/ccd.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/chm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/chm.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/conf.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/cpp.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/css.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/cue.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/db.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/dll.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/doc.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/document.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/docx.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/dps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/dps.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/dzzdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/dzzdoc.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/dzzppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/dzzppt.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/dzzxls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/dzzxls.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/editor.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/eps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/eps.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/epub.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/et.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/exe.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/f.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/flv.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/folder.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/fon.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/h.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/hta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/hta.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/htc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/htc.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/htm.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/html.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/img.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/ini.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/iso.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/jar.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/java.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/js.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/json.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/jsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/jsp.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/l.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/link.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/log.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/m4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/m4a.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/m4v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/m4v.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mds.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/meiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/meiti.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mid.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/midi.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mkv.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mov.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mp3.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mp4.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mp4v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mp4v.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mpeg.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mpg.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/music.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/mv.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/notepad.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/nrg.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/o.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/otf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/otf.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/p.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/pdf.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/pfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/pfm.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/php.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/php3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/php3.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/php4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/php4.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/php5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/php5.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/ppt.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/pptx.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/psd.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/py.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/rar.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/rmvb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/rmvb.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/rtf.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/s.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/sit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/sit.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/sql.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/swf.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/tif.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/topic.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/torrent.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/ttf.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/txt.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/unknow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/unknow.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/url.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/vb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/vb.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/vbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/vbs.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/vcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/vcd.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/video.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/wav.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/wma.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/wmv.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/wps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/wps.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/xdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/xdoc.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/xls.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/xlsx.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/xml.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/y.png -------------------------------------------------------------------------------- /dzz/images/extimg_small/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/extimg_small/zip.png -------------------------------------------------------------------------------- /dzz/images/icons/appwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/icons/appwindow.png -------------------------------------------------------------------------------- /dzz/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/icons/delete.png -------------------------------------------------------------------------------- /dzz/images/icons/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/icons/docx.png -------------------------------------------------------------------------------- /dzz/images/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/icons/filesave.png -------------------------------------------------------------------------------- /dzz/images/icons/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/icons/mp3.png -------------------------------------------------------------------------------- /dzz/images/icons/newwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/icons/newwindow.png -------------------------------------------------------------------------------- /dzz/images/icons/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/icons/pptx.png -------------------------------------------------------------------------------- /dzz/images/icons/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/icons/xlsx.png -------------------------------------------------------------------------------- /dzz/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/loading.gif -------------------------------------------------------------------------------- /dzz/images/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/logo-blue.png -------------------------------------------------------------------------------- /dzz/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/logo.png -------------------------------------------------------------------------------- /dzz/images/newfile/excel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/newfile/excel.xlsx -------------------------------------------------------------------------------- /dzz/images/newfile/pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/newfile/pdf.pdf -------------------------------------------------------------------------------- /dzz/images/newfile/ppt.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/newfile/ppt.pptx -------------------------------------------------------------------------------- /dzz/images/newfile/word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/images/newfile/word.docx -------------------------------------------------------------------------------- /dzz/index/config/config.php: -------------------------------------------------------------------------------- 1 | <?php 2 | return array( 3 | 'allow_robot' => false, 4 | 'allow_view' => 1, 5 | ); -------------------------------------------------------------------------------- /dzz/index/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/index/config/index.htm -------------------------------------------------------------------------------- /dzz/index/language/zh-cn/lang.php: -------------------------------------------------------------------------------- 1 | <?php 2 | $lang = array( 3 | 'appname' => '个人首页' 4 | ); -------------------------------------------------------------------------------- /dzz/link/OpenPicWin/OpenPicWin.md5: -------------------------------------------------------------------------------- 1 | 1501e439c1bb63aa5e18c5afeb3b1c03 *./dzz_app_OpenPicWin.xml 2 | -------------------------------------------------------------------------------- /dzz/link/OpenPicWin/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/link/OpenPicWin/index.htm -------------------------------------------------------------------------------- /dzz/link/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/link/index.htm -------------------------------------------------------------------------------- /dzz/orguser/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/orguser/config/index.htm -------------------------------------------------------------------------------- /dzz/orguser/images/add_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/orguser/images/add_guide.png -------------------------------------------------------------------------------- /dzz/orguser/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/orguser/images/icons.png -------------------------------------------------------------------------------- /dzz/orguser/images/icons_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/orguser/images/icons_24.png -------------------------------------------------------------------------------- /dzz/orguser/images/user_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/orguser/images/user_bg.png -------------------------------------------------------------------------------- /dzz/orguser/template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/orguser/template.xlsx -------------------------------------------------------------------------------- /dzz/orguser/template/guide.htm: -------------------------------------------------------------------------------- 1 | <div class="card"> 2 | <div class="card-body"> 3 | {lang orguser_guide_text} 4 | </div> 5 | </div> -------------------------------------------------------------------------------- /dzz/orguser/template/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/orguser/template/index.htm -------------------------------------------------------------------------------- /dzz/pdf/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/config/index.htm -------------------------------------------------------------------------------- /dzz/pdf/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/index.htm -------------------------------------------------------------------------------- /dzz/pdf/template/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/template/index.htm -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/V.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /dzz/pdf/web/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/images/grab.cur -------------------------------------------------------------------------------- /dzz/pdf/web/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/images/grabbing.cur -------------------------------------------------------------------------------- /dzz/pdf/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/images/loading-icon.gif -------------------------------------------------------------------------------- /dzz/pdf/web/images/loading-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/images/loading-small.png -------------------------------------------------------------------------------- /dzz/pdf/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/images/shadow.png -------------------------------------------------------------------------------- /dzz/pdf/web/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/pdf/web/images/texture.png -------------------------------------------------------------------------------- /dzz/share/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/share/config/index.htm -------------------------------------------------------------------------------- /dzz/shares/config/config.php: -------------------------------------------------------------------------------- 1 | <?php 2 | return array( 3 | 'template' => 1, 4 | ); -------------------------------------------------------------------------------- /dzz/shares/config/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/shares/config/index.htm -------------------------------------------------------------------------------- /dzz/shares/images/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/shares/images/index.htm -------------------------------------------------------------------------------- /dzz/shares/images/link_small_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/shares/images/link_small_bg.png -------------------------------------------------------------------------------- /dzz/shares/scripts/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/shares/scripts/index.htm -------------------------------------------------------------------------------- /dzz/styles/images/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/styles/images/b.gif -------------------------------------------------------------------------------- /dzz/styles/showwindow/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/styles/showwindow/images/info.png -------------------------------------------------------------------------------- /dzz/styles/thame/colorful/style.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dzz/styles/thame/colorful/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/styles/thame/colorful/thumb.jpg -------------------------------------------------------------------------------- /dzz/styles/thame/window_jd/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/styles/thame/window_jd/style.css -------------------------------------------------------------------------------- /dzz/styles/thame/window_jd/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/styles/thame/window_jd/thumb.jpg -------------------------------------------------------------------------------- /dzz/system/config/config.php: -------------------------------------------------------------------------------- 1 | <?php 2 | return array( 3 | 'allow_robot' => false, 4 | 'allow_view' => 0, 5 | ); -------------------------------------------------------------------------------- /dzz/system/css/rightmenu/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/css/rightmenu/index.htm -------------------------------------------------------------------------------- /dzz/system/fileselection/listcontent.php: -------------------------------------------------------------------------------- 1 | <?php 2 | /** 3 | * Created by PhpStorm. 4 | * User: a 5 | * Date: 2018/3/30 6 | * Time: 15:54 7 | */ 8 | global $_G; -------------------------------------------------------------------------------- /dzz/system/images/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/32px.png -------------------------------------------------------------------------------- /dzz/system/images/ALIOSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/ALIOSS.png -------------------------------------------------------------------------------- /dzz/system/images/FTP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/FTP.png -------------------------------------------------------------------------------- /dzz/system/images/JSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/JSS.png -------------------------------------------------------------------------------- /dzz/system/images/OneDrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/OneDrive.png -------------------------------------------------------------------------------- /dzz/system/images/baiduPCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/baiduPCS.png -------------------------------------------------------------------------------- /dzz/system/images/checkbox-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/checkbox-box.png -------------------------------------------------------------------------------- /dzz/system/images/checkbox-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/checkbox-check.png -------------------------------------------------------------------------------- /dzz/system/images/department.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/department.png -------------------------------------------------------------------------------- /dzz/system/images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/desktop.png -------------------------------------------------------------------------------- /dzz/system/images/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/dock.png -------------------------------------------------------------------------------- /dzz/system/images/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/document.png -------------------------------------------------------------------------------- /dzz/system/images/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/dropbox.png -------------------------------------------------------------------------------- /dzz/system/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/file.png -------------------------------------------------------------------------------- /dzz/system/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/folder.png -------------------------------------------------------------------------------- /dzz/system/images/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/group.png -------------------------------------------------------------------------------- /dzz/system/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/home.png -------------------------------------------------------------------------------- /dzz/system/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/image.png -------------------------------------------------------------------------------- /dzz/system/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/link.png -------------------------------------------------------------------------------- /dzz/system/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/music.png -------------------------------------------------------------------------------- /dzz/system/images/organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/organization.png -------------------------------------------------------------------------------- /dzz/system/images/recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/recycle.png -------------------------------------------------------------------------------- /dzz/system/images/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/root.png -------------------------------------------------------------------------------- /dzz/system/images/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/type.png -------------------------------------------------------------------------------- /dzz/system/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/user.png -------------------------------------------------------------------------------- /dzz/system/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/images/video.png -------------------------------------------------------------------------------- /dzz/system/mobilefileselection/save.php: -------------------------------------------------------------------------------- 1 | <?php 2 | /** 3 | * Created by PhpStorm. 4 | * User: a 5 | * Date: 2018/5/22 6 | * Time: 10:39 7 | */ -------------------------------------------------------------------------------- /dzz/system/scripts/mobile/explorer.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by a on 2018/5/23. 3 | */ 4 | -------------------------------------------------------------------------------- /dzz/system/scripts/themes/apple/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/system/scripts/themes/apple/d.png -------------------------------------------------------------------------------- /dzz/test/config/config.php: -------------------------------------------------------------------------------- 1 | <?php 2 | return array( 3 | 'allow_robot' => false,//禁止蜘蛛爬虫 4 | 'allow_view' => 1,//需要登录 5 | ); -------------------------------------------------------------------------------- /dzz/test/css/test.css: -------------------------------------------------------------------------------- 1 | /*左边部分*/ 2 | a{ 3 | color:#555; 4 | } 5 | a:focus, a:hover { 6 | color: #e11d2a; 7 | } -------------------------------------------------------------------------------- /dzz/test/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/dzz/test/images/logo.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/favicon.ico -------------------------------------------------------------------------------- /install/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/install/images/error.png -------------------------------------------------------------------------------- /install/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/install/images/logo.png -------------------------------------------------------------------------------- /install/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/install/images/right.png -------------------------------------------------------------------------------- /install/images/sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/install/images/sel.png -------------------------------------------------------------------------------- /install/images/seled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/install/images/seled.png -------------------------------------------------------------------------------- /static/dzzicon/fonts/dzz.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzicon/fonts/dzz.eot -------------------------------------------------------------------------------- /static/dzzicon/fonts/dzz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzicon/fonts/dzz.ttf -------------------------------------------------------------------------------- /static/dzzicon/fonts/dzz.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzicon/fonts/dzz.woff -------------------------------------------------------------------------------- /static/dzzthumb/preview/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzthumb/preview/b.gif -------------------------------------------------------------------------------- /static/dzzthumb/preview/hint_cor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzthumb/preview/hint_cor.png -------------------------------------------------------------------------------- /static/dzzthumb/preview/hint_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzthumb/preview/hint_icon.gif -------------------------------------------------------------------------------- /static/dzzthumb/preview/hint_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzthumb/preview/hint_icon.png -------------------------------------------------------------------------------- /static/dzzthumb/preview/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzthumb/preview/loading.gif -------------------------------------------------------------------------------- /static/dzzthumb/preview/loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/dzzthumb/preview/loading1.gif -------------------------------------------------------------------------------- /static/icheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/aero.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/blue.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/flat.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/green.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/grey.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/orange.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/pink.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/purple.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /static/icheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /static/icheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/line/line.png -------------------------------------------------------------------------------- /static/icheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /static/icheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /static/icheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /static/icheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/icheck/skins/square/red.png -------------------------------------------------------------------------------- /static/image/common/arw_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/arw_r.gif -------------------------------------------------------------------------------- /static/image/common/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/b.gif -------------------------------------------------------------------------------- /static/image/common/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/clipboard.swf -------------------------------------------------------------------------------- /static/image/common/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/close.gif -------------------------------------------------------------------------------- /static/image/common/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/delete.png -------------------------------------------------------------------------------- /static/image/common/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/error.png -------------------------------------------------------------------------------- /static/image/common/icon_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/icon_main.png -------------------------------------------------------------------------------- /static/image/common/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/info.png -------------------------------------------------------------------------------- /static/image/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/loading.gif -------------------------------------------------------------------------------- /static/image/common/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/loading.png -------------------------------------------------------------------------------- /static/image/common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/logo.png -------------------------------------------------------------------------------- /static/image/common/no_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/no_list.png -------------------------------------------------------------------------------- /static/image/common/none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/none.gif -------------------------------------------------------------------------------- /static/image/common/passlevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/passlevel.png -------------------------------------------------------------------------------- /static/image/common/player.swf: -------------------------------------------------------------------------------- 1 | ACCESS DISABLED -------------------------------------------------------------------------------- /static/image/common/qq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/qq.gif -------------------------------------------------------------------------------- /static/image/common/qq_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/qq_big.gif -------------------------------------------------------------------------------- /static/image/common/qq_bind.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/qq_bind.gif -------------------------------------------------------------------------------- /static/image/common/qq_login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/qq_login.gif -------------------------------------------------------------------------------- /static/image/common/rank1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/rank1.png -------------------------------------------------------------------------------- /static/image/common/rank2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/rank2.png -------------------------------------------------------------------------------- /static/image/common/rank3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/rank3.png -------------------------------------------------------------------------------- /static/image/common/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/right.gif -------------------------------------------------------------------------------- /static/image/common/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/right.png -------------------------------------------------------------------------------- /static/image/common/tip_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/tip_bottom.png -------------------------------------------------------------------------------- /static/image/common/tip_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/tip_top.png -------------------------------------------------------------------------------- /static/image/common/tip_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/tip_up.gif -------------------------------------------------------------------------------- /static/image/common/tree_heng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/tree_heng.gif -------------------------------------------------------------------------------- /static/image/common/tree_heng1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/tree_heng1.gif -------------------------------------------------------------------------------- /static/image/common/tree_su.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/tree_su.gif -------------------------------------------------------------------------------- /static/image/common/wloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/wloading.gif -------------------------------------------------------------------------------- /static/image/common/wloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/common/wloading.png -------------------------------------------------------------------------------- /static/image/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/seccode/font/ch/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/seccode/font/en/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/seccode/font/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/seccode/gif/OCR_A_Extended/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/seccode/gif/Small_Fonts/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/seccode/gif/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/gif/index.htm -------------------------------------------------------------------------------- /static/image/seccode/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/seccode/sound/c.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/c.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/e.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/e.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/f.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/f.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/h.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/k.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/k.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/l.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/l.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/m.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/m.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/n.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/n.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/o.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/o.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/p.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/p.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/q.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/q.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/r.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/r.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/s.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/s.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/t.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/t.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/u.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/u.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/v.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/v.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/w.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/w.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/x.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/x.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/y.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/y.mp3 -------------------------------------------------------------------------------- /static/image/seccode/sound/z.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/seccode/sound/z.mp3 -------------------------------------------------------------------------------- /static/image/smiley/default/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/0.gif -------------------------------------------------------------------------------- /static/image/smiley/default/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/1.gif -------------------------------------------------------------------------------- /static/image/smiley/default/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/10.gif -------------------------------------------------------------------------------- /static/image/smiley/default/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/11.gif -------------------------------------------------------------------------------- /static/image/smiley/default/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/12.gif -------------------------------------------------------------------------------- /static/image/smiley/default/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/13.gif -------------------------------------------------------------------------------- /static/image/smiley/default/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/14.gif -------------------------------------------------------------------------------- /static/image/smiley/default/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/15.gif -------------------------------------------------------------------------------- /static/image/smiley/default/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/16.gif -------------------------------------------------------------------------------- /static/image/smiley/default/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/17.gif -------------------------------------------------------------------------------- /static/image/smiley/default/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/18.gif -------------------------------------------------------------------------------- /static/image/smiley/default/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/19.gif -------------------------------------------------------------------------------- /static/image/smiley/default/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/2.gif -------------------------------------------------------------------------------- /static/image/smiley/default/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/20.gif -------------------------------------------------------------------------------- /static/image/smiley/default/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/21.gif -------------------------------------------------------------------------------- /static/image/smiley/default/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/22.gif -------------------------------------------------------------------------------- /static/image/smiley/default/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/23.gif -------------------------------------------------------------------------------- /static/image/smiley/default/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/24.gif -------------------------------------------------------------------------------- /static/image/smiley/default/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/25.gif -------------------------------------------------------------------------------- /static/image/smiley/default/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/26.gif -------------------------------------------------------------------------------- /static/image/smiley/default/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/27.gif -------------------------------------------------------------------------------- /static/image/smiley/default/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/28.gif -------------------------------------------------------------------------------- /static/image/smiley/default/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/29.gif -------------------------------------------------------------------------------- /static/image/smiley/default/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/3.gif -------------------------------------------------------------------------------- /static/image/smiley/default/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/30.gif -------------------------------------------------------------------------------- /static/image/smiley/default/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/31.gif -------------------------------------------------------------------------------- /static/image/smiley/default/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/32.gif -------------------------------------------------------------------------------- /static/image/smiley/default/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/33.gif -------------------------------------------------------------------------------- /static/image/smiley/default/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/34.gif -------------------------------------------------------------------------------- /static/image/smiley/default/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/35.gif -------------------------------------------------------------------------------- /static/image/smiley/default/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/36.gif -------------------------------------------------------------------------------- /static/image/smiley/default/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/37.gif -------------------------------------------------------------------------------- /static/image/smiley/default/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/38.gif -------------------------------------------------------------------------------- /static/image/smiley/default/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/39.gif -------------------------------------------------------------------------------- /static/image/smiley/default/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/4.gif -------------------------------------------------------------------------------- /static/image/smiley/default/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/40.gif -------------------------------------------------------------------------------- /static/image/smiley/default/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/41.gif -------------------------------------------------------------------------------- /static/image/smiley/default/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/42.gif -------------------------------------------------------------------------------- /static/image/smiley/default/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/43.gif -------------------------------------------------------------------------------- /static/image/smiley/default/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/44.gif -------------------------------------------------------------------------------- /static/image/smiley/default/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/45.gif -------------------------------------------------------------------------------- /static/image/smiley/default/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/46.gif -------------------------------------------------------------------------------- /static/image/smiley/default/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/47.gif -------------------------------------------------------------------------------- /static/image/smiley/default/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/48.gif -------------------------------------------------------------------------------- /static/image/smiley/default/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/49.gif -------------------------------------------------------------------------------- /static/image/smiley/default/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/5.gif -------------------------------------------------------------------------------- /static/image/smiley/default/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/51.gif -------------------------------------------------------------------------------- /static/image/smiley/default/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/52.gif -------------------------------------------------------------------------------- /static/image/smiley/default/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/53.gif -------------------------------------------------------------------------------- /static/image/smiley/default/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/54.gif -------------------------------------------------------------------------------- /static/image/smiley/default/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/55.gif -------------------------------------------------------------------------------- /static/image/smiley/default/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/56.gif -------------------------------------------------------------------------------- /static/image/smiley/default/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/57.gif -------------------------------------------------------------------------------- /static/image/smiley/default/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/58.gif -------------------------------------------------------------------------------- /static/image/smiley/default/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/59.gif -------------------------------------------------------------------------------- /static/image/smiley/default/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/6.gif -------------------------------------------------------------------------------- /static/image/smiley/default/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/60.gif -------------------------------------------------------------------------------- /static/image/smiley/default/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/61.gif -------------------------------------------------------------------------------- /static/image/smiley/default/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/62.gif -------------------------------------------------------------------------------- /static/image/smiley/default/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/63.gif -------------------------------------------------------------------------------- /static/image/smiley/default/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/64.gif -------------------------------------------------------------------------------- /static/image/smiley/default/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/65.gif -------------------------------------------------------------------------------- /static/image/smiley/default/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/66.gif -------------------------------------------------------------------------------- /static/image/smiley/default/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/67.gif -------------------------------------------------------------------------------- /static/image/smiley/default/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/68.gif -------------------------------------------------------------------------------- /static/image/smiley/default/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/69.gif -------------------------------------------------------------------------------- /static/image/smiley/default/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/7.gif -------------------------------------------------------------------------------- /static/image/smiley/default/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/70.gif -------------------------------------------------------------------------------- /static/image/smiley/default/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/71.gif -------------------------------------------------------------------------------- /static/image/smiley/default/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/72.gif -------------------------------------------------------------------------------- /static/image/smiley/default/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/73.gif -------------------------------------------------------------------------------- /static/image/smiley/default/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/74.gif -------------------------------------------------------------------------------- /static/image/smiley/default/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/75.gif -------------------------------------------------------------------------------- /static/image/smiley/default/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/76.gif -------------------------------------------------------------------------------- /static/image/smiley/default/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/77.gif -------------------------------------------------------------------------------- /static/image/smiley/default/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/78.gif -------------------------------------------------------------------------------- /static/image/smiley/default/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/79.gif -------------------------------------------------------------------------------- /static/image/smiley/default/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/8.gif -------------------------------------------------------------------------------- /static/image/smiley/default/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/80.gif -------------------------------------------------------------------------------- /static/image/smiley/default/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/81.gif -------------------------------------------------------------------------------- /static/image/smiley/default/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/82.gif -------------------------------------------------------------------------------- /static/image/smiley/default/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/83.gif -------------------------------------------------------------------------------- /static/image/smiley/default/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/84.gif -------------------------------------------------------------------------------- /static/image/smiley/default/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/85.gif -------------------------------------------------------------------------------- /static/image/smiley/default/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/86.gif -------------------------------------------------------------------------------- /static/image/smiley/default/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/87.gif -------------------------------------------------------------------------------- /static/image/smiley/default/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/88.gif -------------------------------------------------------------------------------- /static/image/smiley/default/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/89.gif -------------------------------------------------------------------------------- /static/image/smiley/default/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/smiley/default/9.gif -------------------------------------------------------------------------------- /static/image/smiley/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/sound/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/sound/player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/sound/player.swf -------------------------------------------------------------------------------- /static/image/sound/pm_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/sound/pm_1.mp3 -------------------------------------------------------------------------------- /static/image/sound/pm_2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/sound/pm_2.mp3 -------------------------------------------------------------------------------- /static/image/sound/pm_3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/sound/pm_3.mp3 -------------------------------------------------------------------------------- /static/image/tool/transcolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/image/tool/transcolor.gif -------------------------------------------------------------------------------- /static/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/jstree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/jstree/32px.png -------------------------------------------------------------------------------- /static/lyear/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/lyear/images/loading.gif -------------------------------------------------------------------------------- /static/lyear/js/jstree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/lyear/js/jstree/32px.png -------------------------------------------------------------------------------- /static/lyear/js/jstree/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/lyear/js/jstree/40px.png -------------------------------------------------------------------------------- /static/popbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/popbox/loading.gif -------------------------------------------------------------------------------- /static/popbox/loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/popbox/loading1.gif -------------------------------------------------------------------------------- /static/select2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | -------------------------------------------------------------------------------- /static/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/select2/select2-spinner.gif -------------------------------------------------------------------------------- /static/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/select2/select2.png -------------------------------------------------------------------------------- /static/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/static/select2/select2x2.png -------------------------------------------------------------------------------- /user/config/config.php: -------------------------------------------------------------------------------- 1 | <?php 2 | return array( 3 | //'libfile'=>'function/profile,function/organization', 4 | 'default_mod' => 'space', 5 | ); -------------------------------------------------------------------------------- /user/login/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/user/login/images/login.jpg -------------------------------------------------------------------------------- /user/profile/images/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyx0814/dzzoffice/1a14d47e382392e3e7fd8c71a92957eea1ac7f7e/user/profile/images/step.png -------------------------------------------------------------------------------- /user/template/ajax.htm: -------------------------------------------------------------------------------- 1 | <!--{template common/header}--> 2 | $html 3 | <!--{template common/footer}--> --------------------------------------------------------------------------------