├── README.md ├── cfg ├── .gitignore └── cfg.php.example ├── htdocs ├── .htaccess ├── 404.php ├── about.php ├── account.php ├── api-access.php ├── api-docs.php ├── bank-accounts.php ├── bitcoin-addresses.php ├── btc_to_currency.php ├── buy-and-sell-bitcoin.php ├── buy-sell.php ├── change-password.php ├── ckeditor │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── en.js │ │ ├── es.js │ │ └── he.js │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js ├── contact.php ├── css │ ├── colors │ │ ├── blue.css │ │ ├── brown.css │ │ ├── cyan.css │ │ ├── green.css │ │ ├── lightblue.css │ │ ├── lightgreen.css │ │ ├── pink.css │ │ ├── purple.css │ │ └── red.css │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── prism.css │ ├── responsive-leyouts.css │ └── style.css ├── deposit.php ├── edit-order.php ├── fee-schedule.php ├── first_login.php ├── forgot.php ├── funding-account.php ├── help.php ├── history.php ├── how-bitcoin-works.php ├── images │ ├── Thumbs.db │ ├── accordion-ico.png │ ├── arrow-02.png │ ├── bg1.jpg │ ├── blog │ │ ├── Thumbs.db │ │ ├── avatar.jpg │ │ ├── facebook.png │ │ ├── flickr.png │ │ ├── google-plus.png │ │ ├── icon-by-user.png │ │ ├── icon-category.png │ │ ├── icon-comments.png │ │ ├── linkedin.png │ │ ├── people_img.jpg │ │ ├── rss.png │ │ ├── twitter.png │ │ ├── vimeo-logo.png │ │ ├── vimeo.png │ │ ├── yahoo.png │ │ ├── youtube-logo.png │ │ └── youtube.png │ ├── clicked.gif │ ├── client-logo1.jpg │ ├── client-logo2.jpg │ ├── client-logo3.jpg │ ├── client-logo4.jpg │ ├── client-logo5.jpg │ ├── client-logo6.jpg │ ├── client-logo7.jpg │ ├── colors │ │ ├── blue │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ │ ├── brown │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ │ ├── cyan │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ │ ├── green │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ │ ├── lightblue │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ │ ├── lightgreen │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ │ ├── pink │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ │ ├── purple │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ │ └── red │ │ │ ├── Thumbs.db │ │ │ ├── accordion-ico.png │ │ │ ├── logo.png │ │ │ └── quote-big.png │ ├── crypto_logo.png │ ├── elements │ │ ├── Thumbs.db │ │ ├── bg.png │ │ ├── book.png │ │ ├── bookmark.png │ │ ├── calendar.png │ │ ├── camera.png │ │ ├── chat.png │ │ ├── check.png │ │ ├── coffe_cup.png │ │ ├── cogwheel.png │ │ ├── dark_mosaic.png │ │ ├── download.png │ │ ├── dropcap_gray.png │ │ ├── edit.png │ │ ├── envelope.png │ │ ├── exclamation_mark.png │ │ ├── file.png │ │ ├── folder_open.png │ │ ├── globe.png │ │ ├── hand_right.png │ │ ├── hospital.png │ │ ├── icon-cart.png │ │ ├── icon-chat.png │ │ ├── icon-chevron-right.png │ │ ├── icon-heart.png │ │ ├── icon-ok.png │ │ ├── icon-play-button.png │ │ ├── icon-remove.png │ │ ├── icon-right-arrow.png │ │ ├── icon-star.png │ │ ├── icon-user.png │ │ ├── info.png │ │ ├── layout-five-boxed.png │ │ ├── layout-five-full.png │ │ ├── layout-four-boxed.png │ │ ├── layout-four-full.png │ │ ├── layout-one-boxed.png │ │ ├── layout-one-full.png │ │ ├── layout-three-boxed.png │ │ ├── layout-three-full.png │ │ ├── layout-two-boxed.png │ │ ├── layout-two-full.png │ │ ├── light_honeycomb.png │ │ ├── lock.png │ │ ├── minus.png │ │ ├── music.png │ │ ├── new_window.png │ │ ├── ok_2.png │ │ ├── pdf.png │ │ ├── pencil.png │ │ ├── phone-icon.png │ │ ├── phone.png │ │ ├── play_button.png │ │ ├── plus.png │ │ ├── question_mark.png │ │ ├── remove_2.png │ │ ├── search.png │ │ ├── settings.png │ │ ├── shopping_cart.png │ │ ├── slash_it.png │ │ ├── star.png │ │ ├── table.png │ │ ├── tag.png │ │ ├── thumbs_down.png │ │ ├── thumbs_up.png │ │ ├── top-site-show.png │ │ ├── user.png │ │ ├── warning_sign.png │ │ ├── wifi.png │ │ ├── woman.png │ │ └── word_doc.png │ ├── en.png │ ├── es.png │ ├── footer-logo.png │ ├── footer-wmap.png │ ├── h-lines2.png │ ├── header-bg.jpg │ ├── logo1.png │ ├── logo4.png │ ├── opacity-line.png │ ├── para-bg1.jpg │ ├── project2.jpg │ ├── quote-big.png │ ├── quote.png │ ├── ru.png │ ├── sample-ad-banner.jpg │ ├── scroll-top-arrow.png │ ├── site-img10.png │ ├── site-search-icon.png │ ├── slide1.png │ ├── sliders │ │ ├── Thumbs.db │ │ └── revolution │ │ │ └── Thumbs.db │ ├── spacer.gif │ ├── testi-img.png │ ├── top-bg.jpg │ ├── trading-floor.jpg │ ├── trading-floor1.jpg │ ├── waves-01.png │ └── zh.png ├── includes │ ├── ajax.get_bank_account.php │ ├── ajax.get_currency.php │ ├── ajax.graph.php │ ├── ajax.stats.php │ ├── ajax.trades.php │ ├── ajax.transactions.php │ ├── foot.php │ ├── head.php │ ├── qrcode.php │ ├── sidebar_account.php │ └── sidebar_topics.php ├── index.php ├── js │ ├── countdown │ │ ├── countdownBasic.html │ │ ├── countdownGlowing.gif │ │ ├── countdownLED.png │ │ ├── jquery.countdown-ar.js │ │ ├── jquery.countdown-bg.js │ │ ├── jquery.countdown-bn.js │ │ ├── jquery.countdown-bs.js │ │ ├── jquery.countdown-ca.js │ │ ├── jquery.countdown-cs.js │ │ ├── jquery.countdown-cy.js │ │ ├── jquery.countdown-da.js │ │ ├── jquery.countdown-de.js │ │ ├── jquery.countdown-el.js │ │ ├── jquery.countdown-es.js │ │ ├── jquery.countdown-et.js │ │ ├── jquery.countdown-fa.js │ │ ├── jquery.countdown-fi.js │ │ ├── jquery.countdown-fr.js │ │ ├── jquery.countdown-gl.js │ │ ├── jquery.countdown-gu.js │ │ ├── jquery.countdown-he.js │ │ ├── jquery.countdown-hr.js │ │ ├── jquery.countdown-hu.js │ │ ├── jquery.countdown-hy.js │ │ ├── jquery.countdown-id.js │ │ ├── jquery.countdown-it.js │ │ ├── jquery.countdown-ja.js │ │ ├── jquery.countdown-kn.js │ │ ├── jquery.countdown-ko.js │ │ ├── jquery.countdown-lt.js │ │ ├── jquery.countdown-lv.js │ │ ├── jquery.countdown-ml.js │ │ ├── jquery.countdown-ms.js │ │ ├── jquery.countdown-my.js │ │ ├── jquery.countdown-nb.js │ │ ├── jquery.countdown-nl.js │ │ ├── jquery.countdown-pl.js │ │ ├── jquery.countdown-pt-BR.js │ │ ├── jquery.countdown-ro.js │ │ ├── jquery.countdown-ru.js │ │ ├── jquery.countdown-sk.js │ │ ├── jquery.countdown-sl.js │ │ ├── jquery.countdown-sq.js │ │ ├── jquery.countdown-sr-SR.js │ │ ├── jquery.countdown-sr.js │ │ ├── jquery.countdown-sv.js │ │ ├── jquery.countdown-th.js │ │ ├── jquery.countdown-tr.js │ │ ├── jquery.countdown-uk.js │ │ ├── jquery.countdown-uz.js │ │ ├── jquery.countdown-vi.js │ │ ├── jquery.countdown-zh-CN.js │ │ ├── jquery.countdown-zh-TW.js │ │ ├── jquery.countdown.css │ │ ├── jquery.countdown.js │ │ └── jquery.countdown.min.js │ ├── flot │ │ ├── jquery.flot.candle.js │ │ ├── jquery.flot.crosshairs.js │ │ ├── jquery.flot.js │ │ └── jquery.flot.time.js │ ├── ops.js │ ├── prism.js │ └── universal │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ └── jquery.js ├── login.php ├── logout.php ├── open-orders.php ├── order-book.php ├── our-security.php ├── phpqrcode │ ├── CHANGELOG │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── bindings │ │ └── tcpdf │ │ │ └── qrcode.php │ ├── cache │ │ ├── frame_1.dat │ │ ├── frame_1.png │ │ ├── frame_10.dat │ │ ├── frame_10.png │ │ ├── frame_11.dat │ │ ├── frame_11.png │ │ ├── frame_12.dat │ │ ├── frame_12.png │ │ ├── frame_13.dat │ │ ├── frame_13.png │ │ ├── frame_14.dat │ │ ├── frame_14.png │ │ ├── frame_15.dat │ │ ├── frame_15.png │ │ ├── frame_16.dat │ │ ├── frame_16.png │ │ ├── frame_17.dat │ │ ├── frame_17.png │ │ ├── frame_18.dat │ │ ├── frame_18.png │ │ ├── frame_19.dat │ │ ├── frame_19.png │ │ ├── frame_2.dat │ │ ├── frame_2.png │ │ ├── frame_20.dat │ │ ├── frame_20.png │ │ ├── frame_21.dat │ │ ├── frame_21.png │ │ ├── frame_22.dat │ │ ├── frame_22.png │ │ ├── frame_23.dat │ │ ├── frame_23.png │ │ ├── frame_24.dat │ │ ├── frame_24.png │ │ ├── frame_25.dat │ │ ├── frame_25.png │ │ ├── frame_26.dat │ │ ├── frame_26.png │ │ ├── frame_27.dat │ │ ├── frame_27.png │ │ ├── frame_28.dat │ │ ├── frame_28.png │ │ ├── frame_29.dat │ │ ├── frame_29.png │ │ ├── frame_3.dat │ │ ├── frame_3.png │ │ ├── frame_30.dat │ │ ├── frame_30.png │ │ ├── frame_31.dat │ │ ├── frame_31.png │ │ ├── frame_32.dat │ │ ├── frame_32.png │ │ ├── frame_33.dat │ │ ├── frame_33.png │ │ ├── frame_34.dat │ │ ├── frame_34.png │ │ ├── frame_35.dat │ │ ├── frame_35.png │ │ ├── frame_36.dat │ │ ├── frame_36.png │ │ ├── frame_37.dat │ │ ├── frame_37.png │ │ ├── frame_38.dat │ │ ├── frame_38.png │ │ ├── frame_39.dat │ │ ├── frame_39.png │ │ ├── frame_4.dat │ │ ├── frame_4.png │ │ ├── frame_40.dat │ │ ├── frame_40.png │ │ ├── frame_5.dat │ │ ├── frame_5.png │ │ ├── frame_6.dat │ │ ├── frame_6.png │ │ ├── frame_7.dat │ │ ├── frame_7.png │ │ ├── frame_8.dat │ │ ├── frame_8.png │ │ ├── frame_9.dat │ │ ├── frame_9.png │ │ ├── mask_0 │ │ │ ├── mask_101_0.dat │ │ │ ├── mask_105_0.dat │ │ │ ├── mask_109_0.dat │ │ │ ├── mask_113_0.dat │ │ │ ├── mask_117_0.dat │ │ │ ├── mask_121_0.dat │ │ │ ├── mask_125_0.dat │ │ │ ├── mask_129_0.dat │ │ │ ├── mask_133_0.dat │ │ │ ├── mask_137_0.dat │ │ │ ├── mask_141_0.dat │ │ │ ├── mask_145_0.dat │ │ │ ├── mask_149_0.dat │ │ │ ├── mask_153_0.dat │ │ │ ├── mask_157_0.dat │ │ │ ├── mask_161_0.dat │ │ │ ├── mask_165_0.dat │ │ │ ├── mask_169_0.dat │ │ │ ├── mask_173_0.dat │ │ │ ├── mask_177_0.dat │ │ │ ├── mask_21_0.dat │ │ │ ├── mask_25_0.dat │ │ │ ├── mask_29_0.dat │ │ │ ├── mask_33_0.dat │ │ │ ├── mask_37_0.dat │ │ │ ├── mask_41_0.dat │ │ │ ├── mask_45_0.dat │ │ │ ├── mask_49_0.dat │ │ │ ├── mask_53_0.dat │ │ │ ├── mask_57_0.dat │ │ │ ├── mask_61_0.dat │ │ │ ├── mask_65_0.dat │ │ │ ├── mask_69_0.dat │ │ │ ├── mask_73_0.dat │ │ │ ├── mask_77_0.dat │ │ │ ├── mask_81_0.dat │ │ │ ├── mask_85_0.dat │ │ │ ├── mask_89_0.dat │ │ │ ├── mask_93_0.dat │ │ │ └── mask_97_0.dat │ │ ├── mask_1 │ │ │ ├── mask_101_1.dat │ │ │ ├── mask_105_1.dat │ │ │ ├── mask_109_1.dat │ │ │ ├── mask_113_1.dat │ │ │ ├── mask_117_1.dat │ │ │ ├── mask_121_1.dat │ │ │ ├── mask_125_1.dat │ │ │ ├── mask_129_1.dat │ │ │ ├── mask_133_1.dat │ │ │ ├── mask_137_1.dat │ │ │ ├── mask_141_1.dat │ │ │ ├── mask_145_1.dat │ │ │ ├── mask_149_1.dat │ │ │ ├── mask_153_1.dat │ │ │ ├── mask_157_1.dat │ │ │ ├── mask_161_1.dat │ │ │ ├── mask_165_1.dat │ │ │ ├── mask_169_1.dat │ │ │ ├── mask_173_1.dat │ │ │ ├── mask_177_1.dat │ │ │ ├── mask_21_1.dat │ │ │ ├── mask_25_1.dat │ │ │ ├── mask_29_1.dat │ │ │ ├── mask_33_1.dat │ │ │ ├── mask_37_1.dat │ │ │ ├── mask_41_1.dat │ │ │ ├── mask_45_1.dat │ │ │ ├── mask_49_1.dat │ │ │ ├── mask_53_1.dat │ │ │ ├── mask_57_1.dat │ │ │ ├── mask_61_1.dat │ │ │ ├── mask_65_1.dat │ │ │ ├── mask_69_1.dat │ │ │ ├── mask_73_1.dat │ │ │ ├── mask_77_1.dat │ │ │ ├── mask_81_1.dat │ │ │ ├── mask_85_1.dat │ │ │ ├── mask_89_1.dat │ │ │ ├── mask_93_1.dat │ │ │ └── mask_97_1.dat │ │ ├── mask_2 │ │ │ ├── mask_101_2.dat │ │ │ ├── mask_105_2.dat │ │ │ ├── mask_109_2.dat │ │ │ ├── mask_113_2.dat │ │ │ ├── mask_117_2.dat │ │ │ ├── mask_121_2.dat │ │ │ ├── mask_125_2.dat │ │ │ ├── mask_129_2.dat │ │ │ ├── mask_133_2.dat │ │ │ ├── mask_137_2.dat │ │ │ ├── mask_141_2.dat │ │ │ ├── mask_145_2.dat │ │ │ ├── mask_149_2.dat │ │ │ ├── mask_153_2.dat │ │ │ ├── mask_157_2.dat │ │ │ ├── mask_161_2.dat │ │ │ ├── mask_165_2.dat │ │ │ ├── mask_169_2.dat │ │ │ ├── mask_173_2.dat │ │ │ ├── mask_177_2.dat │ │ │ ├── mask_21_2.dat │ │ │ ├── mask_25_2.dat │ │ │ ├── mask_29_2.dat │ │ │ ├── mask_33_2.dat │ │ │ ├── mask_37_2.dat │ │ │ ├── mask_41_2.dat │ │ │ ├── mask_45_2.dat │ │ │ ├── mask_49_2.dat │ │ │ ├── mask_53_2.dat │ │ │ ├── mask_57_2.dat │ │ │ ├── mask_61_2.dat │ │ │ ├── mask_65_2.dat │ │ │ ├── mask_69_2.dat │ │ │ ├── mask_73_2.dat │ │ │ ├── mask_77_2.dat │ │ │ ├── mask_81_2.dat │ │ │ ├── mask_85_2.dat │ │ │ ├── mask_89_2.dat │ │ │ ├── mask_93_2.dat │ │ │ └── mask_97_2.dat │ │ ├── mask_3 │ │ │ ├── mask_101_3.dat │ │ │ ├── mask_105_3.dat │ │ │ ├── mask_109_3.dat │ │ │ ├── mask_113_3.dat │ │ │ ├── mask_117_3.dat │ │ │ ├── mask_121_3.dat │ │ │ ├── mask_125_3.dat │ │ │ ├── mask_129_3.dat │ │ │ ├── mask_133_3.dat │ │ │ ├── mask_137_3.dat │ │ │ ├── mask_141_3.dat │ │ │ ├── mask_145_3.dat │ │ │ ├── mask_149_3.dat │ │ │ ├── mask_153_3.dat │ │ │ ├── mask_157_3.dat │ │ │ ├── mask_161_3.dat │ │ │ ├── mask_165_3.dat │ │ │ ├── mask_169_3.dat │ │ │ ├── mask_173_3.dat │ │ │ ├── mask_177_3.dat │ │ │ ├── mask_21_3.dat │ │ │ ├── mask_25_3.dat │ │ │ ├── mask_29_3.dat │ │ │ ├── mask_33_3.dat │ │ │ ├── mask_37_3.dat │ │ │ ├── mask_41_3.dat │ │ │ ├── mask_45_3.dat │ │ │ ├── mask_49_3.dat │ │ │ ├── mask_53_3.dat │ │ │ ├── mask_57_3.dat │ │ │ ├── mask_61_3.dat │ │ │ ├── mask_65_3.dat │ │ │ ├── mask_69_3.dat │ │ │ ├── mask_73_3.dat │ │ │ ├── mask_77_3.dat │ │ │ ├── mask_81_3.dat │ │ │ ├── mask_85_3.dat │ │ │ ├── mask_89_3.dat │ │ │ ├── mask_93_3.dat │ │ │ └── mask_97_3.dat │ │ ├── mask_4 │ │ │ ├── mask_101_4.dat │ │ │ ├── mask_105_4.dat │ │ │ ├── mask_109_4.dat │ │ │ ├── mask_113_4.dat │ │ │ ├── mask_117_4.dat │ │ │ ├── mask_121_4.dat │ │ │ ├── mask_125_4.dat │ │ │ ├── mask_129_4.dat │ │ │ ├── mask_133_4.dat │ │ │ ├── mask_137_4.dat │ │ │ ├── mask_141_4.dat │ │ │ ├── mask_145_4.dat │ │ │ ├── mask_149_4.dat │ │ │ ├── mask_153_4.dat │ │ │ ├── mask_157_4.dat │ │ │ ├── mask_161_4.dat │ │ │ ├── mask_165_4.dat │ │ │ ├── mask_169_4.dat │ │ │ ├── mask_173_4.dat │ │ │ ├── mask_177_4.dat │ │ │ ├── mask_21_4.dat │ │ │ ├── mask_25_4.dat │ │ │ ├── mask_29_4.dat │ │ │ ├── mask_33_4.dat │ │ │ ├── mask_37_4.dat │ │ │ ├── mask_41_4.dat │ │ │ ├── mask_45_4.dat │ │ │ ├── mask_49_4.dat │ │ │ ├── mask_53_4.dat │ │ │ ├── mask_57_4.dat │ │ │ ├── mask_61_4.dat │ │ │ ├── mask_65_4.dat │ │ │ ├── mask_69_4.dat │ │ │ ├── mask_73_4.dat │ │ │ ├── mask_77_4.dat │ │ │ ├── mask_81_4.dat │ │ │ ├── mask_85_4.dat │ │ │ ├── mask_89_4.dat │ │ │ ├── mask_93_4.dat │ │ │ └── mask_97_4.dat │ │ ├── mask_5 │ │ │ ├── mask_101_5.dat │ │ │ ├── mask_105_5.dat │ │ │ ├── mask_109_5.dat │ │ │ ├── mask_113_5.dat │ │ │ ├── mask_117_5.dat │ │ │ ├── mask_121_5.dat │ │ │ ├── mask_125_5.dat │ │ │ ├── mask_129_5.dat │ │ │ ├── mask_133_5.dat │ │ │ ├── mask_137_5.dat │ │ │ ├── mask_141_5.dat │ │ │ ├── mask_145_5.dat │ │ │ ├── mask_149_5.dat │ │ │ ├── mask_153_5.dat │ │ │ ├── mask_157_5.dat │ │ │ ├── mask_161_5.dat │ │ │ ├── mask_165_5.dat │ │ │ ├── mask_169_5.dat │ │ │ ├── mask_173_5.dat │ │ │ ├── mask_177_5.dat │ │ │ ├── mask_21_5.dat │ │ │ ├── mask_25_5.dat │ │ │ ├── mask_29_5.dat │ │ │ ├── mask_33_5.dat │ │ │ ├── mask_37_5.dat │ │ │ ├── mask_41_5.dat │ │ │ ├── mask_45_5.dat │ │ │ ├── mask_49_5.dat │ │ │ ├── mask_53_5.dat │ │ │ ├── mask_57_5.dat │ │ │ ├── mask_61_5.dat │ │ │ ├── mask_65_5.dat │ │ │ ├── mask_69_5.dat │ │ │ ├── mask_73_5.dat │ │ │ ├── mask_77_5.dat │ │ │ ├── mask_81_5.dat │ │ │ ├── mask_85_5.dat │ │ │ ├── mask_89_5.dat │ │ │ ├── mask_93_5.dat │ │ │ └── mask_97_5.dat │ │ ├── mask_6 │ │ │ ├── mask_101_6.dat │ │ │ ├── mask_105_6.dat │ │ │ ├── mask_109_6.dat │ │ │ ├── mask_113_6.dat │ │ │ ├── mask_117_6.dat │ │ │ ├── mask_121_6.dat │ │ │ ├── mask_125_6.dat │ │ │ ├── mask_129_6.dat │ │ │ ├── mask_133_6.dat │ │ │ ├── mask_137_6.dat │ │ │ ├── mask_141_6.dat │ │ │ ├── mask_145_6.dat │ │ │ ├── mask_149_6.dat │ │ │ ├── mask_153_6.dat │ │ │ ├── mask_157_6.dat │ │ │ ├── mask_161_6.dat │ │ │ ├── mask_165_6.dat │ │ │ ├── mask_169_6.dat │ │ │ ├── mask_173_6.dat │ │ │ ├── mask_177_6.dat │ │ │ ├── mask_21_6.dat │ │ │ ├── mask_25_6.dat │ │ │ ├── mask_29_6.dat │ │ │ ├── mask_33_6.dat │ │ │ ├── mask_37_6.dat │ │ │ ├── mask_41_6.dat │ │ │ ├── mask_45_6.dat │ │ │ ├── mask_49_6.dat │ │ │ ├── mask_53_6.dat │ │ │ ├── mask_57_6.dat │ │ │ ├── mask_61_6.dat │ │ │ ├── mask_65_6.dat │ │ │ ├── mask_69_6.dat │ │ │ ├── mask_73_6.dat │ │ │ ├── mask_77_6.dat │ │ │ ├── mask_81_6.dat │ │ │ ├── mask_85_6.dat │ │ │ ├── mask_89_6.dat │ │ │ ├── mask_93_6.dat │ │ │ └── mask_97_6.dat │ │ └── mask_7 │ │ │ ├── mask_101_7.dat │ │ │ ├── mask_105_7.dat │ │ │ ├── mask_109_7.dat │ │ │ ├── mask_113_7.dat │ │ │ ├── mask_117_7.dat │ │ │ ├── mask_121_7.dat │ │ │ ├── mask_125_7.dat │ │ │ ├── mask_129_7.dat │ │ │ ├── mask_133_7.dat │ │ │ ├── mask_137_7.dat │ │ │ ├── mask_141_7.dat │ │ │ ├── mask_145_7.dat │ │ │ ├── mask_149_7.dat │ │ │ ├── mask_153_7.dat │ │ │ ├── mask_157_7.dat │ │ │ ├── mask_161_7.dat │ │ │ ├── mask_165_7.dat │ │ │ ├── mask_169_7.dat │ │ │ ├── mask_173_7.dat │ │ │ ├── mask_177_7.dat │ │ │ ├── mask_21_7.dat │ │ │ ├── mask_25_7.dat │ │ │ ├── mask_29_7.dat │ │ │ ├── mask_33_7.dat │ │ │ ├── mask_37_7.dat │ │ │ ├── mask_41_7.dat │ │ │ ├── mask_45_7.dat │ │ │ ├── mask_49_7.dat │ │ │ ├── mask_53_7.dat │ │ │ ├── mask_57_7.dat │ │ │ ├── mask_61_7.dat │ │ │ ├── mask_65_7.dat │ │ │ ├── mask_69_7.dat │ │ │ ├── mask_73_7.dat │ │ │ ├── mask_77_7.dat │ │ │ ├── mask_81_7.dat │ │ │ ├── mask_85_7.dat │ │ │ ├── mask_89_7.dat │ │ │ ├── mask_93_7.dat │ │ │ └── mask_97_7.dat │ ├── index.php │ ├── phpqrcode.php │ ├── qrbitstream.php │ ├── qrconfig.php │ ├── qrconst.php │ ├── qrencode.php │ ├── qrimage.php │ ├── qrinput.php │ ├── qrlib.php │ ├── qrmask.php │ ├── qrrscode.php │ ├── qrspec.php │ ├── qrsplit.php │ ├── qrtools.php │ └── tools │ │ ├── merge.bat │ │ ├── merge.php │ │ ├── merge.sh │ │ ├── merged_config.php │ │ └── merged_header.php ├── press-releases.php ├── register.php ├── reset_2fa.php ├── securimage │ ├── .sharedentries │ ├── LICENSE.txt │ ├── README.txt │ ├── elephant.ttf │ ├── example_form.php │ ├── gdfonts │ │ ├── .sharedentries │ │ ├── automatic.gdf │ │ ├── bubblebath.gdf │ │ ├── caveman.gdf │ │ └── crass.gdf │ ├── images │ │ ├── .sharedentries │ │ ├── audio_icon.gif │ │ └── refresh.gif │ ├── securimage.php │ ├── securimage_example.php │ ├── securimage_play.php │ └── securimage_show.php ├── securing-account.php ├── security.php ├── settings.php ├── sitemap.xml ├── tempfiles │ ├── .gitignore │ └── .htaccess ├── terms.php ├── trading-bitcoins.php ├── transactions.php ├── transactions_download.php ├── uploads │ └── .htaccess ├── verify-token.php ├── what-are-bitcoins.php ├── withdraw.php └── withdrawing-account.php ├── lib ├── API.php ├── Content.php ├── Email.php ├── Errors.php ├── Form.php ├── Lang.php ├── Link.php ├── Messages.php ├── Settings.php ├── String.php ├── User.php ├── autoload.php ├── common.php ├── session.php └── stdlib.php └── public_api ├── .htaccess └── index.php /README.md: -------------------------------------------------------------------------------- 1 | wlox-frontend 2 | ============= 3 | 4 | Please see main repository documentation at [wlox/wlox](http://www.github.com/wlox/wlox) for instructions. 5 | -------------------------------------------------------------------------------- /cfg/.gitignore: -------------------------------------------------------------------------------- 1 | cfg.php 2 | -------------------------------------------------------------------------------- /cfg/cfg.php.example: -------------------------------------------------------------------------------- 1 | api_url = 'http://your.api.server/api.php'; 6 | $CFG->auth_login_url = 'http://your.auth.server/login.php'; 7 | $CFG->auth_verify_token_url = 'http://your.auth.server/verify_token.php'; 8 | 9 | ?> -------------------------------------------------------------------------------- /htdocs/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | }; 11 | -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /htdocs/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /htdocs/css/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/css/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /htdocs/css/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/css/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /htdocs/css/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/css/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /htdocs/css/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/css/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /htdocs/help.php: -------------------------------------------------------------------------------- 1 | currencies[strtoupper($_REQUEST['currency'])])) ? $_REQUEST['currency'] : 'usd'; 9 | $action1 = (!empty($_REQUEST['action'])) ? preg_replace("/[^0-9a-zA-Z]/", "",$_REQUEST['action']) : false; 10 | 11 | if (!$action1) { 12 | API::add('Stats','getHistorical',array($timeframe1,$currency1)); 13 | $query = API::send(); 14 | $stats = $query['Stats']['getHistorical']['results'][0]; 15 | if ($stats) { 16 | foreach ($stats as $row) { 17 | $vars[] = '['.$row['date'].','.$row['price'].']'; 18 | } 19 | } 20 | echo '['.implode(',', $vars).']'; 21 | } -------------------------------------------------------------------------------- /htdocs/includes/ajax.stats.php: -------------------------------------------------------------------------------- 1 | currencies[strtoupper($_REQUEST['currency'])])) ? $_REQUEST['currency'] : 'usd'; 8 | 9 | API::add('Stats','getCurrent',array(false,$currency1)); 10 | $query = API::send(); 11 | 12 | $stats = $query['Stats']['getCurrent']['results'][0]; 13 | echo json_encode($stats); -------------------------------------------------------------------------------- /htdocs/includes/ajax.transactions.php: -------------------------------------------------------------------------------- 1 | currencies[strtoupper($_REQUEST['currency'])])) ? strtolower($_REQUEST['currency']) : false; 8 | $type1 = preg_replace("/[^0-9]/", "",$_REQUEST['type']); 9 | $order_by1 = preg_replace("/[^a-z]/", "",$_REQUEST['order_by']); 10 | $page1 = preg_replace("/[^0-9]/", "",$_REQUEST['page']); 11 | 12 | API::add('Transactions','get',array(0,$page1,30,$currency1,1,false,$type1,$order_by1,false)); 13 | $query = API::send(); 14 | 15 | $return = $query['Transactions']['get']['results'][0]; 16 | echo json_encode($return); -------------------------------------------------------------------------------- /htdocs/includes/qrcode.php: -------------------------------------------------------------------------------- 1 | = 2 && amount <= 4 ? 2 : 0)); 12 | }, 13 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 14 | timeSeparator: ':', isRTL: false}; 15 | $.countdown.setDefaults($.countdown.regional['cs']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-cy.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html Welsh initialisation for the jQuery countdown extension Written by Gareth Jones | http://garethvjones.com | October 2011. */ (function($) { $.countdown.regional['cy'] = { labels: ['Blynyddoedd', 'Mis', 'Wythnosau', 'Diwrnodau', 'Oriau', 'Munudau', 'Eiliadau'], labels1: ['Blwyddyn', 'Mis', 'Wythnos', 'Diwrnod', 'Awr', 'Munud', 'Eiliad'], compactLabels: ['b', 'm', 'w', 'd'], whichLabels: null, digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], timeSeparator: ':', isRTL: false}; $.countdown.setDefaults($.countdown.regional['cy']); })(jQuery); -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-da.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Danish initialisation for the jQuery countdown extension 3 | Written by Buch (admin@buch90.dk). */ 4 | (function($) { 5 | $.countdown.regional['da'] = { 6 | labels: ['År', 'Måneder', 'Uger', 'Dage', 'Timer', 'Minutter', 'Sekunder'], 7 | labels1: ['År', 'Månad', 'Uge', 'Dag', 'Time', 'Minut', 'Sekund'], 8 | compactLabels: ['Å', 'M', 'U', 'D'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['da']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-de.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | German initialisation for the jQuery countdown extension 3 | Written by Samuel Wulf. */ 4 | (function($) { 5 | $.countdown.regional['de'] = { 6 | labels: ['Jahre', 'Monate', 'Wochen', 'Tage', 'Stunden', 'Minuten', 'Sekunden'], 7 | labels1: ['Jahr', 'Monat', 'Woche', 'Tag', 'Stunde', 'Minute', 'Sekunde'], 8 | compactLabels: ['J', 'M', 'W', 'T'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['de']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-el.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Greek initialisation for the jQuery countdown extension 3 | Written by Philip. */ 4 | (function($) { 5 | $.countdown.regional['el'] = { 6 | labels: ['Χρόνια', 'Μήνες', 'Εβδομάδες', 'Μέρες', 'Ώρες', 'Λεπτά', 'Δευτερόλεπτα'], 7 | labels1: ['Χρόνος', 'Μήνας', 'Εβδομάδα', 'Ημέρα', 'Ώρα', 'Λεπτό', 'Δευτερόλεπτο'], 8 | compactLabels: ['Χρ.', 'Μην.', 'Εβδ.', 'Ημ.'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['el']); 13 | })(jQuery); -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-es.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Spanish initialisation for the jQuery countdown extension 3 | * Written by Sergio Carracedo Martinez webmaster@neodisenoweb.com (2008) */ 4 | (function($) { 5 | $.countdown.regional['es'] = { 6 | labels: ['Años', 'Meses', 'Semanas', 'Días', 'Horas', 'Minutos', 'Segundos'], 7 | labels1: ['Año', 'Mes', 'Semana', 'Día', 'Hora', 'Minuto', 'Segundo'], 8 | compactLabels: ['a', 'm', 's', 'g'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['es']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-et.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Estonian initialisation for the jQuery countdown extension 3 | Written by Helmer */ 4 | (function($) { 5 | $.countdown.regional['et'] = { 6 | labels: ['Aastat', 'Kuud', 'Nädalat', 'Päeva', 'Tundi', 'Minutit', 'Sekundit'], 7 | labels1: ['Aasta', 'Kuu', 'Nädal', 'Päev', 'Tund', 'Minut', 'Sekund'], 8 | compactLabels: ['a', 'k', 'n', 'p'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['et']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-fa.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Persian (فارسی) initialisation for the jQuery countdown extension 3 | Written by Alireza Ziaie (ziai@magfa.com) Oct 2008. 4 | Digits corrected by Hamed Ramezanian Feb 2013. */ 5 | (function($) { 6 | $.countdown.regional['fa'] = { 7 | labels: ['‌سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'], 8 | labels1: ['سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'], 9 | compactLabels: ['س', 'م', 'ه', 'ر'], 10 | whichLabels: null, 11 | digits: ['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'], 12 | timeSeparator: ':', isRTL: true}; 13 | $.countdown.setDefaults($.countdown.regional['fa']); 14 | })(jQuery); 15 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-fi.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Finnish initialisation for the jQuery countdown extension 3 | Written by Kalle Vänskä and Juha Suni (juhis.suni@gmail.com). Corrected by Olli. */ 4 | (function($) { 5 | $.countdown.regional['fi'] = { 6 | labels: ['vuotta', 'kuukautta', 'viikkoa', 'päivää', 'tuntia', 'minuuttia', 'sekuntia'], 7 | labels1: ['vuosi', 'kuukausi', 'viikko', 'päivä', 'tunti', 'minuutti', 'sekunti'], 8 | compactLabels: ['v', 'kk', 'vk', 'pv'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['fi']); 13 | })(jQuery); -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-fr.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | French initialisation for the jQuery countdown extension 3 | Written by Keith Wood (kbwood{at}iinet.com.au) Jan 2008. */ 4 | (function($) { 5 | $.countdown.regional['fr'] = { 6 | labels: ['Années', 'Mois', 'Semaines', 'Jours', 'Heures', 'Minutes', 'Secondes'], 7 | labels1: ['Année', 'Mois', 'Semaine', 'Jour', 'Heure', 'Minute', 'Seconde'], 8 | compactLabels: ['a', 'm', 's', 'j'], 9 | whichLabels: function(amount) { 10 | return (amount > 1 ? 0 : 1); 11 | }, 12 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 13 | timeSeparator: ':', isRTL: false}; 14 | $.countdown.setDefaults($.countdown.regional['fr']); 15 | })(jQuery); 16 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-gl.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Galician initialisation for the jQuery countdown extension 3 | * Written by Moncho Pena ramon.pena.rodriguez@gmail.com (2009) and Angel Farrapeira */ 4 | (function($) { 5 | $.countdown.regional['gl'] = { 6 | labels: ['Anos', 'Meses', 'Semanas', 'Días', 'Horas', 'Minutos', 'Segundos'], 7 | labels1: ['Ano', 'Mes', 'Semana', 'Día', 'Hora', 'Minuto', 'Segundo'], 8 | compactLabels: ['a', 'm', 's', 'g'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['gl']); 13 | })(jQuery); -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-gu.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Gujarati initialization for the jQuery countdown extension 3 | * Written by Sahil Jariwala jariwala.sahil@gmail.com (2012) */ 4 | (function($) { 5 | $.countdown.regional['gu'] = { 6 | labels: ['વર્ષ', 'મહિનો', 'અઠવાડિયા', 'દિવસ', 'કલાક', 'મિનિટ','સેકન્ડ'], 7 | labels1: ['વર્ષ','મહિનો','અઠવાડિયા','દિવસ','કલાક','મિનિટ', 'સેકન્ડ'], 8 | compactLabels: ['વ', 'મ', 'અ', 'દિ'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['gu']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-he.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Hebrew initialisation for the jQuery countdown extension 3 | * Translated by Nir Livne, Dec 2008 */ 4 | (function($) { 5 | $.countdown.regional['he'] = { 6 | labels: ['שנים', 'חודשים', 'שבועות', 'ימים', 'שעות', 'דקות', 'שניות'], 7 | labels1: ['שנה', 'חודש', 'שבוע', 'יום', 'שעה', 'דקה', 'שנייה'], 8 | compactLabels: ['שנ', 'ח', 'שב', 'י'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: true}; 12 | $.countdown.setDefaults($.countdown.regional['he']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-hu.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Hungarian initialisation for the jQuery countdown extension 3 | * Written by Edmond L. (webmond@gmail.com). */ 4 | (function($) { 5 | $.countdown.regional['hu'] = { 6 | labels: ['Év', 'Hónap', 'Hét', 'Nap', 'Óra', 'Perc', 'Másodperc'], 7 | labels1: ['Év', 'Hónap', 'Hét', 'Nap', 'Óra', 'Perc', 'Másodperc'], 8 | compactLabels: ['É', 'H', 'Hé', 'N'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['hu']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-hy.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Armenian initialisation for the jQuery countdown extension 3 | * Written by Artur Martirosyan. (artur{at}zoom.am) October 2011. */ 4 | (function($) { 5 | $.countdown.regional['hy'] = { 6 | labels: ['Տարի', 'Ամիս', 'Շաբաթ', 'Օր', 'Ժամ', 'Րոպե', 'Վարկյան'], 7 | labels1: ['Տարի', 'Ամիս', 'Շաբաթ', 'Օր', 'Ժամ', 'Րոպե', 'Վարկյան'], 8 | compactLabels: ['տ', 'ա', 'շ', 'օ'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['hy']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-id.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Indonesian initialisation for the jQuery countdown extension 3 | Written by Erwin Yonathan Jan 2009. */ 4 | (function($) { 5 | $.countdown.regional['id'] = { 6 | labels: ['tahun', 'bulan', 'minggu', 'hari', 'jam', 'menit', 'detik'], 7 | labels1: ['tahun', 'bulan', 'minggu', 'hari', 'jam', 'menit', 'detik'], 8 | compactLabels: ['t', 'b', 'm', 'h'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['id']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-it.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Italian initialisation for the jQuery countdown extension 3 | * Written by Davide Bellettini (davide.bellettini@gmail.com) and Roberto Chiaveri Feb 2008. */ 4 | (function($) { 5 | $.countdown.regional['it'] = { 6 | labels: ['Anni', 'Mesi', 'Settimane', 'Giorni', 'Ore', 'Minuti', 'Secondi'], 7 | labels1: ['Anno', 'Mese', 'Settimana', 'Giorno', 'Ora', 'Minuto', 'Secondo'], 8 | compactLabels: ['a', 'm', 's', 'g'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['it']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-ja.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Japanese initialisation for the jQuery countdown extension 3 | Written by Ken Ishimoto (ken@ksroom.com) Aug 2009. */ 4 | (function($) { 5 | $.countdown.regional['ja'] = { 6 | labels: ['年', '月', '週', '日', '時', '分', '秒'], 7 | labels1: ['年', '月', '週', '日', '時', '分', '秒'], 8 | compactLabels: ['年', '月', '週', '日'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['ja']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-kn.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Kannada initialization for the jQuery countdown extension 3 | * Written by Guru Chaturvedi guru@gangarasa.com (2011) */ 4 | (function($) { 5 | $.countdown.regional['kn'] = { 6 | labels: ['ವರ್ಷಗಳು', 'ತಿಂಗಳು', 'ವಾರಗಳು', 'ದಿನಗಳು', 'ಘಂಟೆಗಳು', 'ನಿಮಿಷಗಳು', 'ಕ್ಷಣಗಳು'], 7 | labels1: ['ವರ್ಷ', 'ತಿಂಗಳು', 'ವಾರ', 'ದಿನ', 'ಘಂಟೆ', 'ನಿಮಿಷ', 'ಕ್ಷಣ'], 8 | compactLabels: ['ವ', 'ತಿ', 'ವಾ', 'ದಿ'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['kn']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-ko.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Korean initialisation for the jQuery countdown extension 3 | Written by Ryan Yu (ryanyu79@gmail.com). */ 4 | (function($) { 5 | $.countdown.regional['ko'] = { 6 | labels: ['년', '월', '주', '일', '시', '분', '초'], 7 | labels1: ['년', '월', '주', '일', '시', '분', '초'], 8 | compactLabels: ['년', '월', '주', '일'], 9 | compactLabels1: ['년', '월', '주', '일'], 10 | whichLabels: null, 11 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 12 | timeSeparator: ':', isRTL: false}; 13 | $.countdown.setDefaults($.countdown.regional['ko']); 14 | })(jQuery); 15 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-lt.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Lithuanian localisation for the jQuery countdown extension 3 | * Written by Moacir P. de Sá Pereira (moacir{at}gmail.com) (2009) */ 4 | (function($) { 5 | $.countdown.regional['lt'] = { 6 | labels: ['Metų', 'Mėnesių', 'Savaičių', 'Dienų', 'Valandų', 'Minučių', 'Sekundžių'], 7 | labels1: ['Metai', 'Mėnuo', 'Savaitė', 'Diena', 'Valanda', 'Minutė', 'Sekundė'], 8 | compactLabels: ['m', 'm', 's', 'd'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['lt']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-lv.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Latvian initialisation for the jQuery countdown extension 3 | * Written by Jānis Peisenieks janis.peisenieks@gmail.com (2010) */ 4 | (function($) { 5 | $.countdown.regional['lv'] = { 6 | labels: ['Gadi', 'Mēneši', 'Nedēļas', 'Dienas', 'Stundas', 'Minūtes', 'Sekundes'], 7 | labels1: ['Gads', 'Mēnesis', 'Nedēļa', 'Diena', 'Stunda', 'Minūte', 'Sekunde'], 8 | compactLabels: ['l', 'm', 'n', 'd'], compactLabels1: ['g', 'm', 'n', 'd'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['lv']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-ms.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Malay initialisation for the jQuery countdown extension 3 | Written by Jason Ong (jason{at}portalgroove.com) May 2010. */ 4 | (function($) { 5 | $.countdown.regional['ms'] = { 6 | labels: ['Tahun', 'Bulan', 'Minggu', 'Hari', 'Jam', 'Minit', 'Saat'], 7 | labels1: ['Tahun', 'Bulan', 'Minggu', 'Hari', 'Jam', 'Minit', 'Saat'], 8 | compactLabels: ['t', 'b', 'm', 'h'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['ms']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-my.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Burmese initialisation for the jQuery countdown extension 3 | Written by Win Lwin Moe (winnlwinmoe@gmail.com) Dec 2009. */ 4 | (function($) { 5 | $.countdown.regional['my'] = { 6 | labels: ['နွစ္', 'လ', 'ရက္သတဿတပတ္', 'ရက္', 'နာရီ', 'မိနစ္', 'စကဿကန့္'], 7 | labels1: ['နွစ္', 'လ', 'ရက္သတဿတပတ္', 'ရက္', 'နာရီ', 'မိနစ္', 'စကဿကန့္'], 8 | compactLabels: ['နွစ္', 'လ', 'ရက္သတဿတပတ္', 'ရက္'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['my']); 13 | })(jQuery); -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-nb.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Norwegian Bokmål translation 3 | Written by Kristian Ravnevand */ 4 | (function($) { 5 | $.countdown.regional['nb'] = { 6 | labels: ['År', 'Måneder', 'Uker', 'Dager', 'Timer', 'Minutter', 'Sekunder'], 7 | labels1: ['År', 'Måned', 'Uke', 'Dag', 'Time', 'Minutt', 'Sekund'], 8 | compactLabels: ['Å', 'M', 'U', 'D'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['nb']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-nl.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Dutch initialisation for the jQuery countdown extension 3 | Written by Mathias Bynens Mar 2008. */ 4 | (function($) { 5 | $.countdown.regional['nl'] = { 6 | labels: ['Jaren', 'Maanden', 'Weken', 'Dagen', 'Uren', 'Minuten', 'Seconden'], 7 | labels1: ['Jaar', 'Maand', 'Week', 'Dag', 'Uur', 'Minuut', 'Seconde'], 8 | compactLabels: ['j', 'm', 'w', 'd'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['nl']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/js/countdown/jquery.countdown-pt-BR.js -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-ro.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Romanian initialisation for the jQuery countdown extension 3 | * Written by Edmond L. (webmond@gmail.com). */ 4 | (function($) { 5 | $.countdown.regional['ro'] = { 6 | labels: ['Ani', 'Luni', 'Saptamani', 'Zile', 'Ore', 'Minute', 'Secunde'], 7 | labels1: ['An', 'Luna', 'Saptamana', 'Ziua', 'Ora', 'Minutul', 'Secunda'], 8 | compactLabels: ['A', 'L', 'S', 'Z'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['ro']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-sl.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Slovenian localisation for the jQuery countdown extension 3 | * Written by Borut Tomažin (debijan{at}gmail.com) (2011) */ 4 | (function($) { 5 | $.countdown.regional['sl'] = { 6 | labels: ['Let', 'Mesecev', 'Tednov', 'Dni', 'Ur', 'Minut', 'Sekund'], 7 | labels1: ['Leto', 'Mesec', 'Teden', 'Dan', 'Ura', 'Minuta', 'Sekunda'], 8 | compactLabels: ['l', 'm', 't', 'd'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['sl']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-sq.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Albanian initialisation for the jQuery countdown extension 3 | Written by Erzen Komoni. */ 4 | (function($) { 5 | $.countdown.regional['sq'] = { 6 | labels: ['Vite', 'Muaj', 'Javë', 'Ditë', 'Orë', 'Minuta', 'Sekonda'], 7 | labels1: ['Vit', 'Muaj', 'Javë', 'Dit', 'Orë', 'Minutë', 'Sekond'], 8 | compactLabels: ['V', 'M', 'J', 'D'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['sq']); 13 | })(jQuery); -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-sv.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Swedish initialisation for the jQuery countdown extension 3 | Written by Carl (carl@nordenfelt.com). */ 4 | (function($) { 5 | $.countdown.regional['sv'] = { 6 | labels: ['År', 'Månader', 'Veckor', 'Dagar', 'Timmar', 'Minuter', 'Sekunder'], 7 | labels1: ['År', 'Månad', 'Vecka', 'Dag', 'Timme', 'Minut', 'Sekund'], 8 | compactLabels: ['Å', 'M', 'V', 'D'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['sv']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-th.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Thai initialisation for the jQuery countdown extension 3 | Written by Pornchai Sakulsrimontri (li_sin_th@yahoo.com). */ 4 | (function($) { 5 | $.countdown.regional['th'] = { 6 | labels: ['ปี', 'เดือน', 'สัปดาห์', 'วัน', 'ชั่วโมง', 'นาที', 'วินาที'], 7 | labels1: ['ปี', 'เดือน', 'สัปดาห์', 'วัน', 'ชั่วโมง', 'นาที', 'วินาที'], 8 | compactLabels: ['ปี', 'เดือน', 'สัปดาห์', 'วัน'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['th']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-tr.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Turkish initialisation for the jQuery countdown extension 3 | * Written by Bekir Ahmetoğlu (bekir@cerek.com) Aug 2008. */ 4 | (function($) { 5 | $.countdown.regional['tr'] = { 6 | labels: ['Yıl', 'Ay', 'Hafta', 'Gün', 'Saat', 'Dakika', 'Saniye'], 7 | labels1: ['Yıl', 'Ay', 'Hafta', 'Gün', 'Saat', 'Dakika', 'Saniye'], 8 | compactLabels: ['y', 'a', 'h', 'g'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['tr']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-uz.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Uzbek initialisation for the jQuery countdown extension 3 | * Written by Alisher U. (ulugbekov{at}gmail.com) August 2012. */ 4 | (function($) { 5 | $.countdown.regional['uz'] = { 6 | labels: ['Yil', 'Oy', 'Hafta', 'Kun', 'Soat', 'Daqiqa', 'Soniya'], 7 | labels1: ['Yil', 'Oy', 'Hafta', 'Kun', 'Soat', 'Daqiqa', 'Soniya'], 8 | compactLabels: ['y', 'o', 'h', 'k'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['uz']); 13 | })(jQuery); -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-vi.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | * Vietnamese initialisation for the jQuery countdown extension 3 | * Written by Pham Tien Hung phamtienhung@gmail.com (2010) */ 4 | (function($) { 5 | $.countdown.regional['vi'] = { 6 | labels: ['Năm', 'Tháng', 'Tuần', 'Ngày', 'Giờ', 'Phút', 'Giây'], 7 | labels1: ['Năm', 'Tháng', 'Tuần', 'Ngày', 'Giờ', 'Phút', 'Giây'], 8 | compactLabels: ['năm', 'th', 'tu', 'ng'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['vi']); 13 | })(jQuery); -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Simplified Chinese initialisation for the jQuery countdown extension 3 | Written by Cloudream (cloudream@gmail.com). */ 4 | (function($) { 5 | $.countdown.regional['zh-CN'] = { 6 | labels: ['年', '月', '周', '天', '时', '分', '秒'], 7 | labels1: ['年', '月', '周', '天', '时', '分', '秒'], 8 | compactLabels: ['年', '月', '周', '天'], compactLabels1: ['年', '月', '周', '天'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['zh-CN']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/js/countdown/jquery.countdown-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* http://keith-wood.name/countdown.html 2 | Traditional Chinese initialisation for the jQuery countdown extension 3 | Written by Cloudream (cloudream@gmail.com). */ 4 | (function($) { 5 | $.countdown.regional['zh-TW'] = { 6 | labels: ['年', '月', '周', '天', '時', '分', '秒'], 7 | labels1: ['年', '月', '周', '天', '時', '分', '秒'], 8 | compactLabels: ['年', '月', '周', '天'], compactLabels1: ['年', '月', '周', '天'], 9 | whichLabels: null, 10 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], 11 | timeSeparator: ':', isRTL: false}; 12 | $.countdown.setDefaults($.countdown.regional['zh-TW']); 13 | })(jQuery); 14 | -------------------------------------------------------------------------------- /htdocs/phpqrcode/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.4 2 | 2010100721 -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_1.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_10.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_10.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_11.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_11.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_12.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_12.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_13.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_13.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_14.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_14.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_15.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_15.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_16.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_16.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_17.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_17.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_18.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_18.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_19.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_19.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_2.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_20.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_20.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_21.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_21.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_22.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_22.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_23.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_23.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_24.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_24.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_25.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_25.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_26.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_26.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_27.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_27.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_27.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_28.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_28.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_29.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_29.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_29.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_3.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_30.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_30.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_31.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_31.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_32.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_32.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_33.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_33.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_33.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_34.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_34.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_35.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_35.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_36.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_36.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_37.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_37.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_37.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_38.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_38.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_38.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_39.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_39.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_39.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_4.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_40.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_40.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_5.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_6.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_7.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_8.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_8.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_9.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/frame_9.png -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_101_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_101_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_105_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_105_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_109_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_109_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_113_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_113_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_117_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_117_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_121_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_121_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_125_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_125_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_129_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_129_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_133_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_133_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_137_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_137_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_141_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_141_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_145_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_145_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_149_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_149_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_153_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_153_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_157_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_157_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_161_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_161_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_165_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_165_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_169_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_169_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_173_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_173_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_177_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_177_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_21_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_25_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_29_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_33_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_37_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_41_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_41_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_45_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_45_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_49_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_49_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_53_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_53_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_57_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_57_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_61_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_61_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_65_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_65_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_69_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_69_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_73_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_73_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_77_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_77_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_81_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_81_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_85_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_85_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_89_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_89_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_93_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_93_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_0/mask_97_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_0/mask_97_0.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_101_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_101_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_105_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_105_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_109_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_109_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_113_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_113_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_117_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_117_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_121_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_121_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_125_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_125_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_129_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_129_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_133_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_133_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_137_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_137_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_141_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_141_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_145_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_145_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_149_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_149_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_153_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_153_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_157_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_157_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_161_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_161_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_165_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_165_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_169_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_169_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_173_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_173_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_177_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_177_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_21_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_25_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_29_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_33_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_37_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_41_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_41_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_45_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_45_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_49_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_49_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_53_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_53_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_57_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_57_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_61_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_61_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_65_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_65_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_69_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_69_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_73_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_73_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_77_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_77_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_81_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_81_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_85_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_85_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_89_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_89_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_93_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_93_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_1/mask_97_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_1/mask_97_1.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_101_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_101_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_105_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_105_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_109_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_109_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_113_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_113_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_117_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_117_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_121_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_121_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_125_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_125_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_129_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_129_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_133_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_133_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_137_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_137_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_141_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_141_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_145_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_145_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_149_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_149_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_153_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_153_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_157_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_157_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_161_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_161_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_165_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_165_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_169_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_169_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_173_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_173_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_177_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_177_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_21_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_25_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_29_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_33_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_37_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_41_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_41_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_45_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_45_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_49_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_49_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_53_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_53_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_57_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_57_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_61_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_61_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_65_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_65_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_69_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_69_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_73_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_73_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_77_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_77_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_81_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_81_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_85_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_85_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_89_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_89_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_93_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_93_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_2/mask_97_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_2/mask_97_2.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_101_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_101_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_105_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_105_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_109_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_109_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_113_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_113_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_117_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_117_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_121_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_121_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_125_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_125_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_129_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_129_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_133_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_133_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_137_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_137_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_141_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_141_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_145_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_145_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_149_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_149_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_153_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_153_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_157_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_157_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_161_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_161_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_165_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_165_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_169_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_169_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_173_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_173_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_177_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_177_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_21_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_25_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_29_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_33_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_37_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_41_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_41_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_45_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_45_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_49_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_49_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_53_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_53_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_57_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_57_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_61_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_61_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_65_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_65_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_69_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_69_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_73_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_73_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_77_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_77_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_81_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_81_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_85_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_85_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_89_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_89_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_93_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_93_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_3/mask_97_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_3/mask_97_3.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_101_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_101_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_105_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_105_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_109_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_109_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_113_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_113_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_117_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_117_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_121_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_121_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_125_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_125_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_129_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_129_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_133_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_133_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_137_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_137_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_141_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_141_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_145_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_145_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_149_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_149_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_153_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_153_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_157_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_157_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_161_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_161_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_165_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_165_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_169_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_169_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_173_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_173_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_177_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_177_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_21_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_21_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_25_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_25_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_29_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_29_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_33_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_33_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_37_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_37_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_41_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_41_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_45_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_45_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_49_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_49_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_53_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_53_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_57_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_57_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_61_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_61_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_65_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_65_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_69_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_69_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_73_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_73_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_77_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_77_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_81_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_81_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_85_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_85_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_89_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_89_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_93_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_93_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_4/mask_97_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_4/mask_97_4.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_101_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_101_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_105_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_105_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_109_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_109_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_113_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_113_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_117_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_117_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_121_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_121_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_125_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_125_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_129_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_129_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_133_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_133_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_137_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_137_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_141_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_141_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_145_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_145_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_149_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_149_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_153_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_153_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_157_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_157_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_161_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_161_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_165_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_165_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_169_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_169_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_173_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_173_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_177_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_177_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_21_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_21_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_25_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_25_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_29_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_29_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_33_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_33_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_37_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_37_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_41_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_41_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_45_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_45_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_49_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_49_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_53_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_53_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_57_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_57_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_61_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_61_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_65_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_65_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_69_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_69_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_73_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_73_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_77_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_77_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_81_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_81_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_85_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_85_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_89_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_89_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_93_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_93_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_5/mask_97_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_5/mask_97_5.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_101_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_101_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_105_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_105_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_109_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_109_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_113_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_113_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_117_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_117_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_121_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_121_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_125_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_125_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_129_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_129_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_133_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_133_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_137_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_137_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_141_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_141_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_145_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_145_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_149_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_149_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_153_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_153_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_157_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_157_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_161_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_161_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_165_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_165_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_169_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_169_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_173_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_173_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_177_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_177_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_21_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_21_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_25_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_25_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_29_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_29_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_33_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_33_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_37_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_37_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_41_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_41_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_45_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_45_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_49_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_49_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_53_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_53_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_57_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_57_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_61_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_61_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_65_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_65_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_69_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_69_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_73_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_73_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_77_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_77_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_81_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_81_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_85_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_85_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_89_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_89_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_93_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_93_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_6/mask_97_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_6/mask_97_6.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_101_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_101_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_105_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_105_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_109_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_109_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_113_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_113_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_117_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_117_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_121_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_121_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_125_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_125_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_129_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_129_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_133_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_133_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_137_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_137_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_141_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_141_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_145_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_145_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_149_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_149_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_153_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_153_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_157_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_157_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_161_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_161_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_165_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_165_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_169_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_169_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_173_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_173_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_177_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_177_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_21_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_21_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_25_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_25_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_29_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_29_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_33_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_33_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_37_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_37_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_41_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_41_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_45_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_45_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_49_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_49_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_53_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_53_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_57_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_57_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_61_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_61_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_65_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_65_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_69_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_69_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_73_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_73_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_77_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_77_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_81_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_81_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_85_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_85_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_89_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_89_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_93_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_93_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/cache/mask_7/mask_97_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/phpqrcode/cache/mask_7/mask_97_7.dat -------------------------------------------------------------------------------- /htdocs/phpqrcode/tools/merge.bat: -------------------------------------------------------------------------------- 1 | php ./merge.php 2 | pause -------------------------------------------------------------------------------- /htdocs/phpqrcode/tools/merge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | php ./merge.php -------------------------------------------------------------------------------- /htdocs/securimage/.sharedentries: -------------------------------------------------------------------------------- 1 | /LICENSE.txt/200801 2193156/24387/ 2 | /README.txt/200801 7053756/1460/ 3 | /elephant.ttf/200801 2193156/51652/ 4 | /example_form.php/20080324145416/2848/ 5 | D/gdfonts/ 6 | D/images/ 7 | /securimage.php/20090622034928/26276/ 8 | /securimage_example.php/200801 7053810/381/ 9 | /securimage_play.php/200801 2193158/375/ 10 | /securimage_show.php/20090622041600/135/ 11 | -------------------------------------------------------------------------------- /htdocs/securimage/elephant.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/securimage/elephant.ttf -------------------------------------------------------------------------------- /htdocs/securimage/gdfonts/.sharedentries: -------------------------------------------------------------------------------- 1 | /automatic.gdf/200801 2193156/61196/ 2 | /bubblebath.gdf/200801 2193156/67516/ 3 | /caveman.gdf/200801 2193156/160540/ 4 | /crass.gdf/200801 2193156/39691/ 5 | -------------------------------------------------------------------------------- /htdocs/securimage/images/.sharedentries: -------------------------------------------------------------------------------- 1 | /audio_icon.gif/20080324145730/621/ 2 | /refresh.gif/20080324145748/865/ 3 | -------------------------------------------------------------------------------- /htdocs/securimage/images/audio_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/securimage/images/audio_icon.gif -------------------------------------------------------------------------------- /htdocs/securimage/images/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/securimage/images/refresh.gif -------------------------------------------------------------------------------- /htdocs/securimage/securimage_example.php: -------------------------------------------------------------------------------- 1 | Out of the box example of Securimage CAPTCHA Class.

2 | 3 | 4 | (Audio)

5 | 6 | Reload Image 7 | -------------------------------------------------------------------------------- /htdocs/securimage/securimage_play.php: -------------------------------------------------------------------------------- 1 | getAudibleCode(); 14 | exit; 15 | 16 | ?> -------------------------------------------------------------------------------- /htdocs/securimage/securimage_show.php: -------------------------------------------------------------------------------- 1 | show(); // alternate use: $img->show('/path/to/background.jpg'); 9 | 10 | ?> 11 | -------------------------------------------------------------------------------- /htdocs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlox/wlox-frontend/633309726ae6a63bf3a5b1b2bd7d2820a418ac38/htdocs/sitemap.xml -------------------------------------------------------------------------------- /htdocs/tempfiles/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /htdocs/tempfiles/.htaccess: -------------------------------------------------------------------------------- 1 | Order Allow,Deny 2 | Deny from all 3 | 4 | Order Deny,Allow 5 | Allow from all 6 | -------------------------------------------------------------------------------- /htdocs/uploads/.htaccess: -------------------------------------------------------------------------------- 1 | Order Allow,Deny 2 | Deny from all 3 | 4 | Order Deny,Allow 5 | Allow from all 6 | -------------------------------------------------------------------------------- /lib/Email.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Errors.php: -------------------------------------------------------------------------------- 1 | '; 22 | foreach (self::$errors as $name => $error) { 23 | echo '
  • '.ucfirst(str_ireplace('[field]',$name,$error)).'
  • '; 24 | } 25 | echo '
     
    '; 26 | } 27 | } 28 | } 29 | ?> -------------------------------------------------------------------------------- /lib/Link.php: -------------------------------------------------------------------------------- 1 | 17 | parent.location.href = "'.$url.$vars.'"; 18 | '; 19 | } 20 | } 21 | } 22 | ?> -------------------------------------------------------------------------------- /lib/Settings.php: -------------------------------------------------------------------------------- 1 | $value) { 9 | $name = str_replace('frontend_','',$name); 10 | $CFG->$name = $value; 11 | } 12 | } 13 | } 14 | } 15 | 16 | ?> -------------------------------------------------------------------------------- /lib/String.php: -------------------------------------------------------------------------------- 1 | $length) 9 | $suffix = '...'; 10 | 11 | $new_string = substr($string,$start,$length); 12 | if (($start + $length) < strlen($string)) 13 | $new_string = $new_string.$suffix; 14 | return $new_string; 15 | } 16 | } 17 | } 18 | ?> -------------------------------------------------------------------------------- /lib/autoload.php: -------------------------------------------------------------------------------- 1 |