diff --git a/scratch-sessions/explore b/scratch-sessions/explore new file mode 100644 index 00000000..0b58e0e3 --- /dev/null +++ b/scratch-sessions/explore @@ -0,0 +1,171 @@ +;; This buffer is for Clojure experiments and evaluation. + +;; Press C-j to evaluate the last expression. + +;; You can also press C-u C-j to evaluate the expression and pretty-print its result. + +(println "hi") + +(user/init-repl) + +(require '[auto-ap.square.core3 :as square3]) +(require '[auto-ap.time-reader]) + +(def result (first (for [c (square3/get-square-clients "NGPG") + l (:client/square-locations c) + :when (:square-location/client-location l)] + (->> @(square3/search c l #clj-time/date-time "2022-01-25" #clj-time/date-time "2022-01-27") + (mapcat :line_items) + + (group-by (juxt :catalog_object_id :catalog_version)) + (map (fn [[[ci cv] v]] + [@(square3/item-id->category-name c ci cv) (count v)])))))) + + +(take 5 result) + +(reduce + 0 (map second result)) + + +(def result (first (for [c (square3/get-square-clients "NGPG") + l (:client/square-locations c) + :when (:square-location/client-location l)] + (->> @(square3/daily-results c l #clj-time/date-time "2022-01-25" #clj-time/date-time "2022-01-27") + (mapcat :sales-order/line-items) + count + + #_(group-by (juxt :catalog_object_id :catalog_version)) + #_(map (fn [[[ci cv] v]] + [@(square3/item-id->category-name c ci cv) (count v)])))))) + + + + +(def result (d/q '[:find (pull ?i [:db/id :invoice/invoice-number {:invoice/client [:client/code]} [:client/code] :invoice/date {:invoice/expense-accounts [{:invoice-expense-account/account [:account/numeric-code]}] + :invoice/vendor [:vendor/name {:vendor/default-account [:account/numeric-code]}]}]) + :in $ ?m + :where [?i :invoice/date ?d] + [(>= ?d #inst "2022-01-01T00:00:00-08:00")] + [?i :invoice/invoice-number ?n] + [(re-find ?m ?n)] + (not [?i :invoice/status :invoice-status/voided])] + (d/db auto-ap.datomic/conn) + (re-pattern "(?i)cash"))) + +(clojure.data.csv/write-csv *out* + (->> result + (map (fn [[i]] + [(-> i :db/id) + (-> i :invoice/client :client/code) + (-> i :invoice/date clj-time.coerce/to-date-time (auto-ap.time/unparse auto-ap.time/iso-date)) + (-> i :invoice/invoice-number) + (->> i :invoice/expense-accounts (map (comp :account/numeric-code :invoice-expense-account/account)) (str/join ", ")) + (-> i :invoice/vendor :vendor/name) + (-> i :invoice/vendor :vendor/default-account :account/numeric-code) + ])) + (sort-by (fn [[_ x y]] + [x y]))) + :separator \tab) + +(count result) + + +(def result (first (for [c (square3/get-square-clients "NGOP") + l (:client/square-locations c) + :when (:square-location/client-location l)] + #_(square3/get-order c l "jd2T2IPneyaHaBYNbrATg1qeV") + (->> @(square3/search c l #clj-time/date-time "2023-02-01" #clj-time/date-time "2023-02-04") + (filter (fn [o] + (= (:id o) "jd2T2IPneyaHaBYNbrATg1qeV") + #_(= ["CUSTOM_AMOUNT"] + (mapv :item_type (:line_items o ))))) + (map #(deref (square3/order->sales-order c l %))))))) + +(square3/get-order ) +;; jd2T2IPneyaHaBYNbrATg1qeV +result + +(require '[datomic.api :as d]) + +(d/pull (d/db auto-ap.datomic/conn) '[* {:expected-deposit/_charges [*]}] [:charge/external-id "square/charge/dwrB4neXdgMcoiahg6504FOxvaB",]) + + +(->> (d/q '[:find ?d4 ?type ?p2 (sum ?total) (sum ?tip) + :in $ + :where + [?charge :charge/date ?date] + [(ground (clj-time.coerce/to-date (clj-time.core/minus (auto-ap.time/local-now) (clj-time.core/days 10)))) ?min-d] + [(>= ?date ?min-d)] + [?charge :charge/client ?c] + [?c :client/code "NGOP"] + [?charge :charge/type-name ?type] + [?charge :charge/total ?total] + [?charge :charge/tip ?tip] + [?charge :charge/external-id ?eid] + (or + + (and [_ :expected-deposit/charges ?charge ] + [(ground :settlement) ?ccp] + [(ground :settlement) ?p]) + (and + (not [_ :expected-deposit/charges ?charge]) + [(get-else $ ?charge :charge/processor :na) ?ccp] + [(get-else $ ?ccp :db/ident :na) ?p] + )) + [(name ?p) ?p2] + [(clj-time.coerce/to-date-time ?date) ?d2] + [(auto-ap.time/localize ?d2) ?d3] + [(auto-ap.time/unparse-local ?d3 auto-ap.time/normal-date) ?d4]] + (d/db auto-ap.datomic/conn)) + seq) + + +(in-ns 'auto-ap.ledger) + +(unbalanced-invoices) + + +(def unbalance-2 (unbalanced-invoices)) + +unbalance-2 + +(for [u unbalance] + (d/pull (d/db conn) '[* {:journal-entry/_original-entity [*]}] u)) + + +(entity-change->ledger (d/db conn) [:invoice (first unbalance)]) + +(transact-with-ledger + [{:db/id 17592214378663, + :invoice-expense-account/amount 1034.52,} + {:db/id 17592214378678, + :invoice-expense-account/amount 17.9,} + {:db/id 17592218322713 + :invoice-expense-account/amount 254.28} + {:db/id 17592219719913, + :invoice-expense-account/amount -1783.15,} + {:db/id 17592222153002, + :invoice-expense-account/amount 196.08}] + + {:user/name "Bryce fixing one-off errors from invoice update"}) + +(user/entity-history-with-revert 17592275172406) + +(user/entity-history-with-revert 13194240237619) + +(user/entity-history 13194238151156) + + +(def unbalance-4 (unbalanced-transactions)) + +(def unbalance-3 [17592275172406 17592261857304 17592275269571]) + +(for [u unbalance-3] + (d/pull (d/db conn) '[* {:journal-entry/_original-entity [*]}] u)) + +(transact-with-ledger + [[:db/retractEntity 17592286748717] + [:db/retractEntity 17592277209926] + [:db/retractEntity 17592270946326] + ] + {:user/name "Bryce fixing one-off errors from invoice update"}) diff --git a/scratch-sessions/figure-out-weird-square.clj b/scratch-sessions/figure-out-weird-square.clj new file mode 100644 index 00000000..06ab9078 --- /dev/null +++ b/scratch-sessions/figure-out-weird-square.clj @@ -0,0 +1,140 @@ +;; This buffer is for Clojure experiments and evaluation. + +;; Press C-j to evaluate the last expression. + +;; You can also press C-u C-j to evaluate the expression and pretty-print its result. + +{:now + (seq (d/q '[:find ?d4 ?type ?p2 (sum ?total) (sum ?tip) (count ?charge) + :in $ ?d4 + :where + [?charge :charge/date ?date] + [(ground (clj-time.coerce/to-date (clj-time.core/minus (auto-ap.time/local-now) (clj-time.core/days 90)))) ?min-d] + [(>= ?date ?min-d)] + [?charge :charge/client ?c] + [?c :client/code "NGVG"] + [?charge :charge/type-name ?type] + [?charge :charge/total ?total] + [?charge :charge/tip ?tip] + (or + + (and [_ :expected-deposit/charges ?charge ] + [(ground :settlement) ?ccp] + [(ground :settlement) ?p]) + (and + (not [_ :expected-deposit/charges ?charge]) + [(get-else $ ?charge :charge/processor :na) ?ccp] + [(get-else $ ?ccp :db/ident :na) ?p] + )) + [(name ?p) ?p2] + [(clj-time.coerce/to-date-time ?date) ?d2] + [(auto-ap.time/localize ?d2) ?d3] + [(auto-ap.time/unparse-local ?d3 auto-ap.time/iso-date) ?d4]] + (d/db auto-ap.datomic/conn) + "2023-01-12")) + + :two-weeks-ago + (seq (d/q '[:find ?d4 ?type ?p2 (sum ?total) (sum ?tip) (count ?charge) + :in $ ?d4 + :where + [?charge :charge/date ?date] + [(ground (clj-time.coerce/to-date (clj-time.core/minus (auto-ap.time/local-now) (clj-time.core/days 90)))) ?min-d] + [(>= ?date ?min-d)] + [?charge :charge/client ?c] + [?c :client/code "NGVG"] + [?charge :charge/type-name ?type] + [?charge :charge/total ?total] + [?charge :charge/tip ?tip] + (or + + (and [_ :expected-deposit/charges ?charge ] + [(ground :settlement) ?ccp] + [(ground :settlement) ?p]) + (and + (not [_ :expected-deposit/charges ?charge]) + [(get-else $ ?charge :charge/processor :na) ?ccp] + [(get-else $ ?ccp :db/ident :na) ?p] + )) + [(name ?p) ?p2] + [(clj-time.coerce/to-date-time ?date) ?d2] + [(auto-ap.time/localize ?d2) ?d3] + [(auto-ap.time/unparse-local ?d3 auto-ap.time/iso-date) ?d4]] + (d/as-of (d/db auto-ap.datomic/conn) + #inst "2023-01-26") + "2023-01-12"))} + + + +{:now + (seq (d/q '[:find ?d4 ?type ?p2 ?charge + :in $ ?d4 + :where + [?charge :charge/date ?date] + [(ground (clj-time.coerce/to-date (clj-time.core/minus (auto-ap.time/local-now) (clj-time.core/days 90)))) ?min-d] + [(>= ?date ?min-d)] + [?charge :charge/client ?c] + [?c :client/code "NGVG"] + [?charge :charge/type-name ?type] + [?charge :charge/total ?total] + [?charge :charge/tip ?tip] + (or + + (and [_ :expected-deposit/charges ?charge ] + [(ground :settlement) ?ccp] + [(ground :settlement) ?p]) + (and + (not [_ :expected-deposit/charges ?charge]) + [(get-else $ ?charge :charge/processor :na) ?ccp] + [(get-else $ ?ccp :db/ident :na) ?p] + )) + [(name ?p) ?p2] + [(clj-time.coerce/to-date-time ?date) ?d2] + [(auto-ap.time/localize ?d2) ?d3] + [(auto-ap.time/unparse-local ?d3 auto-ap.time/iso-date) ?d4]] + (d/db auto-ap.datomic/conn) + "2023-01-12")) + + :two-weeks-ago + (seq (d/q '[:find ?d4 ?type ?p2 ?charge + :in $ ?d4 + :where + [?charge :charge/date ?date] + [(ground (clj-time.coerce/to-date (clj-time.core/minus (auto-ap.time/local-now) (clj-time.core/days 90)))) ?min-d] + [(>= ?date ?min-d)] + [?charge :charge/client ?c] + [?c :client/code "NGVG"] + [?charge :charge/type-name ?type] + [?charge :charge/total ?total] + [?charge :charge/tip ?tip] + (or + + (and [_ :expected-deposit/charges ?charge ] + [(ground :settlement) ?ccp] + [(ground :settlement) ?p]) + (and + (not [_ :expected-deposit/charges ?charge]) + [(get-else $ ?charge :charge/processor :na) ?ccp] + [(get-else $ ?ccp :db/ident :na) ?p] + )) + [(name ?p) ?p2] + [(clj-time.coerce/to-date-time ?date) ?d2] + [(auto-ap.time/localize ?d2) ?d3] + [(auto-ap.time/unparse-local ?d3 auto-ap.time/iso-date) ?d4]] + (d/as-of (d/db auto-ap.datomic/conn) + #inst "2023-01-26") + "2023-01-12"))} + + +[ + (d/pull (d/db auto-ap.datomic/conn) '[* {:expected-deposit/_charges [:db/id :expected-deposit/date] :charge/processor [:db/ident] :charge/client [:client/code]}] 17592284780148) + + (d/pull (d/as-of (d/db auto-ap.datomic/conn) + #inst "2023-01-25") '[* {:expected-deposit/_charges [:db/id :expected-deposit/date] :charge/processor [:db/ident] :charge/client [:client/code]}] 17592284780148)] + +(user/init-repl) + +(entity-history [:client/code "NGVG"]) + + +(d/pull (d/as-of (d/db auto-ap.datomic/conn) + #inst "2023-01-27") '[:client/code {:client/square-locations [*]}] [:client/code "NGVV"]) diff --git a/scratch-sessions/fix_account_usages.clj b/scratch-sessions/fix_account_usages.clj new file mode 100644 index 00000000..deb44274 --- /dev/null +++ b/scratch-sessions/fix_account_usages.clj @@ -0,0 +1,50141 @@ +(ns fix-account-usages + (:require + [auto-ap.datomic :as d] + [datomic.api :as da])) + +(comment + (def accounts-csv + "17592231963534 :account-type/asset Cash On Hand 11000 :allowance/admin-only :allowance/admin-only +17592231963740 :account-type/asset Bank 1 11100 :allowance/admin-only :allowance/admin-only +17592234611457 :account-type/asset Bank 1.1 11101 :allowance/admin-only :allowance/admin-only +17592232547866 :account-type/asset Bank 2 11110 :allowance/admin-only :allowance/admin-only +17592235226520 :account-type/asset Bank 2.1 11111 :allowance/admin-only :allowance/admin-only +17592232547867 :account-type/asset Bank 3 11120 :allowance/admin-only :allowance/admin-only +17592235226546 :account-type/asset Bank 3.1 11121 :allowance/admin-only :allowance/admin-only +17592232547868 :account-type/asset Bank 4 11130 :allowance/admin-only :allowance/admin-only +17592232547869 :account-type/asset Bank 5 11140 :allowance/admin-only :allowance/admin-only +17592232547870 :account-type/asset Bank 6 11150 :allowance/admin-only :allowance/admin-only +17592232547871 :account-type/asset Bank 7 11160 :allowance/admin-only :allowance/admin-only +17592232547872 :account-type/asset Bank 8 11170 :allowance/admin-only :allowance/admin-only +17592232547873 :account-type/asset Bank 9 11180 :allowance/admin-only :allowance/admin-only +17592232547874 :account-type/asset Bank 10 11190 :allowance/admin-only :allowance/admin-only +17592232559819 :account-type/asset Bank 11 11200 :allowance/admin-only :allowance/admin-only +17592232547875 :account-type/asset Accounts Receivable 12000 :allowance/admin-only :allowance/admin-only +17592232816803 :account-type/asset Accounts Receivable 1 12001 :allowance/admin-only :allowance/admin-only +17592232816889 :account-type/asset Accounts Receivable 2 12002 :allowance/admin-only :allowance/admin-only +17592235573149 :account-type/asset Accounts Receivable 3 12003 :allowance/admin-only :allowance/admin-only +17592268909657 :account-type/asset Accounts Receivable 4 12004 :allowance/admin-only :allowance/admin-only +17592286224608 :account-type/asset Accounts Receivable 5 12005 :allowance/admin-only :allowance/admin-only +17592231963796 :account-type/asset CCP 12100 :allowance/admin-only :allowance/admin-only +17592232683260 :account-type/asset CCP - Other 12101 :allowance/admin-only :allowance/admin-only +17592231963722 :account-type/asset Invoice Receivable 12200 :allowance/admin-only :allowance/admin-only +17592232558603 :account-type/asset Accounts Receivable 1 12201 :allowance/admin-only :allowance/admin-only +17592232558605 :account-type/asset Accounts Receivable 2 12202 :allowance/admin-only :allowance/admin-only +17592232558607 :account-type/asset Accounts Receivable 3 12203 :allowance/admin-only :allowance/admin-only +17592232558609 :account-type/asset Accounts Receivable 4 12204 :allowance/admin-only :allowance/admin-only +17592232558611 :account-type/asset Accounts Receivable 5 12205 :allowance/admin-only :allowance/admin-only +17592232558613 :account-type/asset Accounts Receivable 6 12206 :allowance/admin-only :allowance/admin-only +17592232558615 :account-type/asset Accounts Receivable 7 12207 :allowance/admin-only :allowance/admin-only +17592232558617 :account-type/asset Accounts Receivable 8 12208 :allowance/admin-only :allowance/admin-only +17592232558619 :account-type/asset Accounts Receivable 9 12209 :allowance/admin-only :allowance/admin-only +17592231963544 :account-type/asset Catering Receivable 12210 :allowance/admin-only :allowance/admin-only +17592232558621 :account-type/asset Accounts Receivable 11 12211 :allowance/admin-only :allowance/admin-only +17592232558623 :account-type/asset Accounts Receivable 12 12212 :allowance/admin-only :allowance/admin-only +17592232558625 :account-type/asset Accounts Receivable 13 12213 :allowance/admin-only :allowance/admin-only +17592232558627 :account-type/asset Accounts Receivable 14 12214 :allowance/admin-only :allowance/admin-only +17592232558658 :account-type/asset Accounts Receivable 15 12215 :allowance/admin-only :allowance/admin-only +17592232558660 :account-type/asset Accounts Receivable 16 12216 :allowance/admin-only :allowance/admin-only +17592231963541 :account-type/asset Employee Loans and Advances 12300 :allowance/admin-only :allowance/admin-only +17592234392615 :account-type/asset Mistakenly Added 12385 :allowance/admin-only :allowance/admin-only +17592231963725 :account-type/asset Owner/ Investor Loans 12400 :allowance/admin-only :allowance/admin-only +17592236644838 :account-type/asset Owner/ Investor Loans 2 12401 :allowance/admin-only :allowance/admin-only +17592231963561 :account-type/asset Tradeouts 12500 :allowance/admin-only :allowance/admin-only +17592231963624 :account-type/asset Chargebacks 12600 :allowance/admin-only :allowance/admin-only +17592231963578 :account-type/asset Allowance for Doubtful Accts 12700 :allowance/admin-only :allowance/admin-only +17592231963676 :account-type/asset Other AR 12800 :allowance/admin-only :allowance/admin-only +17592232560648 :account-type/asset Other AR 1 12801 :allowance/admin-only :allowance/admin-only +17592232816994 :account-type/asset Loans Receivable 20 12820 :allowance/admin-only :allowance/admin-only +17592232816988 :account-type/asset Loans Receivable 21 12821 :allowance/admin-only :allowance/admin-only +17592232816962 :account-type/asset Loans Receivable 22 12822 :allowance/admin-only :allowance/admin-only +17592232816956 :account-type/asset Loans Receivable 23 12823 :allowance/admin-only :allowance/admin-only +17592232816923 :account-type/asset Loans Receivable 24 12824 :allowance/admin-only :allowance/admin-only +17592232816952 :account-type/asset Loans Receivable 25 12825 :allowance/admin-only :allowance/admin-only +17592232817006 :account-type/asset Loans Receivable 26 12826 :allowance/admin-only :allowance/admin-only +17592232817021 :account-type/asset Loans Receivable 27 12827 :allowance/admin-only :allowance/admin-only +17592232816925 :account-type/asset Loans Receivable 28 12828 :allowance/admin-only :allowance/admin-only +17592232817027 :account-type/asset Loans Receivable 30 12830 :allowance/admin-only :allowance/admin-only +17592232816964 :account-type/asset Loans Receivable 31 12831 :allowance/admin-only :allowance/admin-only +17592232816931 :account-type/asset Loans Receivable 32 12832 :allowance/admin-only :allowance/admin-only +17592232817011 :account-type/asset Loans Receivable 33 12833 :allowance/admin-only :allowance/admin-only +17592232816937 :account-type/asset Loans Receivable 34 12834 :allowance/admin-only :allowance/admin-only +17592234392618 :account-type/asset Loans Receivable 353 12835 :allowance/admin-only :allowance/admin-only +17592232816997 :account-type/asset Loans Receivable 36 12836 :allowance/admin-only :allowance/admin-only +17592232817048 :account-type/asset Loans Receivable 37 12837 :allowance/admin-only :allowance/admin-only +17592232817045 :account-type/asset Loans Receivable 38 12838 :allowance/admin-only :allowance/admin-only +17592232817025 :account-type/asset Loans Receivable 39 12839 :allowance/admin-only :allowance/admin-only +17592234233902 :account-type/asset Loans Receivable 40 12840 :allowance/admin-only :allowance/admin-only +17592240539128 :account-type/asset Loans Receivable 41 12841 :allowance/admin-only :allowance/admin-only +17592240539131 :account-type/asset Loans Receivable 42 12842 :allowance/admin-only :allowance/admin-only +17592231963820 :account-type/asset Transfer in Process 12980 :allowance/admin-only :allowance/admin-only +17592231963709 :account-type/asset Receipts Split 12990 :allowance/admin-only :allowance/admin-only +17592231963749 :account-type/asset Food Inventory 13000 :allowance/admin-only :allowance/admin-only +17592232558632 :account-type/asset Food Inventory 1 13001 :allowance/admin-only :allowance/admin-only +17592232558634 :account-type/asset Food Inventory 2 13002 :allowance/admin-only :allowance/admin-only +17592232558636 :account-type/asset Food Inventory 3 13003 :allowance/admin-only :allowance/admin-only +17592232558638 :account-type/asset Food Inventory 4 13004 :allowance/admin-only :allowance/admin-only +17592232558640 :account-type/asset Food Inventory 5 13005 :allowance/admin-only :allowance/admin-only +17592232558642 :account-type/asset Food Inventory 6 13006 :allowance/admin-only :allowance/admin-only +17592233081520 :account-type/asset Food Inventory 7 13007 :allowance/admin-only :allowance/admin-only +17592233081529 :account-type/asset Inventory 8 13008 :allowance/admin-only :allowance/admin-only +17592232547876 :account-type/asset Dry Goods Inventory 13050 :allowance/admin-only :allowance/admin-only +17592231963579 :account-type/asset Soft Beverage Inventory 13100 :allowance/admin-only :allowance/admin-only +17592231963834 :account-type/asset Liquor Inventory 13200 :allowance/admin-only :allowance/admin-only +17592232558654 :account-type/asset Liquor Inventory 1 13201 :allowance/admin-only :allowance/admin-only +17592231963631 :account-type/asset Beer Inventory 13300 :allowance/admin-only :allowance/admin-only +17592232558644 :account-type/asset Beer Inventory 1 13301 :allowance/admin-only :allowance/admin-only +17592232558646 :account-type/asset Beer Inventory 2 13302 :allowance/admin-only :allowance/admin-only +17592232558648 :account-type/asset Beer Inventory 3 13303 :allowance/admin-only :allowance/admin-only +17592232558650 :account-type/asset Beer Inventory 4 13304 :allowance/admin-only :allowance/admin-only +17592232558652 :account-type/asset Beer Inventory 5 13305 :allowance/admin-only :allowance/admin-only +17592232558656 :account-type/asset Beer Inventory 6 13306 :allowance/admin-only :allowance/admin-only +17592231963548 :account-type/asset Wine Inventory 13400 :allowance/admin-only :allowance/admin-only +17592232560264 :account-type/asset Wine Inventory 1 13401 :allowance/admin-only :allowance/admin-only +17592232560266 :account-type/asset Wine Inventory 2 13402 :allowance/admin-only :allowance/admin-only +17592231963542 :account-type/asset Paper Products Inventory 13500 :allowance/admin-only :allowance/admin-only +17592231963822 :account-type/asset Merchandise Inventory 13600 :allowance/admin-only :allowance/admin-only +17592231963741 :account-type/asset Supplies Inventory 13700 :allowance/admin-only :allowance/admin-only +17592231963642 :account-type/asset Insurance - Prepaid 14100 :allowance/admin-only :allowance/admin-only +17592231963699 :account-type/asset Taxes - Prepaid 14200 :allowance/admin-only :allowance/admin-only +17592231963612 :account-type/asset Licenses - Prepaid 14300 :allowance/admin-only :allowance/admin-only +17592231963629 :account-type/asset Other - Prepaid 14400 :allowance/admin-only :allowance/admin-only +17592232558629 :account-type/asset Other - Prepaid 1 14401 :allowance/admin-only :allowance/admin-only +17592231963633 :account-type/asset Land 15100 :allowance/admin-only :allowance/admin-only +17592231963519 :account-type/asset Building 15200 :allowance/admin-only :allowance/admin-only +17592231963518 :account-type/asset Leasehold Improvements 15300 :allowance/warn :allowance/warn +17592232556069 :account-type/asset Leasehold Improvements 1 15301 :allowance/warn :allowance/warn +17592232556072 :account-type/asset Leasehold Improvements 2 15302 :allowance/warn :allowance/warn +17592232556075 :account-type/asset Leasehold Improvements 3 15303 :allowance/warn :allowance/warn +17592232556078 :account-type/asset Leasehold Improvements 4 15304 :allowance/warn :allowance/warn +17592232556081 :account-type/asset Leasehold Improvements 5 15305 :allowance/warn :allowance/warn +17592232556084 :account-type/asset Leasehold Improvements 15306 :allowance/warn :allowance/warn +17592232556087 :account-type/asset Leasehold Improvements 7 15307 :allowance/warn :allowance/warn +17592232556090 :account-type/asset Leasehold Improvements 8 15308 :allowance/warn :allowance/warn +17592232816761 :account-type/asset Leashold Improvements 9 15309 :allowance/warn :allowance/warn +17592232816699 :account-type/asset Leashold Improvements 10 15310 :allowance/warn :allowance/warn +17592232816843 :account-type/asset Leashold Improvements 11 15311 :allowance/warn :allowance/warn +17592232816782 :account-type/asset Leashold Improvements 12 15312 :allowance/warn :allowance/warn +17592232816785 :account-type/asset Leashold Improvements 13 15313 :allowance/warn :allowance/warn +17592232816708 :account-type/asset Leashold Improvements 14 15314 :allowance/warn :allowance/warn +17592232816746 :account-type/asset Leashold Improvements 15 15315 :allowance/warn :allowance/warn +17592232816722 :account-type/asset Leashold Improvements 16 15316 :allowance/warn :allowance/warn +17592232816870 :account-type/asset Leashold Improvements 17 15317 :allowance/warn :allowance/warn +17592232816849 :account-type/asset Leashold Improvements 18 15318 :allowance/warn :allowance/warn +17592232816815 :account-type/asset Leashold Improvements 19 15319 :allowance/warn :allowance/warn +17592232816724 :account-type/asset Leashold Improvements 20 15320 :allowance/warn :allowance/warn +17592232816778 :account-type/asset Leashold Improvements 21 15321 :allowance/warn :allowance/warn +17592232816765 :account-type/asset Leashold Improvements 22 15322 :allowance/warn :allowance/warn +17592232816748 :account-type/asset Leashold Improvements 23 15323 :allowance/warn :allowance/warn +17592232816892 :account-type/asset Leashold Improvements 24 15324 :allowance/warn :allowance/warn +17592231963701 :account-type/asset Equipment 15400 :allowance/warn :allowance/warn +17592232556095 :account-type/asset Equipment 1 15401 :allowance/warn :allowance/warn +17592232556098 :account-type/asset Equipment 2 15402 :allowance/warn :allowance/warn +17592232556101 :account-type/asset Equipment 3 15403 :allowance/warn :allowance/warn +17592232556104 :account-type/asset Equipment 4 15404 :allowance/warn :allowance/warn +17592232556107 :account-type/asset Equipment 5 15405 :allowance/warn :allowance/warn +17592232556113 :account-type/asset Equipment 6 15406 :allowance/warn :allowance/warn +17592232556116 :account-type/asset Equipment 7 15407 :allowance/warn :allowance/warn +17592232556119 :account-type/asset Equipment 8 15408 :allowance/warn :allowance/warn +17592232556122 :account-type/asset Equipment 9 15409 :allowance/warn :allowance/warn +17592231963673 :account-type/asset Kitchen Equipment 15410 :allowance/warn :allowance/warn +17592232556110 :account-type/asset Kitchen Equiment 1 15411 :allowance/warn :allowance/warn +17592232556126 :account-type/asset Furniture & Fixtures 15450 :allowance/warn :allowance/warn +17592232560650 :account-type/asset Furniture & Fixture 1 15451 :allowance/warn :allowance/warn +17592232560652 :account-type/asset Furniture & Fixture 2 15452 :allowance/warn :allowance/warn +17592232560654 :account-type/asset Furniture & Fixture 3 15453 :allowance/warn :allowance/warn +17592231963679 :account-type/asset Autos and Trucks 15500 :allowance/admin-only :allowance/admin-only +17592285240917 :account-type/asset Auto 1 15501 :allowance/admin-only :allowance/admin-only +17592285240919 :account-type/asset Auto 2 15502 :allowance/admin-only :allowance/admin-only +17592285240924 :account-type/asset Auto 3 15503 :allowance/admin-only :allowance/admin-only +17592231963559 :account-type/asset Construction in Progress 15600 :allowance/admin-only :allowance/admin-only +17592231963591 :account-type/asset Accum Depreciation 15900 :allowance/admin-only :allowance/admin-only +17592231963766 :account-type/asset Accum Depr - Leasehold Improvements 15920 :allowance/admin-only :allowance/admin-only +17592231963620 :account-type/asset Accum Depr - Furniture and Equipment 15940 :allowance/admin-only :allowance/admin-only +17592231963592 :account-type/asset Accum Depr - Autos and Trucks 15960 :allowance/admin-only :allowance/admin-only +17592232556129 :account-type/asset Accum Depr - Building 15980 :allowance/admin-only :allowance/admin-only +17592231963835 :account-type/asset Deposits 16100 :allowance/admin-only :allowance/admin-only +17592232560268 :account-type/asset Deposits 1 16101 :allowance/admin-only :allowance/admin-only +17592232560270 :account-type/asset Deposits 2 16102 :allowance/admin-only :allowance/admin-only +17592231963755 :account-type/asset Organization Costs 16200 :allowance/admin-only :allowance/admin-only +17592231963828 :account-type/asset Start Up Costs 16300 :allowance/warn :allowance/warn +17592232556131 :account-type/asset Start Up Costs 1 16301 :allowance/warn :allowance/warn +17592232556134 :account-type/asset Start Up Costs 2 16302 :allowance/warn :allowance/warn +17592232556137 :account-type/asset Start Up Costs 3 16303 :allowance/warn :allowance/warn +17592232556140 :account-type/asset Start Up Costs 4 16304 :allowance/warn :allowance/warn +17592232556143 :account-type/asset Start Up Costs 5 16305 :allowance/warn :allowance/warn +17592232556146 :account-type/asset Start Up Costs 6 16306 :allowance/warn :allowance/warn +17592236423008 :account-type/asset Start Up Costs 7 16307 :allowance/warn :allowance/warn +17592231963821 :account-type/asset Liquor License 16400 :allowance/admin-only :allowance/admin-only +17592232556149 :account-type/asset Liquor License 1 16401 :allowance/admin-only :allowance/admin-only +17592232556152 :account-type/asset Liquor License 2 16402 :allowance/admin-only :allowance/admin-only +17592231963674 :account-type/asset Other Intangible 16500 :allowance/admin-only :allowance/admin-only +17592232556155 :account-type/asset Other Intangible 1 16501 :allowance/admin-only :allowance/admin-only +17592232556158 :account-type/asset Other Intangibles 2 16502 :allowance/admin-only :allowance/admin-only +17592235621616 :account-type/asset Lease Acquisition 16510 :allowance/admin-only :allowance/admin-only +17592231963758 :account-type/asset Accum Amortization 16600 :allowance/admin-only :allowance/admin-only +17592250777693 :account-type/asset Franchise Purchase 16666 :allowance/admin-only :allowance/admin-only +17592232683201 :account-type/asset Investments 17000 :allowance/admin-only :allowance/admin-only +17592232817023 :account-type/asset Investment 1 17001 :allowance/admin-only :allowance/admin-only +17592232817034 :account-type/asset Investment 2 17002 :allowance/admin-only :allowance/admin-only +17592234233908 :account-type/asset Investment 3 17003 :allowance/admin-only :allowance/admin-only +17592231963609 :account-type/liability Accounts Payable 21000 :allowance/admin-only :allowance/admin-only +17592232816847 :account-type/liability Accounts Payable 1 21001 :allowance/admin-only :allowance/admin-only +17592232816830 :account-type/liability Accounts Payable 2 21002 :allowance/admin-only :allowance/admin-only +17592232816852 :account-type/liability Accounts Payable 3 21003 :allowance/admin-only :allowance/admin-only +17592232816885 :account-type/liability Accounts Payable 4 21004 :allowance/admin-only :allowance/admin-only +17592232816753 :account-type/liability Accounts Payable 5 21005 :allowance/admin-only :allowance/admin-only +17592232816820 :account-type/liability Accounts Payable 6 21006 :allowance/admin-only :allowance/admin-only +17592232816863 :account-type/liability Accounts Payable 7 21007 :allowance/admin-only :allowance/admin-only +17592232816711 :account-type/liability Accounts Payable 8 21008 :allowance/admin-only :allowance/admin-only +17592232816839 :account-type/liability Accounts Payable 9 21009 :allowance/admin-only :allowance/admin-only +17592232816949 :account-type/liability Accounts Payable 10 21010 :allowance/admin-only :allowance/admin-only +17592234233911 :account-type/liability Accounts Payable 11 21011 :allowance/admin-only :allowance/admin-only +17592285240928 :account-type/liability Accounts Payable 12 21012 :allowance/admin-only :allowance/admin-only +17592285240930 :account-type/liability Accounts Payable 13 21013 :allowance/admin-only :allowance/admin-only +17592285240932 :account-type/liability Accounts Payable 14 21014 :allowance/admin-only :allowance/admin-only +17592285240934 :account-type/liability Accounts Payable 15 21015 :allowance/admin-only :allowance/admin-only +17592285240936 :account-type/liability Accounts Payable 16 21016 :allowance/admin-only :allowance/admin-only +17592285240938 :account-type/liability Accounts Payable 17 21017 :allowance/admin-only :allowance/admin-only +17592285240940 :account-type/liability Accounts Payable 18 21018 :allowance/admin-only :allowance/admin-only +17592285240942 :account-type/liability Accounts Payable 19 21019 :allowance/admin-only :allowance/admin-only +17592285240944 :account-type/liability Accounts Payable 20 21020 :allowance/admin-only :allowance/admin-only +17592231963517 :account-type/liability Payroll Payable 22100 :allowance/admin-only :allowance/admin-only +17592231963570 :account-type/liability Payroll Taxes Payable 22200 :allowance/admin-only :allowance/admin-only +17592231963660 :account-type/liability Federal Payroll Taxes Payable 22300 :allowance/admin-only :allowance/admin-only +17592231963831 :account-type/liability CA Payroll Taxes Payable 22400 :allowance/admin-only :allowance/admin-only +17592234233917 :account-type/liability Income Tax Payable 22500 :allowance/admin-only :allowance/admin-only +17592231963778 :account-type/liability Sales Taxes Payable 23000 :allowance/admin-only :allowance/admin-only +17592232547877 :account-type/liability Accrued Expenses 24000 :allowance/admin-only :allowance/admin-only +17592231963691 :account-type/liability Salaries Accrued 24100 :allowance/admin-only :allowance/admin-only +17592231963595 :account-type/liability Vacation Pay Accrued 24200 :allowance/admin-only :allowance/admin-only +17592231963527 :account-type/liability Rent Accrued 24300 :allowance/admin-only :allowance/admin-only +17592231963823 :account-type/liability Utilities Accrued 24400 :allowance/admin-only :allowance/admin-only +17592231963819 :account-type/liability Gift Card Outstanding 25100 :allowance/admin-only :allowance/admin-only +17592231963743 :account-type/liability Payroll Outstanding 25200 :allowance/allowed :allowance/allowed +17592232560237 :account-type/liability Payroll Taxes Outstanding 25250 :allowance/admin-only :allowance/admin-only +17592231963645 :account-type/liability Customer Deposits 25300 :allowance/admin-only :allowance/admin-only +17592232560259 :account-type/liability Other Receipt Outstanding 1 25301 :allowance/admin-only :allowance/admin-only +17592231963630 :account-type/liability Promos Outstanding 25400 :allowance/admin-only :allowance/admin-only +17592232691697 :account-type/liability Promos Outstanding 1 25401 :allowance/admin-only :allowance/admin-only +17592231963757 :account-type/liability Tips Payable 25500 :allowance/allowed :allowance/allowed +17592286361218 :account-type/liability Catering Tips Payable 25505 :allowance/admin-only :allowance/admin-only +17592239069236 :account-type/liability Living Wage Payable 25510 :allowance/admin-only :allowance/admin-only +17592232547878 :account-type/liability Employee Benefits Outstanding 25600 :allowance/admin-only :allowance/admin-only +17592232547879 :account-type/liability Sales Tax Collected 25700 :allowance/warn :allowance/warn +17592231963730 :account-type/liability Other Current Liabilites 25800 :allowance/admin-only :allowance/admin-only +17592231963761 :account-type/liability Splits 26000 :allowance/admin-only :allowance/admin-only +17592231963815 :account-type/liability Payroll Split 26100 :allowance/admin-only :allowance/admin-only +17592231963582 :account-type/liability 12->13 Splits 26200 :allowance/admin-only :allowance/admin-only +17592232935309 :account-type/liability Inter-Store Transfer Deficit 26300 :allowance/admin-only :allowance/admin-only +17592231963728 :account-type/liability Current Portion of Notes Payable 27000 :allowance/admin-only :allowance/admin-only +17592231963672 :account-type/liability Notes Payable - General 28000 :allowance/admin-only :allowance/admin-only +17592231963619 :account-type/liability Notes Payable 1 28010 :allowance/admin-only :allowance/admin-only +17592232555169 :account-type/liability Notes Payable 2 28020 :allowance/admin-only :allowance/admin-only +17592232556166 :account-type/liability Note Payable 3 28030 :allowance/admin-only :allowance/admin-only +17592232556169 :account-type/liability Note Payable 4 28040 :allowance/admin-only :allowance/admin-only +17592232558680 :account-type/liability Notes Payable 5 28050 :allowance/admin-only :allowance/admin-only +17592232558682 :account-type/liability Notes Payable 6 28060 :allowance/admin-only :allowance/admin-only +17592232558684 :account-type/liability Notes Payable 7 28070 :allowance/admin-only :allowance/admin-only +17592232558686 :account-type/liability Notes Payable 8 28080 :allowance/admin-only :allowance/admin-only +17592232559803 :account-type/liability Notes Payable 9 28090 :allowance/admin-only :allowance/admin-only +17592232816856 :account-type/liability Notes Payable 10 28100 :allowance/admin-only :allowance/admin-only +17592232817008 :account-type/liability Notes Payable 101 28101 :allowance/admin-only :allowance/admin-only +17592232816999 :account-type/liability Notes Payable 102 28102 :allowance/admin-only :allowance/admin-only +17592232817038 :account-type/liability Notes Payable 103 28103 :allowance/admin-only :allowance/admin-only +17592234233914 :account-type/liability Notes Payable 4 28104 :allowance/admin-only :allowance/admin-only +17592234233919 :account-type/liability Notes Payable 5 28105 :allowance/admin-only :allowance/admin-only +17592232816793 :account-type/liability Notes Payable 11 28110 :allowance/admin-only :allowance/admin-only +17592232816958 :account-type/liability Notes Payable 111 28111 :allowance/admin-only :allowance/admin-only +17592232817041 :account-type/liability Notes Payable 112 28112 :allowance/admin-only :allowance/admin-only +17592232817015 :account-type/liability Notes Payable 113 28113 :allowance/admin-only :allowance/admin-only +17592232817017 :account-type/liability Notes Payable 114 28114 :allowance/admin-only :allowance/admin-only +17592232816975 :account-type/liability Notes Payable 115 28115 :allowance/admin-only :allowance/admin-only +17592232817036 :account-type/liability Notes Payable 116 28116 :allowance/admin-only :allowance/admin-only +17592232817032 :account-type/liability Notes Payable 117 28117 :allowance/admin-only :allowance/admin-only +17592232816980 :account-type/liability Notes Payable 118 28118 :allowance/admin-only :allowance/admin-only +17592232816789 :account-type/liability Notes Payable 12 28120 :allowance/admin-only :allowance/admin-only +17592232816713 :account-type/liability Notes Payable 13 28130 :allowance/admin-only :allowance/admin-only +17592232816756 :account-type/liability Notes Payable 14 28140 :allowance/admin-only :allowance/admin-only +17592232816696 :account-type/liability Notes Payable 15 28150 :allowance/admin-only :allowance/admin-only +17592232816868 :account-type/liability Notes Payable 16 28160 :allowance/admin-only :allowance/admin-only +17592265291353 :account-type/liability Notes Payable - EID Loan 28161 :allowance/admin-only :allowance/admin-only +17592231963614 :account-type/liability Loan from Member/ Partner/ Shareholder 28500 :allowance/admin-only :allowance/admin-only +17592231963824 :account-type/liability Loan from Member/ Partner/ Shareholder 2 28510 :allowance/admin-only :allowance/admin-only +17592231963839 :account-type/equity Opening Balance 30000 :allowance/admin-only :allowance/admin-only +17592231963665 :account-type/equity Common Stock 31000 :allowance/admin-only :allowance/admin-only +17592232560657 :account-type/equity Equity Adjustment 31500 :allowance/admin-only :allowance/admin-only +17592231963717 :account-type/equity Paid in Capital 32000 :allowance/admin-only :allowance/admin-only +17592231963574 :account-type/equity Contributions/ Capital Account - 1 33000 :allowance/admin-only :allowance/admin-only +17592231963643 :account-type/equity Contributions/ Capital Account - 2 33010 :allowance/admin-only :allowance/admin-only +17592232816805 :account-type/equity Contributions/ Capital Account - 2.1 33011 :allowance/admin-only :allowance/admin-only +17592232816740 :account-type/equity Contributions/ Capital Account - 2.2 33012 :allowance/admin-only :allowance/admin-only +17592231963719 :account-type/equity Contributions/ Capital Account - 3 33020 :allowance/admin-only :allowance/admin-only +17592231963777 :account-type/equity Contributions/ Capital Account - 4 33030 :allowance/admin-only :allowance/admin-only +17592232547880 :account-type/equity Contributions/ Capital Account - 5 33040 :allowance/admin-only :allowance/admin-only +17592232547881 :account-type/equity Contributions/ Capital Account - 6 33050 :allowance/admin-only :allowance/admin-only +17592232547882 :account-type/equity Contributions/ Capital Account - 7 33060 :allowance/admin-only :allowance/admin-only +17592232547883 :account-type/equity Contributions/ Capital Account - 8 33070 :allowance/admin-only :allowance/admin-only +17592232547884 :account-type/equity Contributions/ Capital Account - 9 33080 :allowance/admin-only :allowance/admin-only +17592232547885 :account-type/equity Distributions / Capital Withdrawal - 1 34000 :allowance/admin-only :allowance/admin-only +17592232547886 :account-type/equity Distributions / Capital Withdrawal - 2 34010 :allowance/admin-only :allowance/admin-only +17592232547887 :account-type/equity Distributions / Capital Withdrawal - 3 34020 :allowance/admin-only :allowance/admin-only +17592232547888 :account-type/equity Distributions / Capital Withdrawal - 4 34030 :allowance/admin-only :allowance/admin-only +17592232547889 :account-type/equity Distributions / Capital Withdrawal - 5 34040 :allowance/admin-only :allowance/admin-only +17592232547890 :account-type/equity Distributions / Capital Withdrawal - 6 34050 :allowance/admin-only :allowance/admin-only +17592232547891 :account-type/equity Distributions / Capital Withdrawal - 7 34060 :allowance/admin-only :allowance/admin-only +17592232547892 :account-type/equity Distributions / Capital Withdrawal - 8 34070 :allowance/admin-only :allowance/admin-only +17592232547893 :account-type/equity Distributions / Capital Withdrawal - 9 34080 :allowance/admin-only :allowance/admin-only +17592231963752 :account-type/equity Retained Earnings 35000 :allowance/admin-only :allowance/admin-only +17592278720365 :account-type/equity Tax Adj to SH Equity 35001 :allowance/admin-only :allowance/admin-only +17592285088875 :account-type/equity Tax PY Retained Earnings 35002 :allowance/admin-only :allowance/admin-only +17592280038048 :account-type/liability Tax Adj for Timing Variances 35003 :allowance/admin-only :allowance/admin-only +17592231963808 :account-type/equity Undistributed Net Inc / Loss 35100 :allowance/admin-only :allowance/admin-only +17592235466334 :account-type/equity Distributed Earnings 35200 :allowance/admin-only :allowance/admin-only +17592232547894 :account-type/revenue Food Sales 40000 :allowance/admin-only :allowance/admin-only +17592252640951 :account-type/revenue Food Sales 0 40110 :allowance/admin-only :allowance/admin-only +17592232555135 :account-type/revenue Food Sales 1 40111 :allowance/admin-only :allowance/admin-only +17592232555131 :account-type/revenue Food Sales 2 40112 :allowance/admin-only :allowance/admin-only +17592232555137 :account-type/revenue Food Sales 3 40113 :allowance/admin-only :allowance/admin-only +17592232555141 :account-type/revenue Food Sales 4 40114 :allowance/admin-only :allowance/admin-only +17592232555143 :account-type/revenue Food Sales 5 40115 :allowance/admin-only :allowance/admin-only +17592232555145 :account-type/revenue Food Sales 6 40116 :allowance/admin-only :allowance/admin-only +17592232555147 :account-type/revenue Food Sales 7 40117 :allowance/admin-only :allowance/admin-only +17592232555149 :account-type/revenue Food Sales 8 40118 :allowance/admin-only :allowance/admin-only +17592232555151 :account-type/revenue Food Sales 9 40119 :allowance/admin-only :allowance/admin-only +17592232555975 :account-type/revenue Food Sales 10 40120 :allowance/admin-only :allowance/admin-only +17592232555977 :account-type/revenue Food Sales 11 40121 :allowance/admin-only :allowance/admin-only +17592232555979 :account-type/revenue Food Sales 12 40122 :allowance/admin-only :allowance/admin-only +17592232555981 :account-type/revenue Food Sales 13 40123 :allowance/admin-only :allowance/admin-only +17592232555983 :account-type/revenue Food Sales 14 40124 :allowance/admin-only :allowance/admin-only +17592232555985 :account-type/revenue Food Sales 15 40125 :allowance/admin-only :allowance/admin-only +17592232555987 :account-type/revenue Food Sales 16 40126 :allowance/admin-only :allowance/admin-only +17592232555989 :account-type/revenue Food Sales 17 40127 :allowance/admin-only :allowance/admin-only +17592232555991 :account-type/revenue Food Sales 18 40128 :allowance/admin-only :allowance/admin-only +17592232555993 :account-type/revenue Food Sales 19 40129 :allowance/admin-only :allowance/admin-only +17592232559805 :account-type/revenue Food Sales 20 40130 :allowance/admin-only :allowance/admin-only +17592232559807 :account-type/revenue Food Sales 21 40131 :allowance/admin-only :allowance/admin-only +17592232559809 :account-type/revenue Food Sales 22 40132 :allowance/admin-only :allowance/admin-only +17592232559811 :account-type/revenue Food Sales 23 40133 :allowance/admin-only :allowance/admin-only +17592232559813 :account-type/revenue Food Sales 24 40134 :allowance/admin-only :allowance/admin-only +17592232559815 :account-type/revenue Food Sales 25 40135 :allowance/admin-only :allowance/admin-only +17592250865372 :account-type/revenue Food Sales 26 40136 :allowance/admin-only :allowance/admin-only +17592250865380 :account-type/revenue Food Sales 27 40137 :allowance/admin-only :allowance/admin-only +17592250865398 :account-type/revenue Food Sales 28 40138 :allowance/admin-only :allowance/admin-only +17592232547895 :account-type/revenue Kitchen Sales 40200 :allowance/admin-only :allowance/admin-only +17592235110633 :account-type/revenue Appetizer Sales 40300 :allowance/admin-only :allowance/admin-only +17592232547896 :account-type/revenue Sushi Sales 40500 :allowance/admin-only :allowance/admin-only +17592232559817 :account-type/revenue On-line Food Sales 40900 :allowance/admin-only :allowance/admin-only +17592235154165 :account-type/revenue Doordash Sales 40910 :allowance/admin-only :allowance/admin-only +17592235154167 :account-type/revenue Uber Eats Sales 40920 :allowance/admin-only :allowance/admin-only +17592235154171 :account-type/revenue Postmates Sales 40930 :allowance/admin-only :allowance/admin-only +17592235154169 :account-type/revenue Grub Hub Sales 40940 :allowance/admin-only :allowance/admin-only +17592238735682 :account-type/revenue Non-sales taxed portion of food app sales 40990 :allowance/admin-only :allowance/admin-only +17592232547897 :account-type/revenue Discounts on Sales 41000 :allowance/admin-only :allowance/admin-only +17592255643666 :account-type/revenue Discount on Sales 2 41001 :allowance/admin-only :allowance/admin-only +17592232547898 :account-type/revenue Soft Beverage Sales 42000 :allowance/admin-only :allowance/admin-only +17592232559827 :account-type/revenue Beverage Sales 1 42001 :allowance/admin-only :allowance/admin-only +17592232559829 :account-type/revenue Beverage Sales 2 42002 :allowance/admin-only :allowance/admin-only +17592232957071 :account-type/revenue Beverage Sales 3 42003 :allowance/admin-only :allowance/admin-only +17592232547899 :account-type/revenue Catering Sales 43000 :allowance/admin-only :allowance/admin-only +17592276278439 :account-type/revenue Catering Sales 1 43010 :allowance/admin-only :allowance/admin-only +17592232547900 :account-type/revenue Corporate Catering 43100 :allowance/admin-only :allowance/admin-only +17592232547901 :account-type/revenue Beer Sales 44000 :allowance/admin-only :allowance/admin-only +17592232547902 :account-type/revenue Draft Beer Sales 44100 :allowance/admin-only :allowance/admin-only +17592232547903 :account-type/revenue Bottled Beer Sales 44200 :allowance/admin-only :allowance/admin-only +17592232558495 :account-type/revenue Beer Sales 1 44201 :allowance/admin-only :allowance/admin-only +17592232547904 :account-type/revenue Wine Sales 45000 :allowance/admin-only :allowance/admin-only +17592237040994 :account-type/revenue Red Wine Sales 45001 :allowance/admin-only :allowance/admin-only +17592237040996 :account-type/revenue White Wine Sales 45002 :allowance/admin-only :allowance/admin-only +17592232547905 :account-type/revenue Glass Wine Sales 45100 :allowance/admin-only :allowance/admin-only +17592232547906 :account-type/revenue Bottled Wine Sales 45200 :allowance/admin-only :allowance/admin-only +17592232547907 :account-type/revenue Sake Sales 45300 :allowance/admin-only :allowance/admin-only +17592232558491 :account-type/revenue Sake Sales 1 45301 :allowance/admin-only :allowance/admin-only +17592232558493 :account-type/revenue Sake Sales 2 45302 :allowance/admin-only :allowance/admin-only +17592232547908 :account-type/revenue Liquor Sales 46000 :allowance/admin-only :allowance/admin-only +17592237041001 :account-type/revenue Cocktails Sales 46001 :allowance/admin-only :allowance/admin-only +17592237041003 :account-type/revenue Brunch Cocktails 46002 :allowance/admin-only :allowance/admin-only +17592237041006 :account-type/revenue Happy Hour Cocktails Sales 46003 :allowance/admin-only :allowance/admin-only +17592237041008 :account-type/revenue Irish Whiskey Sales 46004 :allowance/admin-only :allowance/admin-only +17592237041030 :account-type/revenue Japanese Whiskey Sales 46005 :allowance/admin-only :allowance/admin-only +17592237052226 :account-type/revenue American Whiskey Sales 46006 :allowance/admin-only :allowance/admin-only +17592237052104 :account-type/revenue Scotch Sales 46007 :allowance/admin-only :allowance/admin-only +17592237041083 :account-type/revenue Rye Sales 46009 :allowance/admin-only :allowance/admin-only +17592237041078 :account-type/revenue Bourbon Sales 46010 :allowance/admin-only :allowance/admin-only +17592237041086 :account-type/revenue Cognac Sales 46014 :allowance/admin-only :allowance/admin-only +17592237041081 :account-type/revenue Rum Sales 46015 :allowance/admin-only :allowance/admin-only +17592237041185 :account-type/revenue Vodka Sales 46020 :allowance/admin-only :allowance/admin-only +17592237041187 :account-type/revenue Gin Sales 46030 :allowance/admin-only :allowance/admin-only +17592237041189 :account-type/revenue Tequila Sales 46040 :allowance/admin-only :allowance/admin-only +17592237041191 :account-type/revenue Mezcal Sales 46050 :allowance/admin-only :allowance/admin-only +17592234912090 :account-type/revenue Alcohol Sales 46900 :allowance/admin-only :allowance/admin-only +17592268330552 :account-type/revenue Alcohol Sales 1 46901 :allowance/admin-only :allowance/admin-only +17592268330554 :account-type/revenue Alcohol Sales 2 46902 :allowance/admin-only :allowance/admin-only +17592232547909 :account-type/revenue Merchandise Sales 47000 :allowance/admin-only :allowance/admin-only +17592232559823 :account-type/revenue Merchandise 1 47001 :allowance/admin-only :allowance/admin-only +17592232559825 :account-type/revenue Merchandise 2 47002 :allowance/admin-only :allowance/admin-only +17592232547910 :account-type/revenue Other Sales 48000 :allowance/admin-only :allowance/admin-only +17592232547911 :account-type/revenue Delivery Charge Sales 48100 :allowance/admin-only :allowance/admin-only +17592232558297 :account-type/revenue Other Charge 1 48101 :allowance/admin-only :allowance/admin-only +17592232555161 :account-type/revenue Food App Fee Sales 48200 :allowance/admin-only :allowance/admin-only +17592232558489 :account-type/revenue Food App Sales 1 48201 :allowance/admin-only :allowance/admin-only +17592233098253 :account-type/revenue Food App Sales 2 48202 :allowance/admin-only :allowance/admin-only +17592233098257 :account-type/revenue Food App Sales 3 48203 :allowance/admin-only :allowance/admin-only +17592233098261 :account-type/revenue Food App Sales 4 48204 :allowance/admin-only :allowance/admin-only +17592232547912 :account-type/revenue Events/ Ticket Sales 48300 :allowance/admin-only :allowance/admin-only +17592233048854 :account-type/revenue Event Sales 1 48301 :allowance/admin-only :allowance/admin-only +17592232816910 :account-type/revenue Service Income 49000 :allowance/admin-only :allowance/admin-only +17592232816915 :account-type/revenue Service Income 1 49001 :allowance/admin-only :allowance/admin-only +17592232816905 :account-type/revenue Service Income 2 49002 :allowance/admin-only :allowance/admin-only +17592232816912 :account-type/revenue Service Income 3 49003 :allowance/admin-only :allowance/admin-only +17592232816898 :account-type/revenue Service Income 4 49004 :allowance/admin-only :allowance/admin-only +17592232816917 :account-type/revenue Service Income 5 49005 :allowance/admin-only :allowance/admin-only +17592232816919 :account-type/revenue Service Income 6 49006 :allowance/admin-only :allowance/admin-only +17592232816903 :account-type/revenue Service Income 7 49007 :allowance/admin-only :allowance/admin-only +17592232816984 :account-type/revenue Service Income 11 49011 :allowance/admin-only :allowance/admin-only +17592232817029 :account-type/revenue Service Income 12 49012 :allowance/admin-only :allowance/admin-only +17592232816941 :account-type/revenue Service Income 21 49021 :allowance/admin-only :allowance/admin-only +17592232816977 :account-type/revenue Service Income 22 49022 :allowance/admin-only :allowance/admin-only +17592232817004 :account-type/revenue Service Income 31 49031 :allowance/admin-only :allowance/admin-only +17592232816970 :account-type/revenue Service Income 32 49032 :allowance/admin-only :allowance/admin-only +17592232816960 :account-type/revenue Service Income 33 49033 :allowance/admin-only :allowance/admin-only +17592268909557 :account-type/revenue Service Income 34 49034 :allowance/admin-only :allowance/admin-only +17592232547913 :account-type/revenue Taxable Tips Collected 49100 :allowance/admin-only :allowance/admin-only +17592237023319 :account-type/revenue Taxable Living Wage Collected 49101 :allowance/admin-only :allowance/admin-only +17592233208943 :account-type/revenue Taxable Portion of Sales 49200 :allowance/admin-only :allowance/admin-only +17592232547914 :account-type/revenue Non-Taxable Tips Paid 49500 :allowance/admin-only :allowance/admin-only +17592237023328 :account-type/revenue Non Taxable Living Wage Paid 49501 :allowance/admin-only :allowance/admin-only +17592233208946 :account-type/revenue Tax Received Sales Offset 49510 :allowance/admin-only :allowance/admin-only +17592238735685 :account-type/revenue Add-back of non-sales taxed food app sales 49520 :allowance/admin-only :allowance/admin-only +17592232547915 :account-type/revenue Interest Income 49600 :allowance/admin-only :allowance/admin-only +17592232547916 :account-type/revenue Non-Business Income 49700 :allowance/admin-only :allowance/admin-only +17592232558497 :account-type/revenue Non-Business Income 1 49701 :allowance/admin-only :allowance/admin-only +17592232816986 :account-type/revenue Non-Business Income 2 49702 :allowance/admin-only :allowance/admin-only +17592236141780 :account-type/revenue Non-Business Income 3 49703 :allowance/admin-only :allowance/admin-only +17592253042171 :account-type/revenue PPP Loan Forgiveness 49750 :allowance/admin-only :allowance/admin-only +17592232547917 :account-type/revenue Licensing Income 49800 :allowance/admin-only :allowance/admin-only +17592233045746 :account-type/revenue Prior Period Retained Earnings 49999 :allowance/admin-only :allowance/admin-only +17592231963685 :account-type/expense Food Cost 50000 :allowance/allowed :allowance/allowed +17592281771600 :account-type/expense Food Cost 100 50100 :allowance/allowed :allowance/allowed +17592281771602 :account-type/expense Food Cost 200 50200 :allowance/allowed :allowance/allowed +17592281771604 :account-type/expense Food Cost 300 50300 :allowance/allowed :allowance/allowed +17592281771606 :account-type/expense Food Cost 400 50400 :allowance/allowed :allowance/allowed +17592281771608 :account-type/expense Food Cost 500 50500 :allowance/allowed :allowance/allowed +17592231963568 :account-type/expense Proteins Cost 51100 :allowance/allowed :allowance/allowed +17592231963546 :account-type/expense Beef/ Pork Costs 51110 :allowance/allowed :allowance/allowed +17592231963617 :account-type/expense Chicken/ Poultry Costs 51120 :allowance/allowed :allowance/allowed +17592231963802 :account-type/expense Seafood Costs 51130 :allowance/allowed :allowance/allowed +17592231963811 :account-type/expense Produce Costs 51200 :allowance/allowed :allowance/allowed +17592231963683 :account-type/expense Dairy Costs 51300 :allowance/allowed :allowance/allowed +17592231963800 :account-type/expense Bread and Bun Costs 51400 :allowance/allowed :allowance/allowed +17592232547918 :account-type/expense Dry Goods Costs 51500 :allowance/allowed :allowance/allowed +17592235549181 :account-type/expense Food Cost Adjustment 51600 :allowance/allowed :allowance/allowed +17592231963708 :account-type/expense Soft Beverage Cost 52000 :allowance/allowed :allowance/allowed +17592231963594 :account-type/expense Coffee Costs 52200 :allowance/allowed :allowance/allowed +17592231963553 :account-type/expense Catering Cost 53000 :allowance/allowed :allowance/allowed +17592231963771 :account-type/expense Alcohol Cost 54000 :allowance/allowed :allowance/allowed +17592231963803 :account-type/expense Beer Cost 54100 :allowance/allowed :allowance/allowed +17592235549185 :account-type/expense Beer Cost Adjustment 54110 :allowance/allowed :allowance/allowed +17592232547919 :account-type/expense Bottled Beer Cost 54150 :allowance/allowed :allowance/allowed +17592232547920 :account-type/expense Draft Beer Cost 54200 :allowance/allowed :allowance/allowed +17592232547921 :account-type/expense In House Brewed Beer Cost 54250 :allowance/allowed :allowance/allowed +17592231963575 :account-type/expense CO2 Costs 54300 :allowance/allowed :allowance/allowed +17592235555003 :account-type/expense CO2 Cost Adjustment 54301 :allowance/allowed :allowance/allowed +17592232558324 :account-type/expense Ice Costs 54310 :allowance/allowed :allowance/allowed +17592231963689 :account-type/expense Wine Cost 54400 :allowance/allowed :allowance/allowed +17592232560644 :account-type/expense Wine Cost 1 54401 :allowance/allowed :allowance/allowed +17592232547922 :account-type/expense Sake Cost 54610 :allowance/allowed :allowance/allowed +17592232558499 :account-type/expense Sake Cost 1 54611 :allowance/allowed :allowance/allowed +17592232558501 :account-type/expense Sake Cost 2 54612 :allowance/allowed :allowance/allowed +17592231963751 :account-type/expense Liquor Cost 54700 :allowance/allowed :allowance/allowed +17592232560646 :account-type/expense Liquor Cost 1 54701 :allowance/allowed :allowance/allowed +17592232547923 :account-type/expense Bar Mixes Cost 54790 :allowance/allowed :allowance/allowed +17592231963655 :account-type/expense Paperware Cost 55000 :allowance/allowed :allowance/allowed +17592232547924 :account-type/expense Food Decoration Cost 55100 :allowance/allowed :allowance/allowed +17592235549899 :account-type/expense Paperware Cost Adjustment 55200 :allowance/allowed :allowance/allowed +17592231963775 :account-type/expense Merchandise Cost 56000 :allowance/allowed :allowance/allowed +17592231963667 :account-type/expense Delivery Cost 57000 :allowance/allowed :allowance/allowed +17592232558503 :account-type/expense Delivery Cost 1 57001 :allowance/allowed :allowance/allowed +17592232558505 :account-type/expense Delivery Cost 2 57002 :allowance/allowed :allowance/allowed +17592232560140 :account-type/expense Delivery Costs 3 57003 :allowance/allowed :allowance/allowed +17592232560143 :account-type/expense Delivery Costs 4 57004 :allowance/allowed :allowance/allowed +17592232558327 :account-type/expense Delivery Mileage Reimbursement 57100 :allowance/allowed :allowance/allowed +17592232683199 :account-type/expense Service or Pass Through Costs 58000 :allowance/allowed :allowance/allowed +17592232547925 :account-type/expense Payroll 60000 :allowance/admin-only :allowance/admin-only +17592232556202 :account-type/expense Payroll Adjustment to 3rd Party Provider Total 60010 :allowance/admin-only :allowance/admin-only +17592232547926 :account-type/expense Manager Payroll 61000 :allowance/admin-only :allowance/admin-only +17592232635554 :account-type/expense Manager Payroll 1 61001 :allowance/admin-only :allowance/admin-only +17592232683329 :account-type/expense Manager Payroll 2 61002 :allowance/admin-only :allowance/admin-only +17592232683331 :account-type/expense Manager Payroll 3 61003 :allowance/admin-only :allowance/admin-only +17592232547927 :account-type/expense Manager Payroll - FOH 61100 :allowance/admin-only :allowance/admin-only +17592232547928 :account-type/expense Manager Payroll - BOH 61200 :allowance/admin-only :allowance/admin-only +17592232547929 :account-type/expense Manager Payroll - Catering 61300 :allowance/admin-only :allowance/admin-only +17592232547930 :account-type/expense Manager Payroll - Admin 61400 :allowance/admin-only :allowance/admin-only +17592232547931 :account-type/expense BOH Payroll 62000 :allowance/admin-only :allowance/admin-only +17592232558588 :account-type/expense BOH Payroll 1 62001 :allowance/admin-only :allowance/admin-only +17592232547932 :account-type/expense BOH Payroll - Head Chef 62100 :allowance/admin-only :allowance/admin-only +17592235821644 :account-type/expense BOH Payroll - Cook 62150 :allowance/admin-only :allowance/admin-only +17592232547933 :account-type/expense BOH Payroll - Line Cook 62200 :allowance/admin-only :allowance/admin-only +17592232547934 :account-type/expense BOH Payroll - Prep Cook 62300 :allowance/admin-only :allowance/admin-only +17592232547935 :account-type/expense BOH Payroll - Pantry Cook 62400 :allowance/admin-only :allowance/admin-only +17592232547936 :account-type/expense BOH Payroll - Dishwasher 62500 :allowance/admin-only :allowance/admin-only +17592232547937 :account-type/expense BOH Payroll - Expeditor 62600 :allowance/admin-only :allowance/admin-only +17592232547938 :account-type/expense BOH Payroll - OT 62800 :allowance/admin-only :allowance/admin-only +17592232547939 :account-type/expense BOH Payroll - Training 62900 :allowance/admin-only :allowance/admin-only +17592243484001 :account-type/expense BOH Payroll - Cleaning 62950 :allowance/admin-only :allowance/admin-only +17592232547940 :account-type/expense FOH Payroll 63000 :allowance/admin-only :allowance/admin-only +17592235821639 :account-type/expense FOH Payroll - Shift Lead 63001 :allowance/admin-only :allowance/admin-only +17592232547941 :account-type/expense FOH Payroll - Cashier 63100 :allowance/admin-only :allowance/admin-only +17592232547942 :account-type/expense FOH Payroll - Server 63200 :allowance/admin-only :allowance/admin-only +17592235821497 :account-type/expense FOH Payroll - Expos 63210 :allowance/admin-only :allowance/admin-only +17592235821499 :account-type/expense FOH Payroll - Runner 63220 :allowance/admin-only :allowance/admin-only +17592235821501 :account-type/expense FOH Payroll - Breaker 63230 :allowance/admin-only :allowance/admin-only +17592232547943 :account-type/expense FOH Payroll - Busser 63300 :allowance/admin-only :allowance/admin-only +17592232547944 :account-type/expense FOH Payroll - Host 63400 :allowance/admin-only :allowance/admin-only +17592232965664 :account-type/expense FOH Payroll - To Go 63500 :allowance/admin-only :allowance/admin-only +17592235552102 :account-type/expense FOH Payroll - Admin 63600 :allowance/admin-only :allowance/admin-only +17592232547945 :account-type/expense FOH Payroll - OT 63800 :allowance/admin-only :allowance/admin-only +17592232547946 :account-type/expense FOH Payroll - Training 63900 :allowance/admin-only :allowance/admin-only +17592232547947 :account-type/expense FOH Payroll - Bartender 64000 :allowance/admin-only :allowance/admin-only +17592232547948 :account-type/expense FOH Payroll - Barback 64100 :allowance/admin-only :allowance/admin-only +17592232547949 :account-type/expense FOH Payroll - Bar OT 64800 :allowance/admin-only :allowance/admin-only +17592232547950 :account-type/expense FOH Payroll - Bar Training 64900 :allowance/admin-only :allowance/admin-only +17592232547951 :account-type/expense Catering Payroll 65000 :allowance/admin-only :allowance/admin-only +17592232556013 :account-type/expense Catering Payroll 1 65001 :allowance/admin-only :allowance/admin-only +17592232547952 :account-type/expense Security Payroll 66000 :allowance/admin-only :allowance/admin-only +17592232547953 :account-type/expense Regional Management Payroll 69000 :allowance/admin-only :allowance/admin-only +17592232547955 :account-type/expense Owner Payroll Replacement Cost 69010 :allowance/admin-only :allowance/admin-only +17592232547954 :account-type/expense Payroll - Adjustment 69090 :allowance/admin-only :allowance/admin-only +17592232547956 :account-type/expense Marketing Payroll 69100 :allowance/admin-only :allowance/admin-only +17592232547957 :account-type/expense Quality Control Payroll 69200 :allowance/admin-only :allowance/admin-only +17592232547958 :account-type/expense HR Payroll 69300 :allowance/admin-only :allowance/admin-only +17592232547959 :account-type/expense Acquisition/ Development Payroll 69400 :allowance/admin-only :allowance/admin-only +17592232547960 :account-type/expense Payroll Taxes 69800 :allowance/admin-only :allowance/admin-only +17592232556016 :account-type/expense Other Payroll Taxes 1 69801 :allowance/admin-only :allowance/admin-only +17592232558595 :account-type/expense Other Payroll Taxes 2 69802 :allowance/admin-only :allowance/admin-only +17592232547961 :account-type/expense Payroll Tax Adj 69810 :allowance/admin-only :allowance/admin-only +17592232547962 :account-type/expense Employee Benefits - Variable 69900 :allowance/allowed :allowance/allowed +17592232547963 :account-type/expense Insurance and Retirement 69910 :allowance/allowed :allowance/allowed +17592231963585 :account-type/expense Employee Medical Benefits 69920 :allowance/allowed :allowance/allowed +17592232547964 :account-type/expense Worker's Compensation - Variable 69930 :allowance/admin-only :allowance/admin-only +17592232547965 :account-type/expense FOH Supplies - Consumable 71100 :allowance/allowed :allowance/allowed +17592232558535 :account-type/expense FOH Supplies - Consumable 1 71101 :allowance/allowed :allowance/allowed +17592232547966 :account-type/expense Dining Roomo Supplies - Consumable 71120 :allowance/allowed :allowance/allowed +17592231963690 :account-type/expense Banquet and Catering Supplies - Consumable 71140 :allowance/allowed :allowance/allowed +17592231963600 :account-type/expense Bar Supplies - Consumable 71160 :allowance/allowed :allowance/allowed +17592232547967 :account-type/expense Staff Supplies - Consumable 71180 :allowance/allowed :allowance/allowed +17592232558537 :account-type/expense Staff Supplies - Consumable 1 71181 :allowance/allowed :allowance/allowed +17592232558539 :account-type/expense Staff Supplies - Consumable 2 71182 :allowance/allowed :allowance/allowed +17592232558541 :account-type/expense Staff Supplies - Consumable 3 71183 :allowance/allowed :allowance/allowed +17592232547968 :account-type/expense FOH Supplies - Reuseable 71200 :allowance/allowed :allowance/allowed +17592232547969 :account-type/expense Dining Room Supplies - Reuseable 71220 :allowance/allowed :allowance/allowed +17592232558553 :account-type/expense Dining Room Supplies - Reuseable 1 71221 :allowance/allowed :allowance/allowed +17592232547970 :account-type/expense Banquet and Catering Supplies - Reuseable 71240 :allowance/allowed :allowance/allowed +17592232547971 :account-type/expense Bar Supplies - Reuseable 71260 :allowance/allowed :allowance/allowed +17592232547972 :account-type/expense Staff Supplies - Reuseable 71280 :allowance/allowed :allowance/allowed +17592231963707 :account-type/expense Glassware 71300 :allowance/allowed :allowance/allowed +17592231963738 :account-type/expense Tableware 71400 :allowance/allowed :allowance/allowed +17592231963847 :account-type/expense Paper and Packaging 71500 :allowance/allowed :allowance/allowed +17592231963589 :account-type/expense Security Guards 71600 :allowance/allowed :allowance/allowed +17592232547973 :account-type/expense Small Furniture 71700 :allowance/allowed :allowance/allowed +17592232547974 :account-type/expense Catering Expenses 71800 :allowance/allowed :allowance/allowed +17592232558547 :account-type/expense Caterinig Expenses 1 71801 :allowance/allowed :allowance/allowed +17592232558549 :account-type/expense Caterinig Expenses 2 71802 :allowance/allowed :allowance/allowed +17592232558551 :account-type/expense Caterinig Expenses 3 71803 :allowance/allowed :allowance/allowed +17592231963646 :account-type/expense Marketing 72100 :allowance/allowed :allowance/allowed +17592232547975 :account-type/expense Website/ Social Media 72110 :allowance/allowed :allowance/allowed +17592231963663 :account-type/expense Design 72130 :allowance/allowed :allowance/allowed +17592231963762 :account-type/expense Marketing Consultant 72150 :allowance/allowed :allowance/allowed +17592231963776 :account-type/expense Advertising 72180 :allowance/allowed :allowance/allowed +17592232558517 :account-type/expense Advertising 1 72181 :allowance/allowed :allowance/allowed +17592232558519 :account-type/expense Advertising 2 72182 :allowance/allowed :allowance/allowed +17592232558521 :account-type/expense Advertising 3 72183 :allowance/allowed :allowance/allowed +17592232558523 :account-type/expense Advertising 4 72184 :allowance/allowed :allowance/allowed +17592233052770 :account-type/expense Advertising 5 72185 :allowance/allowed :allowance/allowed +17592234201705 :account-type/expense Advertising 6 72186 :allowance/allowed :allowance/allowed +17592234201708 :account-type/expense Advertising 7 72187 :allowance/allowed :allowance/allowed +17592231963606 :account-type/expense Menus 72200 :allowance/allowed :allowance/allowed +17592231963797 :account-type/expense In Store Printing 72250 :allowance/allowed :allowance/allowed +17592231963785 :account-type/expense Food App Advertising 72350 :allowance/allowed :allowance/allowed +17592231963558 :account-type/expense Reservation System 72380 :allowance/allowed :allowance/allowed +17592231963792 :account-type/expense Flowers and Decorations 72400 :allowance/allowed :allowance/allowed +17592231963538 :account-type/expense Cable Television 72500 :allowance/allowed :allowance/allowed +17592231963555 :account-type/expense Music Licensing Fees 72600 :allowance/allowed :allowance/allowed +17592231963816 :account-type/expense Bands and DJ's 72650 :allowance/allowed :allowance/allowed +17592231963801 :account-type/expense Entertainment - Other 72680 :allowance/allowed :allowance/allowed +17592232547976 :account-type/expense Meal Comps 72700 :allowance/allowed :allowance/allowed +17592232558511 :account-type/expense Meal Comps 1 72701 :allowance/allowed :allowance/allowed +17592232558513 :account-type/expense Meal Comps 2 72702 :allowance/allowed :allowance/allowed +17592232547977 :account-type/expense Promotional or Donation Meal Comps 72710 :allowance/allowed :allowance/allowed +17592232558515 :account-type/expense Promotional or Donation Meal Comps 1 72711 :allowance/allowed :allowance/allowed +17592231963760 :account-type/expense Employee Related Expenses 73000 :allowance/allowed :allowance/allowed +17592231963549 :account-type/expense Auto and Truck Expenses 73100 :allowance/allowed :allowance/allowed +17592232559831 :account-type/expense Auto Exp 1 73101 :allowance/allowed :allowance/allowed +17592232559833 :account-type/expense Auto Exp 2 73102 :allowance/allowed :allowance/allowed +17592232559835 :account-type/expense Auto Exp 3 73103 :allowance/allowed :allowance/allowed +17592232559837 :account-type/expense Auto Exp 4 73104 :allowance/allowed :allowance/allowed +17592232559839 :account-type/expense Auto exp 5 73105 :allowance/allowed :allowance/allowed +17592231963607 :account-type/expense Freight and Fuel Charges 73150 :allowance/allowed :allowance/allowed +17592231963806 :account-type/expense Employee Mileage Reimbursements 73180 :allowance/allowed :allowance/allowed +17592232558590 :account-type/expense Employee Mileage Reimbursements 1 73181 :allowance/allowed :allowance/allowed +17592231963537 :account-type/expense Parking 73200 :allowance/allowed :allowance/allowed +17592231963748 :account-type/expense Uniforms 73300 :allowance/allowed :allowance/allowed +17592232558507 :account-type/expense Uniforms 1 73301 :allowance/allowed :allowance/allowed +17592232558509 :account-type/expense Uniforms 2 73302 :allowance/allowed :allowance/allowed +17592231963746 :account-type/expense Recruiting 73400 :allowance/allowed :allowance/allowed +17592231963522 :account-type/expense Employee Training 73500 :allowance/allowed :allowance/allowed +17592232558592 :account-type/expense Employee Training 1 73501 :allowance/allowed :allowance/allowed +17592231963598 :account-type/expense Workers Compensation Insurance - Fixed 73600 :allowance/allowed :allowance/allowed +17592231963550 :account-type/expense Company Picnics 73700 :allowance/allowed :allowance/allowed +17592232558525 :account-type/expense Company Picnics 1 73701 :allowance/allowed :allowance/allowed +17592232558527 :account-type/expense Company Picnics 2 73702 :allowance/allowed :allowance/allowed +17592232558529 :account-type/expense Company Picnics 3 73703 :allowance/allowed :allowance/allowed +17592232558531 :account-type/expense Company Picnics 4 73704 :allowance/allowed :allowance/allowed +17592232558533 :account-type/expense Company Picnics 5 73705 :allowance/allowed :allowance/allowed +17592234201711 :account-type/expense Company Picnics 6 73706 :allowance/allowed :allowance/allowed +17592231963814 :account-type/expense Employee Gifts 73800 :allowance/allowed :allowance/allowed +17592231963836 :account-type/expense Cleaning Supplies 74100 :allowance/allowed :allowance/allowed +17592232558543 :account-type/expense Cleaning Supplies 1 74101 :allowance/allowed :allowance/allowed +17592232558545 :account-type/expense Cleaning Supplies 2 74102 :allowance/allowed :allowance/allowed +17592231963742 :account-type/expense Contract Cleaning 74150 :allowance/allowed :allowance/allowed +17592231963733 :account-type/expense Kitchen Supplies 74200 :allowance/allowed :allowance/allowed +17592231963826 :account-type/expense Kitchen Utensils and Smallwares 74250 :allowance/allowed :allowance/allowed +17592231963520 :account-type/expense Short Term Equipment Rental 74300 :allowance/allowed :allowance/allowed +17592231963720 :account-type/expense Laundry and Drycleaning 74400 :allowance/allowed :allowance/allowed +17592232558555 :account-type/expense Laundry and Drycleaning 1 74401 :allowance/allowed :allowance/allowed +17592231963649 :account-type/expense Linens 74450 :allowance/allowed :allowance/allowed +17592231963682 :account-type/expense Repairs to Building 74500 :allowance/allowed :allowance/allowed +17592232558565 :account-type/expense Repairs to Building 1 74501 :allowance/allowed :allowance/allowed +17592232558567 :account-type/expense Repairs to Building 2 74502 :allowance/allowed :allowance/allowed +17592231963605 :account-type/expense Building Cleaning & Maintenance 74600 :allowance/allowed :allowance/allowed +17592231963651 :account-type/expense Pest Control 74610 :allowance/allowed :allowance/allowed +17592231963596 :account-type/expense Repairs to Equipment 74700 :allowance/allowed :allowance/allowed +17592232558569 :account-type/expense Repairs to Equipment 1 74701 :allowance/allowed :allowance/allowed +17592234201806 :account-type/expense Repairs to Equipment 2 74702 :allowance/allowed :allowance/allowed +17592232547978 :account-type/expense IT / Computer Repair 74710 :allowance/allowed :allowance/allowed +17592231963530 :account-type/expense Contract Labor 74800 :allowance/allowed :allowance/allowed +17592232547979 :account-type/expense Office Expenses 75050 :allowance/allowed :allowance/allowed +17592231963842 :account-type/expense Office Supplies 75100 :allowance/allowed :allowance/allowed +17592232558557 :account-type/expense Office Supplies 1 75101 :allowance/allowed :allowance/allowed +17592232558559 :account-type/expense Office Supplies 2 75102 :allowance/allowed :allowance/allowed +17592232558561 :account-type/expense Office Supplies 3 75103 :allowance/allowed :allowance/allowed +17592231963695 :account-type/expense Office Snacks 75150 :allowance/allowed :allowance/allowed +17592231963590 :account-type/expense Printing - Internal 75200 :allowance/allowed :allowance/allowed +17592231963597 :account-type/expense Restaurant Software Fees 75300 :allowance/allowed :allowance/allowed +17592232558571 :account-type/expense Restaurant Software Fees 1 75301 :allowance/allowed :allowance/allowed +17592232558573 :account-type/expense Restaurant Software Fees 2 75302 :allowance/allowed :allowance/allowed +17592232558575 :account-type/expense Restaurant Software Fees 3 75303 :allowance/allowed :allowance/allowed +17592232558577 :account-type/expense Restaurant Software Fees 4 75304 :allowance/allowed :allowance/allowed +17592232558579 :account-type/expense Restaurant Software Fees 5 75305 :allowance/allowed :allowance/allowed +17592234201810 :account-type/expense Restaurant Software Fees 6 75306 :allowance/allowed :allowance/allowed +17592234201813 :account-type/expense Restaurant Software Fees 7 75307 :allowance/allowed :allowance/allowed +17592234201817 :account-type/expense Restaurant Software Fees 8 75308 :allowance/allowed :allowance/allowed +17592231963686 :account-type/expense Credit Card Processing 75400 :allowance/allowed :allowance/allowed +17592234201803 :account-type/expense Repairs to Building 3 75403 :allowance/allowed :allowance/allowed +17592232547980 :account-type/expense Cash Handling Losses 75450 :allowance/allowed :allowance/allowed +17592232558331 :account-type/expense Other Cash Shortfalls 1 75451 :allowance/allowed :allowance/allowed +17592232558334 :account-type/expense Credit Card Deposit Shortages 75460 :allowance/allowed :allowance/allowed +17592231963621 :account-type/expense Unassigned Expenses 75990 :allowance/allowed :allowance/allowed +17592231963671 :account-type/expense Professional Fees 81110 :allowance/allowed :allowance/allowed +17592231963838 :account-type/expense Legal Fees 81120 :allowance/allowed :allowance/allowed +17592231963535 :account-type/expense Accounting 81140 :allowance/allowed :allowance/allowed +17592231963726 :account-type/expense Consultants 81150 :allowance/allowed :allowance/allowed +17592234201948 :account-type/expense HR Services 81160 :allowance/allowed :allowance/allowed +17592234202048 :account-type/expense Payroll Processing Fees 81170 :allowance/admin-only :allowance/admin-only +17592231963688 :account-type/expense Membership Dues and Associations 81200 :allowance/allowed :allowance/allowed +17592235961111 :account-type/expense Regular Outside Contract Fee 81299 :allowance/allowed :allowance/allowed +17592231963779 :account-type/expense Franchise Fee 81300 :allowance/allowed :allowance/allowed +17592232555122 :account-type/expense Franchise Fee - % of Sales 81310 :allowance/admin-only :allowance/admin-only +17592232555125 :account-type/expense Franchise Fee - National Marketing Fee 81320 :allowance/admin-only :allowance/admin-only +17592232555127 :account-type/expense Franchise Fee - Local Marketing Fee 81330 :allowance/admin-only :allowance/admin-only +17592232555129 :account-type/expense Franchise Fee - Web Hosting 81340 :allowance/admin-only :allowance/admin-only +17592232816807 :account-type/expense % of Sales Management Fee 81350 :allowance/admin-only :allowance/admin-only +17592232816720 :account-type/expense % of Sales Management Fee 1 81351 :allowance/admin-only :allowance/admin-only +17592232816692 :account-type/expense % of Sales Management Fee 2 81352 :allowance/admin-only :allowance/admin-only +17592232816702 :account-type/expense % of Sales Management Fee 3 81353 :allowance/admin-only :allowance/admin-only +17592232816744 :account-type/expense % of Sales Management Fee 4 81354 :allowance/admin-only :allowance/admin-only +17592232816742 :account-type/expense % of Sales Management Fee 5 81355 :allowance/admin-only :allowance/admin-only +17592232843271 :account-type/expense Franchise Fee - Reimbursements 81360 :allowance/admin-only :allowance/admin-only +17592231963710 :account-type/expense Rent 82100 :allowance/allowed :allowance/allowed +17592232559821 :account-type/expense Rent 1 82101 :allowance/allowed :allowance/allowed +17592232967009 :account-type/expense Rent Management Fee 82102 :allowance/allowed :allowance/allowed +17592231963817 :account-type/expense CAM 82200 :allowance/allowed :allowance/allowed +17592231963552 :account-type/expense Office Rent 82300 :allowance/allowed :allowance/allowed +17592231963613 :account-type/expense Office CAM 82350 :allowance/allowed :allowance/allowed +17592231963675 :account-type/expense Real Estate Taxes 82400 :allowance/allowed :allowance/allowed +17592231963754 :account-type/expense Office Repairs 82500 :allowance/allowed :allowance/allowed +17592231963712 :account-type/expense Office Maintenance 82600 :allowance/allowed :allowance/allowed +17592232556044 :account-type/expense Amazon Purchases 82700 :allowance/allowed :allowance/allowed +17592231963599 :account-type/expense Utilities 83000 :allowance/allowed :allowance/allowed +17592231963764 :account-type/expense Electric 83100 :allowance/allowed :allowance/allowed +17592232558563 :account-type/expense Electric 1 83101 :allowance/allowed :allowance/allowed +17592231963721 :account-type/expense Gas 83200 :allowance/allowed :allowance/allowed +17592234201714 :account-type/expense Propane 83250 :allowance/allowed :allowance/allowed +17592231963687 :account-type/expense Trash Removal 83300 :allowance/allowed :allowance/allowed +17592231963584 :account-type/expense Water and Sewage 83400 :allowance/allowed :allowance/allowed +17592231963565 :account-type/expense Internet 83500 :allowance/allowed :allowance/allowed +17592231963661 :account-type/expense Telephone 83600 :allowance/allowed :allowance/allowed +17592234201716 :account-type/expense Cell Phone 83650 :allowance/allowed :allowance/allowed +17592231963844 :account-type/expense Storage 83700 :allowance/allowed :allowance/allowed +17592232547981 :account-type/expense Security System/ Alarms 83800 :allowance/allowed :allowance/allowed +17592231963623 :account-type/expense Kitchen Equipment Rental 84100 :allowance/allowed :allowance/allowed +17592231963706 :account-type/expense POS System Equipment Rental 84200 :allowance/allowed :allowance/allowed +17592231963684 :account-type/expense Other Rental 84300 :allowance/allowed :allowance/allowed +17592231963556 :account-type/expense Liability Insurance 85100 :allowance/allowed :allowance/allowed +17592286721841 :account-type/expense Insurance 85105 :allowance/allowed :allowance/allowed +17592232547982 :account-type/expense Other Insurance 85200 :allowance/allowed :allowance/allowed +17592232556042 :account-type/expense Officer Life Insurane 85300 :allowance/allowed :allowance/allowed +17592231963813 :account-type/expense Business License 86100 :allowance/allowed :allowance/allowed +17592231963807 :account-type/expense Health Permit 86200 :allowance/allowed :allowance/allowed +17592231963713 :account-type/expense Personal Property Taxes 86300 :allowance/allowed :allowance/allowed +17592231963827 :account-type/expense Local Taxes 86400 :allowance/allowed :allowance/allowed +17592232547983 :account-type/expense Liquor License Fee 86500 :allowance/allowed :allowance/allowed +17592232556207 :account-type/expense Other Licenses 86600 :allowance/allowed :allowance/allowed +17592231963639 :account-type/expense Charitable Contributions 91100 :allowance/allowed :allowance/allowed +17592231963765 :account-type/expense Meals and Entertainment 91200 :allowance/allowed :allowance/allowed +17592232556021 :account-type/expense Meals & Entertainment 1 91201 :allowance/allowed :allowance/allowed +17592232556024 :account-type/expense Meals & Entertainment 2 91202 :allowance/allowed :allowance/allowed +17592232556027 :account-type/expense Meals & Entertainment 3 91203 :allowance/allowed :allowance/allowed +17592232556030 :account-type/expense Meals & Entertainment 91204 :allowance/allowed :allowance/allowed +17592232556033 :account-type/expense Meals & Entertainment 5 91205 :allowance/allowed :allowance/allowed +17592232556036 :account-type/expense Meals & Entertainment 6 91206 :allowance/allowed :allowance/allowed +17592232556039 :account-type/expense Meals & Entertainment 7 91207 :allowance/allowed :allowance/allowed +17592231963573 :account-type/expense Travel 91300 :allowance/allowed :allowance/allowed +17592232558581 :account-type/expense Travel 1 91301 :allowance/allowed :allowance/allowed +17592232558583 :account-type/expense Travel 2 91302 :allowance/allowed :allowance/allowed +17592232558585 :account-type/expense Travel 3 91303 :allowance/allowed :allowance/allowed +17592231963593 :account-type/expense Food Research 91400 :allowance/allowed :allowance/allowed +17592232547984 :account-type/expense Owners Payroll Above Replacement Cost 92000 :allowance/admin-only :allowance/admin-only +17592231963557 :account-type/expense Bank Fees 93100 :allowance/allowed :allowance/allowed +17592232558339 :account-type/expense Account Fraud 93110 :allowance/allowed :allowance/allowed +17592231963818 :account-type/expense NSF Fees 93200 :allowance/allowed :allowance/allowed +17592231963664 :account-type/expense Late Payment Fees 93300 :allowance/allowed :allowance/allowed +17592231963747 :account-type/expense Interest Expense 93400 :allowance/allowed :allowance/allowed +17592232558597 :account-type/expense Interest Expense 1 93401 :allowance/allowed :allowance/allowed +17592232558599 :account-type/expense Interest Expense 2 93402 :allowance/allowed :allowance/allowed +17592232572271 :account-type/expense Interest Expense 3 93403 :allowance/allowed :allowance/allowed +17592232572273 :account-type/expense Interest Expense 4 93404 :allowance/allowed :allowance/allowed +17592232572275 :account-type/expense Interest Expense 5 93405 :allowance/allowed :allowance/allowed +17592232572277 :account-type/expense Interest Expense 6 93406 :allowance/allowed :allowance/allowed +17592232572279 :account-type/expense Interest Expense 7 93407 :allowance/allowed :allowance/allowed +17592232572281 :account-type/expense Interest Expense 8 93408 :allowance/allowed :allowance/allowed +17592232572283 :account-type/expense Interest Expense 9 93409 :allowance/allowed :allowance/allowed +17592232560659 :account-type/expense Loan Origination Fee 93410 :allowance/allowed :allowance/allowed +17592232572286 :account-type/expense Interest Expense 10 93411 :allowance/allowed :allowance/allowed +17592232572288 :account-type/expense Interest Expense 12 93412 :allowance/allowed :allowance/allowed +17592232572290 :account-type/expense Interest Expense 13 93413 :allowance/allowed :allowance/allowed +17592231963566 :account-type/expense Late Payment Penalties 93500 :allowance/allowed :allowance/allowed +17592232547985 :account-type/expense Amortization 96000 :allowance/admin-only :allowance/admin-only +17592231963705 :account-type/expense Amortization of Lease 96100 :allowance/admin-only :allowance/admin-only +17592231963750 :account-type/expense Amortization of Goodwill 96200 :allowance/admin-only :allowance/admin-only +17592231963647 :account-type/expense Amortization of Start Up Costs 96300 :allowance/admin-only :allowance/admin-only +17592232547986 :account-type/expense Depreciation 96400 :allowance/admin-only :allowance/admin-only +17592231963636 :account-type/expense Depreciation on Building 96500 :allowance/admin-only :allowance/admin-only +17592231963845 :account-type/expense Depreciation on Furniture and Fixtures 96600 :allowance/admin-only :allowance/admin-only +17592232555174 :account-type/expense Depreciation on Leasehold Improvements 96700 :allowance/admin-only :allowance/admin-only +17592231963782 :account-type/expense Federal Taxes 97100 :allowance/allowed :allowance/allowed +17592231963790 :account-type/expense State Taxes 97200 :allowance/allowed :allowance/allowed +17592231963729 :account-type/expense LLC Fee 97250 :allowance/allowed :allowance/allowed +17592231963837 :account-type/expense Sales Tax Received Adjustments 98100 :allowance/admin-only :allowance/admin-only +17592232556046 :account-type/expense Sales Tax Expenses 98110 :allowance/admin-only :allowance/admin-only +17592231963587 :account-type/expense Judgments 98200 :allowance/allowed :allowance/allowed +17592231963787 :account-type/expense Misc Payments 98800 :allowance/allowed :allowance/allowed +17592285088976 :account-type/expense Tax UnSplits 99200 :allowance/admin-only :allowance/admin-only +17592278720338 :account-type/expense Tax Adj to Payroll 99700 :allowance/admin-only :allowance/admin-only +17592278720357 :account-type/expense Tax Adj to Payroll Tax 99800 :allowance/admin-only :allowance/admin-only") + + (doseq [account-update (->> (clojure.data.csv/read-csv + accounts-csv + :separator \tab + ) + (map (fn [[account-id _ _ _ invoice-allowance vendor-allowance]] + {:db/id (Long/parseLong account-id) + :account/invoice-allowance (keyword (subs invoice-allowance 1)) + :account/vendor-allowance (keyword (subs vendor-allowance 1))} + )) + (partition-all 100))] + @(da/transact auto-ap.datomic/conn (conj account-update {:db/id "datomic.tx" + :audit/user "Fixup account allowances"}))) + + (user/init-repl) + + + (def vendor-accounts-csv + "17592186045446 Auto-Chlor Cleaning Supplies 74100 +17592186045450 Acme Bread Bread and Bun Costs 51400 +17592186045454 Alfredo's Produce Produce Costs 51200 +17592186045462 Alsco Linens 74450 +17592186045478 Bigoli Fresh Pasta Food Cost 50000 +17592186045482 BiRite Food Cost 50000 +17592186045490 Chef's Choice Produce Co Food Cost 50000 +17592186045494 Chef's Warehouse Food Cost 50000 +17592186045502 Chrissa Imports Ltd Wine Cost 54400 +17592186045514 Classic Mix - Galloway Company Food Cost 50000 +17592186045518 Daylight Foods Food Cost 50000 +17592186045522 Del Monte Meat Co Proteins Cost 51100 +17592186045530 DVW Commercial Paperware Cost 55000 +17592186045538 Epic Wines & Spirits Wine Cost 54400 +17592186045546 Fresh and Best Produce Food Cost 50000 +17592186045554 Golden Gate Meat Company, Inc Proteins Cost 51100 +17592186045558 Half Moon Bay Brewing Co, Inc Beer Cost 54100 +17592186045586 JVS Wine Imports Wine Cost 54400 +17592186045594 DBI Beverage Beer Cost 54100 +17592186045598 BSG Craftbrewing Beer Cost 54100 +17592186045602 Classic Wines Wine Cost 54400 +17592186045610 Lettieri & Co Food Cost 50000 +17592186045638 Pacific Edge Wine & Spirits Wine Cost 54400 +17592186045650 Performance Food Group - LEDYARD Food Cost 50000 +17592186045670 Performance Food Group - ROMA Food Cost 50000 +17592186045682 Prudential Overall Supply Linens 74450 +17592186045690 Regal Wine Co Wine Cost 54400 +17592186045698 Royal Hawaiian Seafood Costs 51130 +17592186045702 S. Ramirez Distribution Food Cost 50000 +17592186045714 Southern Glazers Liquor Cost 54700 +17592186045718 Suprema Meat Company Food Cost 50000 +17592186045722 Sysco Food Cost 50000 +17592186045730 Testarossa Winery Wine Cost 54400 +17592186045734 The Alarm Company Security System/ Alarms 83800 +17592186045742 Treat Ice Cream Food Cost 50000 +17592186045746 United Hop Farm Beer Cost 54100 +17592186045750 US Foods Food Cost 50000 +17592186045770 Mama Lu's Invoices Food Cost 50000 +17592186045778 Wine Bridge Imports Wine Cost 54400 +17592186045782 Wine Warehouse Wine Cost 54400 +17592186045786 Wine Wise Wine Cost 54400 +17592186045794 Able Septic Tank Service Repairs to Equipment 74700 +17592186045798 Altamont Beer Works Beer Cost 54100 +17592186045802 American Beverage Equipment Kitchen Supplies 74200 +17592186045806 America's Best Coffee Roasting Co Coffee Costs 52200 +17592186045810 Anheiser Busch Beer Cost 54100 +17592186045814 Bay City Boiler & Engineering Repairs to Equipment 74700 +17592186045822 Bordenave's Bread and Bun Costs 51400 +17592186045830 ChemMark of Santa Clara County Inc Cleaning Supplies 74100 +17592186045834 De Anza Water Conditioning, Inc Water and Sewage 83400 +17592186045838 Donald M Hughes Bar Supplies - Consumable 71160 +17592186045842 Fort Point Beer Company Beer Cost 54100 +17592186045846 Good News Restaurant Supply Tableware 71400 +17592186045850 Grainger Kitchen Equipment 15410 +17592186045858 Hermitage Brewing Co Beer Cost 54100 +17592186045878 Liberty Mutual Insurance Liability Insurance 85100 +17592186045882 Marianne's Ice Cream Dairy Costs 51300 +17592186045902 PG&E Electric 83100 +17592186045906 Polaris Pest Elimination Pest Control 74610 +17592186045910 Primizie Foods Food Cost 50000 +17592186045926 Roto Rooter Plumbers Repairs to Building 74500 +17592186045930 San Jose Water Co Water and Sewage 83400 +17592186045942 White Labs Beer Cost 54100 +17592186045950 Amazon Office Supplies 75100 +17592186045962 Home Depot Repairs to Building 74500 +17592186045966 Republic Indemnity Liability Insurance 85100 +17592186045970 Hop Dogma Brewing Co Beer Cost 54100 +17592186045994 Campbell Chamber of Commerce Membership Dues and Associations 81200 +17592186045998 County of Santa Clara - Evironmental Health Health Permit 86200 +17592186046002 County of Santa Clara - Dept of Tax and Collections Personal Property Taxes 86300 +17592186046006 Dorman Electric Repairs to Building 74500 +17592186046010 Santa Clara County Fire Department Building Cleaning & Maintenance 74600 +17592186046014 P & R PAPER SUPPLY CO Paperware Cost 55000 +17592186046022 Franchise Tax Board State Taxes 97200 +17592186046026 Discretion Brewing Beer Cost 54100 +17592186046293 Umberto Pala - Bills Payable Accounts Payable 21000 +17592186046033 Mike & Tyson Building Cleaning & Maintenance 74600 +17592186046035 Dubrovnik Properties Rent 82100 +17592186046037 Villa Ragusa CAM 82200 +17592186046039 Marcelina Islas Moreno Building Cleaning & Maintenance 74600 +17592186046041 William Lawrence Marketing 72100 +17592186046042 Next Door Wine Wine Cost 54400 +17592186046044 Stone Brewing Company Beer Cost 54100 +17592186046046 SUEZ WTS SERVICE USA, INC. Building Cleaning & Maintenance 74600 +17592186046048 Siena Imports Wine Cost 54400 +17592186046052 Santa Cruz Mountain Brewing Beer Cost 54100 +17592186046054 Suncrest USA Inc Produce Costs 51200 +17592186046056 County of Santa Clara - Department of Environmental Health Health Permit 86200 +17592186046058 Groupon Advertising 72180 +17592186046059 SBY Equipment Services Repairs to Equipment 74700 +17592186046061 Carbonic Service Inc CO2 Costs 54300 +17592186046065 BMI Music Licensing Fees 72600 +17592186046069 Bank Direct Capital Finance / Community Insurance Liability Insurance 85100 +17592186046072 Umberto Pala Food Cost 50000 +17592186046073 Youngs Market Liquor Cost 54700 +17592186046077 SSC DTAC Personal Property Taxes 86300 +17592186046352 Monica Macer - Bills Payable Accounts Payable 21000 +17592186046080 Comaratin Cellars Wine Cost 54400 +17592186046082 Ascap Entertainment - Other 72680 +17592202379493 Spencer Ybarra Accounts Payable 21000 +17592186046087 Calistoga Moderna LLC Wine Cost 54400 +17592186046089 O K Fire Systems Repairs to Building 74500 +17592186046091 Bay Powerwash Building Cleaning & Maintenance 74600 +17592186046093 Harvest Small Business Finance Rent 82100 +17592186046094 Southbay Fresh Produce Produce Costs 51200 +17592186046095 Davila Plumbing Repairs to Building 74500 +17592186046096 Vantage Capital Partners, LP Rent 82100 +17592186046097 Enes Janitorial Service Building Cleaning & Maintenance 74600 +17592233990855 Brian Rhew Accounts Payable 21000 +17592186046101 Ray Restaurant Repair Repairs to Equipment 74700 +17592186046104 Three Flames Restaurants & Banquets Company Picnics 73700 +17592186046107 Kaley Melville Charitable Contributions 91100 +17592186046109 Harmony Press Menus 72200 +17592186046111 Mama Lu's Foods Food Cost 50000 +17592186046115 Johnny Reyna Marketing 72100 +17592186046116 Comartin Cellars Wine Cost 54400 +17592186046118 Imwalle Kiely, LLC Rent 82100 +17592186046120 MELISSA M RICARDEZ Flowers and Decorations 72400 +17592186046123 Tobacco Tax and Trade Bureau Local Taxes 86400 +17592186046125 Maximino Sanchez Building Cleaning & Maintenance 74600 +17592186046126 Meza, Armando 50050 Payroll Outstanding 25200 +17592186046127 Lopez, Jose 12612 Payroll Outstanding 25200 +17592186046128 Harvest Small Business Finance Rent 82100 +17592186046130 Harvest Small Business Finance Rent 82100 +17592186046132 Evergreen Marketplace Associates ll LLC Rent 82100 +17592186046134 Riverhill Associates Rent 82100 +17592186046136 Nik-O-Lok Co. Cleaning Supplies 74100 +17592186046138 Western Exterminator Co Building Cleaning & Maintenance 74600 +17592186046140 YCHHOPS Beer Cost 54100 +17592186046142 Amoretti Beer Cost 54100 +17592186046144 Labor Law Poster Service Membership Dues and Associations 81200 +17592186046145 Drew Roulette Marketing 72100 +17592186046146 Silicon Valley Creates Charitable Contributions 91100 +17592235875756 Heartland POS Exp SJ payback to CB Accounts Payable 21000 +17592186046150 City of Campbell Membership Dues and Associations 81200 +17592186046152 JIminy Stitch It Uniforms 73300 +17592186046155 Bay Powerwash Building Cleaning & Maintenance 74600 +17592186046157 Master Maintenance Repairs to Equipment 74700 +17592186046159 Terra Law LLP Legal Fees 81120 +17592186046161 City of San Jose - Parking Parking 73200 +17592186046163 Renee Lewis - Reimburstment Food Cost 50000 +17592186046164 Party Fiesta Flowers and Decorations 72400 +17592186046166 Paula Mcgraw Contract Cleaning 74150 +17592186046167 Molly Schuyler Marketing 72100 +17592186046168 Edward Chin Marketing 72100 +17592186046169 Justin Muhly Marketing 72100 +17592186046170 Daniel Martinez Marketing 72100 +17592186046171 Rey Resurreccion Marketing 72100 +17592186046172 Nico Crespo Marketing 72100 +17592186046173 Better Than Good Enough Marketing Consultant 72150 +17592186046174 Benito Alvarado Marketing 72100 +17592186046175 Willow Glen Bible Church (SBE) Kitchen Equipment Rental 84100 +17592186046176 White Labs Beer Cost 54100 +17592186046179 Wealth Recovery Solutions Legal Fees 81120 +17592186046182 DIRECTV Cable Television 72500 +17592186046184 Guadalupe Albarran Building Cleaning & Maintenance 74600 +17592186046185 Spencer Ybarra Bank Fees 93100 +17592186046186 The. Design Marketing 72100 +17592186046188 Rent Test Rent 82100 +17592186046189 The Mushroom and Cheese Co. Food Cost 50000 +17592186046191 South City Ciderworks Beer Cost 54100 +17592186046193 Restaurant Depot Food Cost 50000 +17592186046194 Sean Caldell Tips Payable 25500 +17592186046195 Mission Linen Supply Linens 74450 +17592186046199 Victoria Lewis Tips Payable 25500 +17592186046201 John Panetta Tips Payable 25500 +17592186046203 Sarah Pena Tips Payable 25500 +17592186046205 Michael Mantia Tips Payable 25500 +17592186046207 Andrea Lupina Tips Payable 25500 +17592186046209 Brittnay Ramirez Tips Payable 25500 +17592186046213 Alyssa Ramirez - Tips Tips Payable 25500 +17592186046215 John McGrew Tips Payable 25500 +17592186046216 Bassian Farms Inc Food Cost 50000 +17592186046220 Draft Pros Kitchen Supplies 74200 +17592186046224 All Appliance and Hvac Service, Inc Repairs to Equipment 74700 +17592232881673 PWL Management Fee Accounts Payable 4 21004 +17592232881734 PWL Staffing Contract Accounts Payable 4 21004 +17592186046229 Todd Rothbard Law Offices Legal Fees 81120 +17592186046231 Lomeli Electric Repairs to Building 74500 +17592186046235 Loeffler Chemical Corporation Beer Cost 54100 +17592186046237 Medius Marketing 72100 +17592186046240 Reed Smith LLP Legal Fees 81120 +17592186046243 Aantex Pest Control Pest Control 74610 +17592186046246 Kaiser Permanente Employee Medical Benefits 69920 +17592186046248 Authentic Wine Selections Wine Cost 54400 +17592186046255 Sun Garden-West Coast, LLC Food Cost 50000 +17592186046258 Pacific Harvest Food Cost 50000 +17592186046262 Neto Sausage Co.,Inc. Food Cost 50000 +17592186046266 Lightning Press Printing - Internal 75200 +17592186046269 Bellafresca Foods Food Cost 50000 +17592186046273 Bank of America - Wilmington Food Cost 50000 +17592186046275 Sadie Shaffer Tips Payable 25500 +17592186046278 Brittany Ramirez Tips Payable 25500 +17592186046281 Andrea Lupina Tips Payable 25500 +17592186046284 Alyssa Ramirez - Tips Tips Payable 25500 +17592186046287 Tiffany Tomakin D'Piro Tips Payable 25500 +17592186046289 Joel Ruiz Tips Payable 25500 +17592186046290 Alfonso Lopez Tips Payable 25500 +17592186046292 Melinna Hofmann Tips Payable 25500 +17592232881707 NSG Staffing Contract Accounts Payable 9 21009 +17592186046294 Miguel Ochoa Tips Payable 25500 +17592186046296 Gregorio Cornego Tips Payable 25500 +17592186046298 Alissa Buck Tips Payable 25500 +17592186046299 Eliano's Luna Food Cost 50000 +17592186046301 UCA General Insurance Liability Insurance 85100 +17592186046303 AT&T Telephone 83600 +17592186046305 City of Santa Clara- Benton Electric 83100 +17592186046307 Joanne Delozier Rent 82100 +17592186046308 Vitarelli FLP Rent 82100 +17592186046309 CEFCU Auto and Truck Expenses 73100 +17592186046313 Noe Orlando Vasquez Tips Payable 25500 +17592186046314 Heatwave Visual Marketing 72100 +17592186046316 Michael Mantia Tips Payable 25500 +17592186046317 Dolce Spazio Food Cost 50000 +17592186046318 City Of Santa Clara-Monroe Electric 83100 +17592186046320 Pacific Evergreen Rentals Kitchen Equipment Rental 84100 +17592186046322 Primo Espresso Co. Soft Beverage Cost 52000 +17592186046325 Krista Bordner Contract Cleaning 74150 +17592186046326 Alex Carpeneti Contract Cleaning 74150 +17592186046327 Rena Whitehead Contract Cleaning 74150 +17592186046328 Sandra Rodriguez Contract Cleaning 74150 +17592186046329 Chris Passalacqua Contract Cleaning 74150 +17592186046330 Paula McGraw Contract Cleaning 74150 +17592186046334 Samuel Orozco Rent 82100 +17592186046336 Pacific East Company Paperware Cost 55000 +17592186046340 Santa Clara Chamber of Commerce Health Permit 86200 +17592186046342 All Appliance and HVAC Service, Inc Building Cleaning & Maintenance 74600 +17592186046344 Gregorio Cornejo Tips Payable 25500 +17592186046345 H/M Danny Appliances Repairs to Equipment 74700 +17592186046348 Perfect Edge Cutlery Repairs to Equipment 74700 +17592266919572 Triquest Capital Accum Depr - Leasehold Improvements 15920 +17592186046353 Felice Orozco Kitchen Utensils and Smallwares 74250 +17592186139007 Matrix Pest Elimination Pest Control 74610 +17592186139257 Pioneer Liquid Transport Repairs to Equipment 74700 +17592186139936 Footnotes Fusion Charitable Contributions 91100 +17592186140389 Vortex Industries Repairs to Equipment 74700 +17592186140402 CASH Tips Payable 25500 +17592186171496 Downtown Campbell Business Association Membership Dues and Associations 81200 +17592186451124 Ryan Mayberry (SLO) Bar Supplies - Consumable 71160 +17592186451130 Superior Court (SLO) Menus 72200 +17592186852206 ANAGO FRANCHISING, INC Contract Cleaning 74150 +17592186852218 Bakemart Food Cost 50000 +17592267179838 Ortiz Painting Accum Depr - Leasehold Improvements 15920 +17592186852230 Beaucanon Wine Cost 54400 +17592186852242 Big Basin Cafe Coffee Costs 52200 +17592186852250 BLUE SHIELD OF CA Employee Medical Benefits 69920 +17592186852266 Central Storage Storage 83700 +17592268563550 BR Acoustical, Inc. Accum Depr - Leasehold Improvements 15920 +17592186852278 City of Saratoga Membership Dues and Associations 81200 +17592186852282 Clark Pest Control Building Cleaning & Maintenance 74600 +17592186852286 Classic Mix - Galloway Company Food Cost 50000 +17592189226801 F/L Tennant Station LLC Co#375 Building 15200 +17592186852294 COCA-COLA Soft Beverage Cost 52000 +17592186852306 COSTCO WHOLESALE Food Cost 50000 +17592186852310 Creative drinks inc. Repairs to Equipment 74700 +17592186852318 DANNY APPLIANCE Repairs to Equipment 74700 +17592186852326 DMV Auto and Truck Expenses 73100 +17592186852330 E M Fire Protection Building Cleaning & Maintenance 74600 +17592186852334 EDGAR MENDOZA Contract Labor 74800 +17592186852350 FIRESHIELD Repairs to Equipment 74700 +17592186852354 Friuli italian wine imports llc Wine Cost 54400 +17592186852370 Grim fire protection Repairs to Building 74500 +17592186852374 hacienda produce company Produce Costs 51200 +17592186852386 Heart String Music Bands and DJ's 72650 +17592186852390 Hugo Wainginger Entertainment - Other 72680 +17592186852398 Impact Paper & Ink LTD Office Supplies 75100 +17592186852402 IRS Federal Taxes 97100 +17592186852422 Jeff Hickey Repairs to Building 74500 +17592233004874 Amani Steyteyieh Building 15200 +17592186852430 JESSE SALECDA Food Cost 50000 +17592186852434 Kelex Security Security System/ Alarms 83800 +17592235121523 JB3D Building 15200 +17592186852442 Le Boulanger Bread and Bun Costs 51400 +17592186852458 Mahnaz Khazan Other Rental 84300 +17592186852462 MARGUARD PAINTING Building Cleaning & Maintenance 74600 +17592186852474 METRO PUBLISHING INC Marketing 72100 +17592186852482 Mike Windows Repairs to Equipment 74700 +17592186852498 Newport Fish Co. Seafood Costs 51130 +17592186852514 Open table Reservation System 72380 +17592186852522 PACIFIC HARVEST SEAFOOD - San Juan Seafood Costs 51130 +17592186852530 Pacific Seafood - Boston Seafood Costs 51130 +17592186852534 Paja Glen Rent 82100 +17592186852538 Palo Alto Foods Food Cost 50000 +17592186852550 Ridge vineyards Wine Cost 54400 +17592186852562 Rombauer Vineyards Wine Cost 54400 +17592186852566 ROYAL SATELITE Security Guards 71600 +17592186852590 SAFEGUARD BUSINESS SYS. Office Supplies 75100 +17592186852602 SCC Tax Collector Local Taxes 86400 +17592186852622 Skurnik Wines West, LLC Wine Cost 54400 +17592186852626 Smart plumbers&rooter Repairs to Building 74500 +17592186852642 SOUTHWEST TRADERS, INC. Food Cost 50000 +17592186852658 Supernova Spirits Inc. Liquor Cost 54700 +17592186852662 Surveillance Solutions Professional Fees 81110 +17592186852674 The Iceman Repairs to Equipment 74700 +17592186852682 Truong Gia LLC Rent 82100 +17592186852686 UNITED CONTRACT SERVICES Contract Cleaning 74150 +17592186852690 VALLEY IMAGES Uniforms 73300 +17592186852694 VERIZON WIRELESS Telephone 83600 +17592235908361 Economy Lumber Company Building 15200 +17592186852702 WEST VALLEY COLLECTION Trash Removal 83300 +17592186852706 West Valley Collection & Recycling, LLC Building Cleaning & Maintenance 74600 +17592187232462 Comcast Internet 83500 +17592187328516 La Rosa Tortilla Produce Costs 51200 +17592187432583 San Jose Sharks, LLC Advertising 72180 +17592187687119 DBI Beverage Beer Cost 54100 +17592235908373 Foundation Building Materials Building 15200 +17592187698543 Shield Fire & Safety Solutions Inc. Building Cleaning & Maintenance 74600 +17592187783195 Pioneer Liquid Transportation Building Cleaning & Maintenance 74600 +17592187812060 AliCats Winery Wine Cost 54400 +17592187880299 Farmers Insurance Liability Insurance 85100 +17592187880390 Pepsi Soft Beverage Cost 52000 +17592236021793 TILEDEPOT Building 15200 +17592187968729 Jose Hernandez Charitable Contributions 91100 +17592188088571 clyde zaya Other Rental 84300 +17592188088575 habeeb ahmed Other Rental 84300 +17592188154237 CDFA Business License 86100 +17592188172082 Outback Steakhouse Meals and Entertainment 91200 +17592188361983 Employment Development Department Local Taxes 86400 +17592188362112 North American Directory Services Marketing 72100 +17592188459254 Gelagio V LLC Rent 82100 +17592188547961 West Central Food Service Produce Costs 51200 +17592188590059 Enrique Gasca Payroll Outstanding 25200 +17592188628172 Alberto Diego Tips Payable 25500 +17592188689866 Jose Hernandez Payroll Outstanding 25200 +17592188707966 Miguel Angel Gonzales Payroll Outstanding 25200 +17592188891789 Recipes By Design, LLC Food Research 91400 +17592189103905 Polaris Pest Elimination Pest Control 74610 +17592189111874 Provident Credit Union Auto and Truck Expenses 73100 +17592189121324 Bay Area Design & Engineering Building Cleaning & Maintenance 74600 +17592189134428 Gerardo Gonzaga Payroll Outstanding 25200 +17592249863864 Santiago Garcia Building 15200 +17592189253674 The Hanover Insurance Group Liability Insurance 85100 +17592189336638 Iguanas Down Town Food Cost 50000 +17592189336640 Iguanas Evergreen Food Cost 50000 +17592189336642 Iguanas Santa Clara Food Cost 50000 +17592189336644 Iguanas Saratoga Food Cost 50000 +17592189336646 Iguanas Blossom Hill Food Cost 50000 +17592189447986 VAL-CHRIS INVESTMENTS, INC Auto and Truck Expenses 73100 +17592189447989 La Piedad Tortilla Factory Bread and Bun Costs 51400 +17592189462004 Esteson Co. Food Cost 50000 +17592189466514 Area Distributors Paper and Packaging 71500 +17592189466574 Golden Rule Produce, Inc. Food Cost 50000 +17592189466606 The Water Pros Cleaning Supplies 74100 +17592189466616 Aramark Linens 74450 +17592189466633 IPM SPECIALIST Pest Control 74610 +17592189532078 Taylor Freezers Repairs to Equipment 74700 +17592189552147 luis Gutiez Tips Payable 25500 +17592189556654 Cynthia Smits - Tips Tips Payable 25500 +17592189556658 Frank Ventura - Tips Tips Payable 25500 +17592189557376 Giulio Camporaso - Tips Tips Payable 25500 +17592189561150 Hilarion Tinoco Reyes - Tips Tips Payable 25500 +17592189561152 Jay Wise - Tips Tips Payable 25500 +17592189561154 Jennifer Dildine - Tips Tips Payable 25500 +17592189561156 Jerilyn Paris - Tips Tips Payable 25500 +17592189561158 Jose Reyes - Tips Tips Payable 25500 +17592189561162 Valentina Camporaso - Tips Tips Payable 25500 +17592189561172 Luis Miguel Valencia Payroll Outstanding 25200 +17592189701398 Abrahan Verdejo Tips Payable 25500 +17592189777571 Morgan Hill Chamber of commerce Marketing 72100 +17592189864583 The Harker School Charitable Contributions 91100 +17592189951296 West Mountain Sign, Inc Unassigned Expenses 75990 +17592189964612 Cluadio Guzman Building Cleaning & Maintenance 74600 +17592189987440 Alexia Wines Wine Cost 54400 +17592189992038 Darling Ingredients Inc Laundry and Drycleaning 74400 +17592190065269 California Department of Agriculture Business License 86100 +17592190065287 Danny's Appliances Building Cleaning & Maintenance 74600 +17592190065289 Dry Creek Shopping Center Rent 82100 +17592190065297 Slices Concession West Kitchen Equipment 15410 +17592190088655 Prestige Promotions Uniforms 73300 +17592190112070 Luis Gonzales Tips Payable 25500 +17592190116768 Katie O'Neil Tips Payable 25500 +17592190227310 Jesus Solis - Tips Tips Payable 25500 +17592190227328 Jesus Solis - Tips Tips Payable 25500 +17592190300338 SCC DTAC Personal Property Taxes 86300 +17592190390305 Jerren Heffelfinger Food Cost 50000 +17592190425982 Barraco Pasta Food Cost 50000 +17592190595515 Katie O'Neil Tips Payable 25500 +17592190595526 Abigael Kaufman Tips Payable 25500 +17592190604182 San Jose Kitchen Rental Kitchen Equipment Rental 84100 +17592190625657 Tim Duran Rent 82100 +17592190815286 Anthony's Glass and Mirrors Repairs to Building 74500 +17592190828769 Frontline Pest control Building Cleaning & Maintenance 74600 +17592190913259 Facchino LaBarbera Tennant Station LLC Rent 82100 +17592190938952 Unkeep Angels Janitorial Building Cleaning & Maintenance 74600 +17592190947594 Maria Velasques Building Cleaning & Maintenance 74600 +17592190947602 Maria Velasquez Building Cleaning & Maintenance 74600 +17592191032668 James Gringeri Bands and DJ's 72650 +17592191117136 Kaiser Permanente Employee Medical Benefits 69920 +17592191117139 Hayley Leonard Food Cost 50000 +17592191166991 Pedro Guzman Tips Payable 25500 +17592191171595 Jesus Moreno G Tips Payable 25500 +17592191219806 Pics Photo (SBE) Advertising 72180 +17592191428595 Terminix Building Cleaning & Maintenance 74600 +17592191450791 City Of Santa Clara Local Taxes 86400 +17592191450896 OK Fire Systems Repairs to Equipment 74700 +17592191873892 Angie Evans Tips Payable 25500 +17592191882523 Nicolas Adams Entertainment - Other 72680 +17592191882525 Nicolas Adams Entertainment - Other 72680 +17592250561824 California department of food and agriculure Building 15200 +17592255387524 Anibal Acosta Building 15200 +17592192034078 Flores Remodeling Office Repairs 82500 +17592192070577 CDTFA - Brewers Return State Taxes 97200 +17592192127250 Cash n carry Food Cost 50000 +17592192240750 Chanbers & Chambers Wine Cost 54400 +17592192317644 Espino's Window Cleaning Building Cleaning & Maintenance 74600 +17592192321847 Fifteen Dollar Sewer Service Water and Sewage 83400 +17592192330367 Charter Communications Internet 83500 +17592192427242 S.G.W.S. Wine Cost 54400 +17592192448480 Brewers Association Membership Dues and Associations 81200 +17592192508426 City Of San Jose Local Taxes 86400 +17592192508433 Terra Law LLP Legal Fees 81120 +17592192508439 Department Of Motor Vehicles Auto and Truck Expenses 73100 +17592193134452 Kappa Alpha Theta Marketing 72100 +17592193258122 Jovel Calderon Lopez Contract Labor 74800 +17592193479450 Bay Area Canvas, Inc. Repairs to Equipment 74700 +17592193732614 jeff buenz Music Licensing Fees 72600 +17592193745997 fernanda velasquez Employee Related Expenses 73000 +17592194216894 Rite Aid Food Cost 50000 +17592194221520 Miguel Mendoza Electric Repairs to Equipment 74700 +17592194238696 clyde zaya Coffee Costs 52200 +17592194341500 Joseph George Wine Cost 54400 +17592194416702 Smart Food Services Food Cost 50000 +17592194416704 Smart and Final Food Cost 50000 +17592194738390 AVS Graphics Marketing 72100 +17592194768745 Paula M McGraw II Contract Cleaning 74150 +17592194768749 Taylor Jackson Contract Cleaning 74150 +17592194768751 Jason Jones Contract Cleaning 74150 +17592194768753 Giovanna Battaglia Contract Cleaning 74150 +17592194768761 Eric Zetterquist Contract Cleaning 74150 +17592194822405 Melinna Hoffman Tips Payable 25500 +17592194822407 Mellina Hoffman Tips Payable 25500 +17592195124857 abs seafood Seafood Costs 51130 +17592195125023 HRS Santa Clara LLC Office Supplies 75100 +17592195174442 Maria Luna Tips Payable 25500 +17592195178981 claudio melega Music Licensing Fees 72600 +17592195227325 Ana Rivera Tips Payable 25500 +17592195550402 Sherwin Williams Repairs to Equipment 74700 +17592195684177 Santini Wines Wine Cost 54400 +17592195858618 California Department Of Public Health Health Permit 86200 +17592196064863 Ghost Town Brewing Beer Cost 54100 +17592196374830 Tasso Sferidis Employee Related Expenses 73000 +17592196393328 Mardonio Sotelo Building Cleaning & Maintenance 74600 +17592196397937 clyde zaya Wine Cost 54400 +17592196491221 Pro audio world Repairs to Equipment 74700 +17592196491230 Erin Granger Charitable Contributions 91100 +17592196611103 Bay Plumbing Building Cleaning & Maintenance 74600 +17592197002440 Famous Signs & Neons Repairs to Equipment 74700 +17592197015345 Rey Resurreccion Advertising 72180 +17592197024170 Eduardo Sanchez Building Cleaning & Maintenance 74600 +17592197032999 Southwest Traders Inc Food Cost 50000 +17592197087233 Iguanas Down Town Food Cost 50000 +17592197114280 clyde zaya Advertising 72180 +17592197114284 evegreen publishing co Advertising 72180 +17592197132829 Duckhorn Wine Co Wine Cost 54400 +17592197132842 Fresca Italia Food Cost 50000 +17592197151633 Emily Begines Charitable Contributions 91100 +17592197443716 Benjamin Crocker Repairs to Equipment 74700 +17592197714598 Silver Creek Sportsplex Company Picnics 73700 +17592197783124 Just B Dance (SBE) Produce Costs 51200 +17592197847586 Gregorio Cabrera Tips Payable 25500 +17592197887794 Franciscan Press In Store Printing 72250 +17592197888930 Clean Vent Contract Cleaning 74150 +17592197913309 clyde zaya Repairs to Building 74500 +17592197913319 Amir Khanzadeh Repairs to Building 74500 +17592198002383 Braulio Juarez Tips Payable 25500 +17592198002391 Ralph Cantu Tips Payable 25500 +17592198002399 Eduardo Cruz Tips Payable 25500 +17592198002407 Marcelino De Los Santos Tips Payable 25500 +17592198002415 Josue Duenas Tips Payable 25500 +17592198002423 Israel Garcia Tips Payable 25500 +17592198002431 Walter Garcia Tips Payable 25500 +17592198002439 Rafael Pacheco Tips Payable 25500 +17592198002447 Delayna Rosas Tips Payable 25500 +17592198004130 Ida Walid Abdul Bawab Tips Payable 25500 +17592198006653 Destiny Ayala Tips Payable 25500 +17592198006661 Gregorio Damian Tips Payable 25500 +17592198309506 Leonardo Magana Building Cleaning & Maintenance 74600 +17592198533067 vine cliff winery Wine Cost 54400 +17592198730072 Hill Family Estate Wine Cost 54400 +17592260352874 Linco Contractors LTD Building 15200 +17592199057295 San Jose Fire Department Building Cleaning & Maintenance 74600 +17592199066098 Star Neon Equipment 15400 +17592199271487 Jorge Camacho Office Supplies 75100 +17592199393385 Tony Muir Legal Fees 81120 +17592199393390 9921 Medford LLC Legal Fees 81120 +17592199393683 Live Oak High School Charitable Contributions 91100 +17592199548762 Salvador Cerrillo A/V Install Tech at Pro Audio World Repairs to Equipment 74700 +17592199856498 Kimberly Albertson Tips Payable 25500 +17592199896190 Diego Cavarrubia Repairs to Building 74500 +17592200033609 California Tax and Fee Administration Local Taxes 86400 +17592200048618 Comartin Cellars Wine Cost 54400 +17592200048632 Gold Electric II Repairs to Building 74500 +17592200165362 New Pipes Inc Repairs to Equipment 74700 +17592200165372 Security Safe Repairs to Equipment 74700 +17592200201617 em fire protection Building Cleaning & Maintenance 74600 +17592200281501 No Name Marketing 72100 +17592200315421 Danielle Luna Tips Payable 25500 +17592200315429 Daniella Luna Tips Payable 25500 +17592200315439 Hanna Yim Employee Training 73500 +17592200315451 Maria Luna Tips Payable 25500 +17592200433735 Monserat Diaz Leal Tips Payable 25500 +17592200594850 Dong Ventures, LLC Rent 82100 +17592200662804 Noemi Diaz - Cleaning Service Contract Cleaning 74150 +17592200710533 Pro Audio World Repairs to Equipment 74700 +17592200710536 J & G Trap Services Repairs to Equipment 74700 +17592200710539 The Beerwalk Advertising 72180 +17592200720110 Community Insurance Agency Liability Insurance 85100 +17592201013387 Maria Amaya Contract Labor 74800 +17592233113540 EDD[] CA Payroll Taxes Payable 22400 +17592201251352 State Bar of California Membership Dues and Associations 81200 +17592201342817 City of Santa Cruz Parking 73200 +17592201352433 The Ice Man Repairs to Equipment 74700 +17592201382163 Sergio Farfan Tips Payable 25500 +17592201578031 Jadyn Reloba Tips Payable 25500 +17592201841746 Pablo Perez Tips Payable 25500 +17592202031514 E. C. S. Office Maintenance 82600 +17592202235211 Carlos Flores Contract Cleaning 74150 +17592269107882 The Church Of The Holy Cross Catering Sales 43000 +17592203065193 Lyra Wines Wine Cost 54400 +17592203139628 SSS Fire protection Building Cleaning & Maintenance 74600 +17592203158677 clyde zaya Coffee Costs 52200 +17592203158681 keystone coffee company Coffee Costs 52200 +17592203177934 Tuttovino, LLC. Wine Cost 54400 +17592203530047 Roto Rooter Building Cleaning & Maintenance 74600 +17592203610268 Superior Metals Inc. Kitchen Equipment 15410 +17592203704452 SJSU Cheer Charitable Contributions 91100 +17592203704461 Notre Dame High School Charitable Contributions 91100 +17592203831183 maria fatima gonzalez Kitchen Supplies 74200 +17592203915639 Thomas Design Menus 72200 +17592204077523 cole waller Payroll Outstanding 25200 +17592204082214 Kimberly Campos Tips Payable 25500 +17592204358819 Alex Gonzalez Contract Cleaning 74150 +17592204385799 Fernando Munoz Payroll Outstanding 25200 +17592285167619 Cater2Me Sales Catering Sales 43000 +17592204594824 Reyes Coca Cola Bottling, LLC Soft Beverage Cost 52000 +17592204629665 mansfield dunne Wine Cost 54400 +17592204825186 Hillview In Store Printing 72250 +17592204853351 SC Properties NxtGen LLC Rent 82100 +17592204853359 Camino Aloha Business License 86100 +17592204853372 Victor Martin Silva Payroll Outstanding 25200 +17592204853374 Flavio Rondalli Payroll Outstanding 25200 +17592204853382 Victor Silva Payroll Outstanding 25200 +17592205364495 Mario Perez Repairs Office Repairs 82500 +17592205615109 CaptiveAire Repairs to Equipment 74700 +17592205633505 Fernanda Velazquez - Paycheck Reimburstment Payroll Outstanding 25200 +17592205819765 Andrew Mellows - Photographer Marketing Consultant 72150 +17592205879849 Taylor Henson Tips Payable 25500 +17592205933212 Mr Tint Office Repairs 82500 +17592205937674 Jacobo Gonzalas Tips Payable 25500 +17592205946557 The Hartford Liability Insurance 85100 +17592205964276 West Coast SanJan Office Supplies 75100 +17592205986549 Miguel Rodriguez Employee Training 73500 +17592206028328 Saladinos Food Cost 50000 +17592206028387 Delta Pacific Beverage Co Beer Cost 54100 +17592206060147 WebHost Agents Internet 83500 +17592206074129 Conrado Zet Employee Training 73500 +17592206097825 Osiel Pedroza Tips Payable 25500 +17592206160393 MCC Financial Accounting 81140 +17592206386754 Samantha Laney Tips Payable 25500 +17592206510980 Victor Rodriguez Employee Training 73500 +17592206827360 Rita Abdel-Malek Employee Training 73500 +17592206959363 clyde zaya Wine Cost 54400 +17592206959367 magito and co llc Wine Cost 54400 +17592207071417 S. G. W. S. Wine Cost 54400 +17592207148559 Isaiah Webster Payroll Outstanding 25200 +17592207148569 Jenna Green Charitable Contributions 91100 +17592207153150 Emmanuel Baptist Church Charitable Contributions 91100 +17592207185671 Ana Ixtacuy Employee Training 73500 +17592207185679 Esmeralda Yas Employee Training 73500 +17592207263863 All Temp Refrigeration, Inc Repairs to Equipment 74700 +17592207263873 Alicats Winery Wine Cost 54400 +17592207398587 SC Warriors LLC Advertising 72180 +17592207703150 Los Primos Carniceria Bank Fees 93100 +17592207931676 Irma Borrayo Employee Training 73500 +17592208224663 Santa Cruz County Parking Citation Parking 73200 +17592208254699 Jake diTargiani Employee Training 73500 +17592208263395 jonathan rivera Employee Training 73500 +17592208362268 Copy Copies Inc Advertising 72180 +17592208375621 JLS Design Advertising 72180 +17592208375623 City Custom Graphics Advertising 72180 +17592208569078 Door to Pour Beer Cost 54100 +17592208577941 Maria Eugenia Andrade Almeida Payroll Outstanding 25200 +17592208671087 Target Office Supplies 75100 +17592208688777 Logan Masterson Payroll Outstanding 25200 +17592208719970 Samuel Palacios Cordova Employee Training 73500 +17592209093810 Sonoma Springs Brewing Co. Beer Cost 54100 +17592209093825 Barebottle Brewing Co. Beer Cost 54100 +17592285167774 BeyondMenu.com Sales Catering Sales 43000 +17592285167958 ZEROCATER Sales Catering Sales 43000 +17592209192025 NCR - Aloha Restaurant Software Fees 75300 +17592209196714 Roberto Saavedra Rodriguez Payroll Outstanding 25200 +17592209238940 Esmeralda Yas Employee Training 73500 +17592209327911 Chriscom Equipment 15400 +17592209410049 TK SIGN Advertising 72180 +17592209563722 Miguel Rodriguez Payroll Outstanding 25200 +17592232572803 CCP Heartland Payment Systems CCP 12100 +17592209847311 Jose Garcia Air Conditioning Repairs to Equipment 74700 +17592210375095 Uyesugi Dental Employee Medical Benefits 69920 +17592210442508 Golden Brands San Jose Beer Cost 54100 +17592210664595 Steve Naumchik Legal Fees 81120 +17592232586747 CCP Bankcard CCP 12100 +17592211025575 Angie Martinez Building Cleaning & Maintenance 74600 +17592211417857 Carlos Lopez Employee Training 73500 +17592211431695 Juan Estrada Contract Cleaning 74150 +17592211431703 Jovon Buckhanan Contract Cleaning 74150 +17592211431711 Nate Bellamy Contract Cleaning 74150 +17592232586908 CCP Postmates CCP 12100 +17592211505733 Eldridge & Sons Plumbing Repairs to Equipment 74700 +17592211510186 California Office of Tourism Professional Fees 81110 +17592232586913 CCP Doordash CCP 12100 +17592211833764 City on a hill Press Advertising 72180 +17592211833770 Santa Cruz Chamber of Commerce Membership Dues and Associations 81200 +17592212169817 Matthew Byrne Employee Related Expenses 73000 +17592212312604 Julio Ortega Employee Training 73500 +17592212527805 Geyser Beverage Beer Cost 54100 +17592212576180 Blanca Gonzalez Tips Payable 25500 +17592212581045 Adan Vargas Building Cleaning & Maintenance 74600 +17592232586918 CCP Uber Eats CCP 12100 +17592213253505 Melis Yagmur Duman Employee Training 73500 +17592213330861 Melis Yagmur Duman Employee Training 73500 +17592213335668 Ezgi Sevici Employee Training 73500 +17592213563065 A&B Produce Food Cost 50000 +17592213577060 Juan Suruy Employee Training 73500 +17592213680778 Melanie Damaano Food Cost 50000 +17592213788165 Jerusalem Restaurant Kitchen Equipment 15410 +17592232637071 CCP BankCard CCP 12100 +17592214061023 Ramiro Diaz Contract Labor 74800 +17592214069378 Gerardo Julian Tips Payable 25500 +17592214360329 Ricardo Madera Building Cleaning & Maintenance 74600 +17592214452849 Smart Food Service Food Cost 50000 +17592232668746 CCP AmEx CCP 12100 +17592214671024 David Lugo Contract Labor 74800 +17592214671814 DNS Services Business License 86100 +17592214750544 Uline Office Supplies 75100 +17592232843885 CCP Square CCP 12100 +17592214863949 San Jose Police Officers' Association Charitable Foundation Charitable Contributions 91100 +17592215413109 German Rosas (reimbursement) Kitchen Equipment 15410 +17592215535970 JFC International Food Cost 50000 +17592215546045 Iguanas at Levi's Stadium Food Cost 50000 +17592215546061 Iguanas Headquarter Food Cost 50000 +17592215991253 Santa Cruz High School Advertising 72180 +17592216023756 Maria Amaya Building Cleaning & Maintenance 74600 +17592216114862 Alicia Hernandez Employee Training 73500 +17592217093619 Abby Kaufman Tips Payable 25500 +17592217409079 Elias Salvador Tips Payable 25500 +17592217444714 Cirillo Morales Tips Payable 25500 +17592217444716 Ignacio Morales Tips Payable 25500 +17592217444721 Cirillo Morales Tips Payable 25500 +17592217470415 Athenee Importers & Distributors Liquor Cost 54700 +17592217527111 Santa Cruz County Animal Shelter Foundation Advertising 72180 +17592217578711 ficticitious business name renewal center Business License 86100 +17592217638461 Big Sexy Brewing LLC Beer Cost 54100 +17592217671012 Joseph Gervacio Security Guards 71600 +17592217877576 Brenda Kramer-Goodwin Office Supplies 75100 +17592232929447 CCP GrubHub CCP 12100 +17592218182173 Kevin White Legal Fees 81120 +17592218251964 Maria Amaya Tips Payable 25500 +17592218660032 Employee Benifits Tips Payable 25500 +17592219078128 Cova Paint Services Repairs to Building 74500 +17592219117073 Oscar Figueroa Repairs to Equipment 74700 +17592219117081 KB Grease trap Repairs to Equipment 74700 +17592219121447 California Water Service Water and Sewage 83400 +17592219491830 Angel Duran Payroll Outstanding 25200 +17592219509209 Misael Pulido Repairs to Equipment 74700 +17592219535350 Melinna Hofmann Tips Payable 25500 +17592219907710 Thomas Martinez Repairs to Building 74500 +17592219956163 ivan Valenciano Contract Cleaning 74150 +17592220108029 Adam Sherman Contract Labor 74800 +17592220455410 Chris Lugo Building Cleaning & Maintenance 74600 +17592220841581 Contract Labor 74800 +17592220841598 Pacific Seafood Food Cost 50000 +17592220862246 Esteson Co. Food Cost 50000 +17592220862251 Fiorello's Food Cost 50000 +17592220862299 CAL - ESPRESSO Coffee Costs 52200 +17592220866441 Bay Alarm Building Cleaning & Maintenance 74600 +17592220942989 Police & Sheriff Charitable Contributions 91100 +17592220960221 Claire Crook Tips Payable 25500 +17592221029583 White Rose Legal Fees 81120 +17592221159428 The Chefs Warehouse Food Cost 50000 +17592221159478 WINEBOW Wine Cost 54400 +17592221176081 Claudio Paulino Building Cleaning & Maintenance 74600 +17592221249825 Mario Guzman Contract Labor 74800 +17592221703379 SP PLUS Parking 73200 +17592221703415 Mani Imports Food Cost 50000 +17592221703431 Baz Service Building Cleaning & Maintenance 74600 +17592221730826 Monte Bello Farm - Naschmarkt Food Cost 50000 +17592221801334 San Jose Drain and Main Repairs to Building 74500 +17592221809098 AmeriGas Gas 83200 +17592221810990 Danch and Granger Selection LLC Wine Cost 54400 +17592221820587 EJS Ventures Inc. Building Cleaning & Maintenance 74600 +17592222026373 Matagrano Liquor Cost 54700 +17592222148280 Domain Listings Advertising 72180 +17592222198107 Joel Calderon Tips Payable 25500 +17592222375302 Matthew Shapiro Tips Payable 25500 +17592222375307 Desiree Valenzuela Tips Payable 25500 +17592222375313 Manuel Hernandez Tips Payable 25500 +17592222375315 Jessica Perez Tips Payable 25500 +17592222375317 Maira Perez Tips Payable 25500 +17592222375319 Lilibeth Torres Tips Payable 25500 +17592222375321 Brian Knight Tips Payable 25500 +17592222375323 Jose Martinez Tips Payable 25500 +17592222375325 Julio Hernandez Tips Payable 25500 +17592222375327 Samuel Mayes Tips Payable 25500 +17592222375329 Carla Sacramento Tips Payable 25500 +17592222375331 Chad Matthieu Tips Payable 25500 +17592222375333 Alexa Azizi Tips Payable 25500 +17592222375335 Miles Joyner Tips Payable 25500 +17592222375337 Nathan Carpenter Tips Payable 25500 +17592222375339 Konstantine Petrakis Tips Payable 25500 +17592222380182 Tips Payable 25500 +17592222384919 Green Valley Enterprises Rent 82100 +17592222384950 The Latest Cleaning Building Cleaning & Maintenance 74600 +17592222389663 PIONEER LIQUID TRANSPORT, INC Building Cleaning & Maintenance 74600 +17592222389669 Mani Imports Wine Wine Cost 54400 +17592222389692 Bottomley Distributing Company, Inc Beer Cost 54100 +17592222490144 1-800 GOT JUNK Building Cleaning & Maintenance 74600 +17592222867084 Carlos Morales Food Cost 50000 +17592222867092 Maria Luisa Miranda Contract Cleaning 74150 +17592222867097 Rebeca Solis Contract Cleaning 74150 +17592222867108 Alejandro Medina Contract Labor 74800 +17592222901466 Alejandro Gallego Tips Payable 25500 +17592223211244 Farzam Farniam Tips Payable 25500 +17592223341144 Canfield's Cleaning Company Contract Cleaning 74150 +17592223453481 Daphne Weils Employee Training 73500 +17592223576170 Enrique Gasca Payroll Outstanding 25200 +17592223606729 Hanny Labastida Payroll Outstanding 25200 +17592223717473 Willow Market Payroll Outstanding 25200 +17592223836867 Mario Barahona Repairs to Equipment 74700 +17592223876693 Jose Prado Building Cleaning & Maintenance 74600 +17592223886467 gregory smith Repairs to Equipment 74700 +17592223948747 Sean's AV Service Equipment 15400 +17592224047607 Jeff Capozzi Tips Payable 25500 +17592224259749 SP Plus Corporation Parking 73200 +17592224288922 Sean Caldwell Tips Payable 25500 +17592224412486 kajj investments llc Rent 82100 +17592224527052 Original Pattern Brewing Co Beer Cost 54100 +17592224692132 Gregory Gioia Tips Payable 25500 +17592224692709 Alejandro Gallego Tips Payable 25500 +17592224692719 Fernando Barba Tips Payable 25500 +17592224882539 Herrera's carpet Cleaning Building Cleaning & Maintenance 74600 +17592224882576 Frank Lin Alcohol Cost 54000 +17592224882656 antonia karmanos Food Cost 50000 +17592224882664 Cuba Window Tint Repairs to Building 74500 +17592224991555 Charles Baker Greene Legal Fees 81120 +17592225044005 Fernando Barba Tips Payable 25500 +17592225044013 Jose Luis Bernal Tips Payable 25500 +17592225106704 Blank Voided Check Bank Fees 93100 +17592225131542 Cathedral of Faith Charitable Contributions 91100 +17592225223362 aloha Printing - Internal 75200 +17592225244813 Triple Voodoo Beer Cost 54100 +17592225244823 S RAMIREZ DISTRIBUTOR Produce Costs 51200 +17592225261020 Alpha Acid Brewing Co LLC Beer Cost 54100 +17592225347938 Cindy Chang C.P.A. Accounting 81140 +17592225369847 Security Guards 71600 +17592225476508 Alternis IT Contract Labor 74800 +17592225525887 Gregory Gioia Tips Payable 25500 +17592225869517 Dong Vinh Kitchen Supplies 74200 +17592225933640 Upholstery RB Equipment 15400 +17592225958708 Joseph George Wine Cost 54400 +17592225963721 Luis Almicar Say Payroll Outstanding 25200 +17592226057372 FRANK-LIN Distillers Products Ltd Liquor Cost 54700 +17592226072078 Frank Arezo Building Cleaning & Maintenance 74600 +17592226086819 Gloria Perez Building Cleaning & Maintenance 74600 +17592226190049 conure inc Marketing 72100 +17592226194997 Justin Costa Repairs to Equipment 74700 +17592226224649 Cirilo Morales Tips Payable 25500 +17592226224657 Humberto Ramirez Contract Labor 74800 +17592226294314 Crown Plumbing Repairs to Building 74500 +17592226294335 CLERK RECORDER Business License 86100 +17592226433471 Anibal Mateo Employee Training 73500 +17592226529279 Neslihan Erbasi Tips Payable 25500 +17592226529284 Ersin Altun Tips Payable 25500 +17592226529313 Aytac Isik Tips Payable 25500 +17592226538908 black Diamond constructions Building Cleaning & Maintenance 74600 +17592226669706 Baz Service Repairs to Equipment 74700 +17592226669738 CSC CAM 82200 +17592233083463 CCP Caviar CCP 12100 +17592226774338 Loren Toews LLC Rent 82100 +17592226774347 Angel Rivera Tips Payable 25500 +17592226898388 Akit Kara Building Cleaning & Maintenance 74600 +17592226898396 Mindego Ridge Vineyard Wine Cost 54400 +17592226903354 S.C.C. Dep. Envir. Health Health Permit 86200 +17592226903362 City of San Jose Business Tax & Reg. Permit Local Taxes 86400 +17592226908312 Winebow Wine Cost 54400 +17592226913326 Boast Coffee Co. Food Cost 50000 +17592227940692 Greatland Corporation Restaurant Software Fees 75300 +17592233086440 CCP Citizens CCP 12100 +17592228391399 Todd Rothbard Legal Fees 81120 +17592230205154 valley Direct Food Cost 50000 +17592230471326 Fresca Janitorial Services Building Cleaning & Maintenance 74600 +17592232544969 Tristan Caldwell Tips Payable 25500 +17592232545846 Staples Office Supplies 75100 +17592232547380 C.P.S. Legal Fees 81120 +17592232547503 Department of Alcoholic Beverage Control Alcohol Cost 54000 +17592232556972 Los Cuates Market FOH Supplies - Consumable 71100 +17592232561244 Quality Plus Plumbing Repairs to Equipment 74700 +17592232561671 VALLEY IMAGES Uniforms 73300 +17592232561698 Safeway Food Cost 50000 +17592232562891 Ocean Queen Food Cost 50000 +17592232568674 Eliceo Espejel Plumbing Repairs to Equipment 74700 +17592233156052 CCP CASH CCP 12100 +17592232579717 City On A Hill Press Advertising 72180 +17592232580793 FreshPoint Produce Costs 51200 +17592232580802 Kiyoi Inc Food Cost 50000 +17592232580807 Liz Thomas Advertising 72180 +17592232580810 Martin Purefoods Corporation Food Cost 50000 +17592232580815 ONeill & Bergado Inc Accounting 81140 +17592232580844 The Silicon Valley Organization Membership Dues and Associations 81200 +17592232580853 Zee Medical Service Co. Office Expenses 75050 +17592232582086 Jarred Gallo Advertising 72180 +17592232583755 Jacks Refrigeration Repairs to Equipment 74700 +17592232583757 Jacks Repairs to Equipment 74700 +17592232583983 Bobs Cooling system Repairs to Building 74500 +17592232583985 Bob's Repairs to Equipment 74700 +17592232583987 Marco Cruz Air Conditioning Repairs to Equipment 74700 +17592234490831 CCP Rental Income CCP 12100 +17592234921737 CCP Cake CCP 12100 +17592236191150 CCP EAT SREET CCP 12100 +17592236981363 CCP Merchant SVCS CCP 12100 +17592232587624 Bernice Linstrom Rent 82100 +17592232587665 Bliss Vineyards Wine Cost 54400 +17592232587715 POS Solutions POS System Equipment Rental 84200 +17592232587731 Bay International Food Distribution Food Cost 50000 +17592232587760 Universal Steam Building Cleaning & Maintenance 74600 +17592232587769 Jas Fresh Flatbread Bread and Bun Costs 51400 +17592232587778 Payroll Check Payroll Outstanding 25200 +17592232588561 Tip Check Tips Payable 25500 +17592232588597 Los Gatos Soda Works Liquor Cost 54700 +17592232591035 Misc Meals and Entertainment Meals and Entertainment 91200 +17592232591058 Walmart Supercenter Food Cost 50000 +17592232591106 Whole Foods Food Cost 50000 +17592237032472 CCP Profit Boss CCP 12100 +17592232591127 Interest Expense Interest Expense 93400 +17592232596991 Apple | Itunes Music Licensing Fees 72600 +17592232598118 Starbucks Meals and Entertainment 91200 +17592232598218 ALI'S GOURMET Food Cost 50000 +17592232598266 Bank Fee Bank Fees 93100 +17592232598845 BARAKA HALAL MARKET Food Cost 50000 +17592232598887 BevMo! Beer Cost 54100 +17592237032569 CCP Forkable CCP 12100 +17592248560717 CCP Real TIme CCP 12100 +17592232599211 MOLLIE STONE'S MARKETS Food Cost 50000 +17592232599670 Parking Parking 73200 +17592232599782 Shell Oil Auto and Truck Expenses 73100 +17592232600774 SIGONA FARMERS MARKET Food Cost 50000 +17592232602371 THE GOOD STUFF DISTRIBUTON Produce Costs 51200 +17592232602473 Walgreens Office Expenses 75050 +17592232603005 Cheetah Food Cost 50000 +17592259700961 CCP Toast CCP 12100 +17592232603925 FedEx Office Expenses 75050 +17592232604025 Felipe's Market Food Cost 50000 +17592232604107 Goodwill Kitchen Supplies 74200 +17592232604199 Google Ads Advertising 72180 +17592232604252 HASSETT HARDWARE Repairs to Building 74500 +17592232604289 HAYWARD LUMBER Repairs to Building 74500 +17592232608408 Integreat Consulting Accounting 81140 +17592232615211 PIAZZA'S FINE FOODS Food Cost 50000 +17592232615441 Mukesh Ahuja Food Cost 50000 +17592232618022 7 Eleven Meals and Entertainment 91200 +17592232621199 ADT Security Security System/ Alarms 83800 +17592232621617 ALEXANDERS PATISSERIE Meals and Entertainment 91200 +17592232621699 Credit Card Processing Fee Credit Card Processing 75400 +17592232622247 Palo Alto Utilities Electric 83100 +17592232625270 CVS Office Expenses 75050 +17592232625373 DINOVA Advertising 72180 +17592232625401 El Camino Hospital Employee Medical Benefits 69920 +17592263908391 CCP Clover CCP 12100 +17592232626618 First Data Global Leasing POS System Equipment Rental 84200 +17592232626839 Keep Calling Telephone 83600 +17592232626866 KELLY PAPER CO Menus 72200 +17592232626883 Main Street Hub Advertising 72180 +17592232626960 Mercedes Auto and Truck Expenses 73100 +17592232627053 Misc Gas Auto and Truck Expenses 73100 +17592232627075 Palo Alto Medical Foundation Employee Medical Benefits 69920 +17592232629384 Public Storage Storage 83700 +17592232629531 Valero Auto and Truck Expenses 73100 +17592232631521 Amex Renewal Membership Dues and Associations 81200 +17592232631585 Rose Market Food Cost 50000 +17592232631708 SINGLE PLATFORM Advertising 72180 +17592232631755 Sprouts Food Cost 50000 +17592232631777 TAJ MAHAL Food Cost 50000 +17592232631805 Trader Joe's Food Cost 50000 +17592232631874 USPS Office Expenses 75050 +17592232632412 UnitedHCMedicare Employee Medical Benefits 69920 +17592263919402 CCP Stripe CCP 12100 +17592232637106 Cash Deposited Tips Payable 25500 +17592232637375 Cash Deposited Tips Payable 25500 +17592232637979 Worldwide Produce Produce Costs 51200 +17592232644557 Jarred Gallo - Manuel Payroll Check Payroll Outstanding 25200 +17592232647985 Hannah Pignataro Rent 82100 +17592232647988 Besson Family LTD Partnership Rent 82100 +17592232647993 KYW Properties LLC Rent 82100 +17592232648163 Anthem Blue Cross Employee Medical Benefits 69920 +17592232648982 Unassigned Unassigned Expenses 75990 +17592232648991 Quality Tea Company Coffee Costs 52200 +17592232649007 Devils Canyon Brewing Draft Beer Cost 54200 +17592232649016 Sequential Building Cleaning & Maintenance 74600 +17592232649025 TFFS Unassigned Expenses 75990 +17592232649082 Don Miner Contract Labor 74800 +17592232649119 Eric Altun Contract Labor 74800 +17592232649128 Ben Toma Contract Labor 74800 +17592232649433 Global Vinyard Imports Wine Cost 54400 +17592232649637 Zeitman Family Grocery Food Cost 50000 +17592232649659 WESTLAKE HARDWARE Building Cleaning & Maintenance 74600 +17592232649671 Uber Eats Meals Meals and Entertainment 91200 +17592232649722 TURKISH AIRLINES Travel 91300 +17592232649784 TOTAL WINE & MORE Wine Cost 54400 +17592232649801 TMOBILE Telephone 83600 +17592232649843 TAP PLASTICS Building Cleaning & Maintenance 74600 +17592232649875 T.J. Maxx Flowers and Decorations 72400 +17592232649897 SUMMERWINDS NURSERY Flowers and Decorations 72400 +17592232655351 SLING TV Cable Television 72500 +17592232664314 Pizza Antica Meals and Entertainment 91200 +17592232664326 PENINSULA STORAGE Storage 83700 +17592232664338 PAMF Palo Alto Medical Foundation Employee Medical Benefits 69920 +17592232664360 NOURISH CAFE Meals and Entertainment 91200 +17592232664382 OLLA COCINA Meals and Entertainment 91200 +17592232664394 NEBULA YAYIN PAZARLAMA VE REKLAMCILIK Food Cost 50000 +17592232664411 Krispy Kreme Meals and Entertainment 91200 +17592232664423 KQED Charitable Contributions 91100 +17592232664450 Joann Stores Fabrics Flowers and Decorations 72400 +17592232664494 Interest Payment Interest Expense 93400 +17592232665176 IN-N-OUT BURGER Meals and Entertainment 91200 +17592232665195 First Lock and Security Building Cleaning & Maintenance 74600 +17592232665207 Dunn-Edwards Paints Building Cleaning & Maintenance 74600 +17592232666218 DIDDAMS Flowers and Decorations 72400 +17592232666263 PATREON Advertising 72180 +17592232666411 BLOSSOM TRUE VALUE HARDWARE Building Cleaning & Maintenance 74600 +17592232666485 Instacart Food Cost 50000 +17592232666787 ALPINE INN Travel 91300 +17592232667704 CA AVENUE NORGE VILLAGE Laundry and Drycleaning 74400 +17592232667738 (CRS) COUNTY RESTAURANT SUPPLY Kitchen Supplies 74200 +17592232667923 WordPress.com Advertising 72180 +17592232667967 Role1 (Liv-e Group) Professional Fees 81110 +17592232668000 Ferrari Ottoboni Caputo & Wunderling LLP Legal Fees 81120 +17592232668724 Julio Martinez Kitchen Equipment Repairs Repairs to Equipment 74700 +17592271091419 CCP SC Heartland CCP 12100 +17592232681445 Helm of Sun Valley Office Expenses 75050 +17592232681546 Collin Dwyer Payroll Outstanding 25200 +17592232685593 Strike Brewing Beer Cost 54100 +17592232690262 Office Depot, Inc Office Expenses 75050 +17592232691478 Payroll Taxes Payroll Outstanding 25200 +17592232691493 8X8 Inc. Telephone 83600 +17592232691670 Netfirms Website/ Social Media 72110 +17592232692180 ADP Fee Professional Fees 81110 +17592271093058 CCP DT Heartland CCP 12100 +17592271094543 CCP EG Heartland CCP 12100 +17592232789917 Trivium Holdings LLC Interest Expense 93400 +17592232789920 Nance Danner Rocha Interest Expense 93400 +17592232789949 Randy 400K Interest Payment Interest Expense 93400 +17592232789952 Randy 150K Interest Payment Interest Expense 93400 +17592232789987 Gomez All Glass Repairs to Equipment 74700 +17592232793504 Andrew Palmyra Payroll Outstanding 25200 +17592232794328 General Produce Company Produce Costs 51200 +17592232794473 Guadalupe Rodriguez Building Cleaning & Maintenance 74600 +17592232809210 Orale Truck Payment Auto and Truck Expenses 73100 +17592232814603 Frost Cupcake Factory Food Cost 50000 +17592232814807 Universal Restaurant Service Repairs to Equipment 74700 +17592276280219 CCP EZCater CCP 12100 +17592232818076 Alvarado's Steam Services Building Cleaning & Maintenance 74600 +17592232818396 Branding Out Advertising 72180 +17592232818483 Trivium Corporate Solutions Accounting 81140 +17592282372414 CCP Boons CCP 12100 +17592204403932 alberto ortega Construction in Progress 15600 +17592232818738 DeAnza Water Conditioning Inc Water and Sewage 83400 +17592232818846 California Refrigeration Company Repairs to Equipment 74700 +17592232819139 Skillio Networks IT / Computer Repair 74710 +17592232819179 Quick Stop Food Cost 50000 +17592232819201 Facebook Advertising 72180 +17592232819452 787 Networks Entertainment - Other 72680 +17592232823409 Diamond Towel Linens 74450 +17592232823939 Skarbek Law Accounting 81140 +17592232840085 iKitchens Inc Water and Sewage 83400 +17592209099781 clyde zaya Construction in Progress 15600 +17592232859748 pardizi Seafood Costs 51130 +17592209102463 barbara dercole Construction in Progress 15600 +17592209740052 Waterwell Construction in Progress 15600 +17592214032956 City Glass Construction in Progress 15600 +17592232885956 DC Bevarage LLC Liquor Cost 54700 +17592232886693 The City of San Carlos Building Cleaning & Maintenance 74600 +17592232886711 Grocery Outlet Wine Cost 54400 +17592232887154 Payroll Direct Deposits Payroll Outstanding 25200 +17592232887653 Lowes Repairs to Building 74500 +17592232887997 Indeed Recruiting 73400 +17592232888114 Hot Schedules Restaurant Software Fees 75300 +17592232888218 Waste Connections Trash Removal 83300 +17592232892261 Best Buy Office Expenses 75050 +17592232892762 Bg Concepts Advertising 72180 +17592232909894 JES RESTAURANT Kitchen Equipment Rental 84100 +17592232909923 POS Supply Solutions POS System Equipment Rental 84200 +17592232909991 Vista Print Advertising 72180 +17592232910088 Easy Ice Food Cost 50000 +17592232910105 Orkin Pest Control 74610 +17592232910131 STEVENSONS RESTAURANT Kitchen Supplies 74200 +17592232928318 Vons Food Cost 50000 +17592232928360 Southern California Edison Electric 83100 +17592232928362 Southern California Gas Company Gas 83200 +17592232928385 Nick the Greek Fee Franchise Fee 81300 +17592232815246 Newark Fence Inc Construction in Progress 15600 +17592232930969 Next Level Electric Repairs to Building 74500 +17592232930998 Webstaurant Kitchen Supplies 74200 +17592232931902 Ventura County Environmental Health Health Permit 86200 +17592232931935 Durriano Fire Equipment Repairs to Equipment 74700 +17592232931990 Ventura Chamber of Commerce Membership Dues and Associations 81200 +17592232932151 Home Base Restaurant Software Fees 75300 +17592232932379 Craigslist Recruiting 73400 +17592232932563 MARBORG DISPOSAL Repairs to Equipment 74700 +17592232932590 Times Media Group Advertising 72180 +17592232933967 Rodeway Inns Travel 91300 +17592232933979 E J Harrison And Sons Trash Removal 83300 +17592232934120 AJAX Refrigeration Repairs to Equipment 74700 +17592232934129 Nuco2 CO2 Costs 54300 +17592232934403 SERIOUS IMAGE Advertising 72180 +17592232934420 Misc Contract Labor Contract Labor 74800 +17592232934554 Wayfair Flowers and Decorations 72400 +17592232934569 Spectrum Internet 83500 +17592232935266 Daniel Hoady Payroll Outstanding 25200 +17592232935291 Sydney Young Payroll Outstanding 25200 +17592232939284 Superior Metals Inc Repairs to Equipment 74700 +17592232939633 ET Fire Protection Repairs to Equipment 74700 +17592232939725 Josh Yu Tips Payable 25500 +17592232939743 Imelda Hernandez Tips Payable 25500 +17592232939761 Sabrina Puga Tips Payable 25500 +17592232939779 Youn Peng Chin Tips Payable 25500 +17592232939797 Rosanna Colella - Tips Tips Payable 25500 +17592232939815 Youn Peng Chin Tips Payable 25500 +17592232939833 Jorge Hernandez Tips Payable 25500 +17592232939887 Miguel Chocojay Tips Payable 25500 +17592232939905 Xu Han Tips Payable 25500 +17592232939939 Bay Area Rodent Construction Solutions Inc. Repairs to Equipment 74700 +17592232939959 Victoria Armenta Tips Payable 25500 +17592232940067 Jefry Bani Tips Payable 25500 +17592232940170 Jose Morales Tips Payable 25500 +17592232940188 Jose Perez Tips Payable 25500 +17592232940206 Eloy Jimenez Tips Payable 25500 +17592232940224 Mario Grant Tips Payable 25500 +17592232940242 Carsyn Henry Tips Payable 25500 +17592232940651 Craig Renteria Repairs to Building 74500 +17592232941721 ADP Workers Comp Pay-By-Pay Workers Compensation Insurance - Fixed 73600 +17592233015972 AR Construction Construction in Progress 15600 +17592232942011 Rosanna Colella - Payroll Payroll Outstanding 25200 +17592232942015 Mario Grant - Payroll Payroll Outstanding 25200 +17592234959729 Sun Design Center Construction in Progress 15600 +17592232942069 MICHAELS STORES Flowers and Decorations 72400 +17592232942331 PARTENDER.COM Restaurant Software Fees 75300 +17592232942638 The Olive Bar Meals and Entertainment 91200 +17592232942738 Tomas Ajtzoc-Morales -Payroll Payroll Outstanding 25200 +17592232942740 Heartland POS POS System Equipment Rental 84200 +17592232942820 GOTPRINT.COM Advertising 72180 +17592232942862 Korin Kitchen Equipment 15410 +17592232944005 Olga Deleon - Payroll Payroll Outstanding 25200 +17592232948679 Walter Toc -Payroll Payroll Outstanding 25200 +17592232954207 Carsyn Henry - Payroll Payroll Outstanding 25200 +17592232954468 Joshua Yu - Payroll Payroll Outstanding 25200 +17592232954512 Imelda Hernandez - Payroll Payroll Outstanding 25200 +17592232954792 Juan Paiz - Payroll Payroll Outstanding 25200 +17592232954810 Sabrina Puga - Payroll Payroll Outstanding 25200 +17592232954921 Eric Tsuchiya - Payroll Payroll Outstanding 25200 +17592232954939 Xavier E. Puentes - Payroll Payroll Outstanding 25200 +17592232954957 Hugo Martinez - Payroll Payroll Outstanding 25200 +17592232955081 Christiana Ajlouny Payroll Outstanding 25200 +17592232957612 Ricardo Madera Building Cleaning & Maintenance 74600 +17592232957630 Ariel Sanchez Payroll Outstanding 25200 +17592232993405 Adobe Restaurant Software Fees 75300 +17592233002885 Napa Development LLC Rent 82100 +17592233003137 City of Napa Trash Removal 83300 +17592233003296 A & D Automatic Gate and Access Repairs to Building 74500 +17592235027417 Terra Amico Corporation Construction in Progress 15600 +17592233015924 Starter Bakery Food Cost 50000 +17592233015927 Kael Foods Food Cost 50000 +17592233015930 TriMark R.W. Smith Kitchen Supplies 74200 +17592233015935 Roma Bakery Inc. Bread and Bun Costs 51400 +17592235235223 Good news wood salvation Construction in Progress 15600 +17592233017272 PHILZ COFFEE, INC Coffee Costs 52200 +17592233018971 Richard Dahlgren Building Cleaning & Maintenance 74600 +17592233019045 The Latest Cleaning Building Cleaning & Maintenance 74600 +17592233027104 Cool Guys Mechanical Inc Repairs to Building 74500 +17592233027219 AMB Designs Advertising 72180 +17592233027243 Aqui Cal Mex Meals and Entertainment 91200 +17592233027361 Big Lots Kitchen Supplies 74200 +17592233029221 Next Day Display Advertising 72180 +17592235324893 Taps Draft Construction in Progress 15600 +17592235804535 City Graphix Construction in Progress 15600 +17592233043681 Cool Guys Mechanical Inc. Repairs to Equipment 74700 +17592233044590 Golden Brands Richmond Beer Cost 54100 +17592233045647 Mia Caldwell Tips Payable 25500 +17592233065203 Cardenas Market Food Cost 50000 +17592233065205 Redwood City Grocery Food Cost 50000 +17592233065524 Lucky Grocery Food Cost 50000 +17592233072354 David Pagan Repairs to Equipment 1 74701 +17592233074032 C&L Produce Produce Costs 51200 +17592233074661 AF PRODUCE Produce Costs 51200 +17592233074681 AF PRODUCE Produce Costs 51200 +17592233077099 Julio Martinez Repairs to Equipment 74700 +17592233077447 Keven Puhl Uniforms 73300 +17592233077463 Buena Tile Repairs to Building 74500 +17592233078646 Robert Stager Repairs to Equipment 74700 +17592235825663 felipe chavez Construction in Progress 15600 +17592233086187 Daily Cash Out Sheet Food Cost 50000 +17592235907354 young lee Construction in Progress 15600 +17592233088220 PALO ALTO FINE WINE Wine Cost 54400 +17592233090246 Wireless Phone Service Telephone 83600 +17592233102167 Primitive O.N.E. Uniforms 73300 +17592236362110 MUSTAFA USTENCI Construction in Progress 15600 +17592236381840 Hatch's Foodservice Equipment Construction in Progress 15600 +17592233116804 Katom Restaurant Supply Kitchen Supplies 74200 +17592233117714 City of Napa Trash Removal 83300 +17592233123243 Harland and Clarke Office Supplies 75100 +17592233131599 Paycheck - Nadia Zawaideh Payroll Outstanding 25200 +17592233140101 Alex Guilliano Bonus Payroll Outstanding 25200 +17592233140103 Jessica Martin - Bonus Payroll Outstanding 25200 +17592233140105 Stephanie Nepacena - Bonus Payroll Outstanding 25200 +17592233140566 San Mateo Enviromental Health Health Permit 86200 +17592236603047 mustafa isikdag Construction in Progress 15600 +17592233147356 Hany Sabet Kitchen Supplies 74200 +17592233147445 Narrative Fermentations Beer Cost 54100 +17592233150039 Alfredo Andrade Payroll Outstanding 25200 +17592233150057 Robert Bautista Payroll Outstanding 25200 +17592233150083 Pedro Delgado Payroll Outstanding 25200 +17592233150119 Daniel Overcamp Payroll Outstanding 25200 +17592233150137 Keith Sanchez Payroll Outstanding 25200 +17592233150171 Raymond Rendon Payroll Outstanding 25200 +17592233150189 Brandon Tour Payroll Outstanding 25200 +17592233150207 Shanika Brown Payroll Outstanding 25200 +17592233150225 Jailene Palomo Payroll Outstanding 25200 +17592233153571 Block 5 Retail Partners Rent 82100 +17592233154955 Light Soda Soft Beverage Cost 52000 +17592233154967 Robertsville Square-Rent Rent 82100 +17592233155408 Void Payroll Outstanding 25200 +17592236831690 Abbey carpet Construction in Progress 15600 +17592233170602 Republic Services Trash Removal 83300 +17592233176063 Devon Snider-Smith - Payroll Payroll Outstanding 25200 +17592233176180 Arch TIC Trash Removal 83300 +17592233179810 Backyard Bayou Meals and Entertainment 91200 +17592233180109 POPEYES Meals and Entertainment 91200 +17592233180192 UNION SANITARY DISTRICT Water and Sewage 83400 +17592233180204 UNION CITY CITY HALL Business License 86100 +17592233180233 TOGOS Meals and Entertainment 91200 +17592233182286 Arco Auto and Truck Expenses 73100 +17592233182999 JOLLIBEE Meals and Entertainment 91200 +17592233183018 360TRAINING Employee Training 73500 +17592233183030 SERVSAFE Employee Training 73500 +17592233183090 76 Gasoline Auto and Truck Expenses 73100 +17592233187395 In and Out Burger Meals and Entertainment 91200 +17592233187740 Ikea Small Furniture 71700 +17592233187782 LegalZoom Legal Fees 81120 +17592233187814 SKECHERS Uniforms 73300 +17592233187865 TEKIFY INTERNET Internet 83500 +17592233187884 FRESH TECHNOLOGY Restaurant Software Fees 75300 +17592233187928 Yelp Advertising 72180 +17592233188561 Honda Auto and Truck Expenses 73100 +17592233189204 Paychex Professional Fees 81110 +17592233191072 RSI Restaurant Software Fees 75300 +17592233191274 QuickBooks Restaurant Software Fees 75300 +17592233191858 Toast POS POS System Equipment Rental 84200 +17592233191956 Buffer Publish Advertising 72180 +17592233191973 A-A LOCK & ALARM Inc. Building Cleaning & Maintenance 74600 +17592233192003 AMTRUST Liability Insurance 85100 +17592233193337 Badalamente Sausage Co. Food Cost 50000 +17592233193361 Terra Amico Small Furniture 71700 +17592233194683 DALE HARDWARE Building Cleaning & Maintenance 74600 +17592233194715 Heritage Bank Fee Bank Fees 93100 +17592233194815 Spotify Music Licensing Fees 72600 +17592233195740 State Farm Insurance Liability Insurance 85100 +17592233195937 FRESHLY SQUEEZED LLC Kitchen Equipment Rental 84100 +17592233195956 Pacific Gateway Rent 82100 +17592233195978 HealthNet HEALTH INS Employee Medical Benefits 69920 +17592233196040 24HOURTEKINC IT / Computer Repair 74710 +17592233196057 ALLSTATE Insurance Liability Insurance 85100 +17592233196256 Ford Auto Auto and Truck Expenses 73100 +17592233196269 Chevron Gas Auto and Truck Expenses 73100 +17592233200583 O'REILLY AUTO Auto and Truck Expenses 73100 +17592233200913 Microsoft Restaurant Software Fees 75300 +17592233201300 NetFlix Entertainment - Other 72680 +17592233202096 Nadir Okanovich Delivery Cost 57000 +17592238555438 nedzad balic Construction in Progress 15600 +17592239753933 8A Construction inc. Construction in Progress 15600 +17592233202699 Oralia's Glass Repairs to Building 74500 +17592233202980 Carbons Golden Malted Food Cost 50000 +17592239753935 Upholstery RB Construction in Progress 15600 +17592239753937 Javier Garcia Construction in Progress 15600 +17592233206811 Angela Barillas Unassigned Expenses 75990 +17592233207296 Valley Direct Produce Costs 51200 +17592233207835 Berni Ajanel Contract Labor 74800 +17592233208416 Elisabeth Jimenez Contract Labor 74800 +17592233208434 Fredi Castaneda Contract Labor 74800 +17592233208452 Janet Soto Contract Labor 74800 +17592233208470 Jose Raigoza Contract Labor 74800 +17592233208488 Juan Becerra Contract Labor 74800 +17592233208506 Wilder Corzo Moran Contract Labor 74800 +17592233213036 Hammad Refrigeration INC Repairs to Equipment 74700 +17592233219099 Credit Secure Professional Fees 81110 +17592233219111 DROPBOX Restaurant Software Fees 75300 +17592233219123 EVERNOTE Restaurant Software Fees 75300 +17592233219138 FASTRAK Auto and Truck Expenses 73100 +17592233219143 GODADDY.COM Website/ Social Media 72110 +17592233219442 GOOGLE GSUITE Restaurant Software Fees 75300 +17592233219489 IMPARK Parking 73200 +17592233219522 ROBERTSVILLE CORNER Food Cost 50000 +17592233219659 SOUTH BAY RECYCLING Trash Removal 83300 +17592233219725 CLEARME.COM Travel 91300 +17592233223166 Daniel Hoady Contract Labor 74800 +17592233223234 THE SOCIAL HOG Advertising 72180 +17592233223246 OVERTURE PROMOTIONS Advertising 72180 +17592233223275 BLUE SHIELD CALIFORNIA Employee Medical Benefits 69920 +17592233223330 The Becker Group Rent 82100 +17592233223350 UPS Store Office Expenses 75050 +17592233240211 Coast Paper & Supply inc FOH Supplies - Consumable 71100 +17592233255395 Nordvik Refrigeration Building Cleaning & Maintenance 74600 +17592233296665 Westbay Air Conditioning Furniture & Fixtures 15450 +17592233325283 TLC Contract Cleaning 74150 +17592233327545 Bryan Luu Repairs to Building 74500 +17592245573479 silva contractors inc Construction in Progress 15600 +17592233343783 Jesus Centeno Payroll Outstanding 25200 +17592233344008 William Bunch Payroll Outstanding 25200 +17592233349351 MEXCOR INTERNATIONAL Alcohol Cost 54000 +17592233349405 Martin Jensen III Payroll Outstanding 25200 +17592233350185 NTG Franchising LLC Franchise Fee 81300 +17592233352552 BAKLAVABUSAN Food Cost 50000 +17592233352760 Dyer Trianle LLC Rent 82100 +17592246425363 West Coast Signz Inc Construction in Progress 15600 +17592233354120 Mollie Stones Food Cost 50000 +17592233354242 Postmates Food Cost 50000 +17592233354429 Robert's Market Food Cost 50000 +17592233355959 DMV Auto and Truck Expenses 73100 +17592233356502 Ideal North America Wine Cost 54400 +17592233356726 Merry Edwards Winery Wine Cost 54400 +17592233356748 Husch Vineyards Wine Cost 54400 +17592247398841 J&N Quality Enterprises Construction in Progress 15600 +17592233392181 Daniel Gutierrez Employee Training 73500 +17592233397839 Restaurant Design Concepts Design 72130 +17592233397862 Raz Service Repairs to Equipment 74700 +17592233397934 City of Palo Alto Local Taxes 86400 +17592233398138 Carlos Varela Repairs to Equipment 74700 +17592233398153 Aberlerdo Vasquez Contract Labor 74800 +17592233398472 DIGITURK Entertainment - Other 72680 +17592233398504 Exxon Mobile Auto and Truck Expenses 73100 +17592233398877 KETOGENICDIET Food Cost 50000 +17592233399103 Ponte Direct Professional Fees 81110 +17592233399154 The Daily Post Advertising 72180 +17592233399322 THE GOOD STUFF DISTRIBUTORS Food Cost 50000 +17592233399349 BARBARAS FLORAL Flowers and Decorations 72400 +17592233402655 EVIARA Advertising 72180 +17592233402882 ROSE INTERNATIONAL Food Cost 50000 +17592233402899 RAW SMOKE Meals & Entertainment 1 91201 +17592233402921 PRIME DRY CLEANERS Laundry and Drycleaning 74400 +17592233415127 Donald M Hughes Liquor Cost 54700 +17592233419565 MC Plumbing & Drain Repairs to Building 74500 +17592233424876 Jorge Arcos Payroll Outstanding 25200 +17592233427757 Golden Brands Sacramento Beer Cost 54100 +17592233431314 The Irvine Company LLC Rent 82100 +17592233434512 Lily Hughes Contract Labor 74800 +17592233435158 Eloy Jimenez Payroll Outstanding 25200 +17592233438946 Farmer Bros Co. Coffee Costs 52200 +17592233439183 City of Sunnyvale Department of Finance, Accounts Receivable Service or Pass Through Costs 58000 +17592233440984 Jerry Ajlouny Payroll Outstanding 25200 +17592233455694 Brett Heffelfinger Misc Payments 98800 +17592233455927 Eva Jo Mullen Auto and Truck Expenses 73100 +17592233715710 ECS Repairs to Equipment 74700 +17592233757892 Sweet Sicily Food Cost 50000 +17592233911039 Francisco U Rodriguez Repairs to Equipment 74700 +17592233916742 Bogno Toscano Tuscan Dream Inc. Wine Cost 54400 +17592233916823 Sweet Siclily Foods Food Cost 50000 +17592233917027 Dollar Tree Kitchen Supplies 74200 +17592233924959 Victoria Armenta Payroll Outstanding 25200 +17592233925245 David Bani Payroll Outstanding 25200 +17592233925499 Jefry Bani Payroll Outstanding 25200 +17592233925501 Miguel Chocojay Payroll Outstanding 25200 +17592233925504 Olga Deleon Payroll Outstanding 25200 +17592233925525 Jesus Escobar Payroll Outstanding 25200 +17592233925527 Juan Fonseca Payroll Outstanding 25200 +17592233925529 Mario Luis Garcia Payroll Outstanding 25200 +17592233925874 Mario Grant Payroll Outstanding 25200 +17592233925876 Sara Leon Payroll Outstanding 25200 +17592233925941 Serena Lewis Payroll Outstanding 25200 +17592233925943 Alexandra Novoa Payroll Outstanding 25200 +17592233925945 Anthony Ponce De Leon Payroll Outstanding 25200 +17592233926125 Xavier Puentes Lomeli Payroll Outstanding 25200 +17592233926127 Matthew Tamanaha Payroll Outstanding 25200 +17592233926129 Jose Vega Payroll Outstanding 25200 +17592233926131 Joshua Yu Payroll Outstanding 25200 +17592233926133 Rachel Zelaya Payroll Outstanding 25200 +17592233947457 Juan Gomez Legal Fees 81120 +17592233952641 P&R Paper Kitchen Supplies 74200 +17592233969511 Jose Alfredo Lomeli Repairs to Equipment 74700 +17592233974453 Capital Insurance Group Liability Insurance 85100 +17592233978916 Laura Rossi Payroll Outstanding 25200 +17592233982325 Morgan Mateo Payroll Outstanding 25200 +17592233982803 ABOVE ALL ADVERTISINg Advertising 72180 +17592233982820 AMKO RESTAURANT Small Furniture 71700 +17592233982844 Classic Car Wash Auto and Truck Expenses 73100 +17592233983340 JIFFY LUBE Auto and Truck Expenses 73100 +17592233983431 Korin, Inc Kitchen Supplies 74200 +17592233983458 Lunardi's Food Cost 50000 +17592233984291 Orchard Valley Coffee Food Cost 50000 +17592233984342 QUIK STOP Auto and Truck Expenses 73100 +17592233984393 THE BUSINESS JOURNALS Advertising 72180 +17592233985218 KOHLS Kitchen Supplies 74200 +17592233985240 Chamber of Commerce Membership Dues and Associations 81200 +17592250618230 Formatop Construction in Progress 15600 +17592233997854 Costco Membership Food Cost 50000 +17592233998899 Experian Legal Fees 81120 +17592233999417 HAMMAD REFRIGERATION Repairs to Equipment 74700 +17592233999429 REPUBLIC SERVICES TRASH Trash Removal 83300 +17592234046803 FOODMAXX Food Cost 50000 +17592234046951 Business Insurance Liability Insurance 85100 +17592234047069 Yadira Flores Contract Labor 74800 +17592234047195 ALL APPLIANCE & HVAC Repairs to Equipment 74700 +17592234047214 BACK A YARD CARIB Meals and Entertainment 91200 +17592234047246 BJ'S RESTAURANTS Meals and Entertainment 91200 +17592234047284 ENTREPRENEUR INSIDER Professional Fees 81110 +17592234047301 HOLIDAY INN EXPRESS Travel 91300 +17592234047318 LAWDEPOT.COM Legal Fees 81120 +17592234047506 OUTDOOR SUPPLY Repairs to Building 74500 +17592234049451 Erick Velasquez Payroll Outstanding 25200 +17592234049469 Salvatore Graffagnino Repairs to Building 74500 +17592234066288 ABC Consulting Alcohol Cost 54000 +17592234066517 Valentine Hood Cleaning Contract Cleaning 74150 +17592234066535 Sunnyvale Department of public Safety Fire Prevention Security Guards 71600 +17592234066737 COUNTY OF SANTA CLARA Health Permit 86200 +17592234066756 Toast Fee Credit Card Processing 75400 +17592234072921 Peninsula Prime Reality Rent 82100 +17592234073083 Glenn Cunningham Leasehold Improvements 15300 +17592234090722 General Electric Services, Inc Repairs to Building 74500 +17592234096566 Commercial Property Maintenance Inc Repairs to Building 74500 +17592234106591 Luis Medina Sanchez Payroll Outstanding 25200 +17592234106699 Matthew Tamanaha Bank Fees 93100 +17592234107391 Coffeemax Service or Pass Through Costs 58000 +17592234121414 Nor-Cal Refrigeration Repairs to Equipment 74700 +17592234145188 California Restaurant Association Membership Dues and Associations 81200 +17592234145682 Randy Musterer - Reimbursement Repairs to Building 74500 +17592234146933 Kelly Slater Payroll Outstanding 25200 +17592250796142 Mat Reddick Construction in Progress 15600 +17592250881887 Le Network Solutions Construction in Progress 15600 +17592254446976 Grease Trap Cleaners & Oil Collectors Construction in Progress 15600 +17592234148446 Ji Son Misc Payments 98800 +17592234149367 Elizabeth Harden Misc Payments 98800 +17592234149377 Felicia Salazar Misc Payments 98800 +17592234149919 298 Castro Partners LLC Rent 82100 +17592234164553 Adriena Avila Tips Payable 25500 +17592234169756 Jose Rayas Building Cleaning & Maintenance 74600 +17592234170549 Jose Angel Rayas Jantes Building Cleaning & Maintenance 74600 +17592234178854 Cesar Flores Contract Labor 74800 +17592234183092 Braulio Acosta Employee Training 73500 +17592234183292 Elizabeth Gurevich Contract Labor 74800 +17592234193574 wine monger Wine Cost 54400 +17592234199119 Ahmet Bulut Tips Payable 25500 +17592234202639 Chef's Toys Kitchen Supplies 74200 +17592234202676 CIRCLE K Food Cost 50000 +17592234202733 ANGEL PLUMBERS Repairs to Building 74500 +17592234203907 KEN MAYS PLUMBING Repairs to Building 74500 +17592234213075 NEWPORT MEAT NORTHERN CA Food Cost 50000 +17592234214241 Sergio Sandoval Payroll Outstanding 25200 +17592234244963 Dionisio Sierra Payroll Outstanding 25200 +17592234284130 CRANE PEST CONTROL Pest Control 74610 +17592234284262 PRINT PLACE Advertising 72180 +17592234284333 HARBOR FREIGHT Repairs to Equipment 74700 +17592234294245 AF PRODUCE Food Cost 50000 +17592234296968 jvs wine imports Wine Cost 54400 +17592234297337 Jose Luis Machuca Repairs to Equipment 1 74701 +17592254765779 Bay Area Design Construction in Progress 15600 +17592234309573 Lopez Sosa Diego Employee Training 73500 +17592234309575 Babcor Packing Corp Paperware Cost 55000 +17592234309740 Kegworks Bar Mixes Cost 54790 +17592234310157 Opensimsim Restaurant Software Fees 75300 +17592234310174 Eplastics Repairs to Building 74500 +17592234317876 Schwarzkopf Henkel Food Cost 50000 +17592234317879 Beauty Solutions Food Cost 50000 +17592234318514 Pro-Sweep Building Cleaning & Maintenance 74600 +17592234322240 Coffee & More Utilities 83000 +17592234325839 Samuel Gutierez Employee Training 73500 +17592234339077 Brandon Ly Employee Gifts 73800 +17592234339867 Marc Menkemeller Website/ Social Media 72110 +17592234366865 American Spirits Exchange Liquor Cost 54700 +17592234370451 RALPHS Food Cost 50000 +17592234373026 Mayelin Moreno Payroll Outstanding 25200 +17592234375400 Perez fencing Contract Labor 74800 +17592234377974 Ed Blanco Repairs to Equipment 74700 +17592234377993 Garden Theatre Building Office Rent 82300 +17592234378336 U-haul Auto and Truck Expenses 73100 +17592234380229 APPLIANCES SERVICE Repairs to Equipment 74700 +17592234380281 HOTELS.COM Travel 91300 +17592234380298 INTERFACE SECURITY Security System/ Alarms 83800 +17592234384172 La Fontaine Meals and Entertainment 91200 +17592234384229 Kimona Construction Repairs to Building 74500 +17592234395636 Taurino Cordova Contract Labor 74800 +17592234395638 Eduardo Mach Contract Labor 74800 +17592234395640 Velat Filiz Contract Labor 74800 +17592234396255 Sophia Hawkes Contract Cleaning 74150 +17592234408075 Prianka Daud Payroll Outstanding 25200 +17592234409790 Guadalupe Cardenas Building Cleaning & Maintenance 74600 +17592234423930 R.P restaurant services Kitchen Supplies 74200 +17592234430309 Jhon Valencia Payroll Outstanding 25200 +17592234430970 VP HR Consultants 81150 +17592234431023 Denari Brown Consultants 81150 +17592234431046 Berliner Cohen LLP Legal Fees 81120 +17592234431846 EZ Catering Restaurant Software Fees 75300 +17592234443416 Thinura Kachchakaduge Payroll Outstanding 25200 +17592234458216 Jorge Pita Payroll Outstanding 25200 +17592234465506 Miguel Antonio Boch Lopez Contract Labor 74800 +17592234475532 Delozier Trust Rent 82100 +17592256560819 ENES ERBIL Construction in Progress 15600 +17592234486330 Raymond Vierra Repairs to Building 2 74502 +17592260304957 castillo builders Construction in Progress 15600 +17592234493192 Santos German Employee Training 73500 +17592234496348 Purple Onion Cafe Repairs to Equipment 1 74701 +17592234498098 Palermo Bakery Food Cost 50000 +17592234501978 Saurabh Dwivedi Entertainment - Other 72680 +17592234523304 Karla Loaiza Payroll Outstanding 25200 +17592234523315 Juan Padilla Payroll Outstanding 25200 +17592234523587 Isaac Vibanco Payroll Outstanding 25200 +17592234523801 Sogno Toscano Food Cost 50000 +17592234527778 test Repairs to Building 74500 +17592234527780 Breantwood Electrical Experts Repairs to Building 74500 +17592234527893 Contract Labor Contract Labor 74800 +17592234528888 Sean Francis Pamintuan Payroll Outstanding 25200 +17592234545111 Sarai Valtierra Payroll Outstanding 25200 +17592234545489 Matt Ober Repairs to Building 2 74502 +17592234545775 JB Zaarour Accounting 81140 +17592234550737 Downtown Sunnyvale Business Improvement District Late Payment Fees 93300 +17592234554852 Gerardo Rameriz Contract Cleaning 74150 +17592234557940 Alfonso Hernandez Payroll Outstanding 25200 +17592234559332 Juan Sazo Repairs to Building 74500 +17592234563462 Clean World Grease Trap SVS Building Cleaning & Maintenance 74600 +17592234565308 Kevin Lopez Contract Labor 74800 +17592234599031 Clarke Pest Control Pest Control 74610 +17592234602194 Jeff Gordon Repairs to Building 74500 +17592234603998 Kevin Vasquez Payroll Outstanding 25200 +17592267269407 RBC Upholstery Construction in Progress 15600 +17592234608724 Erim Artuna Contract Labor 74800 +17592234613167 Fortessa Tableware Solutions, LLC. Tableware 71400 +17592234615600 Martin Ranch Winery Wine Cost 54400 +17592234619351 Department of ABC Liquor License Fee 86500 +17592234621286 Melissa Bongolan Tips Payable 25500 +17592234621296 Luis Cuello Tips Payable 25500 +17592234621367 Jose Cuello Olmos Tips Payable 25500 +17592234621377 Jose Grijalva Tips Payable 25500 +17592234621387 Juan Lizaola Tips Payable 25500 +17592234621397 Bryant Lopez Tips Payable 25500 +17592234621407 Fatima Martinez Tips Payable 25500 +17592234621417 Liliana Martinez Tips Payable 25500 +17592234621427 Ramiro Monroy Tips Payable 25500 +17592234621429 Juan Diego Moreno Barragan Tips Payable 25500 +17592234621439 Jailene Palomo Tips Payable 25500 +17592234621581 Roman Parungao Tips Payable 25500 +17592234621591 Raymundo Ezequiel Mijandos Urtecho Tips Payable 25500 +17592234622569 Armando Meza Tips Payable 25500 +17592234622587 Ramiro Monroy Tips Payable 25500 +17592271838545 Buzz Bryan Construction in Progress 15600 +17592234636659 Irma Bravo Payroll Outstanding 25200 +17592234641677 SSW Construction Corp Repairs to Building 74500 +17592234643634 Alternative Baking Company, Inc Food Cost 50000 +17592234648802 Bella Anderson Enni Employee Training 73500 +17592234654633 Martinico and Sons,inc Repairs to Equipment 74700 +17592234655551 Bold Lock Tech Repairs to Building 74500 +17592272360175 Ivan Khrystov Construction in Progress 15600 +17592234662133 Napa Valley Steaming Building Cleaning & Maintenance 74600 +17592234669539 Matthew Tamanaha - Payroll Payroll Outstanding 25200 +17592234674790 Dylan Songkham Payroll Outstanding 25200 +17592234678260 Miguel Chox Employee Related Expenses 73000 +17592234678675 Alameda Count Clerk-Recorders Office Other Licenses 86600 +17592234687676 Carma llc Website/ Social Media 72110 +17592234700589 Hood Cleaning Building Cleaning & Maintenance 74600 +17592234704621 Cameron Nakashima Payroll Outstanding 25200 +17592234707207 Kamela AFifi Payroll Outstanding 25200 +17592234707262 Alejandro Garcia Payroll Outstanding 25200 +17592234707268 Sol Hernandez Payroll Outstanding 25200 +17592234707272 Hugo Rodrigez Payroll Outstanding 25200 +17592234707290 Jose Valentin Aguilar Payroll Outstanding 25200 +17592234707293 Lorena Vega Payroll Outstanding 25200 +17592234707418 Felix Perez Payroll Outstanding 25200 +17592234707452 Rodrigo Sanchez Payroll Outstanding 25200 +17592234714498 Oscar Ornelas Payroll Outstanding 25200 +17592234717258 Juan Fonseca Payroll Outstanding 25200 +17592234726094 Hugo Martinez Rosas Payroll Outstanding 25200 +17592234726113 Edgar Daniel Payroll Outstanding 25200 +17592234726217 Andrew Pileggi Payroll Outstanding 25200 +17592234726402 Stephanie Zitman Payroll Outstanding 25200 +17592234726705 Larissa Lester Payroll Outstanding 25200 +17592234726927 Guadalupe Acosta Payroll Outstanding 25200 +17592234727037 Tania Martinez Payroll Outstanding 25200 +17592234729884 Francisco Berdejo Payroll Outstanding 25200 +17592234731671 Juan Paiz Payroll Outstanding 25200 +17592234741116 Jesus Moreno Repairs to Building 74500 +17592234743135 California Pressure Washing Building Cleaning & Maintenance 74600 +17592234760365 Los Angeles Department of Water and Power Electric 83100 +17592234763516 Shina James Payroll Outstanding 25200 +17592234766253 Lorenzo Munoz Mateo Employee Training 73500 +17592272938562 euro marble and granite Construction in Progress 15600 +17592234768417 Emily Calderon Tips Payable 25500 +17592234768427 John Cisneros Tips Payable 25500 +17592234768445 Enrique Gasca Tips Payable 25500 +17592234768455 Brayant Lopez Tips Payable 25500 +17592234768623 Martin López Tips Payable 25500 +17592234768633 Luis Roberto Ramirez Tips Payable 25500 +17592234768643 Dorothy Wongsopawiro Tips Payable 25500 +17592234769451 Humberto Martinez Esquivel Payroll Outstanding 25200 +17592234772342 DoorDash Meal Meals and Entertainment 91200 +17592234778270 MIRACLE PLUMBING INC Repairs to Building 74500 +17592234778399 RAYNE PLUMBING & SEWER Repairs to Building 74500 +17592234779008 SOGNO TOSCANO Food Cost 50000 +17592234794407 American Assyrian Association of San Jose Rent 82100 +17592234800003 Employers Insurance Workers Compensation Insurance - Fixed 73600 +17592234801689 American Assyrian Association Rent 82100 +17592234820524 Fabian Hernandez Payroll Outstanding 25200 +17592234831861 Jorge Ruiz Contract Labor 74800 +17592234840778 Brent Duran Payroll Outstanding 25200 +17592234847218 Neetu Rana Professional Fees 81110 +17592234847698 Otter Restaurant Software Fees 75300 +17592234864688 The Old Fremont Corner Market LLC Rent 82100 +17592234864712 Jose Leal Leasehold Improvements 15300 +17592234866833 TLC Hood Cleaning Building Cleaning & Maintenance 74600 +17592234871497 Alysa Greenwood Website/ Social Media 72110 +17592234885612 Mario Gonzalez Leasehold Improvements 15300 +17592234911676 NTG Franchising LLC Franchise Fee 81300 +17592234912738 Angela Hernandez Payroll Outstanding 25200 +17592234912873 Yajaira Torres Espinoza Payroll Outstanding 25200 +17592234921700 Caringello Investments Rent 82100 +17592282232912 Decorativekrete Construction in Progress 15600 +17592234923675 Raul Garcia Contract Labor 74800 +17592234923709 Mario Hernandez Contract Labor 74800 +17592234923786 German Hernandez Contract Labor 74800 +17592234925911 Sergio U. Sandoval Contract Labor 74800 +17592234940638 Phil Sekhon Health Permit 86200 +17592234957412 Silicon Valley Central Chamber of Commerce Advertising 72180 +17592285847337 Carrera Backflow Specialists Construction in Progress 15600 +17592234960054 Irvin Garcia Kitchen Supplies 74200 +17592234964830 VNH Builders Repairs to Building 74500 +17592234968160 Funez Romero Kitchen Cleaning Building Cleaning & Maintenance 74600 +17592234977482 Joy Chen Payroll Outstanding 25200 +17592234993655 Markel Workers Compensation Insurance - Fixed 73600 +17592234993681 Glenn Cunninghamle Leasehold Improvements 15300 +17592235007588 Theodore Mendoza Advertising 72180 +17592235022260 Andres Ceballos Leasehold Improvements 15300 +17592286618304 Western Electric S LLC Construction in Progress 15600 +17592235028057 CDFA - Milk and Dairy Permit Health Permit 86200 +17592235028168 Ricardo Figueroa Payroll Outstanding 25200 +17592235028337 Kaplan HR HR Services 81160 +17592235034548 Nice Twice Doll Shop Water and Sewage 83400 +17592235035607 Castillo TMG Leasehold Improvements 15300 +17592286674464 Admir dugonjic Construction in Progress 15600 +17592235085540 Ray's Garage Doors Repairs to Building 74500 +17592235092446 Miguel Acosta Garcia Payroll Outstanding 25200 +17592235100350 Edison Fire Protection Building Cleaning & Maintenance 74600 +17592235114596 Jorge Romero Leasehold Improvements 15300 +17592235116030 Bullnose Tile Leasehold Improvements 15300 +17592235116836 German Gonzalez Leasehold Improvements 15300 +17592287429010 Rengel + CO Architects Construction in Progress 15600 +17592235121586 Paul Orozco Consultants 81150 +17592235122757 Juan Gerardo Martinez Contract Labor 74800 +17592235125305 Dan C Rogers Leasehold Improvements 15300 +17592235127516 Farwell Rashkis, LLP Legal Fees 81120 +17592235128461 Bagby Home School Promotional or Donation Meal Comps 72710 +17592235128665 Bonys Neon Signs Unassigned Expenses 75990 +17592235136987 WestBay Heating & Air Inc. Equipment 15400 +17592235154111 Jenny Jasso Website/ Social Media 72110 +17592232700319 Dino Contributions Contributions/ Capital Account - 1 33000 +17592235156937 Check Advantage Office Expenses 75050 +17592235213643 Tiernan Espinoza Payroll Outstanding 25200 +17592235213651 Silvia Agustin Payroll Outstanding 25200 +17592232700321 Dino Contributions Contributions/ Capital Account - 1 33000 +17592235245214 Roberto Guzman Contract Labor 74800 +17592235245697 Kelly-Moore Building Cleaning & Maintenance 74600 +17592235246654 Juan Andrade Contract Labor 74800 +17592235246664 Antonio Robledo Contract Labor 74800 +17592235246915 TIM YEWCHUK COACHING Professional Fees 81110 +17592235247846 Brianda Ortiz Payroll Outstanding 25200 +17592255858135 Arthur Gilbreath Contributions/ Capital Account - 1 33000 +17592235252263 R&R Refrigeration & Air Conditioning, Inc Repairs to Equipment 1 74701 +17592235255747 Zoee Petroutsas Payroll Outstanding 25200 +17592235256463 State of California ABC Liquor License Fee 86500 +17592235256534 Manuel Lara Start Up Costs 16300 +17592235256585 Vasilios Tentoglou Start Up Costs 16300 +17592235272896 Blue Marine Food Cost 50000 +17592235278413 Tricia Rodriguez Payroll Outstanding 25200 +17592235278415 Sharvell Austin Payroll Outstanding 25200 +17592235278417 Reyes Magana - Ocon Payroll Outstanding 25200 +17592235278421 Joy Hackett Payroll Outstanding 25200 +17592235278423 Jake Kirby Payroll Outstanding 25200 +17592235278457 Emily M Borjon Payroll Outstanding 25200 +17592235278569 Javier Salazar Payroll Outstanding 25200 +17592235295503 City of Burlingame Legal Fees 81120 +17592235295523 USPS Office Supplies 75100 +17592235307026 3D Properties Rent 82100 +17592235307074 Air Duct Health Solutions (ADHS) Building Cleaning & Maintenance 74600 +17592235307558 Exclusive Fresh Seafood Costs 51130 +17592235310879 Felix Oliveros Payroll Outstanding 25200 +17592235310938 City of Fremont Business License 86100 +17592235312537 Del Cielo Brewing Co. Alcohol Cost 54000 +17592235315381 Tony’s Fine Foods Beef/ Pork Costs 51110 +17592235315681 Julio B. Fernandez Payroll Outstanding 25200 +17592186852290 Clyde Zaya Contributions/ Capital Account - 2 33010 +17592235326722 Pablo Hua Payroll Outstanding 25200 +17592235326757 Scott Dill Payroll Outstanding 25200 +17592235329250 Thomas R. Anthony Leashold Improvements 22 15322 +17592235329258 Food Microbiological Laboratories, INC. Food Research 91400 +17592235330129 K&S Mechanical Inc Repairs to Equipment 74700 +17592235331790 BAY AREA RESTAURANT SERVICE Contract Cleaning 74150 +17592235332119 Bens Music Music Licensing Fees 72600 +17592235334334 Ignacio Garcia Kitchen Supplies 74200 +17592235337880 DOUBLE MANUAL TRANSACTION Unassigned Expenses 75990 +17592235340065 Alex Nia CPA Accounting 81140 +17592235342657 Tabitha Davin Payroll Outstanding 25200 +17592235343378 US Mechanical Furniture & Fixtures 15450 +17592235365598 Marco Guzman Payroll Outstanding 25200 +17592235367908 Elizabeth M. Orozco Payroll Outstanding 25200 +17592235383926 Roger Martinez Payroll Outstanding 25200 +17592235396685 Recology Trash Removal 83300 +17592235398722 Spectrum Telephone 83600 +17592235398727 Reliable Premium Workers Compensation Insurance - Fixed 73600 +17592235399211 kelex Security System/ Alarms 83800 +17592235413254 luis Ruiz Payroll Outstanding 25200 +17592235414094 Paja Investments LLC Rent 82100 +17592235421468 Jeric Gambon Marketing 72100 +17592235421519 Alexander Romanovsky Employee Training 73500 +17592235422588 VOID HR Services 81160 +17592235423177 Imelda Hernandez Payroll Outstanding 25200 +17592235423755 martin moreno Payroll Outstanding 25200 +17592235426338 Jorge Rivera Payroll Outstanding 25200 +17592235433839 Maelynn Le Marketing Consultant 72150 +17592235444340 Crimsun Kessler Payroll Outstanding 25200 +17592235449552 County Of Los Angeles Public Health Health Permit 86200 +17592235454713 Rosendo Sanchez Payroll Outstanding 25200 +17592235454715 Maria Lopez Payroll Outstanding 25200 +17592235456949 Plumb Tech Inc. Leasehold Improvements 15300 +17592235461922 Productionology Company Picnics 4 73704 +17592235463008 SARABJIT CLAIR Consultants 81150 +17592235464695 Carlos Solorzano Payroll Outstanding 25200 +17592235466348 Mike Hudsom DIstributors Meal Comps 72700 +17592235477025 Katrese White Payroll Outstanding 25200 +17592235477228 Spero Aronis Payroll Outstanding 25200 +17592235494494 Modesto Food Distributors Food Cost 50000 +17592235496107 Mixed Use Capital California Rent 82100 +17592235500002 FERMIN PEREZ Building Cleaning & Maintenance 74600 +17592235508107 Fredy Rivera Munoz Payroll Outstanding 25200 +17592235508109 Dimitri Arois Payroll Outstanding 25200 +17592235508127 Jordyn Walker Payroll Outstanding 25200 +17592235508373 Jovaany Gonzalez Payroll Outstanding 25200 +17592235511764 Vincente Bautista Tips Payable 25500 +17592235512083 Israel Gutierrez Employee Training 73500 +17592235528362 All Seas Seafood Costs 51130 +17592235557931 Victor Cruz Travel 91300 +17592235558033 Christopher Ondo Payroll Outstanding 25200 +17592235562057 Jorge Gomez Merchandise Cost 56000 +17592235571004 Juan Ake Building Cleaning & Maintenance 74600 +17592235572330 Pedro Plancarte Unassigned Expenses 75990 +17592235584839 City Of Ventura Local Taxes 86400 +17592235585135 Relay For Life Promotional or Donation Meal Comps 72710 +17592235606265 David Pagan Kitchen Equipment 15410 +17592235607504 Dorothy Wongsopawiro Payroll Outstanding 25200 +17592235607524 Martin Lopez Payroll Outstanding 25200 +17592235617016 Suburban Propane Cleaning Supplies 74100 +17592235630397 Madeline Fruin Food Cost 50000 +17592235631235 randal wayne Contract Labor 74800 +17592235634804 Casey Neale Unassigned Expenses 75990 +17592235642384 Payton Zacharisen Tips Payable 25500 +17592235642394 Ana Munoz Payroll Outstanding 25200 +17592235642404 Jose A Lopez Payroll Outstanding 25200 +17592235642853 Urban Properties Rent 82100 +17592235643098 Pacific Gateway Rent 82100 +17592235647936 Regency Centers Corporation. Attn: Property Manager Rent 82100 +17592235655355 TRELLO Restaurant Software Fees 75300 +17592235655762 Arc Document Solutions Office Expenses 75050 +17592235659721 Spiced Artisan Nuts Unassigned Expenses 75990 +17592235672123 Corfini Meats Meal Comps 72700 +17592235672397 City Of Campbell Business License 86100 +17592235672660 ABM Parking Parking 73200 +17592235672700 camille serrano Employee Training 73500 +17592235679076 Department of Food and Agriculture Health Permit 86200 +17592235680184 The Delozier Real Property Trust Rent 82100 +17592235681724 U Haul Kitchen Equipment 15410 +17592235689846 Jesus Francisco Gonzalez Payroll Outstanding 25200 +17592235690348 Amy Borgese Unassigned Expenses 75990 +17592235709262 San Carlos Restaurant Supply Kitchen Utensils and Smallwares 74250 +17592235711945 Carlos Chamale Payroll Outstanding 25200 +17592235717700 Celestino Mateos Marketing 72100 +17592235725446 Tom Huynh IT / Computer Repair 74710 +17592235747809 Pedro Paredes Payroll Outstanding 25200 +17592235777934 Team Building Check Deposit Tips Payable 25500 +17592235779566 Vanessa Vidal Payroll Outstanding 25200 +17592235779591 Vanessa Vidal Payroll Outstanding 25200 +17592235797083 Omar Hidrogo IT / Computer Repair 74710 +17592186852426 Jeff Mullen Contributions/ Capital Account - 2 33010 +17592235811014 tile Repairs to Equipment 74700 +17592235811164 SMLLA Promotional or Donation Meal Comps 72710 +17592235814603 Kenneth Dennie Payroll Outstanding 25200 +17592235824196 Carlos R. Calixto Contract Labor 74800 +17592232818500 Patrick Johnson Contributions/ Capital Account - 2 33010 +17592235852823 Justin Cash Building Cleaning & Maintenance 74600 +17592235853936 Beatriz Juarez Martinez Payroll Outstanding 25200 +17592235856754 Wismettac Food Cost 50000 +17592235860299 Juan Adea Payroll Outstanding 25200 +17592232818609 Mike Oeschger Contributions/ Capital Account - 3 33020 +17592246743129 VOID Deposits 16100 +17592235879760 MEXCOR INTERNATIONAL Liquor Cost 54700 +17592235887052 Ray Restaurant Repair Kitchen Equipment 15410 +17592235895340 Restaurant Furniture Furniture & Fixtures 15450 +17592260510008 Adolfo Salazar Depreciation on Furniture and Fixtures 96600 +17592241094088 Stupakk Construction Depreciation on Leasehold Improvements 96700 +17592235901406 St. Justin's School Promotional or Donation Meal Comps 72710 +17592235902373 Melissa Ledon Employee Benefits - Variable 69900 +17592235902376 Ivian Clinton Payroll Outstanding 25200 +17592235902522 Zach Miranda Employee Benefits - Variable 69900 +17592251288386 California Department of Food and Agriculture Depreciation on Leasehold Improvements 96700 +17592242937542 Panagiota Tsigaris Distributed Earnings 35200 +17592242937544 Dimitra Tsigaris 1 Distributed Earnings 35200 +17592235909082 Taylor Hagerman Payroll Outstanding 25200 +17592235917721 Cuboh Restaurant Software Fees 75300 +17592235919454 Glorybel Orellana Lopez Tips Payable 25500 +17592235925482 CDFA - L 24002 Health Permit 86200 +17592235930934 Pedro Avina Payroll Outstanding 25200 +17592235940622 Manuel Dos Santos Employee Training 73500 +17592235953813 Mrs. Marilyn Bandara Professional Fees 81110 +17592235954457 Domain Registry Advertising 72180 +17592235954460 Samuel Orozco Office Supplies 75100 +17592235955880 Candace Bush Leasehold Improvements 15300 +17592235965564 Tim Carabello Repairs to Building 74500 +17592235970470 Eagle Project Management LLC Consultants 81150 +17592235977497 Jessica Aguilar Tips Payable 25500 +17592236006041 ARC Printing Services Printing - Internal 75200 +17592236016691 Eagle Project Management LLC Professional Fees 81110 +17592236018839 Carlos Alonso Nuñez Tips Payable 25500 +17592236018980 Michael Cabarloc Tips Payable 25500 +17592236018990 Estuardo Chitic Tips Payable 25500 +17592236019009 Anthony Delgado Tips Payable 25500 +17592236019043 Nery Martinez Tips Payable 25500 +17592236019284 Yesenia Nuñez Tips Payable 25500 +17592236019295 Luis Alberto Ramirez Tips Payable 25500 +17592236019614 Fabiola Ouonkap Tips Payable 25500 +17592236019649 Isabella Narayan Tips Payable 25500 +17592236020639 Farwell Rashkis, LLP Legal Fees 81120 +17592242937547 Dimitra Tsigaris 2 Distributed Earnings 35200 +17592236031253 Berliner Cohen LLC Legal Fees 81120 +17592236038162 Pablo Celedon Payroll Outstanding 25200 +17592236038165 Francisco Cuiriz Payroll Outstanding 25200 +17592236038167 Lia Mowery Payroll Outstanding 25200 +17592236038169 Bernardo Velasquez Payroll Outstanding 25200 +17592236038658 Payton Salvador Employee Benefits - Variable 69900 +17592236038660 Leslie Hernandez Employee Benefits - Variable 69900 +17592236038732 Ariannah Vasquez Employee Benefits - Variable 69900 +17592236039367 Jose A. Oropeza Payroll Outstanding 25200 +17592236051821 Andy Guadalupe E Chavez Payroll Outstanding 25200 +17592236053725 Bettcher Industries Inc Kitchen Supplies 74200 +17592236053915 Schwenk Lock and Safe Unassigned Expenses 75990 +17592236062617 Barry William Garner Payroll Outstanding 25200 +17592232599064 Dino Distributions Distributions / Capital Withdrawal - 1 34000 +17592236070805 Romualdo Monroy Travel 91300 +17592236085376 Juan P D Rodriguez Payroll Outstanding 25200 +17592236086721 Georgina Faoukaki Payroll Outstanding 25200 +17592236087251 Azucency Velasquez Payroll Outstanding 25200 +17592236100124 FiveStar Restaurant Services Service or Pass Through Costs 58000 +17592236100325 Frederiksen Charitable Contributions 91100 +17592233036528 Victor Zeidan Distributions / Capital Withdrawal - 1 34000 +17592236124448 California Department of Tax and Fee Administration Delivery Cost 2 57002 +17592236130906 Ehlers Estate Wine Cost 54400 +17592236131100 Blanky Barrios Payroll Outstanding 25200 +17592236137660 Joshua Rosello Payroll Outstanding 25200 +17592236146973 JJ Reyes Medrano Payroll Outstanding 25200 +17592236147311 Peter Patrikios Payroll Outstanding 25200 +17592236147460 Jose Montya Payroll Outstanding 25200 +17592236148603 Modern Line Furniture Furniture & Fixtures 15450 +17592236161627 Roberto Delgado Payroll Outstanding 25200 +17592236161942 Eric Gonzales Payroll Outstanding 25200 +17592236162002 Alexander Antonio Nabor Payroll Outstanding 25200 +17592233202208 Brayan Elie Jaivenslou Distributions / Capital Withdrawal - 1 34000 +17592236212286 Roberto Andrade Payroll Outstanding 25200 +17592236216075 Yulisa Contreras Payroll Outstanding 25200 +17592236223139 FIliberto Gonzalez Payroll Outstanding 25200 +17592236244447 Department of Enviromental Health - Alameda County Health Permit 86200 +17592236245166 Jose A Lopez Payroll Outstanding 25200 +17592236251031 Maria K Vargas Luna Payroll Outstanding 25200 +17592236260151 stay cold refrigeration Repairs to Equipment 74700 +17592236263147 Hansen Law Firm, P.C. Legal Fees 81120 +17592236263151 Newport Fish Co. Seafood Costs 51130 +17592236269417 Jorge Pita Payroll Outstanding 25200 +17592236272274 Leo Trijillo Advertising 72180 +17592236272787 Robert Egan Tips Payable 25500 +17592236272806 Juan Gutierrezz Tips Payable 25500 +17592236272871 Jose Ortega Tips Payable 25500 +17592236272926 Salvatore Marotto Tips Payable 25500 +17592236272944 Samuel Camargo Tips Payable 25500 +17592236273008 Francisco Camarena Tips Payable 25500 +17592236273885 HotSchedules Restaurant Software Fees 4 75304 +17592236286467 Linda lima Design 72130 +17592236287037 Sal Marotto Tips Payable 25500 +17592236287056 John Herndon Tips Payable 25500 +17592236288731 Mount Eden Vineyards Unassigned Expenses 75990 +17592236298327 Misael Martinez Tips Payable 25500 +17592236298584 Maria Campos Delivery Cost 57000 +17592236309345 Juan Gutierrez Tips Payable 25500 +17592236330955 Adriana Miranda Employee Benefits - Variable 69900 +17592236339079 Mackenzie J. Beebe Payroll Outstanding 25200 +17592236351161 Curtis Iwatsubo Payroll Outstanding 25200 +17592233203032 Nick Taptelis Distributions / Capital Withdrawal - 1 34000 +17592236363810 Esteban Vargas Building Cleaning & Maintenance 74600 +17592236365979 Anayely Ochoa Tips Payable 25500 +17592236366108 Antonio Ochoa Tips Payable 25500 +17592236366675 Christian Ochoa Tips Payable 25500 +17592236367632 Dimitris Anastasiou Tips Payable 25500 +17592236367664 Dylan Loftus Tips Payable 25500 +17592236367799 Evangelia Nimeri Tips Payable 25500 +17592236367817 Georgina Fakoukaki Tips Payable 25500 +17592236367835 Jorge Rodriguez Tips Payable 25500 +17592236367854 Ruben Rodriguez Tips Payable 25500 +17592236367872 Tatiana Fakoukaki Tips Payable 25500 +17592236371572 Marisela Palacio Payroll Outstanding 25200 +17592236372113 Alexa Tyler Payroll Outstanding 25200 +17592236377283 Performance Foodservice Food Cost 50000 +17592236379856 Irish Grub Beef/ Pork Costs 51110 +17592236380899 Alfonzo Pacheco Payroll Outstanding 25200 +17592235895973 Kaushik Patel Distributions / Capital Withdrawal - 1 34000 +17592236388161 Veronica Alexander Tips Payable 25500 +17592236389410 Office Furniture Small Furniture 71700 +17592236391083 Antonio Cabrera Payroll Outstanding 25200 +17592236402252 Amanda Trippler Tips Payable 25500 +17592236403480 Michael Castro Propane 83250 +17592236411553 Diego Munoz Payroll Outstanding 25200 +17592236416297 Rebeca Solis Building Cleaning & Maintenance 74600 +17592236423390 Almaden Business Center Rent 82100 +17592236423557 Jasmine Nguyen Payroll Outstanding 25200 +17592236436523 TAJ Auto Group Repairs to Building 74500 +17592236453662 Dulce Camarena Payroll Outstanding 25200 +17592236462458 Peet's Coffee Meals and Entertainment 91200 +17592236462492 La Plaza Market Food Cost 50000 +17592236462508 Steven's Creek Auto Auto and Truck Expenses 73100 +17592236462510 Ava's Downtown Market Food Cost 50000 +17592236462512 Joanie's Cafe Meals and Entertainment 91200 +17592236462689 Ace Hardware Repairs to Building 74500 +17592236462934 Cal Mart Supermarket Food Cost 50000 +17592236462936 King's Seafood Center Seafood Costs 51130 +17592236462939 Menlo Park Hardware Repairs to Building 74500 +17592236462941 County Restaurant Supply Kitchen Supplies 74200 +17592236462978 Les Schwab Auto and Truck Expenses 73100 +17592236463005 Tom's Depot Meals and Entertainment 91200 +17592236463007 Palo Alto Business Registration Local Taxes 86400 +17592236466690 Destino Orozco Payroll Outstanding 25200 +17592236467177 Yalcin Odabasi Payroll Outstanding 25200 +17592236067175 PWL Profits Distributions / Capital Withdrawal - 1 34000 +17592236467948 Carlos Rivera Payroll Outstanding 25200 +17592236479615 Toast POS System Equipment Rental 84200 +17592236484716 Giselle V Payroll Outstanding 25200 +17592236485165 Brett Coatsworth Repairs to Equipment 74700 +17592236506064 Gabriel Aquino Food Cost 50000 +17592236543839 Jessenia Castro Payroll Outstanding 25200 +17592236545547 David Xiqui Payroll Outstanding 25200 +17592236552695 San Francisco Specialty Food Inc. Beef/ Pork Costs 51110 +17592236560995 Sterling Marble And Granite Leasehold Improvements 15300 +17592236562739 Dionisio Sierra Manzanilla Payroll Outstanding 25200 +17592236563898 Jose Montoya Payroll Outstanding 25200 +17592236573413 Luciano Santoyo Istrada Payroll Outstanding 25200 +17592236573726 Manuel Ulloa Payroll Outstanding 25200 +17592236585373 Jhordy Chavez Puluc Contract Labor 74800 +17592236594402 Brian Vasquez Food Cost 50000 +17592236595144 Domingo Llanos Payroll Outstanding 25200 +17592236600224 15 Dollar Sewer and Drain Repairs to Equipment 74700 +17592236600382 Edgar Gonzales Payroll Outstanding 25200 +17592236720227 Randy Musterer Distributions / Capital Withdrawal - 1 34000 +17592236616824 Canine Companions for Independence Promotional or Donation Meal Comps 72710 +17592236618194 Josuph Sanchez Payroll Outstanding 25200 +17592236619913 Nor-Cal Fire Protection Inc. Repairs to Building 74500 +17592236630670 Potter Handy, LLP Legal Fees 81120 +17592236642755 CDFA 90102L State Taxes 97200 +17592236644349 Ooma Restaurant Software Fees 75300 +17592236644828 Michelle Mirander Accounting 81140 +17592236647610 Sirius XM Music Licensing Fees 72600 +17592236649844 Kaiser Foundation Health Plan Employee Medical Benefits 69920 +17592236682220 Edward J. Haslem Co. Liability Insurance 85100 +17592236682413 San Mateo County Environmental Health Health Permit 86200 +17592236687061 AD Image Signs & Advertising Advertising 72180 +17592236688344 Kelly Saenz Payroll Outstanding 25200 +17592236689400 Laura Giraldo Alvarez Payroll Outstanding 25200 +17592236703372 Jefferson Benavides Contract Labor 74800 +17592236704183 kevin richarson Tips Payable 25500 +17592236717333 Jessica Lewis Tips Payable 25500 +17592236719393 THERMOFIX Repairs to Equipment 74700 +17592241347375 Thinker Toys Distributions / Capital Withdrawal - 1 34000 +17592236728384 Palo Alto Fine Wine & Spirits Alcohol Cost 54000 +17592236730029 city of pleasanton Business License 86100 +17592236732312 Ryan Griffin Payroll Outstanding 25200 +17592236734656 Potter Handy, LLP Legal Fees 81120 +17592236745269 Reyes Morales Cruz Tips Payable 25500 +17592236758019 phs Building Cleaning & Maintenance 74600 +17592236758867 Nesibe Torun Contract Labor 74800 +17592236782005 best image furnishings Furniture & Fixtures 15450 +17592236782083 Angel Armijo Payroll Outstanding 25200 +17592236784956 Xochitl Gabriela Gonzales Gomez Payroll Outstanding 25200 +17592236790109 Luzmy Gomez Contract Labor 74800 +17592236793176 Isaela Melina Ruano Payroll Outstanding 25200 +17592236793707 Anibal Isaac Vargas Payroll Outstanding 25200 +17592236800951 Dylan Geng Contract Labor 74800 +17592236801659 Evdokia Tsigaris Office Expenses 75050 +17592236803730 Five Star Restaurant Services Repairs to Building 74500 +17592236808130 Jesus Morales Payroll Outstanding 25200 +17592236823422 MANNA FOOD Food Cost 50000 +17592241347448 TLC Grooming Distributions / Capital Withdrawal - 1 34000 +17592236838335 Bravo Rooter Repairs to Equipment 74700 +17592236864805 Best Buy Equipment 15400 +17592236867135 Danielle Hunein Payroll Outstanding 25200 +17592236876410 kaneshka design group Design 72130 +17592236890527 Laguna Youth Baseball Promotional or Donation Meal Comps 72710 +17592236898896 Paul Orozco Consultants 81150 +17592236899080 100 Productions Marketing Consultant 72150 +17592236899257 Rohan Dong Payroll Outstanding 25200 +17592236906206 Rohan Dong Payroll Outstanding 25200 +17592236928831 CASH Tips Payable 25500 +17592236971167 Stefany Hammer Payroll Outstanding 25200 +17592244791393 Project Whitelight LLC Distributions / Capital Withdrawal - 1 34000 +17592237001772 ANB property Rent 82100 +17592237002666 Paulino's Bakery Bread and Bun Costs 51400 +17592237002670 RNDC Liquor Cost 54700 +17592237007468 Nick Gera Office Rent 82300 +17592237015234 Elmer Escobar Payroll Outstanding 25200 +17592237015550 andb property corporation Rent 82100 +17592248236237 Victor Zeidan Distributions / Capital Withdrawal - 1 34000 +17592254737968 Brandon - Distributions Distributions / Capital Withdrawal - 1 34000 +17592237054458 Dublin Police and Sheriffs Charitable Contributions 91100 +17592237061646 Anthony Dudum Payroll Outstanding 25200 +17592237061697 Jorge Rodriguez Payroll Outstanding 25200 +17592237061783 Niko Flokas Payroll Outstanding 25200 +17592237061833 Ruben Rodriguez Payroll Outstanding 25200 +17592237065550 Marina Solis Payroll Outstanding 25200 +17592237934402 Elvis Zeinati Payroll Outstanding 25200 +17592237934671 Alejo Rojas Payroll Outstanding 25200 +17592237934690 Lucino Santoyo Payroll Outstanding 25200 +17592237934692 Yvonne Delgado Payroll Outstanding 25200 +17592237942464 Doroteo Alejo Dionicio Payroll Outstanding 25200 +17592237956539 Elise Sedgwick Tips Payable 25500 +17592237966208 Luis E Rabanales Payroll Outstanding 25200 +17592237971057 Juan Garcia Payroll Outstanding 25200 +17592237971090 Juan Pablo Diaz Rodriquez Payroll Outstanding 25200 +17592237971255 Bernardo Velasquez Payroll Outstanding 25200 +17592237971273 Vasquez, Nora Payroll Outstanding 25200 +17592237971347 Tlatelpa, Victor Payroll Outstanding 25200 +17592237971365 Sheridan, Molly Payroll Outstanding 25200 +17592237971383 Lopez, Santiago Payroll Outstanding 25200 +17592237971401 Lopez, Luis Payroll Outstanding 25200 +17592237971420 Canada, Ricardo Payroll Outstanding 25200 +17592237981462 Nikki Kennedy Tips Payable 25500 +17592238014148 THERMO FIX Repairs to Equipment 74700 +17592238028671 Veronica Alexander Payroll Outstanding 25200 +17592238028743 Kevin Martinez Payroll Outstanding 25200 +17592238035760 FATIMA PORTILL0 RAMIREZ Cash Handling Losses 75450 +17592238035773 JOSE ANTONIO MARTINEZ HERNANDEZ Cash Handling Losses 75450 +17592238035776 REYNALDO GUADARRAMA Cash Handling Losses 75450 +17592238047106 Muscle Foods Food Cost 50000 +17592238047229 AP Intego Liability Insurance 85100 +17592238047498 SENPEX DELIVERY Delivery Cost 57000 +17592238069119 Big Sexy Brewing Beer Cost 54100 +17592238091719 First Insurance Funding Liability Insurance 85100 +17592238108906 Adam David Equipment 3 15403 +17592238130304 STATUS WOOD Design 72130 +17592238500831 SAPARITO FOODS INC Food Cost 50000 +17592238501124 SAPORITO FOODS INC Food Cost 50000 +17592238508798 PARK STREETIMPORTS/ROKIT DRINKS Food Cost 50000 +17592254871568 Gaurang Pandya - Distributions Distributions / Capital Withdrawal - 1 34000 +17592238593978 jesus moreno Electric 83100 +17592238627058 Elite Hospitality Staffing LLC Contract Labor 74800 +17592238665715 Arturo Vega Payroll Outstanding 25200 +17592238682924 Barron, Paola O Payroll Outstanding 25200 +17592238699621 Yoryia Chryssa Papadokonstadakis Payroll Outstanding 25200 +17592238709284 Girlz Wurk Food Cost 50000 +17592238709394 Leopoldo Gonzalez Tips Payable 25500 +17592238709413 Marco Spagnuolo Tips Payable 25500 +17592238717755 Esteson CO Dry Goods Costs 51500 +17592238753539 Jamie Watt Payroll Outstanding 25200 +17592238787039 Summer McCune Payroll Outstanding 25200 +17592238820384 Alejandro Diaz-ibarra Payroll Outstanding 25200 +17592238827772 ABBY HAUS Tips Payable 25500 +17592238835112 Madeline Bolt Tips Payable 25500 +17592238835131 Jeanette Cardenas Tips Payable 25500 +17592238835151 Gianna Lyng Tips Payable 25500 +17592238835169 Cesar Garcia Tips Payable 25500 +17592238841975 Elli Nelson Tips Payable 25500 +17592238856381 Luis Tolento Payroll Outstanding 25200 +17592238867400 Spencer Germaine Tips Payable 25500 +17592238915353 Kevin Lopez Contract Labor 74800 +17592238915503 Despina Michaelidis Payroll Outstanding 25200 +17592238939473 THE GOOD NEWS Kitchen Utensils and Smallwares 74250 +17592238949173 Avendano Valeria Payroll Outstanding 25200 +17592238980097 Daniel Brown Advertising 72180 +17592238986697 Preston Yee Misc Payments 98800 +17592238986803 Silicon Valley Bites Consultants 81150 +17592238986881 kitchen employees Misc Payments 98800 +17592238987351 pancio used kitchen equipment Kitchen Equipment 15410 +17592238987466 jerry mcdougal Liquor Cost 54700 +17592239009694 Jorge Sanchez Building Cleaning & Maintenance 74600 +17592239024338 Agaves & Tequilas Don Pilar Liquor Cost 54700 +17592239031851 Ethan Cohen Payroll Outstanding 25200 +17592239104007 Luis Escamilla Repairs to Building 74500 +17592239116725 Fictitious Business Name Renewal Center Business License 86100 +17592239128649 Elvia Castaneda Tips Payable 25500 +17592239128711 Monserrat Hernandez Tips Payable 25500 +17592239135579 Jesus Hernandes Payroll Outstanding 25200 +17592239135605 Edgar De La Barerra Payroll Outstanding 25200 +17592239152414 Vicente Llanos Payroll Outstanding 25200 +17592239164392 Orchard City Locks Building Cleaning & Maintenance 74600 +17592239164412 Regina Villaryel Website/ Social Media 72110 +17592239171265 Regina Villaruel Website/ Social Media 72110 +17592239171324 Marianne's Ice Cream Food Cost 50000 +17592239191604 Madelyn Renneke Payroll Outstanding 25200 +17592239234603 Jue East Bay LLC Rent 82100 +17592239235534 Downtown Sunnyvale Business Improvement District Service or Pass Through Costs 58000 +17592255876476 Joseph - Distributions Distributions / Capital Withdrawal - 1 34000 +17592239482658 Arezo Franco Repairs to Equipment 74700 +17592239490467 Madeline Bolt Tips Payable 25500 +17592239490664 Pedro Morey Tips Payable 25500 +17592239498053 Sergio De La Barrera Tips Payable 25500 +17592239518954 dbdatacom LLC IT / Computer Repair 74710 +17592239519369 DCBA Wine Walk Advertising 72180 +17592239534748 Teammate Builders, INC Equipment 4 15404 +17592239553311 Blue Henry LLC Bar Mixes Cost 54790 +17592239553928 Bay International Food Dist. LLC Food Cost 50000 +17592239562452 Andrew Carol Payroll Outstanding 25200 +17592239562920 Ellen McAndrews Tips Payable 25500 +17592256947782 Distributions for Contruction Distributions / Capital Withdrawal - 1 34000 +17592239581903 Cristal Castellanos Payroll Outstanding 25200 +17592239581921 Loidy Cua Ortiz Payroll Outstanding 25200 +17592239581940 Jayden Eagleton Payroll Outstanding 25200 +17592239581958 Andres Hernandez Payroll Outstanding 25200 +17592239582011 Jennifer Hoang Payroll Outstanding 25200 +17592239582029 Victor Lara Payroll Outstanding 25200 +17592239582047 Haley Loper Payroll Outstanding 25200 +17592239582065 Stephanie Lopez Payroll Outstanding 25200 +17592239582311 Nehemias Lopreto Adqui Payroll Outstanding 25200 +17592239582329 Tierney Macguire Payroll Outstanding 25200 +17592239582347 Brenda Moran Payroll Outstanding 25200 +17592239589279 Lacy Morgan Payroll Outstanding 25200 +17592239589298 Ashley Reynolds Payroll Outstanding 25200 +17592239589316 Federico Rojas-Bautista Payroll Outstanding 25200 +17592239589335 Vasiliki Rousakis Payroll Outstanding 25200 +17592239589369 Charli Shaw Payroll Outstanding 25200 +17592239589422 Anna Sinko Payroll Outstanding 25200 +17592239589743 Aaliyah Sizer Payroll Outstanding 25200 +17592239589778 Evdokia Tsigaris Payroll Outstanding 25200 +17592239589796 Vasilios Tsigaris Contract Labor 74800 +17592239589830 Mayte Ulloa Payroll Outstanding 25200 +17592239589849 Edgar Yacabalquiej Payroll Outstanding 25200 +17592239597935 Bradley Gallego Payroll Outstanding 25200 +17592239608389 Berryessa Brewing Co. Draft Beer Cost 54200 +17592239625222 Nora Alvarez Tips Payable 25500 +17592239634182 Jason Kavouras Tips Payable 25500 +17592239634217 Wendy Trujillo Tips Payable 25500 +17592239634373 Andrea Ancona Tips Payable 25500 +17592239634408 Jazmin Cruz Tips Payable 25500 +17592239634495 Ana Bonilla Tips Payable 25500 +17592239634546 Sabrina Garcia Tips Payable 25500 +17592239634597 Yocelyn Ancona Tips Payable 25500 +17592239634615 Jonahlyn Dolar Tips Payable 25500 +17592239644566 Chef's Choice Produce Costs 51200 +17592239664023 Aislara Hernandez Payroll Outstanding 25200 +17592239664034 Hector Ortega Payroll Outstanding 25200 +17592239675855 Philippa Hodgins Tips Payable 25500 +17592239703909 Alvarado's Steam services Building Cleaning & Maintenance 74600 +17592239714059 Fernando Ruiz Repairs to Equipment 74700 +17592239722945 Rolando Hernandez Tips Payable 25500 +17592239723234 Ahiram Lastra Tips Payable 25500 +17592239723416 Tripp Harrison Tips Payable 25500 +17592239723434 Enrique Montufar Tips Payable 25500 +17592239723522 Daniella Lyng Tips Payable 25500 +17592239723556 Ellie Nelson Tips Payable 25500 +17592239723773 Erick Carnedas Tips Payable 25500 +17592239723808 Spiros Georgopoulos Tips Payable 25500 +17592239723826 Christian Hanson Tips Payable 25500 +17592239731151 Collin Miller Tips Payable 25500 +17592239731416 Georgia Koutsos Payroll Outstanding 25200 +17592262647240 Gaurang Pandya Distributions Distributions / Capital Withdrawal - 1 34000 +17592277188204 Abe Ajlouny- Distribution Distributions / Capital Withdrawal - 1 34000 +17592233202206 Deminar Eliehjayounesloo Distributions / Capital Withdrawal - 2 34010 +17592239761498 ideal north amnerica inc Wine Cost 54400 +17592239761774 alluvial wines Wine Cost 54400 +17592239777079 Roger IU Tips Payable 25500 +17592239788381 Jose Armenta-Gastelum Payroll Outstanding 25200 +17592239797299 Linnie McIntyre Repairs to Building 2 74502 +17592239823862 Ice Machines of Sacramento Kitchen Equipment 15410 +17592239841203 Reymundo Cortez Payroll Outstanding 25200 +17592239870173 Elena Shaposhnikova Tips Payable 25500 +17592239887850 Rafael Mauricio Tips Payable 25500 +17592239905733 State Farm Insurance Companies Liability Insurance 85100 +17592239954905 Air Unlimited CO2 Costs 54300 +17592239955186 Crane Pest Control Pest Control 74610 +17592240007033 Ara Lee Payroll Outstanding 25200 +17592240033005 Golden Brands East Bay Beer Cost 54100 +17592240136948 Chad Solis Equipment 1 15401 +17592240168708 Frank Martinez Rent 82100 +17592240196147 Ellie Nelson Tips Payable 25500 +17592240196165 Michael Moore Tips Payable 25500 +17592240217468 Josh Guevara Payroll Outstanding 25200 +17592240234340 Carlos Gomez Payroll Outstanding 25200 +17592240234342 Lenin Benitez Lucio Payroll Outstanding 25200 +17592240255693 Jesse Gutierrez Payroll Outstanding 25200 +17592240258072 Cesar Chavez Tizol Payroll Outstanding 25200 +17592240304906 Jal Alfredo Perez Building Cleaning & Maintenance 74600 +17592240305346 Top Jet Sales Equipment 15400 +17592240306119 Joseph Demore Payroll Outstanding 25200 +17592240314134 Jerren Heffelfinger Employee Related Expenses 73000 +17592240314389 Matthew DaCosta Payroll Outstanding 25200 +17592240351826 Silicon Valley Mechanics Building Cleaning & Maintenance 74600 +17592240373214 Aaron Parra Ramirez Payroll Outstanding 25200 +17592240380903 Fortessa Tableware Solutions, LLC Kitchen Utensils and Smallwares 74250 +17592240397803 Erick Barrios Tips Payable 25500 +17592240405368 Diana Lara Payroll Outstanding 25200 +17592240420527 FR Quality Service Building Cleaning & Maintenance 74600 +17592240446599 Reliable Hauling Service or Pass Through Costs 58000 +17592240450012 R&D Grease Trap Cleaning Building Cleaning & Maintenance 74600 +17592240459726 NORCAL Heating and Cooling Inc. Building Cleaning & Maintenance 74600 +17592240475019 My Shirt Uniforms 73300 +17592240485843 Alexis Shaw Tips Payable 25500 +17592240485865 A & D Automatic Gate Company Repairs to Building 74500 +17592240486039 Alexis Shaw Tips Payable 25500 +17592240495929 samuel santos Repairs to Equipment 74700 +17592240511879 Sangita Tamang Tips Payable 25500 +17592233203023 Nick Alevizos Distributions / Capital Withdrawal - 2 34010 +17592240512171 MT BOXES 2 LLC Payroll Outstanding 25200 +17592240525448 Rachel Kennedy Misc Payments 98800 +17592240556216 Janet Farias Contract Labor 74800 +17592240565136 Robert Veliz Repairs to Building 74500 +17592240565885 City of Saratoga Business License 86100 +17592240585472 Marta Ortiz Building Cleaning & Maintenance 74600 +17592240593938 Alejandro Ruballos Payroll Outstanding 25200 +17592240602948 Samantha Antunez Payroll Outstanding 25200 +17592240618602 Samantha Richards Tips Payable 25500 +17592240642657 Jaun Sazo Building Cleaning & Maintenance 74600 +17592240665646 Sofia Shaw Tips Payable 25500 +17592240679185 Javier Vallejo Payroll Outstanding 25200 +17592240687649 Laura Viapiano Tips Payable 25500 +17592234147497 BRIAN A RHEW Distributions / Capital Withdrawal - 2 34010 +17592240708006 Chloe Seger Payroll Outstanding 25200 +17592240723510 angel ramirez Employee Training 73500 +17592240746646 Erick Cardenas Tips Payable 25500 +17592240813065 Emily Gatt Payroll Outstanding 25200 +17592240839902 Victor Ramirez Payroll Outstanding 25200 +17592240876599 Ridge Vineyards Wine Cost 54400 +17592240876602 Storrs Winery Wine Cost 54400 +17592240888258 Brooklyn D'Amico Design 72130 +17592240889356 PortAll Pacific LLC Dairy Costs 51300 +17592240901152 Karissa Jordan Payroll Outstanding 25200 +17592240971320 STARLITE VINEYARDS Wine Cost 54400 +17592240998716 Alvaro Mendoza Electric 83100 +17592241017608 Bobby Rae Barker Payroll Outstanding 25200 +17592241017634 Bay Alarm Company- Concord Security System/ Alarms 83800 +17592241060897 HCP Life Science REIT Rent 82100 +17592241061004 Fidel Sanchez Repairs to Equipment 74700 +17592241078794 Hugo Martinez-Windows Building Cleaning & Maintenance 74600 +17592241094086 Vertascent Microgreens Produce Costs 51200 +17592235895975 Kaushal Patel Distributions / Capital Withdrawal - 2 34010 +17592241116095 City of South San Francisco Business License 86100 +17592241160102 Livermore Sanitation Trash Removal 83300 +17592241160555 Catalina Janitorial Services Cleaning Supplies 74100 +17592241173570 24/7 Janitorial Services Building Cleaning & Maintenance 74600 +17592241183208 Napa County Health Permit 86200 +17592241193246 Mediterranean Pizza Meals and Entertainment 91200 +17592241200425 Mistral Restaurant Meals and Entertainment 91200 +17592241200427 Pizza Hut Meals and Entertainment 91200 +17592241200430 Trellis Restaurant Meals and Entertainment 91200 +17592241200450 Satura Cake Meals and Entertainment 91200 +17592241200814 Istanbul Market Food Cost 50000 +17592241200816 Magazine Morgan Hill Advertising 72180 +17592241200827 LB Steak Meals and Entertainment 91200 +17592241200968 Makai Hale Travel 91300 +17592241200971 Four Seasons Travel 91300 +17592241201050 Aulani Travel 91300 +17592241201068 United Airlines Travel 91300 +17592241201459 Thrifty Car Rental Travel 91300 +17592241201637 Hyatt Travel 91300 +17592241201639 See's Candy Meals and Entertainment 91200 +17592240512079 mehmet duygu Distributions / Capital Withdrawal - 2 34010 +17592241241186 Surf City Window & Guttr Building Cleaning & Maintenance 74600 +17592241263545 Kendall Schooley Payroll Outstanding 25200 +17592241265828 Honey Hill Farms Food Cost 50000 +17592241296935 Civic Square Apartments Other Rental 84300 +17592241307495 Armando Pinales Payroll Outstanding 25200 +17592241323748 Andrew Santa Cruz Payroll Outstanding 25200 +17592241324167 Rachel Garcia Payroll Outstanding 25200 +17592241346813 Monkey Pod Travel 91300 +17592241346815 ABC Store Travel 91300 +17592241346817 Longhis Ko Olina Travel 91300 +17592241346819 SF Uncork'd Meals and Entertainment 91200 +17592241346822 Island Vintage Travel 91300 +17592241346824 LS Pineapple Travel 91300 +17592241346943 The Village Bakery Meals and Entertainment 91200 +17592241346990 The Wine Room Meals and Entertainment 91200 +17592241346992 Italico Meals and Entertainment 91200 +17592241346994 Round Table Pizza Meals and Entertainment 91200 +17592241347004 Med Depot Kitchen Supplies 74200 +17592241347244 Quizznos Meals and Entertainment 91200 +17592241347246 Baskin Robbins Meals and Entertainment 91200 +17592241347254 Enzo Ristorante Meals and Entertainment 91200 +17592241347256 PF Chang's Meals and Entertainment 91200 +17592241347278 Lozano Car Wash Auto and Truck Expenses 73100 +17592241347340 Radison Park Inn Travel 91300 +17592241347342 Munch Cafe Istanbul Travel 91300 +17592241347344 Ozel Safak Istanbul Hospital Travel 91300 +17592241347346 Istanbul Duty Free Store Travel 91300 +17592241347371 Flight Deck Business Honolulu Travel 91300 +17592241347373 Mariott Gift Shop Travel 91300 +17592254737957 Patricia Taptelis - Distributions Distributions / Capital Withdrawal - 2 34010 +17592241347384 Tomokazu Japanese Cuisine Meals and Entertainment 91200 +17592241347386 TTNET Istanbul Internet 83500 +17592234147500 PATRICK JOHNSON Distributions / Capital Withdrawal - 3 34020 +17592241347450 Local Union 271 Meals and Entertainment 91200 +17592241347474 AmEx Travel Travel 91300 +17592241354906 Cal-Espregalt Coffee Costs 52200 +17592260390351 Baly LLC Distributions / Capital Withdrawal - 3 34020 +17592241463282 Darion’s Barbecue Sauce Food Cost 50000 +17592241473734 Lorraine Lawson Design 72130 +17592241483283 Darrin Montanez Payroll Outstanding 25200 +17592241492248 Rolando Campos Payroll Outstanding 25200 +17592241500378 Wood Family Vineyards Wine Cost 54400 +17592241516621 Isaias Villanueva Payroll Outstanding 25200 +17592241553692 Stefanie Lopez Tips Payable 25500 +17592241620839 Near U CO2 Kitchen Equipment Rental 84100 +17592241670279 Aaron Hollingsworth Tips Payable 25500 +17592241680442 Bay Area Locksmith Repairs to Building 74500 +17592241697518 Maya Roth Payroll Outstanding 25200 +17592241707652 Santa Clara Liquors Bottled Beer Cost 54150 +17592241722095 Irina Lechshinskaya Tips Payable 25500 +17592241742661 rdnc Wine Cost 54400 +17592241774642 Marco Guzman Payroll Outstanding 25200 +17592241796269 Geraldo Lopez Payroll Outstanding 25200 +17592241811412 Bobby Ray Barker Contract Labor 74800 +17592241811590 OSCAR BAHENA Payroll Outstanding 25200 +17592241819103 ALAIA SALINAS Payroll Outstanding 25200 +17592241819113 DANIEL VASQUEZ Payroll Outstanding 25200 +17592241831903 August Akerstorm Payroll Outstanding 25200 +17592241860877 Ruben Gutierrez Contract Labor 74800 +17592241861521 City Of Livermore Utilities 83000 +17592241879874 Jorge Secay Internet 83500 +17592241925938 WILSON BORROR Payroll Outstanding 25200 +17592241925942 WILSON BOROR Payroll Outstanding 25200 +17592241958057 Spanglish Asadero Food Cost 50000 +17592241980802 HECTOR CURUP Payroll Outstanding 25200 +17592242007383 Luis Valdes Food Cost 50000 +17592242007584 Emily Vahl Food Cost 50000 +17592242121620 Stephanie Gomez Payroll Outstanding 25200 +17592242144362 Utku Erdin Tips Payable 25500 +17592242144512 Raven Maier Bell Tips Payable 25500 +17592242157050 denise east Building Cleaning & Maintenance 74600 +17592242275799 C & S Food Equipment Services, LLC Repairs to Equipment 74700 +17592242288465 Mateo Vigil Payroll Outstanding 25200 +17592242305461 Spiced Artisan Nuts Food Cost 50000 +17592242394642 Miguel Franco Electric Repairs to Equipment 74700 +17592242423945 Jorge Vasquez Payroll Outstanding 25200 +17592234147503 MIKE OESCHGER Distributions / Capital Withdrawal - 4 34030 +17592242479508 MT BOXES LLC Employee Training 73500 +17592242480762 Rombauer Vinyards Wine Cost 54400 +17592242506152 Rocklin Self Storage Other Rental 84300 +17592242506191 Winco Food Food Cost 50000 +17592242506588 Ciriaco, Suhul Payroll Outstanding 25200 +17592242514870 Sacramento Ice Kitchen Equipment Rental 84100 +17592242524313 Eureka Development Company Rent 82100 +17592242524795 Sendor A. Reyes Payroll Outstanding 25200 +17592242534241 Lucky Food Cost 50000 +17592242557014 Oliver Leon Payroll Outstanding 25200 +17592242566809 Anzhela Kataliants Tips Payable 25500 +17592242566859 Juan Coronel Tips Payable 25500 +17592242580410 ER Productions Website/ Social Media 72110 +17592242601511 Contra Costa County Clerk Recorder Local Taxes 86400 +17592242645367 CRF Solutions Food Cost 50000 +17592242654242 Giacomo Montevago Equipment 15400 +17592242674425 24 hr drain pro Repairs to Building 74500 +17592242696932 Painted Hills Natural Beef Food Cost 50000 +17592242718444 Meghann Klein Tips Payable 25500 +17592242728063 Architectural Glass Systems Start Up Costs 16300 +17592242728141 Steven T Smith Drapery Furniture & Fixtures 15450 +17592242728150 R&B Upholstery Furniture & Fixtures 15450 +17592242728267 Jose Orozco Leasehold Improvements 15300 +17592242736418 All Granite Furniture & Fixtures 15450 +17592242736498 Elite Automatic Start Up Costs 16300 +17592242736806 Leon's Powder Coating Leasehold Improvements 15300 +17592242736967 Comfort Heating & Cooling Leasehold Improvements 15300 +17592242738676 Isabel Garcia Salazar Payroll Outstanding 25200 +17592242739399 Jacqueline Chavez-Garcia Payroll Outstanding 25200 +17592242769037 Gabino Cruz Payroll Outstanding 25200 +17592242776972 ANDRES NIETO Tips Payable 25500 +17592242777023 UMIT AKIN Tips Payable 25500 +17592242805089 Madeline Pugh Tips Payable 25500 +17592242825965 Fosters Repairs to Building 74500 +17592242864821 Franco Andres Payroll Outstanding 25200 +17592242877164 Valley Bible Church Advertising 1 72181 +17592242895037 Clear Advantage Hood Cleaning Contract Cleaning 74150 +17592243448175 Cal Choice Employee Benefits Outstanding 25600 +17592199052906 Aaron Mendoza Guadarrama - loan Employee Loans and Advances 12300 +17592210893821 noralma ambriz -loan Employee Loans and Advances 12300 +17592242994915 Kathryn Vanmaanen Payroll Outstanding 25200 +17592243053079 Alexander Smith Tips Payable 25500 +17592243077748 Eldenida Torres Payroll Outstanding 25200 +17592243147295 Karolina Jimenez Payroll Outstanding 25200 +17592243147314 Miriam Sanchez-mora Payroll Outstanding 25200 +17592243171630 Annuncication Cathedral Program Book 2020 Promotional or Donation Meal Comps 72710 +17592243192607 Starbucks Food Cost 50000 +17592243200903 the Dutton Wine Cost 54400 +17592243239221 Pedro Morales Payroll Outstanding 25200 +17592243239447 Castro Village Associates, LLC Rent 82100 +17592243274488 Corporate Processing Service LLC Fee 97250 +17592243274563 Nick the Greek Produce Costs 51200 +17592243282638 jason ayyoub Repairs to Building 74500 +17592243317055 Telwork Solutions Inc Interest Expense 93400 +17592214582421 Roberto Catalan Employee Loans and Advances 12300 +17592243463380 Eatopia Food Cost 50000 +17592243480273 Mayelin Moreno Dircio Payroll Outstanding 25200 +17592243480351 Emily Basave Payroll Outstanding 25200 +17592243480434 Andre Cabrera Payroll Outstanding 25200 +17592243480471 Miguel Calderon Payroll Outstanding 25200 +17592243480489 Jose Cruz Payroll Outstanding 25200 +17592243480507 Benita Elie Jaivenslou - Payroll Payroll Outstanding 25200 +17592243482196 Deywis Eliehjayounesloo Payroll Outstanding 25200 +17592243483782 Alfonso Hernandez Payroll Outstanding 25200 +17592243484051 Ramiro Iniguez Payroll Outstanding 25200 +17592243484069 Sean Pamintuan Payroll Outstanding 25200 +17592243484088 Mily Rivera De Rodriguez Payroll Outstanding 25200 +17592243492808 San Jose Chamber of Commerce Advertising 4 72184 +17592243494374 Laura Rodriguez Payroll Outstanding 25200 +17592243502464 Evan Cornwell Payroll Outstanding 25200 +17592243517404 Erendida Hernandez Contract Cleaning 74150 +17592243542632 Philippe Reynaud Payroll Outstanding 25200 +17592243557384 Raffail Tziintzi Payroll Outstanding 25200 +17592243566151 erwin ruiz sanchez Payroll Outstanding 25200 +17592243631972 Gogo Plumbing Repairs to Building 74500 +17592243676926 Michelle Mirander Professional Fees 81110 +17592243743089 City of Daly City Water and Sewage 83400 +17592243770753 Walter Seehorn Employee Related Expenses 73000 +17592243827236 Tony H. Tarabay, CPA Professional Fees 81110 +17592243835284 Everest Air Repairs to Building 74500 +17592243844543 Guadalupe Acosta Payroll Outstanding 25200 +17592243915105 Sergio Cornejo Payroll Outstanding 25200 +17592243928576 Uber S. Treminio Reyes Payroll Outstanding 25200 +17592243928617 Pressure Wash Systems Building Cleaning & Maintenance 74600 +17592243928840 Chefs Toys Kitchen Equipment 15410 +17592243928906 Green Carpet Cleaning Building Cleaning & Maintenance 74600 +17592243929056 Mario Santos Repairs to Equipment 74700 +17592243974799 Maria Graciela Payroll Outstanding 25200 +17592243989851 Oddalis Mexia Payroll Outstanding 25200 +17592244039075 Comfort 1 Heating and Air Repairs to Equipment 74700 +17592244123000 Kelly Hoang Payroll Outstanding 25200 +17592244131705 Larry Pietrobon Tips Payable 25500 +17592244131728 Taylor Jackson Tips Payable 25500 +17592244131863 Edgar Vasquez Building Cleaning & Maintenance 74600 +17592244132188 Walgreens Kitchen Supplies 74200 +17592244173304 Galli Produce Produce Costs 51200 +17592244193052 Juan Martinez Food Cost 50000 +17592244219216 Gustavo Baldrich Tips Payable 25500 +17592244278250 Miguel Corio Brito Payroll Outstanding 25200 +17592244290428 Ayary Monroy Contract Cleaning 74150 +17592217972098 Angel Espinoza Sanchez Employee Loans and Advances 12300 +17592244306611 Jennifer Isidro Payroll Outstanding 25200 +17592244328009 Barron's Mobile Sharpening Service or Pass Through Costs 58000 +17592244484167 Richard Kent Misc Payments 98800 +17592244498690 Morgan Hill Chamber of Commerce Membership Dues and Associations 81200 +17592233147089 Alexandria Donaldson Employee Loans and Advances 12300 +17592240706891 Jose M Hernadez Employee Loans and Advances 12300 +17592244541594 Guitierrez Israel Employee Related Expenses 73000 +17592244608894 Emily Bown Payroll Outstanding 25200 +17592244618883 Jose Delgado Payroll Outstanding 25200 +17592244629415 Roberto Barojas Payroll Outstanding 25200 +17592244657318 Romeo Santiago Tips Payable 25500 +17592244709345 Aytac Isik Payroll Outstanding 25200 +17592244709878 Juan Pablo Chavarin Payroll Outstanding 25200 +17592244710249 Theodore Krikos Tips Payable 25500 +17592244733593 Ancient Agro Food Cost 50000 +17592244741998 Kevin Sweeney Tips Payable 25500 +17592244770702 Thai Nguyen Payroll Outstanding 25200 +17592244779447 Lennin Salgado Arauz Payroll Outstanding 25200 +17592242468458 Daniel Ortiz Employee Loans and Advances 12300 +17592244822213 Giovanny Martinez Payroll Outstanding 25200 +17592244822215 Abad Hernandez Payroll Outstanding 25200 +17592244822219 Alejandro Velasco Payroll Outstanding 25200 +17592244822432 Celeste Hernandez Misc Payments 98800 +17592244851276 Mathew Wagerman Tips Payable 25500 +17592244851343 Natasha Joma Bands and DJ's 72650 +17592244880704 Murillo Linda Payroll Outstanding 25200 +17592244899148 Gasket Guru Repairs to Equipment 74700 +17592244912834 Tierra Madre LLC Alcohol Cost 54000 +17592244913459 Spirit Halloween Flowers and Decorations 72400 +17592244928463 Mykonos Jax LLC Rent 82100 +17592244933960 Jack Ajluni Start Up Costs 16300 +17592244942998 Upright Engineering Leasehold Improvements 15300 +17592244943076 The Window doctor Building Cleaning & Maintenance 74600 +17592244963473 JMB Plumbing & Construction INC Repairs to Equipment 74700 +17592245009532 Willow Glen High School Promotional or Donation Meal Comps 72710 +17592245019081 Fernanda MAria Ramos Payroll Outstanding 25200 +17592245019167 Emmanuel Hernandez Tips Payable 25500 +17592245019169 Lenny Sanchez Advertising 72180 +17592247451704 Giraldo Mafe Employee Loans and Advances 12300 +17592245142689 ADP Payroll Outstanding 25200 +17592245195916 Simply Smashing FOH Supplies - Reuseable 71200 +17592245230254 California Butcher Supply Food Cost 50000 +17592245361838 Luis Angel Arce Romualdo Payroll Outstanding 25200 +17592245381705 Barrios Upholstery / Tower Biminis Leasehold Improvements 15300 +17592245383756 Kent Construction Leasehold Improvements 15300 +17592245402951 Ana Garcia Payroll Outstanding 25200 +17592245405771 Mariam Ajlouny Consultants 81150 +17592245406298 Emily Brown Payroll Outstanding 25200 +17592245406318 Laila Svedbeck Payroll Outstanding 25200 +17592245418828 Daniel Brown Payroll Outstanding 25200 +17592245430131 Veronica Rios Payroll Outstanding 25200 +17592245430217 Humberto Rodriguez Payroll Outstanding 25200 +17592245456708 Sandra Martinez Payroll Outstanding 25200 +17592245494836 Yasean Aboughalya Payroll Outstanding 25200 +17592245494855 Josue R Cataneda Employee Benefits - Variable 69900 +17592245525033 Cintas Fire Protection Building Cleaning & Maintenance 74600 +17592257396044 ibrahim ulas Employee Loans and Advances 12300 +17592245606360 Arnold Breit Leasehold Improvements 15300 +17592245607357 Eric Pevar Consultants 81150 +17592245608030 rowan love Payroll Outstanding 25200 +17592245731345 CG Appliance Inc Repairs to Equipment 74700 +17592245775056 Allison Shadd Kitchen Supplies 74200 +17592245867818 Jovany Gonzales Payroll Outstanding 25200 +17592245868159 Juan Carlos Payroll Outstanding 25200 +17592245869118 Maria Elena Gomez Gutierrez Payroll Outstanding 25200 +17592245878274 Ropers Majeski Legal Fees 81120 +17592245881207 Ronnie McDowell Security Guards 71600 +17592245884532 Derik Everett Security Guards 71600 +17592245884824 Shawn Patterson Security Guards 71600 +17592245917848 Tri Star Refrigeration Repairs to Equipment 74700 +17592245932514 Check Deposited For Sale Rung Into POS as Check/Cash Tips Payable 25500 +17592245948864 Suavecito Distributors FOH Supplies - Consumable 71100 +17592245993746 Gus's Community Market, LLC Food Cost 50000 +17592246002550 Jose Rodrigues Payroll Outstanding 25200 +17592246002765 Elizabeth Avlla Payroll Outstanding 25200 +17592246080502 Brixmor Property Owner Kitchen Equipment 15410 +17592246111759 Mike Hudson Dist Food Cost 50000 +17592246134155 Arayik Margaryan Payroll Outstanding 25200 +17592246143848 AD IMAGE Leasehold Improvements 15300 +17592246157700 Sabrina Khan Payroll Outstanding 25200 +17592246166382 Roseville Fire Department Building Cleaning & Maintenance 74600 +17592246196383 Randy 100k Start Up Loan Interest Expense 93400 +17592246196911 Frank Catanzaro Repairs to Equipment 74700 +17592246213720 Nugget Market Food Cost 50000 +17592246231525 Eduardo Escamilla Tips Payable 25500 +17592246247821 Marquela Allen Payroll Outstanding 25200 +17592246256423 Alex Steck Payroll Outstanding 25200 +17592246264767 Jose Ivan Payroll Outstanding 25200 +17592246284880 Juan Carlos Perez Payroll Outstanding 25200 +17592246301622 Katherine Lorely Cabanas Payroll Outstanding 25200 +17592246317646 Maria Rivas Payroll Outstanding 25200 +17592246317859 Diana Patricia Andrade Romero Payroll Outstanding 25200 +17592246317878 Robyn Loaiza Payroll Outstanding 25200 +17592246326637 Taurino Carreto Cardova Payroll Outstanding 25200 +17592246354431 Odin Rojas Rivera Tips Payable 25500 +17592246398588 Rafael Sinay Payroll Outstanding 25200 +17592246398861 HMS PROPERTIES, LP Rent 82100 +17592246407596 Ventura Sanchez Payroll Outstanding 25200 +17592246407615 Ronaldo Cruz Payroll Outstanding 25200 +17592233113535 IRS[] Federal Payroll Taxes Payable 22300 +17592246439527 Ester Garcia Rent 82100 +17592246504332 Analise Jasso Payroll Outstanding 25200 +17592246530184 RBC Upholstery Repairs to Building 74500 +17592246539444 Rafael Martinez Payroll Outstanding 25200 +17592246539705 Konstance Ceasar Payroll Outstanding 25200 +17592246539749 Rafael Martinez Payroll Outstanding 25200 +17592246551592 Sands Cricket Association Promotional or Donation Meal Comps 72710 +17592246561924 Jose Ivan Pina Romero Payroll Outstanding 25200 +17592246653790 Patrick Jacobs Promotional or Donation Meal Comps 72710 +17592246668211 Elizabeth Reyes Payroll Outstanding 25200 +17592246683399 Sophia Estrella Payroll Outstanding 25200 +17592287212536 Carlos Rodriguez FOH Payroll 25200 +17592246743454 Athena Georgopoulos Tips Payable 25500 +17592246778857 Justin Busto Payroll Outstanding 25200 +17592246778936 Saria Chait Payroll Outstanding 25200 +17592287078569 Ecem Bozkus FOH Payroll - Host 25200 +17592246828521 Camryn Clendenen Payroll Outstanding 25200 +17592246852378 Lakeside School Community Foundation Promotional or Donation Meal Comps 72710 +17592246869612 wilton perez Employee Gifts 73800 +17592246883921 Bay Star Fire Protection Repairs to Equipment 74700 +17592246913319 Apolinar Rivera Payroll Outstanding 25200 +17592246944179 M&J Janitorial Service Contract Labor 74800 +17592246984030 Kroloff, Belcher, Smart, Perry & Christopherson Legal Fees 81120 +17592246985170 Michael Chu Recruiting 73400 +17592246995528 TE TRADE Food Cost 50000 +17592247044684 Olga Rodriguez Burgos Payroll Outstanding 25200 +17592247065102 Alba Mendez Contract Labor 74800 +17592247094394 Dimitri Aronis Payroll Outstanding 25200 +17592247094413 Humberto Espinoza Payroll Outstanding 25200 +17592247102809 Victor M Gonzalez Payroll Outstanding 25200 +17592247111923 Sreevishnupriya Jayaprakash Payroll Outstanding 25200 +17592247111941 Roberto Martin Payroll Outstanding 25200 +17592247111959 Anali Martinez Payroll Outstanding 25200 +17592247111978 Andres Rivera Munoz Payroll Outstanding 25200 +17592247111996 Roman Sanchez Payroll Outstanding 25200 +17592247112015 Miriam Sanchez-Mora Payroll Outstanding 25200 +17592247112106 Ella Vancura Payroll Outstanding 25200 +17592247112124 Matthew Varghese Payroll Outstanding 25200 +17592247127245 Luis Martinez Cruz Payroll Outstanding 25200 +17592247157605 Octavio Reyes Payroll Outstanding 25200 +17592247188100 Burak Barkoren Tips Payable 25500 +17592247213968 Christopher Brasby-Honey Payroll Outstanding 25200 +17592247214317 Daisy Gomez Payroll Outstanding 25200 +17592247214336 Daniel P Jax Payroll Outstanding 25200 +17592247259528 Alberto Fabian Payroll Outstanding 25200 +17592247286528 Alexander Smith Tips Payable 25500 +17592247300302 Tetsu Haruta Payroll Outstanding 25200 +17592247311482 Stephanie Gonzalez Contract Labor 74800 +17592247320647 Dsrg Lone Tree Plaza Rent 82100 +17592247320874 Miguel Hernandez Leasehold Improvements 15300 +17592247320884 Humberto Mariscol Kitchen Equipment 15410 +17592247320969 J & J Plumbing services Leasehold Improvements 15300 +17592247320980 Jose Miguel Leasehold Improvements 15300 +17592247320996 Hernandez Quintaro Miguel Leasehold Improvements 15300 +17592247321006 Atta Nikkhah Start Up Costs 16300 +17592247321090 Castillo MGI Start Up Costs 16300 +17592247342324 Paulo Riviera Leasehold Improvements 15300 +17592247344940 east bay supply Kitchen Equipment 15410 +17592247348565 Marcos Torres Leasehold Improvements 15300 +17592247356486 devon Merchant Payroll Outstanding 25200 +17592247356957 Alicia Darius Payroll Outstanding 25200 +17592247358409 Jesse Negrete Start Up Costs 16300 +17592247358430 Jonathan Barroyo Start Up Costs 16300 +17592234486132 Bill's Cafe Franchise Fee - % of Sales 81310 +17592247410121 Safe Lock & Alarm Co. Contract Labor 74800 +17592233336088 City Of Sunnyvale Franchise Fee - Local Marketing Fee 72180 +17592247451723 Santa Monica Seafood Seafood Costs 51130 +17592247451727 Carolina Bedoya Employee Training 73500 +17592247479443 Yeni Hernandez-Diaz Food Cost 50000 +17592247479461 Mediterranean Depot LLC Dry Goods Costs 51500 +17592247501896 Eduardo Mach Payroll Outstanding 25200 +17592247503350 Maide Santillan Payroll Outstanding 25200 +17592247521281 Karla Bravo Payroll Outstanding 25200 +17592247521604 Joel Garcia Payroll Outstanding 25200 +17592247522472 Brian Mendez Payroll Outstanding 25200 +17592247522590 Nicholas Bacon Payroll Outstanding 25200 +17592247523491 Nadia Gutierrez- Mendoza Payroll Outstanding 25200 +17592247535170 Roseville Utilities Utilities 83000 +17592247548876 Matthew Shapiro Tips Payable 25500 +17592247566246 Chemical Exhaust Contract Cleaning 74150 +17592247652510 Glenn Superior Court Local Taxes 86400 +17592247655451 EATOPIA FOODS Food Cost 50000 +17592247698112 Matagrano Inc Beer Cost 54100 +17592247849649 Grease Trap Cleaners Service or Pass Through Costs 58000 +17592247859909 Rex Lock & Save Start Up Costs 16300 +17592247861252 Central restaurant Products Kitchen Equipment 15410 +17592247890681 Jasmine Y1 Payroll Outstanding 25200 +17592247890735 Jasmine Yi Payroll Outstanding 25200 +17592247966793 Giray meat products Food Cost 50000 +17592248021995 RIVER CITY MECHANICAL Kitchen Supplies 74200 +17592248059276 Irina Leshchinskaya Tips Payable 25500 +17592248059336 Aliana Persin Tips Payable 25500 +17592248059338 Auro Solis Tips Payable 25500 +17592248059547 Gustavo Juarez Tips Payable 25500 +17592248059572 Jose Anaya Garcia Tips Payable 25500 +17592248059608 Jose Hernandez Tips Payable 25500 +17592248067958 Jose Luis Menocal Torres Tips Payable 25500 +17592248067978 Melani Hernandez Tips Payable 25500 +17592248067980 Nathaly Ruiz Tips Payable 25500 +17592248068083 Roy Reyes Solis Tips Payable 25500 +17592248068085 Simon Martinez Tips Payable 25500 +17592248070209 Brooks Cayton Contract Labor 74800 +17592248101126 Giuseppe Pinto Music Licensing Fees 72600 +17592248119972 Salt Craft LLC Food Cost 50000 +17592248133300 Affordable Heating and Air Conditioning Repairs to Equipment 74700 +17592248142542 Dolce Software Restaurant Software Fees 75300 +17592248159915 Concord CenterCal, LLC Rent 82100 +17592248163240 Alissa Rosete Payroll Outstanding 25200 +17592248163628 Cruz Maria Covenas Guillermo Payroll Outstanding 25200 +17592248207748 corfini gourmet Food Cost 50000 +17592248215811 Aaron Benavidez Payroll Outstanding 25200 +17592248225738 Ramazan Mazlum Dilme Payroll Outstanding 25200 +17592257303759 State Of California Franchise Fee - National Marketing Fee 97200 +17592248245720 Jovan Buchanan Payroll Outstanding 25200 +17592248245722 Jennifer Crespo Payroll Outstanding 25200 +17592248245724 Nicolas Crespo Payroll Outstanding 25200 +17592248262461 Gaini, Sahel Payroll Outstanding 25200 +17592248333838 Sierra Logan Payroll Outstanding 25200 +17592248351963 Josephine Personius Payroll Outstanding 25200 +17592248382969 PostalAnnex+ Office Supplies 75100 +17592248399159 Juan Mendez Payroll Outstanding 25200 +17592248415446 Lisandro Mendez Payroll Outstanding 25200 +17592248415448 USRP Funding 2001-A, L.P. Dept #880044 / ID: 065700 Rent 82100 +17592248415560 Postal Annex Office Supplies 75100 +17592248465009 Mike Gonzales Repairs to Building 74500 +17592248474576 Jordan Garcia Payroll Outstanding 25200 +17592248479942 Tamara Mallare Payroll Outstanding 25200 +17592248517363 Brendan Quock Payroll Outstanding 25200 +17592248538792 Totah Accounting INC Accounting 81140 +17592248538796 Palomares Elementary School Promotional or Donation Meal Comps 72710 +17592248547073 Rafik Abdelmalek Payroll Outstanding 25200 +17592260775688 arthur pollard Gift Card Outstanding 25100 +17592248662951 Fernando Sanchez Payroll Outstanding 25200 +17592248739484 Diaz Janitorial Contract Cleaning 74150 +17592249538344 abc escrow Liquor License Fee 86500 +17592249538354 abc escrow Liquor License Fee 86500 +17592249538489 Ka Yee Chenug Payroll Outstanding 25200 +17592249539571 AUTO-CHLOR SYSTEM Cleaning Supplies 74100 +17592249769585 Alba Mendez Contract Cleaning 74150 +17592249778572 Kevin Coyne Misc Payments 98800 +17592249780472 Danny's Appliances Repairs to Equipment 74700 +17592249780823 Danny's Appliances Repairs to Equipment 74700 +17592249807860 DADDYS BAKLAVA Food Cost 50000 +17592249823555 Ronald Songco Entertainment - Other 72680 +17592249854912 Rock Pros Landscaping Kitchen Supplies 74200 +17592234634260 Nhuy Insurance agency Insurance and Retirement 69910 +17592249868989 Maricella Casas Payroll Outstanding 25200 +17592249924573 Faustino Caso Esperion Payroll Outstanding 25200 +17592249935895 PNC Bank Payroll Outstanding 25200 +17592249959526 Jose maldonado Promotional or Donation Meal Comps 72710 +17592249960725 Kaushik Patel Insurance and Retirement 69910 +17592249960760 Yesenia Orozco Contract Labor 74800 +17592249982844 Ricardo Sandoval Payroll Outstanding 25200 +17592249983195 Jefry Bani Payroll Outstanding 25200 +17592249999136 Jose Morales Payroll Outstanding 25200 +17592249999702 Jose Morales Payroll Outstanding 25200 +17592250010228 Innayat Mahant Payroll Outstanding 25200 +17592250034145 Jose Mayoral Leasehold Improvements 15300 +17592250045776 Sabbir Ahmad Rent 82100 +17592250067055 Danielle Black Tips Payable 25500 +17592250081282 Mackins, Steven Payroll Outstanding 25200 +17592250090227 Keith Ford Repairs to Building 74500 +17592250102952 Yianni Tsigaris Payroll Outstanding 25200 +17592250154124 pizza my heart Food Decoration Cost 55100 +17592250162259 CDFA-L24002 Business License 86100 +17592250212199 Cintas Cleaning Supplies 74100 +17592250233309 ANB PROPERTY CORPORATION Rent 82100 +17592250351839 CRI Commerce Resource Group Inc FOH Supplies - Reuseable 71200 +17592250362810 Forest Delivery FOH Supplies - Reuseable 71200 +17592250362904 Staycold Refrigeration Service or Pass Through Costs 58000 +17592250372303 Grease Trap Cleaners LLC Service or Pass Through Costs 58000 +17592250460757 ESTATE WINES LTD Wine Cost 54400 +17592250460793 SPRINGBOARD WINE COMPANY LLC Wine Cost 54400 +17592250469183 SUMMIT VINEYARDS ESTATE Wine Cost 54400 +17592250483275 Planet wine Wine Cost 54400 +17592250512915 Pioneer Liquid Transport Building Cleaning & Maintenance 74600 +17592250512920 Gold Medallion INC Contract Labor 74800 +17592286321616 Fountains Gyro House LLC Inter-Store Transfer Deficit 26300 +17592286321632 Fair Oaks Gyro House LLC Inter-Store Transfer Deficit 26300 +17592250682855 Edwing Lopez Contract Labor 74800 +17592250682940 Norlin Alexander Fiore Contract Labor 74800 +17592250725168 BGB Food Club Fullerton LLC Menus 72200 +17592250781064 HA Fire Protection Inc. Repairs to Equipment 74700 +17592250792992 Jocelyn Cruz Contract Labor 74800 +17592269932129 The Plex Interest Income 49600 +17592250805233 Andrew Campos Delivery Cost 57000 +17592236116488 John Del Rosario Investments 17000 +17592250887808 JKCP Promotional or Donation Meal Comps 72710 +17592250897022 City of Fremont Citation Processing Center Parking 73200 +17592250897222 Exclusive Fresh Inc Seafood Costs 51130 +17592250947611 Elena Heine Tips Payable 25500 +17592250947613 Logan Corry Tips Payable 25500 +17592250947615 Joanne Wong Tips Payable 25500 +17592250947618 Andrew DaCosta Tips Payable 25500 +17592250947620 Brandon Crabb Tips Payable 25500 +17592250947656 Brayden Crabb Tips Payable 25500 +17592250959018 Morgan Stalpman Tips Payable 25500 +17592250959020 Cadence Hollis Tips Payable 25500 +17592250959023 Samantha Ruiz Tips Payable 25500 +17592250959091 Annabelle Guerrero Tips Payable 25500 +17592250959093 Caden Seevers Tips Payable 25500 +17592250959095 Brad's Auto Care Auto and Truck Expenses 73100 +17592250959472 Hudsen Lyles Tips Payable 25500 +17592250971614 Taps Gyro House Start Up Costs 16300 +17592251132729 Western Freezers Specialty Equipment Service or Pass Through Costs 58000 +17592251167000 Samantha A. Gonzalez Payroll Outstanding 25200 +17592251226630 yoon Peng Chin Payroll Outstanding 25200 +17592251226710 Jorge Hernandez Payroll Outstanding 25200 +17592251229278 Xu Han Payroll Outstanding 25200 +17592251229280 Xu Han Payroll Outstanding 25200 +17592251277086 Jesus Garcia Payroll Outstanding 25200 +17592251277088 Carlos Castro Payroll Outstanding 25200 +17592251277090 Cody Payroll Outstanding 25200 +17592251277092 Nemias Zalazar Payroll Outstanding 25200 +17592268671507 Innovative Lease Service Inc. Lease Acquisition 16510 +17592251302164 Octavio Reyes Payroll Outstanding 25200 +17592251310076 Vicente Reyes Payroll Outstanding 25200 +17592251348410 Jacquelin Corona Tips Payable 25500 +17592251348423 Ronnie Greenberg Tips Payable 25500 +17592251425603 Nikolas Rios Payroll Outstanding 25200 +17592251436185 PACT Construction Services LLC Leasehold Improvements 15300 +17592232625413 Equinox Liquor Sales 46000 +17592251455480 Ivan Ojendiz Contract Cleaning 74150 +17592251512288 Yianni Simos Payroll Outstanding 25200 +17592251520603 Justin Calugi Payroll Outstanding 25200 +17592251521586 Alexis Guevara Payroll Outstanding 25200 +17592251521607 Elizabeth Avila Payroll Outstanding 25200 +17592251606347 NESS BACKFLOW AND PLUMBING Building Cleaning & Maintenance 74600 +17592251606433 Upholstery RB Leasehold Improvements 15300 +17592251660299 Pamela Bergmann Entertainment - Other 72680 +17592251660301 Pamela Bergmann Entertainment - Other 72680 +17592251741910 Alvaro De Jesus Hernandez Tips Payable 25500 +17592251792260 Monique Gabriel Payroll Outstanding 25200 +17592251918851 Jesus Henandez Payroll Outstanding 25200 +17592251999314 Diego Lopez Employee Training 73500 +17592252025492 Schenel Doromal - Payroll Payroll Outstanding 25200 +17592252076920 Donald Wilson Payroll Outstanding 25200 +17592252076976 Central Surfaces Leasehold Improvements 15300 +17592252120666 Damian Batshon Payroll Outstanding 25200 +17592252121402 Alex Diaz Payroll Outstanding 25200 +17592252121426 Nikolas Flocas Payroll Outstanding 25200 +17592252121437 Edgar Perez Payroll Outstanding 25200 +17592252168185 San Carlos Restaurant Supply Kitchen Supplies 74200 +17592252185738 Juan Flores Construction Repairs to Building 74500 +17592252225924 Stephanie Z Nepacena Payroll Outstanding 25200 +17592252241741 Samuel R. Orozco Unassigned Expenses 75990 +17592252258460 Jesus Cortez Payroll Outstanding 25200 +17592252285088 Vanessa Mendoza Payroll Outstanding 25200 +17592252285099 Monique Beltran Payroll Outstanding 25200 +17592252285109 Mila Sanchez Payroll Outstanding 25200 +17592252285119 Mia Ferradas Payroll Outstanding 25200 +17592252285129 Marissa Prizzi Payroll Outstanding 25200 +17592252285140 Karla Miroslara Prieto Ramirez Payroll Outstanding 25200 +17592252285150 Hayden Oseguera Payroll Outstanding 25200 +17592252295010 Fatima Lozano Payroll Outstanding 25200 +17592252348594 Daniel Flores Payroll Outstanding 25200 +17592252348597 Kevin Emerson Pixcar Cuterez Payroll Outstanding 25200 +17592252359478 king kong Repairs to Building 74500 +17592252401254 TLC Contract Labor 74800 +17592252426172 Sreevishnupriya Jayaprakash Payroll Outstanding 25200 +17592252426256 Guadalupe Reyes Payroll Outstanding 25200 +17592252435388 Singer Lewak Professional Fees 81110 +17592252446282 Laurelwood Merchant Association Other Rental 84300 +17592252490139 Serious Imaging Uniforms 73300 +17592252515904 Nutricious Delicious Foods Food Cost 50000 +17592252534981 Eleazar Garcia Payroll Outstanding 25200 +17592252581552 Sergio Alvarez Payroll Outstanding 25200 +17592252581563 Maria Hernandez Payroll Outstanding 25200 +17592252581574 Jesus Morales Gudiel Payroll Outstanding 25200 +17592252581576 Carlos Castro Payroll Outstanding 25200 +17592252581578 Carl Balzarano Payroll Outstanding 25200 +17592252581580 Maria Antonio Payroll Outstanding 25200 +17592252581582 Eliezer Sanchez Nicolas Payroll Outstanding 25200 +17592252581585 Daniel Calvillo-Chavez Payroll Outstanding 25200 +17592252581587 Alia Al-Saleh Payroll Outstanding 25200 +17592252581627 Alia Al-Saleh Payroll Outstanding 25200 +17592252581667 Sol Hernandez Payroll Outstanding 25200 +17592252581688 Cody Payroll Outstanding 25200 +17592252581714 Cody Hightower Payroll Outstanding 25200 +17592252581754 Jose M Hernandez Payroll Outstanding 25200 +17592252581756 Juliana Gonzalez Payroll Outstanding 25200 +17592252590436 Juan Garcia Payroll Outstanding 25200 +17592252590438 Daniel Alberto Payroll Outstanding 25200 +17592252590440 Jesus Garcia Payroll Outstanding 25200 +17592252590442 Hector Garcia Payroll Outstanding 25200 +17592252590444 Abad Hernandez Payroll Outstanding 25200 +17592252590497 Jesus Garcia Payroll Outstanding 25200 +17592252753541 Miguel Lopez Baltazar Payroll Outstanding 25200 +17592252753544 Miguel Lopez Baltazar Payroll Outstanding 25200 +17592252813878 Zochil Moreno-Martinez Payroll Outstanding 25200 +17592252852624 Armando Estrada Payroll Outstanding 25200 +17592252857198 Mynor R Pirir Coc Payroll Outstanding 25200 +17592253042899 Carlos Oropeza Cantu Payroll Outstanding 25200 +17592253044134 Angel Cruz Payroll Outstanding 25200 +17592253103218 TLC Power Washing & Hood Cleaning Building Cleaning & Maintenance 74600 +17592253113620 West Valley Slammers Fastpitch Softball League Promotional or Donation Meal Comps 1 72711 +17592253135901 State Farm Specialty Liability Insurance 85100 +17592253175990 Andrea Natalia Carrasco Payroll Outstanding 25200 +17592253184050 Leslie Cruz Payroll Outstanding 25200 +17592253184076 Kristabel Chaisson Payroll Outstanding 25200 +17592253184127 Danielle Chaisson Payroll Outstanding 25200 +17592253184145 Mariah Zaiss Payroll Outstanding 25200 +17592253184166 Juaquin Clark Payroll Outstanding 25200 +17592253184197 Ariannah Vasquez Payroll Outstanding 25200 +17592253184216 Annika Sutter Payroll Outstanding 25200 +17592253184245 Elijah Reyes Payroll Outstanding 25200 +17592253192186 Azucena Diaz Payroll Outstanding 25200 +17592253192400 Deiler Pegram Payroll Outstanding 25200 +17592253192418 Letty Ortiz Payroll Outstanding 25200 +17592253192436 Uriel Mazarieges Payroll Outstanding 25200 +17592253192455 Sergio Marquez Payroll Outstanding 25200 +17592253192473 Adrian Little Payroll Outstanding 25200 +17592253201350 Narcisco Bello Payroll Outstanding 25200 +17592253201368 Miseal Hernandez Santiago Payroll Outstanding 25200 +17592253201386 Alexia Hernandez Payroll Outstanding 25200 +17592253201404 Anysleydi Flores Payroll Outstanding 25200 +17592253201422 Juan Espinosa Payroll Outstanding 25200 +17592253201441 Carlos Perez Payroll Outstanding 25200 +17592253201486 Jeremiah Vleck Payroll Outstanding 25200 +17592253209597 German Victoria Payroll Outstanding 25200 +17592253209615 Lizbeth Tamayo Payroll Outstanding 25200 +17592253353316 Alicia C Monzon Payroll Outstanding 25200 +17592253380721 Sergio Trujillo Payroll Outstanding 25200 +17592253383772 Jorge L Pita Payroll Outstanding 25200 +17592253399359 TLC Building Cleaning & Maintenance 74600 +17592253438842 DoorDash Inc Professional Fees 81110 +17592253465863 Ronald Songco Music Licensing Fees 72600 +17592253471484 Daily Journal Corp (DBA Store) Business License 86100 +17592253471494 HealthNet (Medical Insurace) Employee Medical Benefits 69920 +17592253518121 Francisco Vigil Payroll Outstanding 25200 +17592253522510 Juan Navarro Payroll Outstanding 25200 +17592253578240 Karla Pichardo Tips Payable 25500 +17592253578494 TriMark Hockenbergs Leasehold Improvements 15300 +17592253606262 Olathe Greenwood, LLC Rent 82100 +17592253629877 Notre Dame Elementary PTO Payroll Outstanding 25200 +17592253638970 Oyster Elementary Promotional or Donation Meal Comps 72710 +17592253670685 Sadiye Dinc Tips Payable 25500 +17592253770648 Marcos Figueroa Payroll Outstanding 25200 +17592253788588 Bienvenido Amador Payroll Outstanding 25200 +17592253788592 Ana Hernandez Payroll Outstanding 25200 +17592253788723 Jose Castenda Payroll Outstanding 25200 +17592253845960 republic Indemnity Service or Pass Through Costs 58000 +17592253846693 gilrt flores Security Guards 71600 +17592253846695 gilbert flores Security Guards 71600 +17592253861680 Allen Brothers West Food Cost 50000 +17592253861752 Chef's Choice Produce Co. Produce Costs 51200 +17592253861893 The Chef's Warehouse West Food Cost 50000 +17592253861897 Chefs Warehouse - Naschmarkt Food Cost 50000 +17592253870230 Roto-Rooter Services Company Building Cleaning & Maintenance 74600 +17592253870288 Bay Area Gasket Guy Kitchen Equipment 15410 +17592253904353 Alameda County Environmental Health Health Permit 86200 +17592253913012 Cassandra Bauer Tips Payable 25500 +17592287264307 EZ Cater TIPS Living Wage Payable 25510 +17592253933246 ancient agro Produce Costs 51200 +17592253978961 Wilton Perez Payroll Outstanding 25200 +17592253978965 Andrea Ghita Payroll Outstanding 25200 +17592253989741 tahoe spirits inc Alcohol Cost 54000 +17592254080923 Denis Pacheco Payroll Outstanding 25200 +17592254080965 Rob Tumlin Payroll Outstanding 25200 +17592254090347 Yanelith Madrid Payroll Outstanding 25200 +17592254139375 Javier Vigil Payroll Outstanding 25200 +17592254139377 Madison Lang Payroll Outstanding 25200 +17592254139379 Nilson Garcia-Guerra Payroll Outstanding 25200 +17592254159162 BJ Productions Bands and DJ's 72650 +17592254168559 Turbicio Garcia Payroll Outstanding 25200 +17592254223209 Felix Uscanga Payroll Outstanding 25200 +17592254239783 Paul Fuller Building Cleaning & Maintenance 74600 +17592254240080 Miguel Sanchez Garcia Payroll Outstanding 25200 +17592254240082 Omar Fabian Cruz Payroll Outstanding 25200 +17592254281458 Jose Jorge Romero Rivera Payroll Outstanding 25200 +17592254296141 NKESE ETOKUDO Entertainment - Other 72680 +17592254303953 Hudson McManus Start Up Costs 16300 +17592254322964 Ocomar Seafood Costs 51130 +17592254336845 moschetti artisan roaster Coffee Costs 52200 +17592254347992 Catalina Janitorial Services Contract Cleaning 74150 +17592254348017 Catalina Alvez Janitorial Contract Cleaning 74150 +17592254415547 Zoe Triantos Tips Payable 25500 +17592254446955 Chanin Wine Co. Wine Cost 54400 +17592186046148 Amanda Walls Loan from Member/ Partner/ Shareholder 28500 +17592254511342 Hayley Hulsey Payroll Outstanding 25200 +17592254532347 Hayley Hulsey Final Check Payroll Outstanding 25200 +17592254567140 Sunnyvale Department of Public Safety Licenses & Permit Union Local Taxes 86400 +17592254620008 Donald WILSON Tips Payable 25500 +17592254641684 Grace Lovewell Payroll Outstanding 25200 +17592254671620 nicholas mathews Building Cleaning & Maintenance 74600 +17592254696131 Patrick Ip Building Cleaning & Maintenance 74600 +17592254721359 The Huizar Appliance Repair Repairs to Equipment 74700 +17592192026080 Gregorio Villalobos Loan from Member/ Partner/ Shareholder 28500 +17592211445553 Elias Amireh Loan from Member/ Partner/ Shareholder 28500 +17592254748718 Mike Miyaki Consultants 81150 +17592211514621 Jeremy Orozco Loan from Member/ Partner/ Shareholder 28500 +17592254787623 Vic Artiga Entertainment - Other 72680 +17592254837173 Brandi Barragan Payroll Outstanding 25200 +17592254852429 Mindful Distributors Draft Beer Cost 54200 +17592212680463 Sal Ruiz Loan from Member/ Partner/ Shareholder 28500 +17592254880577 Shell Door Service Repairs to Equipment 74700 +17592254933416 Donovan Gooding Payroll Outstanding 25200 +17592254962131 Arianna Hall Tips Payable 25500 +17592255019861 CITY OF FULLERTON- ACCOUNTS RECEIVABLE Water and Sewage 83400 +17592255058150 Diego Garcia Leasehold Improvements 15300 +17592255070687 Rosalyn Rojas Payroll Outstanding 25200 +17592255070689 Chloe Nelson Payroll Outstanding 25200 +17592255071214 Rony Guerra Payroll Outstanding 25200 +17592255071351 David Cantwell Payroll Outstanding 25200 +17592255101779 Ismail Khaliqi Payroll Outstanding 25200 +17592255101781 Mah Gul Khaliqi Payroll Outstanding 25200 +17592255110448 Ilana Thomas Meals & Entertainment 1 91201 +17592255140080 KZ Kitchen Cabinets & Stone Inc. Leasehold Improvements 15306 +17592255166338 Samuel Marin-Rios Payroll Outstanding 25200 +17592255176639 Jose Uriel Basaldu Rodriguez Payroll Outstanding 25200 +17592255192363 3D Properties Rent 82100 +17592255229896 Diego Armando Yas Suruy Payroll Outstanding 25200 +17592255241033 Abby Parks Payroll Outstanding 25200 +17592255252868 Dolores Sanchez Payroll Outstanding 25200 +17592255252878 Elias Bartley Payroll Outstanding 25200 +17592255252880 Felipe Santos Payroll Outstanding 25200 +17592255253268 Jacinda Lin Hernandez Payroll Outstanding 25200 +17592255253270 Jaron Johnson Payroll Outstanding 25200 +17592255253272 Jason Damasco Payroll Outstanding 25200 +17592255253274 Lycenia Cesena Payroll Outstanding 25200 +17592255253536 Michael Cuellar Payroll Outstanding 25200 +17592255253538 Miyah Changco Payroll Outstanding 25200 +17592255253614 Tony Lopez Payroll Outstanding 25200 +17592255253745 Will Hoedt Payroll Outstanding 25200 +17592255266663 Siu P Chan Meals and Entertainment 91200 +17592255283031 Karim Khaliqi Payroll Outstanding 25200 +17592255313822 Carolina Magallanes Guitierrez Payroll Outstanding 25200 +17592255323779 kgip Rent 82100 +17592255332898 cceb Rent 82100 +17592255343855 GRGICH HILLS ESTATE Liquor Cost 54700 +17592255372479 Alexandria Kavalaris Legal Fees 81120 +17592255372598 Ventura Hersey & Muller, LLP Legal Fees 81120 +17592214781291 John Smith - Loan Loan from Member/ Partner/ Shareholder 28500 +17592255448212 German Pascasio Payroll Outstanding 25200 +17592255467598 C&C Produce Food Cost 50000 +17592255510110 Santiago Choe Asig Payroll Outstanding 25200 +17592255510112 Andres Caal Payroll Outstanding 25200 +17592255529489 The Roofing Friend Inc Leasehold Improvements 15300 +17592255597741 Yovani Orosco Payroll Outstanding 25200 +17592255667500 Margaret stark Advertising 72180 +17592255713034 Luis Zamaniego Repairs to Building 74500 +17592255774718 Leticia Medina Payroll Outstanding 25200 +17592255785914 Antonio Sanchez Flores Jr Payroll Outstanding 25200 +17592255811262 Westlife Imports Wine Cost 54400 +17592255836531 Olivia Lolis Tips Payable 25500 +17592255836629 Jose Alvaros Tips Payable 25500 +17592255836696 Damelis Rodriguez Tips Payable 25500 +17592228176281 Fernando Ricardez Loan from Member/ Partner/ Shareholder 28500 +17592255858145 CDM Baseball Boosters Promotional or Donation Meal Comps 72710 +17592255867115 Super Stop Auto and Truck Expenses 73100 +17592255876394 Majestic Design Leasehold Improvements 15300 +17592255876474 Hammad Refrigeration Repairs to Equipment 74700 +17592233358186 Positive Vibrations Loan from Member/ Partner/ Shareholder 28500 +17592255898752 San Francisco Food Supply Paperware Cost 55000 +17592255996588 Kroloff, Belcher, Smart, Perry & Christopherson Legal Fees 81120 +17592256013828 Giovanni Villafranca Payroll Outstanding 25200 +17592256013831 Swirl Wine Brokers Wine Cost 54400 +17592256013954 Alex Perez Payroll Outstanding 25200 +17592256013974 Marisol Cabrera Rodriguez Payroll Outstanding 25200 +17592256014206 Miguel Angel Lopez Payroll Outstanding 25200 +17592256093754 Fabricio Romero Final Paycheck PP (02/21-02/25) Payroll Outstanding 25200 +17592256103008 Brandon Alvarez Final Check PP (02/21-03/06) Payroll Outstanding 25200 +17592256117326 Abram Anthony Pasillas Jr Payroll Outstanding 25200 +17592256117381 Lauren Bautista Payroll Outstanding 25200 +17592256172560 Kirk Kull Repairs to Equipment 74700 +17592256216254 Jausalin Rae Bertrand Payroll Outstanding 25200 +17592256216268 Jeycon Jassiel Hernandez Caceres Payroll Outstanding 25200 +17592256216276 Cienna Jewel Crabtree Payroll Outstanding 25200 +17592256216278 Zameer De Cunha Payroll Outstanding 25200 +17592256216286 Jilma Dias Salvidar Payroll Outstanding 25200 +17592256216288 Evelin Tatiana Duarte Martinez Payroll Outstanding 25200 +17592256216303 Elia Georgina Figueroa Padilla Payroll Outstanding 25200 +17592256216311 Ana Pimental Payroll Outstanding 25200 +17592256216380 Eleyna K Vazquez-Kimball Payroll Outstanding 25200 +17592256216388 Francisco J Vigil Payroll Outstanding 25200 +17592256216980 Sean Calhoun Payroll Outstanding 25200 +17592256225862 Daly City Partners I, LP Rent 82100 +17592256282313 Maggiano's Food Decoration Cost 55100 +17592256314452 MA-HA Virtue LLC Soft Beverage Cost 52000 +17592256323042 Raymundo Reza Repairs to Equipment 74700 +17592256341518 Aleksandra Marshaniia Meals & Entertainment 1 91201 +17592256356079 Comfort 1 Heating And Air Repairs to Equipment 74700 +17592256388623 Juan Jose Mendez Payroll Outstanding 25200 +17592256484471 NORMAN E. MATTEONI Legal Fees 81120 +17592256484684 The Roseville Fountains LP Rent 82100 +17592256487576 City of Roseville Start Up Costs 16300 +17592256522876 Heriberto Villegas Isiordia Employee Benefits - Variable 69900 +17592234655571 Daniel Skarbek Loan from Member/ Partner/ Shareholder 28500 +17592256573793 Dora Garcia Payroll Outstanding 25200 +17592256657575 melissa romero Payroll Outstanding 25200 +17592256687261 Danilla - Architect Professional Fees 81110 +17592256687277 Chris Lee Website/ Social Media 72110 +17592256824033 Cirq Wine Cost 54400 +17592256873836 P.H.S. Pro Hood Exhaust solution Building Cleaning & Maintenance 74600 +17592256892277 All Clear Plumbing and Drain Building Cleaning & Maintenance 74600 +17592235057017 Mandy Hedrick Loan from Member/ Partner/ Shareholder 28500 +17592256965120 Internal Revenue Service Federal Taxes 97100 +17592257000731 Laila Fatima Payroll Outstanding 25200 +17592257032268 Jose Farfan Payroll Outstanding 25200 +17592257048779 Alejandro Gusmey Inc Food Cost 50000 +17592257068400 Ivan Paniagua Payroll Outstanding 25200 +17592257078117 Jose Uriel Basaldu Rodriguez Payroll Outstanding 25200 +17592257138236 Omar Yanez Garcia Payroll Outstanding 25200 +17592257225144 Brynn Angelo Payroll Outstanding 25200 +17592257225164 Victor Aguilar Payroll Outstanding 25200 +17592257253700 Pedro Alvarado Payroll Outstanding 25200 +17592257281785 Campbell Bay Electric Inc. Repairs to Building 74500 +17592257292440 Bianchini's Market Food Cost 50000 +17592257294086 Abel Batrez Building Cleaning & Maintenance 74600 +17592241438792 Giuseppe Vinella Loan from Member/ Partner/ Shareholder 28500 +17592257304236 ABC Liquor License Fee 86500 +17592257304702 amts tax services Accounting 81140 +17592257337312 Fotos By T Cell Phone 83650 +17592257346021 Diego Pinzon Meza Payroll Outstanding 25200 +17592259049672 andy Younan Loan from Member/ Partner/ Shareholder 28500 +17592257484701 Mia Shin Payroll Outstanding 25200 +17592257542869 Santiago Choc Payroll Outstanding 25200 +17592257542871 Bernabe Chocoj Payroll Outstanding 25200 +17592257542873 Andres Caal Payroll Outstanding 25200 +17592257542881 Olger Garcia Payroll Outstanding 25200 +17592257542883 Carlos Guzman Payroll Outstanding 25200 +17592257543079 Angel Romero Payroll Outstanding 25200 +17592257543097 Yobani Romero Payroll Outstanding 25200 +17592257543236 Sophia Chavez Payroll Outstanding 25200 +17592257543255 Siro Albarado Payroll Outstanding 25200 +17592257543273 Jose Lopez Payroll Outstanding 25200 +17592257544486 diego quinonez Building Cleaning & Maintenance 74600 +17592257585356 Hen House Food Cost 50000 +17592257593259 EB PLUMBING SERVICE INC Repairs to Building 74500 +17592257605219 Patricia Nunez Tips Payable 25500 +17592257681928 Kathryn Kennedy Winery Wine Cost 54400 +17592257690731 Mike Fox's A&A PLUMBING Building Cleaning & Maintenance 74600 +17592257754469 Rosa Valencia Payroll Outstanding 25200 +17592257785640 Universal Security & Fire INC. Security System/ Alarms 83800 +17592257816451 Potter Handy, LLP Professional Fees 81110 +17592257830324 Leslie Anaya Payroll Outstanding 25200 +17592257830619 Hung's Custom Draperies, Inc. Repairs to Building 74500 +17592257886558 Jesse David Gomez Tips Payable 25500 +17592258043248 Stella Mohammed Payroll Outstanding 25200 +17592258056011 Luis Omar Rosas Payroll Outstanding 25200 +17592258056019 Stella Mohammed Payroll Outstanding 25200 +17592258064070 Fallon Middle School Marketing 72100 +17592258137129 Jesus Gonzalez Payroll Outstanding 25200 +17592258146150 Oscar Gonzalez Payroll Outstanding 25200 +17592258193771 Rivera & Son Electric Leasehold Improvements 15300 +17592258228336 Akin Basol Tips Payable 25500 +17592258228484 Akin Basol Tips Payable 25500 +17592258228486 akin basol Tips Payable 25500 +17592258266268 Sean Spanek Interest Expense 93400 +17592258316957 Bryan Wang Payroll Outstanding 25200 +17592258328893 John Thiemann Repairs to Equipment 74700 +17592258359126 West Coast Hoods Repairs to Building 74500 +17592258394222 Janella Walker Tips Payable 25500 +17592258394225 Zack Rodriguez Tips Payable 25500 +17592258394285 Bedirxan Duygu Tips Payable 25500 +17592258394335 Jesse Gomez Tips Payable 25500 +17592258403511 Alfredo gonzales Contract Labor 74800 +17592258430713 Guadalupe Y. Hernandez Music Licensing Fees 72600 +17592258473702 Original Pattern Brewing Co. Draft Beer Cost 54200 +17592258495312 Van Nguyen Payroll Outstanding 25200 +17592258495941 Roar Wines Wine Cost 54400 +17592258496025 Alexana Winery Wine Cost 54400 +17592258531498 Fernando Ruelas Employee Mileage Reimbursements 73180 +17592258540501 Gaurav Singh Payroll Outstanding 25200 +17592258549430 The Ridge EG West, LP Rent 82100 +17592258593186 Morgan Hill Downtown Association Membership Dues and Associations 81200 +17592258612645 Sammy Madanat Repairs to Equipment 74700 +17592258628449 Victor Baires Contract Cleaning 74150 +17592258628470 Baurang Pandya - Tips Tips Payable 25500 +17592258628472 Gaurang Pandya - Tips Tips Payable 25500 +17592258682989 Grease Trap Cleaners and Oil Collectors Building Cleaning & Maintenance 74600 +17592258770447 JP Media Marketing 72100 +17592258779489 Alara Cellars Wine Cost 54400 +17592258823697 FULYA KARADELI Tips Payable 25500 +17592258840441 MACK MARQUARD Payroll Outstanding 25200 +17592258914613 bay area piano movers Contract Labor 74800 +17592258934811 Teixeira Wine Group Wine Cost 54400 +17592258935382 Daniela Gutierrez Payroll Outstanding 25200 +17592258967569 David Eskov Leasehold Improvements 15300 +17592258978616 American Incorporated Start Up Costs 16300 +17592258978720 Castillo Mgt Start Up Costs 16300 +17592259017212 Luna Delivery Food Cost 50000 +17592275169634 BALY Loan from Member/ Partner/ Shareholder 28500 +17592259065467 Ramon Ruiz Building Cleaning & Maintenance 74600 +17592259065485 Ramon Ortiz Building Cleaning & Maintenance 74600 +17592259066278 Jefry Bani Payroll Outstanding 25200 +17592259077571 Hung's Custom Draperies Inc.2 Repairs to Building 74500 +17592259077662 Castillos Restaurant Supply Kitchen Equipment 15410 +17592259089395 Sunnyvale Downtown Association Meals and Entertainment 91200 +17592259098535 El Shandee Marie V Somera Payroll Outstanding 25200 +17592259098673 EJ plumbing Building Cleaning & Maintenance 74600 +17592259114632 Jorge Gomez Marketing Consultant 72150 +17592259139341 Daniel Alberto Calvo Garcia Payroll Outstanding 25200 +17592259145562 Miguel Cuevas Payroll Outstanding 25200 +17592259155923 Elenys Del Toro Payroll Outstanding 25200 +17592259155925 Damien Martinez Payroll Outstanding 25200 +17592259155960 Cody Lavender Payroll Outstanding 25200 +17592259156045 Maquir Josue Ramirez Ruiz Payroll Outstanding 25200 +17592259164890 Oscar Tapia Gallegos Payroll Outstanding 25200 +17592259164909 Garrett Watson Payroll Outstanding 25200 +17592259164927 Tamer Zeidan Payroll Outstanding 25200 +17592259164995 Claudia Zuniga Payroll Outstanding 25200 +17592259165014 Kailey Bowman Payroll Outstanding 25200 +17592259248030 Nadia Hernandez Food Cost 50000 +17592259267664 Sarah Nicole King Payroll Outstanding 25200 +17592259267684 Jaidin Karl Wolff Payroll Outstanding 25200 +17592259267705 Kennan Sidney Knowles-Osmeni Payroll Outstanding 25200 +17592259276691 Juan Ramos Payroll Outstanding 25200 +17592259304098 Randy Moody Payroll Outstanding 25200 +17592259329497 Davis Eliehjayounesloo Payroll Outstanding 25200 +17592259338673 JHONNY ZARATE Payroll Outstanding 25200 +17592259348222 Commerce Resources Group, Inc Paperware Cost 55000 +17592259348226 Bay Star Fire Protection Inc Food Cost 50000 +17592259362823 Bay Star Fire Protection Inc Food Cost 50000 +17592259362844 Commerce Resources Group, Inc. Paperware Cost 55000 +17592259384794 ABC Sewer and Drain Repairs to Equipment 74700 +17592259419325 Raul Solorio Payroll Outstanding 25200 +17592259483712 lucio prado Contract Labor 74800 +17592259487747 Lightpost Winery Wine Cost 54400 +17592259487750 Guglielmo Winery Wine Cost 54400 +17592259487757 Martin Ranch Winery Wine Cost 54400 +17592259487760 Alara Cellars Wine Cost 54400 +17592259487764 Kelly Brewing Company Beer Cost 54100 +17592259487855 TenFiveOne Cider Co Bottled Beer Cost 54150 +17592259509017 Erick Servin Cash On Hand 11000 +17592259518201 ERIK ORTIZ Payroll Outstanding 25200 +17592259518219 Gustavo Valdivias Payroll Outstanding 25200 +17592259518264 Nick Rufus Salazar Payroll Outstanding 25200 +17592259545851 Ray Restaurant Repairs Inc. Repairs to Equipment 74700 +17592259569785 Fire Shield Building Cleaning & Maintenance 74600 +17592259579265 Chavez supermarket Seafood Costs 51130 +17592259587202 JUAN PABLO Payroll Outstanding 25200 +17592259587263 JUAN PABLO Payroll Outstanding 25200 +17592259612148 bernabe perez-sanchez Kitchen Equipment 15410 +17592275169636 baly Loan from Member/ Partner/ Shareholder 28500 +17592259804692 sara becerra Tips Payable 25500 +17592259889280 Johnny Figueroa Repairs to Building 74500 +17592259925499 SRC Companies Building Cleaning & Maintenance 74600 +17592259925526 Joe Vanotti Tips Payable 25500 +17592259954015 Jose Nicolas Luis Music Licensing Fees 72600 +17592259985482 Atanas Miltchev Repairs to Equipment 74700 +17592260052539 Jairo Quintero Tips Payable 25500 +17592260094881 Out The Box Entertainment Company Picnics 4 73704 +17592260105080 Erwin Ruiz Payroll Outstanding 25200 +17592260114358 Antonio Vazquez Payroll Outstanding 25200 +17592260153594 Horlenis Ruiz Payroll Outstanding 25200 +17592260163074 Madison McBride Payroll Outstanding 25200 +17592260163076 Wynton Howard Payroll Outstanding 25200 +17592260177646 Belarmino Lopez Payroll Outstanding 25200 +17592260191721 Kiriakos Kotsiopoulos Payroll Outstanding 25200 +17592226774303 Gary Kennedy Loan from Member/ Partner/ Shareholder 2 28510 +17592234766299 On Deck Capital, Inc. Note Payable 3 28030 +17592260212661 Hosoda Bros Food Cost 50000 +17592260212670 Day Lee Foods Food Cost 50000 +17592244511766 maher alaraj - loan repayment Note Payable 3 28030 +17592260315492 Viking Sausage Casing Company Meal Comps 72700 +17592284776222 SBA Note Payable 3 28030 +17592260352937 Tyler Derrick Payroll Outstanding 25200 +17592260352974 Nicole Ortiz Payroll Outstanding 25200 +17592260369985 Redwood Imaging Inc Printing - Internal 75200 +17592260369988 Harold Rodriguez Payroll Outstanding 25200 +17592192026088 Paypal Loan Notes Payable - General 28000 +17592260401112 Karot Lopreto Payroll Outstanding 25200 +17592260475541 mariia romashenkova Charitable Contributions 91100 +17592232603855 Rewards Network Notes Payable - General 28000 +17592260579235 Randolph Rupp Tips Payable 25500 +17592260579436 Ismail Duman Tips Payable 25500 +17592260652149 JORGE BERNAL Payroll Outstanding 25200 +17592260652210 ERIK ORTIZ Payroll Outstanding 25200 +17592260717501 Abram Anthony Pasillas Jr Payroll Outstanding 25200 +17592232941827 EIDL Loan Notes Payable - General 28000 +17592260807727 Lucio's Upholstery Repairs to Equipment 74700 +17592260880385 Tolga Basol Payroll Outstanding 25200 +17592261028772 Megan Hanley Payroll Outstanding 25200 +17592261028797 Megan Hanley Payroll Outstanding 25200 +17592261074018 Nt Dunhiill Rent 82100 +17592261104610 Pleasanton Lacrosse Club Promotional or Donation Meal Comps 72710 +17592261137395 Madison Barnes Payroll Outstanding 25200 +17592261154804 Ivette Alcala Food Decoration Cost 55100 +17592261185822 Guevara Handyman Kitchen Equipment 15410 +17592261225164 Rogelio Chanchavac Payroll Outstanding 25200 +17592261234535 Anthony Rubio Payroll Outstanding 25200 +17592261234619 Angel Rosales IT / Computer Repair 74710 +17592261256922 ROCIO MARTINEZ Payroll Outstanding 25200 +17592261269166 Metro Mechanical Inc. Building Cleaning & Maintenance 74600 +17592261278714 Ariel Omar Martinez Payroll Outstanding 25200 +17592261288137 Rony Mazariegos Payroll Outstanding 25200 +17592261301212 Josh Nguyen Payroll Outstanding 25200 +17592261310811 Diego Alvarez Payroll Outstanding 25200 +17592261332135 Ana Karen Barrios Payroll Outstanding 25200 +17592261409326 Sergio Trujillo Payroll Outstanding 25200 +17592261498978 Daniel Cruz Legal Fees 81120 +17592261548749 Optimal Kitchen Equipment 15410 +17592261553661 Cresco Resco Kitchen Equipment 15410 +17592261580836 ASCAP Music Licensing Fees 72600 +17592261580886 MID Auto and Truck Expenses 73100 +17592261592119 Jessica LaCroix Payroll Outstanding 25200 +17592261592512 Resurrection Greek Orthodox Church Promotional or Donation Meal Comps 72710 +17592261613499 Eric Le Payroll Outstanding 25200 +17592261613565 Siegfrid Lutz Payroll Outstanding 25200 +17592261634197 Kamen Estate Wines Wine Cost 54400 +17592261634267 Pacific Gas & Electric Utilities 83000 +17592261692936 Pablo Celedon Payroll Outstanding 25200 +17592232942060 PPP Loan Notes Payable - General 28000 +17592261730295 Hector Valdez Payroll Outstanding 25200 +17592261768988 Devcon Construction Leasehold Improvements 15300 +17592261808206 JOHAMAN JONES Payroll Outstanding 25200 +17592261858220 IDC Inc Advertising 72180 +17592261887963 Damian Cieslicki Rent 82100 +17592261900463 Tri Valley Locksmith Building Cleaning & Maintenance 74600 +17592261916732 DEREK FLOYD Payroll Outstanding 25200 +17592261942301 Victor Euquel Alvarez Barraza Payroll Outstanding 25200 +17592261942328 Northwest Wines Wine Cost 54400 +17592261959670 Cassandra Hawley Payroll Outstanding 25200 +17592261978011 Aura Pros LLC Equipment 15400 +17592262380888 Saratoga chamber Advertising 72180 +17592244511763 abe ajlouny - loan repayment Notes Payable 1 28010 +17592262670474 O'Reilly Auto Parts Auto and Truck Expenses 73100 +17592262686247 first response fire Building Cleaning & Maintenance 74600 +17592262701579 Jolee Aguilera Promotional or Donation Meal Comps 72710 +17592262769240 Jonathan Alexis Romero-Abrego Payroll Outstanding 25200 +17592262829522 Derek Floyd Payroll Outstanding 25200 +17592262839324 Jose Reyes Tips Payable 25500 +17592262851176 Gerson O Chavac Nig Payroll Outstanding 25200 +17592262875839 Vicente Sandoval Payroll Outstanding 25200 +17592262877545 AO Heating & Air Repairs to Equipment 74700 +17592262974936 Matt Nakamoto Tips Payable 25500 +17592263007439 Matthew Silvestrini Payroll Outstanding 25200 +17592263008008 Maicol Ayapan Siquiej Payroll Outstanding 25200 +17592263008116 Jason A Gomez Payroll Outstanding 25200 +17592263018143 Alejandro Matias Payroll Outstanding 25200 +17592263018736 Mark S Mendoza Hernandez Payroll Outstanding 25200 +17592263048469 ALDALBERTO DIAZ GONZALEZ Payroll Outstanding 25200 +17592263077818 Antonio Figueroa Camacho Payroll Outstanding 25200 +17592263088859 Sacramento Locksmith Services Contract Labor 74800 +17592263138967 Parker B Stokes Catering Cost 53000 +17592263160546 Porfirio Arana Payroll Outstanding 25200 +17592263160623 Jose Cordoba Payroll Outstanding 25200 +17592263277174 Magdlena Soto Building Cleaning & Maintenance 74600 +17592263277199 Magdalena Soto Building Cleaning & Maintenance 74600 +17592263422783 freddie fuentes Tips Payable 25500 +17592263518739 Aaron Michael Trout Payroll Outstanding 25200 +17592263537842 Jesse Palacios Payroll Outstanding 25200 +17592263551854 Bayram Bahri Can Payroll Outstanding 25200 +17592263569287 RICARDO MARTINEZ Payroll Outstanding 25200 +17592263662927 Jorgel Treminio Payroll Outstanding 25200 +17592263681553 Agnes Manu Payroll Outstanding 25200 +17592263720296 Martina Ortega Payroll Outstanding 25200 +17592263735438 Merry Edwards Winery Wine Cost 54400 +17592263736019 Ugur Ucan Tips Payable 25500 +17592263736032 Jose Puma Tips Payable 25500 +17592263783855 Bernice Lindstrom Rent 82100 +17592263789923 Pisoni Vineyards Wine Cost 54400 +17592263822688 Jose C. Martinez Tips Payable 25500 +17592263885771 Kassidy Kpran Payroll Outstanding 25200 +17592263907243 Avalon Bay Communities Rent 82100 +17592284760571 Brenda Butterfield Notes Payable 1 28010 +17592235251144 Tom Anthony Notes Payable 103 28103 +17592264004631 Francesca Mistely Tips Payable 25500 +17592264013821 Angelica Calzada Promotional or Donation Meal Comps 72710 +17592264063845 lusamerica foods inc Seafood Costs 51130 +17592264076386 Robert Aaron Thompson Heating & A/C Equipment 15400 +17592264076459 Donahue Shriber Realty Group Office Rent 82300 +17592264117836 Jose Nieto Employee Training 73500 +17592264137772 Pablo Riviere Entertainment - Other 72680 +17592264170358 Solution One Inc. Security System/ Alarms 83800 +17592264183917 Emily Serrano Payroll Outstanding 25200 +17592264185653 magnificent plumbing Kitchen Equipment 15410 +17592264188535 Carlos Verela Payroll Outstanding 25200 +17592264203175 Michael P Gonzales Payroll Outstanding 25200 +17592264216952 Vicente Alvarado Payroll Outstanding 25200 +17592264243899 Turker Yilmaz Entertainment - Other 72680 +17592264262719 Danfoura Law group P.C. Legal Fees 81120 +17592264286791 Maria Medrano Payroll Outstanding 25200 +17592264286810 Claudio Santiago Ignacio Payroll Outstanding 25200 +17592264296798 BRAYAN PINA IBANEZ Payroll Outstanding 25200 +17592264329222 Alizon Santana Payroll Outstanding 25200 +17592264380456 Nutritious Delicious Foods Co Food Cost 50000 +17592264442928 Dai Thanh Supermarket Food Cost 50000 +17592264456463 Heriberto Perez Payroll Outstanding 25200 +17592264546296 Raley's Food Cost 50000 +17592264582734 HOMERO OCHOA Payroll Outstanding 25200 +17592264582752 CSFPF (Cal State Fullerton Philanthropic Foundation) Advertising 72180 +17592264614004 JMK Investments Legal Fees 81120 +17592264629863 Bel Air Food Cost 50000 +17592264641542 Ace Hardware Kitchen Supplies 74200 +17592264687519 Ricardo Miranda Meals and Entertainment 91200 +17592264709587 Courtney Beaudin Tips Payable 25500 +17592264737990 Oliver Roblero Payroll Outstanding 25200 +17592264810164 PHOENIX AMERICA GROUP INC Leasehold Improvements 15300 +17592264840155 Nichole Chavez Tips Payable 25500 +17592264854549 Gerardo Reyes Corado Payroll Outstanding 25200 +17592264884599 South Valley Mushrooms Food Cost 50000 +17592264945480 John Gordon Rent 82100 +17592264986619 Fernando Reyes Payroll Outstanding 25200 +17592265048431 Mostefa Mazouni Tips Payable 25500 +17592265108311 George Fanourgiakis Food Cost 50000 +17592265130444 Bay Area Steam Services Building Cleaning & Maintenance 74600 +17592265186353 Jose Rayas - PA Busser Tips Payable 25500 +17592265197665 Aliyaa N Islam Tips Payable 25500 +17592265232785 Vicente Alvarado Sandoval Payroll Outstanding 25200 +17592265290573 State of California Franchise Tax Board State Taxes 97200 +17592265291420 Branley, Haley Gloria Payroll Outstanding 25200 +17592265336471 Reel Produce Produce Costs 51200 +17592265353407 Monica Martinez Tips Payable 25500 +17592265373959 Evan Richards Payroll Outstanding 25200 +17592265385842 Clemente Ayapan Turuy Payroll Outstanding 25200 +17592265396925 Manuel Gonzalez Leon Payroll Outstanding 25200 +17592265408072 Abdulkadir Dursun Tips Payable 25500 +17592265474739 Paola Torres Payroll Outstanding 25200 +17592265502671 C.P.S In Store Printing 72250 +17592265506258 Kevin A Morales Payroll Outstanding 25200 +17592265517436 Danielle Denise Torres Payroll Outstanding 25200 +17592265543535 ELIJAH CABALBAG Payroll Outstanding 25200 +17592265621467 Vargas Refrigeration Equipment 15400 +17592265633767 Abramson Levin & Gindi LLP Legal Fees 81120 +17592265651614 S.J. Distributors Inc. Food Cost 50000 +17592265674050 Master's Window & Gutter Cleaning, Inc Building Cleaning & Maintenance 74600 +17592265793869 miled tanios Repairs to Equipment 74700 +17592266068517 Caner Dagbay Cleaning Supplies 74100 +17592266122154 Bryan Mollat Payroll Outstanding 25200 +17592266157659 Ecolab Inc. Kitchen Equipment Rental 84100 +17592266198984 Eva Stenberg Tips Payable 25500 +17592266223372 Victor Castillo Payroll Outstanding 25200 +17592266280566 Marcos Romero Payroll Outstanding 25200 +17592266311291 Department of Child Support Services Payroll Outstanding 25200 +17592266322312 eladio d torres Employee Related Expenses 73000 +17592266433649 Sensil International LLC Paper and Packaging 71500 +17592266483546 Kalara Corp. Wine Cost 54400 +17592266512988 Vince Borgese Building Cleaning & Maintenance 74600 +17592266526100 Huang Jingkui Repairs to Building 74500 +17592266560821 Mariah Rodriguez Tips Payable 25500 +17592266571292 Laura music Meals and Entertainment 91200 +17592266614690 Nick Fanourgiakis Food Cost 50000 +17592266643560 Oliver Florian Perez Payroll Outstanding 25200 +17592266643563 Josue Lopez Garcia Payroll Outstanding 25200 +17592266664252 Julio Quintero Payroll Outstanding 25200 +17592266688095 Selvin Ivan Franco Payroll Outstanding 25200 +17592266737474 Alexis Gamboa Payroll Outstanding 25200 +17592266779828 Anacelia ulloa flores Contract Labor 74800 +17592266830722 leslie wolf Insurance 85105 +17592266831566 State Farm Speciality Products Insurance 85105 +17592266831733 State Farm Specialty Products Insurance 85105 +17592266853762 Diego Garcia Bolanos Leasehold Improvements 15300 +17592266866993 Ata Electric Inc Electric 83100 +17592266886990 Xiomara Antunez Employee Related Expenses 73000 +17592266897286 DARLIN ANTUNEZ Employee Related Expenses 73000 +17592266919288 Test123 Food Cost 50000 +17592234306170 Opportunity Fund Notes Payable 2 28020 +17592266920582 Oscar & Magdalena Building Cleaning & Maintenance 74600 +17592266933090 Grocery Stores CC Food Cost 50000 +17592266938065 I Moreno Building Cleaning & Maintenance 74600 +17592266938085 Nasrine Mazouni Website/ Social Media 72110 +17592266938371 Javier Cortez Morales Tips Payable 25500 +17592267018675 Weygandt-Metzler Importing Wine Cost 54400 +17592267037489 Constantine Construction Repairs to Equipment 74700 +17592267095245 Cozzini Bros Kitchen Utensils and Smallwares 74250 +17592267113189 Michael Hill Payroll Outstanding 25200 +17592244290872 Danny Moreno Notes Payable 2 28020 +17592267181227 Sandra Cortes Payroll Outstanding 25200 +17592267198970 jose natavidad zarate Building Cleaning & Maintenance 74600 +17592267243652 Brandon Nolasco Payroll Outstanding 25200 +17592267243943 Marc Vincent Paul San Diego Payroll Outstanding 25200 +17592245126322 Suhaila Alaraj Notes Payable 2 28020 +17592267331770 Christian Huerta Payroll Outstanding 25200 +17592267415464 Dylan Kleinmaier Payroll Outstanding 25200 +17592267416079 Mandi Barnes Payroll Outstanding 25200 +17592267416835 Kayla Alfaro Payroll Outstanding 25200 +17592267441915 Gabrielle Steven Payroll Outstanding 25200 +17592267442172 City Of San Leandro Start Up Costs 16300 +17592267461358 JOSE BRITO Payroll Outstanding 25200 +17592267580196 Grape Expectations Wine Cost 54400 +17592267675859 Hector Pedraza Start Up Costs 16300 +17592267697979 Margarita Garcia Arias Payroll Outstanding 25200 +17592267698068 Mission Addition, Inc Repairs to Building 74500 +17592267709632 Genaro Santiago Payroll Outstanding 25200 +17592267839333 Olivia Janee Frazier Payroll Outstanding 25200 +17592267839913 Pablo Gonzalez Payroll Outstanding 25200 +17592267863865 Abraham Moreno-Ponce Payroll Outstanding 25200 +17592267951265 Sadiq Alexander Payroll Outstanding 25200 +17592268032391 Edwin Yovany Chic Xiquin Payroll Outstanding 25200 +17592268163312 COLGIN CELLARS Wine Cost 54400 +17592268190370 Juan Carlos Sanchez Contract Cleaning 74150 +17592268234458 MARGARITO REYES MENDEZ Payroll Outstanding 25200 +17592268342736 Israel Hernandez Tips Payable 25500 +17592268378123 Hammad Refrigration Kitchen Supplies 74200 +17592268534534 Camilo Andres Sanchez Amaya Tips Payable 25500 +17592284776220 Patrick Krysler Notes Payable 2 28020 +17592268577004 Denise Baklava Food Cost 50000 +17592268593464 Garlic Mediterranean Grill INC Kitchen Equipment 15410 +17592268636666 Avanti Audiovisual IT / Computer Repair 74710 +17592186046098 United States Treasury Other Current Liabilites 25800 +17592268694853 Gladis Martinez Payroll Outstanding 25200 +17592268800573 First Washington Realty Rent 82100 +17592268800840 Peter Shamshoian Proteins Cost 51100 +17592268818629 Collin Masterson Payroll Outstanding 25200 +17592268819211 Yvette Delgado Payroll Outstanding 25200 +17592268839566 RGV TECH Building Cleaning & Maintenance 74600 +17592268850136 Tim Gutierrez Meals and Entertainment 91200 +17592268922943 CARLOS JIMENEZ Payroll Outstanding 25200 +17592268943320 valley plumbing Building Cleaning & Maintenance 74600 +17592268973331 Michelle Vanessa Lenis Employee Training 73500 +17592268988562 Nancy Martinez Payroll Outstanding 25200 +17592268988601 Sophia Farrington Payroll Outstanding 25200 +17592268988694 Elizabeth Huerta Payroll Outstanding 25200 +17592268988802 Edgar Navarro Payroll Outstanding 25200 +17592269000506 Esteban Parra Morales Payroll Outstanding 25200 +17592269000525 Derrick Jonathan Agas Payroll Outstanding 25200 +17592269011603 Dale Keeler Payroll Outstanding 25200 +17592269029014 Gildardo Cruz Repairs to Equipment 74700 +17592269029807 Sergio Siquiej Chavac Payroll Outstanding 25200 +17592269042046 Luciana Gonzalez Leon Payroll Outstanding 25200 +17592186852438 lang vo Owner/ Investor Loans 12400 +17592269138596 Henry C. Levy Treasurer and Tax Collector Alameda County Personal Property Taxes 86300 +17592269141332 San Mateo County Tax Collector Personal Property Taxes 86300 +17592269190617 jorge Calderon Payroll Outstanding 25200 +17592269210645 Damyia Ellis Payroll Outstanding 25200 +17592269299179 Daniel Serna Payroll Outstanding 25200 +17592269309731 filemon guzman Payroll Outstanding 25200 +17592269324683 Smud Electric 83100 +17592269335345 R&S Erection North Peninsula, Inc. Repairs to Building 74500 +17592269335349 eleazar sandoval Payroll Outstanding 25200 +17592269347043 Noralma Ambriz Payroll Outstanding 25200 +17592269347388 irene ramirez Payroll Outstanding 25200 +17592269372448 Dominick De La Garza Payroll Outstanding 25200 +17592269372747 Yin S Chi Payroll Outstanding 25200 +17592269437738 aldo luna Payroll Outstanding 25200 +17592269449888 Potter Handy LLP Legal Fees 81120 +17592269555341 MaryJane Ventura Payroll Outstanding 25200 +17592269566057 The IceMan Service Company Building Cleaning & Maintenance 74600 +17592269750392 Upright Engineering, INC Start Up Costs 16300 +17592269761197 Glenn Cunningham Leasehold Improvements 15300 +17592269812489 George's Fuel & Auto Propane 83250 +17592269865738 Dominick De La Garza Payroll Outstanding 25200 +17592269877127 Adopt My Block Charitable Contributions 91100 +17592233036488 Victor Zeidan Owner/ Investor Loans 12400 +17592269947214 Ersin Esirgemez Employee Training 73500 +17592269957894 A&b Plumbing and Backflow Repairs to Equipment 74700 +17592269988284 Lek Chayatanan Other Rental 84300 +17592270010059 Cherio Holding & Trading Co. Wine Cost 54400 +17592270077915 Bonnie Waters Other Rental 84300 +17592270151082 Gian Pinlac Payroll Outstanding 25200 +17592270151380 Ana Sanchez Payroll Outstanding 25200 +17592270173807 Yader Lopez Payroll Outstanding 25200 +17592270242201 Istrael Gutierrez Employee Training 73500 +17592270262706 JUAN PACHECO Payroll Outstanding 25200 +17592270263373 Daniel Cruz Perez Tips Payable 25500 +17592270318899 OCTAVIO NUNEZ Payroll Outstanding 25200 +17592270334131 Sammy Madanat Repairs to Equipment 74700 +17592270387140 Transwestern Consultants 81150 +17592270405320 Matthew Muma Cash On Hand 11000 +17592270488675 Placer County Tax Collector Personal Property Taxes 86300 +17592270488857 Elizabeth Reyes Payroll Outstanding 25200 +17592270495318 County of Santa Clara Department of Tax and Collections Local Taxes 86400 +17592270573602 michelle serna gonzales Tips Payable 25500 +17592270682138 Mario Hernandez Menjivar Payroll Outstanding 25200 +17592270682249 Victor Armando Estrada Payroll Outstanding 25200 +17592270682330 Ingris Samula Payroll Outstanding 25200 +17592270682524 Jose Hernandez Menjivar Payroll Outstanding 25200 +17592270693951 Isaac Vibanco Payroll Outstanding 25200 +17592270696265 Maximillino Rax Macz Payroll Outstanding 25200 +17592270786914 Ruya Ozveren Payroll Outstanding 25200 +17592270820674 Angelica Gonzales Payroll Outstanding 25200 +17592233352938 Brayan Elie Jaivenslou - Loan Owner/ Investor Loans 12400 +17592236467179 BEN THE MAN Owner/ Investor Loans 12400 +17592251436444 Marvin Castro Owner/ Investor Loans 12400 +17592271169986 City of Pleasanton Health Permit 86200 +17592271243284 MGKG Repairs to Equipment 74700 +17592271243851 Belair Food Cost 50000 +17592271255557 Javier Chavez Tips Payable 25500 +17592271255669 Paul's Safe & Lock Equipment 15400 +17592271285501 David Estrada Tips Payable 25500 +17592271318100 RIDGE VINEYARDS Wine Cost 54400 +17592271341228 Narrative Fermentations - Correct one Beer Cost 54100 +17592271341302 Wine Wise - Naschmarkt Wine Cost 54400 +17592271341311 Chambers Chambers - Naschmarkt Wine Cost 54400 +17592271357055 Isaac Wenses Payroll Outstanding 25200 +17592271378670 Edgar Rivera Chavez Employee Training 73500 +17592271396618 Jenna Gittens Payroll Outstanding 25200 +17592271439315 coyote creek elementray Promotional or Donation Meal Comps 72710 +17592271463691 Jessica Quarles Payroll Outstanding 25200 +17592271474663 Luis Angel Navarrete Ramirez Payroll Outstanding 25200 +17592271487275 Angelica Ortega Payroll Outstanding 25200 +17592271524078 Lowe's Repairs to Building 74500 +17592271578259 Nieves Alvarez Payroll Outstanding 25200 +17592271578476 Green Acres Nursery & Supply Food Cost 50000 +17592271598621 Foodmaxx Food Cost 50000 +17592271598656 Raymond Howell Contract Labor 74800 +17592271599061 Dale Hardware Equipment 15400 +17592271599096 Ross Kitchen Supplies 74200 +17592271599162 dd's Discounts Kitchen Supplies 74200 +17592271713224 Erick Esparza Payroll Outstanding 25200 +17592271776132 LIZZ HOUSE CLEANING Contract Labor 74800 +17592271806832 joey mangano Repairs to Building 74500 +17592271819784 Ballistic United Soccer Club Charitable Contributions 91100 +17592253933099 Potter Handy LLP Owner/ Investor Loans 12400 +17592271840093 thermo fix Repairs to Equipment 74700 +17592271851878 Jesus Delgado Payroll Outstanding 25200 +17592271875480 Yesena Gomez Repairs to Building 74500 +17592271876445 Aliyah Gharwal Payroll Outstanding 25200 +17592271887329 Robert Cecineros Payroll Outstanding 25200 +17592271913140 Yol Pineda Sindy Contract Labor 74800 +17592271938715 Yulissa Ramos Ambrocio Employee Training 73500 +17592271982991 BDC Davis L.P., Rent 82100 +17592271983140 Jennifer Gonzalez Payroll Outstanding 25200 +17592271983164 Antonio D'Anna Employee Training 73500 +17592272048028 State of CA Franchise Tax Board Sales Tax Collected 25700 +17592272126592 Cailie Mclemore Payroll Outstanding 25200 +17592272146929 Dennis Gonzalez Payroll Outstanding 25200 +17592272219108 Steve Crawley Tips Payable 25500 +17592272219397 Maria Cusella Tips Payable 25500 +17592272219545 Ken DeVault Tips Payable 25500 +17592272219548 Mark Del Rosario Tips Payable 25500 +17592272219550 Andrew Isidro Tips Payable 25500 +17592272219552 Christopher Medina Tips Payable 25500 +17592272219682 Nestor Phan Tips Payable 25500 +17592272219685 Hailey Robinson Tips Payable 25500 +17592272219690 Susan Tobin Tips Payable 25500 +17592272256047 RC Air Solutions Equipment 15400 +17592272276079 Carstens Realty Payroll Outstanding 25200 +17592272307295 General electric services,inc Electric 83100 +17592260211753 BOBBY LOAN Owner/ Investor Loans 12400 +17592272379093 Lokanta Locust Inc Kitchen Equipment 15410 +17592272408770 Silicon Valley Building Service and Repair Repairs to Building 74500 +17592272413655 USACD N Highlands Repairs to Equipment 74700 +17592272425247 Marco Reyes Payroll Outstanding 25200 +17592272441648 Messiah Zepeda Payroll Outstanding 25200 +17592272453912 Sol Monterrosa Garcia Payroll Outstanding 25200 +17592272475215 Silicon Valley Building Payroll Outstanding 25200 +17592272514997 Makiyah Vasquez Payroll Outstanding 25200 +17592272515363 Allen Navarrete Payroll Outstanding 25200 +17592272515430 Justin Taylor Payroll Outstanding 25200 +17592272555535 Santiago Obando Payroll Outstanding 25200 +17592272615828 Yoleni Lisbeth Velasquez Payroll Outstanding 25200 +17592272651503 Evelyn Young Payroll Outstanding 25200 +17592272717215 Marco Gallardo Payroll Outstanding 25200 +17592272728280 Donlon PTA Charitable Contributions 91100 +17592272749419 Homero Leon Gomez Payroll Outstanding 25200 +17592272783027 Sandy Nunez Payroll Outstanding 25200 +17592272796189 Luis Munoz Payroll Outstanding 25200 +17592272803671 U.S. Department of State Legal Fees 81120 +17592272837113 Franchise Tax Board State Taxes 97200 +17592272862982 Garcia Andrea F Employee Training 73500 +17592260211985 Bobby Loan Owner/ Investor Loans 12400 +17592272961611 Paolo Quinonez Ramos Payroll Outstanding 25200 +17592272996114 NOE W RIVERA Building Cleaning & Maintenance 74600 +17592273088851 Jose Campos Repairs to Equipment 74700 +17592273109940 Monira Barsoum Payroll Outstanding 25200 +17592273211271 Dairy Dairy Costs 51300 +17592273211637 Dairy Dairy Costs 51300 +17592273212528 Felix Alvarez Contract Labor 74800 +17592273254613 Zoriah Mendoza Payroll Outstanding 25200 +17592273292435 IT Layer L.L.C. Marketing 72100 +17592273360495 Erik Christensen Payroll Outstanding 25200 +17592273388208 Sugar Dot Bake Shop Food Cost 50000 +17592273388228 Juan Santiago Employee Training 73500 +17592273416959 ITALFOODS INC. Delivery Cost 57000 +17592273465257 Ezekial Amaya Payroll Outstanding 25200 +17592273486435 Alexa Robles Payroll Outstanding 25200 +17592273511579 Tamer Farag Payroll Outstanding 25200 +17592273522920 Skywood Business Services Accounting 81140 +17592273594206 Dollar Tree Kitchen Supplies 74200 +17592273594401 Angela Barco Employee Training 73500 +17592273707586 lashay lozano Payroll Outstanding 25200 +17592273773983 Josue Cubole Payroll Outstanding 25200 +17592273841938 Car Key Replacement Near Me Inc Repairs to Building 74500 +17592273876092 Tower NT LLC Advertising 72180 +17592273889917 Uber Treminio Reyes Payroll Outstanding 25200 +17592273889919 Iris Vargas Payroll Outstanding 25200 +17592273889921 Yacser Denilson Rocha Gomez Payroll Outstanding 25200 +17592273889923 Celia Telles Payroll Outstanding 25200 +17592273916760 Monified LLC Website/ Social Media 72110 +17592273917537 Alberth Medina Payroll Outstanding 25200 +17592273946964 Marco Gallardo Payroll Outstanding 25200 +17592273947133 Aj Villalobos Payroll Outstanding 25200 +17592273947166 Lacy Estrada Payroll Outstanding 25200 +17592273947293 Carmen Argueta Payroll Outstanding 25200 +17592273952710 Busra Basol Payroll Outstanding 25200 +17592273953174 Dennez Lainez Payroll Outstanding 25200 +17592273974898 Nazila Samavarchian Tips Payable 25500 +17592274221717 Dannys Appliances Repairs to Equipment 74700 +17592274221914 Mauro Cuevas Payroll Outstanding 25200 +17592274269002 Elba Castil Payroll Outstanding 25200 +17592274274466 Marianne Marquez Building Cleaning & Maintenance 74600 +17592274295773 Kevin Arauz Payroll Outstanding 25200 +17592274295864 Columbus Private Security Security Guards 71600 +17592274319091 renee lewis Food Cost 50000 +17592274358639 Marco Perez Payroll Outstanding 25200 +17592274359316 Bay Area Fire Protection Repairs to Equipment 74700 +17592274409441 Frank Ardila Payroll Outstanding 25200 +17592274424406 Maricruz Gamboa Payroll Outstanding 25200 +17592274429896 restaurant eating Travel 91300 +17592274430678 nordstrom Uniforms 73300 +17592274430794 foxworthy gas Gas 83200 +17592274431042 living spaces store Small Furniture 71700 +17592274431063 auto sunny propane Propane 83250 +17592274431339 giants baseball Employee Gifts 73800 +17592274431550 mirko copo Repairs to Equipment 74700 +17592274431877 Universal Park Rent 82100 +17592274434427 FERMIN PEREZ JR Building Cleaning & Maintenance 74600 +17592274436507 MARCO SPAGNUOLO Building Cleaning & Maintenance 74600 +17592274452654 DAVIS CLEVERSON Payroll Outstanding 25200 +17592274454240 Mocny & Sons Food Cost 50000 +17592274459317 jerry sauceda Entertainment - Other 72680 +17592274498332 Estefania Escobedo Payroll Outstanding 25200 +17592274498454 Steven Mackins Payroll Outstanding 25200 +17592274551329 Taurino Carreto Cardova Payroll Outstanding 25200 +17592274583903 Sedat Balkan Food Cost 50000 +17592274789652 Paloma Vineyard Wine Cost 54400 +17592274789687 Package Unit Pros Service or Pass Through Costs 58000 +17592274811246 christine shulman Entertainment - Other 72680 +17592274811264 MATT BOLTON Entertainment - Other 72680 +17592274830809 Romaldo Sanchez Lopez Payroll Outstanding 25200 +17592274832614 luis felix cruz ruiz Payroll Outstanding 25200 +17592274852054 Marcus Patterson Payroll Outstanding 25200 +17592274852408 Dublin Carpet Office Expenses 75050 +17592274909751 BASS PRO SHOP Employee Gifts 73800 +17592274929570 John Price Catering Cost 53000 +17592274975677 Edwin Cristofer Jocop Payroll Outstanding 25200 +17592274976751 Josue Cubule Payroll Outstanding 25200 +17592274979168 Julien Moison Office Maintenance 82600 +17592275022614 Five Star Restaurant Service Repairs to Equipment 74700 +17592275024819 Jacqueline Navarro Payroll Outstanding 25200 +17592275042327 Ismael D Perez Legal Fees 81120 +17592275046801 Dave Muldawer Entertainment - Other 72680 +17592275046828 DONG IL CHANG Building Cleaning & Maintenance 74600 +17592275080507 Maria Guadalupe llescas lazaro Employee Training 73500 +17592275103813 Angel Rubio Payroll Outstanding 25200 +17592275103948 Raymond Miranda Repairs to Building 74500 +17592275105926 Montebello Farms Food Cost 50000 +17592275106139 Efren Rios Payroll Outstanding 25200 +17592275125827 LISA KILLEN Catering Cost 53000 +17592275125919 EZ LOCKSMITH Building Cleaning & Maintenance 74600 +17592275126793 german hernandez Building Cleaning & Maintenance 74600 +17592275149384 H & H SERVICE Building Cleaning & Maintenance 74600 +17592275169593 Angel Rubio Payroll Outstanding 25200 +17592261720457 Nicholas Tsigaris Owner/ Investor Loans 12400 +17592283162248 Shellpoint Mortgage Owner/ Investor Loans 12400 +17592275240718 Isaiah Aguirre Payroll Outstanding 25200 +17592275369604 Alfonso Morales Payroll Outstanding 25200 +17592275428597 Chefs Choice - Naschmarkt Produce Costs 51200 +17592275428649 Newport Fish - Naschmarkt Seafood Costs 51130 +17592275448518 Danny Ochoa Repairs to Building 74500 +17592275506262 Aaron Xiquin Payroll Outstanding 25200 +17592275507931 Adrian Bautista Payroll Outstanding 25200 +17592275508646 Agustin Banuelos Payroll Outstanding 25200 +17592275523579 Amani Pratt Payroll Outstanding 25200 +17592275604231 Harbor Freight Kitchen Supplies 74200 +17592275609263 Alexa Tyler Payroll Outstanding 25200 +17592275610253 Brian Vazquez Food Cost 50000 +17592275638069 Today's Catch Seafood Seafood Costs 51130 +17592275669654 Ernie Garcia Food Cost 50000 +17592275690128 Boropack Paper and Packaging 71500 +17592275734470 Adolfo Velasco Repairs to Building 74500 +17592275735356 Denny Holdings LLC Office Rent 82300 +17592275736182 Taylor School / Taylor PTA Charitable Contributions 91100 +17592275793852 Clare MacMillin Tips Payable 25500 +17592275815944 JESUS ALVAREZ Payroll Outstanding 25200 +17592275854766 Eray Karatas Tips Payable 25500 +17592275937554 Dominic Miano Tips Payable 25500 +17592275946937 Darlin Garido Antunez Tips Payable 25500 +17592275947911 Mirhat Yilmaz Tips Payable 25500 +17592275947927 Ahmet Can Pirlant Tips Payable 25500 +17592275948042 Ahmet Kara Tips Payable 25500 +17592275948238 Gulsen Feyat Tips Payable 25500 +17592275948333 Mehmet Karacuban Tips Payable 25500 +17592276090012 Ha Tritton Meals and Entertainment 91200 +17592276142216 Luis Santana Mendoza Payroll Outstanding 25200 +17592276142218 Gabriel Placencia Payroll Outstanding 25200 +17592276142252 Kristabel Chaisson Payroll Outstanding 25200 +17592276244881 Orlando Cuello Olmos Tips Payable 25500 +17592276244915 Angel Daniel Hernandez Garcia Tips Payable 25500 +17592276244933 Nathan Hong Tips Payable 25500 +17592276245522 Jimmy Jason Cortez Ochoa Tips Payable 25500 +17592276246216 Pascual Nava Rama Tips Payable 25500 +17592276246284 Thien Truong Tips Payable 25500 +17592276278733 Adrian Chavez Payroll Outstanding 25200 +17592239266306 Salvatore Foresta Owner/ Investor Loans 2 12401 +17592276285650 REPAIR SERVICE INC Repairs to Equipment 74700 +17592276382754 Abraham. Gamboa Payroll Outstanding 25200 +17592276423350 Ali Can Karacuban Tips Payable 25500 +17592276450006 Natalie Ortega Payroll Outstanding 25200 +17592276465749 Oscar Gardening Building Cleaning & Maintenance 74600 +17592276484770 Jose Raimundo Gutierrez Janel Payroll Outstanding 25200 +17592276505835 Mark Williams Food Cost 50000 +17592276513906 JOSE MEDINA MOJICA Building Cleaning & Maintenance 74600 +17592276545704 Enviro-Master Services Building Cleaning & Maintenance 74600 +17592276554172 Antonio Hernandez Payroll Outstanding 25200 +17592276570844 Rogelio Chanchavac Payroll Outstanding 25200 +17592276639145 Maria Guadalupe Perez Payroll Outstanding 25200 +17592276639164 Angela Pratt Payroll Outstanding 25200 +17592276639193 Ysabella Marie Adame-Lee Payroll Outstanding 25200 +17592276644001 iVAN OJRNDIZ Contract Labor 74800 +17592276644035 IVAN OJENDIZ Contract Cleaning 74150 +17592276661615 Paola Evangelista Employee Training 73500 +17592276669401 New Life Church Advertising 72180 +17592276677523 Yigit Yamaner Payroll Outstanding 25200 +17592276767305 Prime Commercial Rent 82100 +17592276770628 mercado y carniceria Food Cost 50000 +17592276774280 ups Office Expenses 75050 +17592276788916 Far Niente Liquor Cost 54700 +17592276798228 Secure Space Storage Storage 83700 +17592276798231 San Jose Country Club Meals and Entertainment 91200 +17592276798233 James Brown Construction Building Cleaning & Maintenance 74600 +17592276798236 GI Las Plumas Storage 83700 +17592276798266 Jalal Eid Security System/ Alarms 83800 +17592276799341 Portfolio Management Office Rent 82300 +17592276799413 Michael F Repairs to Equipment 74700 +17592276860461 In & Out Lock & Key Repairs to Building 74500 +17592276860908 San Joaquin Fire Protection Inc Leasehold Improvements 15300 +17592276881286 los altos grill Meals and Entertainment 91200 +17592276881728 PIZZA BOCCA LUPO Meals and Entertainment 91200 +17592276882035 CRUMBLE COOKIES Meals and Entertainment 91200 +17592276882100 SHEPHERD & SIMS Meals and Entertainment 91200 +17592276882123 SUSHI CONFIDENTIAL Meals and Entertainment 91200 +17592276882146 SARATOGA MEAT & FISH Food Cost 50000 +17592276882190 NORDSTORM RACK Uniforms 73300 +17592276882234 MEXICO LINDO RESTAURANT Food Cost 50000 +17592276882257 WILD ROSE Meals and Entertainment 91200 +17592276882280 RIDGE VINEYARDS Alcohol Cost 54000 +17592276882303 DOPPIO ZERO Meals and Entertainment 91200 +17592276882347 MOKUKU SHABU Meals and Entertainment 91200 +17592276882370 FIVE GUYS Meals and Entertainment 91200 +17592276882393 HILLSTONE Meals and Entertainment 91200 +17592276882417 MERITAGE RESORT SPA Meals and Entertainment 91200 +17592276882461 TELEFERIC BARCELONA LOS GATOS Meals and Entertainment 91200 +17592276882568 FLEMING'S Meals and Entertainment 91200 +17592276882664 ARTEAGA'S FOOD GROCERY Food Cost 50000 +17592276882687 MORTON'S THE STEAKHOUSE Meals and Entertainment 91200 +17592276882731 TAQUERIA EL RANCHITO Food Cost 50000 +17592276882754 LIVING SPACES Furniture & Fixtures 15450 +17592276883672 THE UPS STORE Office Supplies 75100 +17592276884124 ITALIAN BROTHERS RESTAURANT LOS GATOS Meals and Entertainment 91200 +17592276884932 STACKS RESTAURANT Meals and Entertainment 91200 +17592276935595 Ali Hamed Repairs to Equipment 74700 +17592276936722 Manuela Yanira Tafoya Payroll Outstanding 25200 +17592276961218 Hudson Lyles Employee Related Expenses 73000 +17592276970026 GIUSEPPE SARACENO Building Cleaning & Maintenance 74600 +17592277007006 Ollie Dudek Bands and DJ's 72650 +17592277131181 Toyota Financial Services Auto and Truck Expenses 73100 +17592277185699 Magda Ancheta Payroll Outstanding 25200 +17592277187596 German Us Quino Payroll Outstanding 25200 +17592241217582 Saverio D'Anna Owner/ Investor Loans 2 12401 +17592277193683 Shock'N'Awe Prints Uniforms 73300 +17592277210058 Tom Duffy Company Kitchen Supplies 74200 +17592277235887 Christine Shulenberger Tips Payable 25500 +17592277284037 LARRY PIETROBON Payroll Outstanding 25200 +17592277305523 CGS - Commercial Refregeration Solution Repairs to Equipment 74700 +17592277305541 EZ Locksmith Services Repairs to Building 74500 +17592277306718 DON`S LIQUOR & WINE Alcohol Cost 54000 +17592277332426 Kaan Kocaoglu Tips Payable 25500 +17592277332484 ST ROOTER AND PLUMBING Building Cleaning & Maintenance 74600 +17592277369960 Serafina Vega Payroll Outstanding 25200 +17592277387777 REPAIR SERVICE INC. Repairs to Equipment 74700 +17592277387806 patrick satarzadeh Catering Cost 53000 +17592277412571 Filco Events Professional Fees 81110 +17592277421386 Fireguard Extinguisher Service Inc. Office Maintenance 82600 +17592277439634 Benjamin Millan Building Cleaning & Maintenance 74600 +17592277534532 Sandro Caruso Employee Training 73500 +17592277767258 Nancy Vasquez Payroll Outstanding 25200 +17592277767275 Nancy Vasquez Payroll Outstanding 25200 +17592277767350 Heber Perez Payroll Outstanding 25200 +17592277768356 Amanda Mendoza Payroll Outstanding 25200 +17592277779233 ANGELICA FRIAS Contract Labor 74800 +17592277782901 KELLY MOORE PAINTS Building Cleaning & Maintenance 74600 +17592277987469 Jennifer Hoang Payroll Outstanding 25200 +17592277999225 Javier Reyes Payroll Outstanding 25200 +17592278022243 good stuff distributor Food Cost 50000 +17592278070729 Plumb Tech Repairs to Building 74500 +17592278097079 Ruby Delgado Del Rio Tips Payable 25500 +17592278257179 Glacier Ice Company Food Cost 50000 +17592278433203 Nate Bellamy Payroll Outstanding 25200 +17592278444189 Discretion Brewing Alcohol Cost 54000 +17592278488416 Jack Rodriguez Tips Payable 25500 +17592278574213 R.A.T Heating & A/C Repairs to Equipment 74700 +17592278587260 Tanijah Jones Payroll Outstanding 25200 +17592278601078 Ana Vasquez Solis Payroll Outstanding 25200 +17592278765035 Power Washing Systems Building Cleaning & Maintenance 74600 +17592278860842 nursel ulas Tips Payable 25500 +17592278870077 us mechanical & hood, inc Repairs to Equipment 74700 +17592278870520 MAKAI EDWARDS Payroll Outstanding 25200 +17592278948124 Ignacio Garcia Payroll Outstanding 25200 +17592278948135 Cuauhtemoc Moran Aldair Payroll Outstanding 25200 +17592278974108 CHRISTINE LEE VASQUEZ Tips Payable 25500 +17592279017729 Estefany Martinez Food Cost 50000 +17592279018011 Juan Estrada Payroll Outstanding 25200 +17592279032818 Jayden Vasquez Payroll Outstanding 25200 +17592279069273 Daniel Hernandez Payroll Outstanding 25200 +17592279069276 Jalena Soto Cruz Payroll Outstanding 25200 +17592279099250 Julio Curup Payroll Outstanding 25200 +17592279149265 Efren Rios Payroll Outstanding 25200 +17592279185150 Gage Bryant Payroll Outstanding 25200 +17592279185152 Andrea Madrigal Payroll Outstanding 25200 +17592279185186 Kaylee Baker Payroll Outstanding 25200 +17592279218651 SARA`S SOUTHERN KITCHEN Meals and Entertainment 91200 +17592279266271 Jose Jesus Sierra Vasquez Payroll Outstanding 25200 +17592279366721 Imperial Bag Paperware Cost 55000 +17592279366797 Insperity HR Services 81160 +17592279370846 Z1 Networks, Inc IT / Computer Repair 74710 +17592279387804 Pleasanton Garbage Service Trash Removal 83300 +17592279388052 JAVIER PRADA Building Cleaning & Maintenance 74600 +17592279417766 Greek orthodox cathedral of the ascension Promotional or Donation Meal Comps 72710 +17592279448864 CIG INSURANCE Office Expenses 75050 +17592279449513 Field Work Brewery Beer Cost 54100 +17592279449515 Russian River Brewing Beer Cost 54100 +17592279449538 Alameda Island Brewing Beer Cost 54100 +17592279449547 Mercedes Cleaning Service Contract Labor 74800 +17592279449777 Diana Fuentes Payroll Outstanding 25200 +17592279449796 Amy Mendonca Payroll Outstanding 25200 +17592279450915 Moonraker Brewing Beer Cost 54100 +17592279463826 Faction Brewing Beer Cost 54100 +17592279464385 Temescal Brewing Beer Cost 54100 +17592279464394 Two Rivers Cider Co. Beer Cost 54100 +17592279464433 Humble Sea Brewery Beer Cost 54100 +17592279464463 Cooperage Brewing Beer Cost 54100 +17592279465657 Laughing Monk Brewing Beer Cost 54100 +17592279466621 PUSAT CAKICI Payroll Outstanding 25200 +17592279497468 Lisbeth Benavidez Payroll Outstanding 25200 +17592279497850 Low Rate Locksmith Repairs to Building 74500 +17592279525137 ibrahim tekdemir Payroll Outstanding 25200 +17592279640272 EVVIA Meals and Entertainment 91200 +17592279673827 SARA BHATTI Building Cleaning & Maintenance 74600 +17592279751126 Mohamed Habib Hadj Sahraoui Payroll Outstanding 25200 +17592279755400 Savior Plumbing Repairs to Building 74500 +17592279795447 Josh McCowan Payroll Outstanding 25200 +17592279814503 K & R Association Inc. Building Cleaning & Maintenance 74600 +17592279814669 Coast Fire Equipment Building Cleaning & Maintenance 74600 +17592279815032 BAD Beer Cost 54100 +17592279854776 UniFirst Staff Supplies - Consumable 71180 +17592279862591 California Department of Food and Agriculture Milk and Dairy Food Safety Branch Health Permit 86200 +17592279903493 Elieser Mayorga Payroll Outstanding 25200 +17592279949696 Advanced Linen Service Linens 74450 +17592280035543 Olivia Meadows Payroll Outstanding 25200 +17592280035718 Gabriela Alvarez Creamery Deep Cleaning Building Cleaning & Maintenance 74600 +17592280079725 Sayage Refrigeration Co. Office Maintenance 82600 +17592280100588 David Ajtun Chum Employee Training 73500 +17592280154114 Ebubekir Tekdemir Owner/ Investor Loans 2 12401 +17592280155153 MAS Service Repairs to Equipment 74700 +17592280178602 Hen House Brewing Beer Cost 54100 +17592280178604 ARMANDO MENDOZA Contract Labor 74800 +17592280295494 SONIA MARTINEZ Payroll Outstanding 25200 +17592280328319 KATHERYN LAPUSNAK Tips Payable 25500 +17592280366985 Leon Santos Payroll Outstanding 25200 +17592280454226 Star One Credit Union Owners Payroll Above Replacement Cost 92000 +17592280454329 Brads Auto Care Auto and Truck Expenses 73100 +17592280481479 Isabel Ceballos Payroll Outstanding 25200 +17592280512499 River Glen School Promotional or Donation Meal Comps 72710 +17592280583394 GRI Lone Tree, LLC Rent 82100 +17592280609977 Tire Rack Auto and Truck Expenses 73100 +17592280659408 Jasmine Nguyen Payroll Outstanding 25200 +17592280673983 Pleasanton Chamber of Commerce Membership Dues and Associations 81200 +17592280678136 Realty Income Corporation Rent 82100 +17592280750339 Cosme Parra Payroll Outstanding 25200 +17592280775436 MICHAELS Office Supplies 75100 +17592281115341 mercedes benz of pleasanton Auto and Truck Expenses 73100 +17592281120847 Esmeralda Zambrano Contract Cleaning 74150 +17592281143011 MDFS - 908 Health Permit 86200 +17592281172942 Jonathan Valle Tips Payable 25500 +17592281173010 ANA LUCIA GUIZAR RAMOS Tips Payable 25500 +17592281205999 Liz Davis Food Cost 50000 +17592281265182 Bellows Plumbing,Heating &Air Repairs to Equipment 74700 +17592281310330 Maverick481 Building Cleaning & Maintenance 74600 +17592281396640 Carniceria El Corral INC Food Cost 50000 +17592281446141 Eric Malimban Tips Payable 25500 +17592281503581 CHASIDY SOTELLO Tips Payable 25500 +17592281503599 ELISA PALA Tips Payable 25500 +17592281503701 MICHAL WULFTANGE Tips Payable 25500 +17592281503751 JASON MARGISON Tips Payable 25500 +17592281503769 JACKELYN GONZALEZ Tips Payable 25500 +17592281503787 NORMA MENDEZ Tips Payable 25500 +17592281680960 Clifford Vaughn Charitable Contributions 91100 +17592281702473 Tamer Zeidan Payroll Outstanding 25200 +17592281782853 CJE HEATING AIR CONITIONING Building Cleaning & Maintenance 74600 +17592281784735 AMECY AS INC. Repairs to Equipment 74700 +17592282127134 Santa Clara Firefighter's Foundation Charitable Contributions 91100 +17592282150450 JSJ Refrigeration LLC Furniture & Fixtures 15450 +17592282180626 Nationwide Auto and Truck Expenses 73100 +17592287076031 Eileen Sapien Payroll Taxes Outstanding 25200 +17592282269022 CHILD ADVOCATES OF SILICON VALLEY Promotional or Donation Meal Comps 72710 +17592282290754 Ivan Serratos Entertainment - Other 72680 +17592282314777 Aytac Isik Payroll Outstanding 25200 +17592282314779 Abdulkadir Dursun Building Cleaning & Maintenance 74600 +17592282314781 Mehmet Emin Yildiz Kitchen Equipment 15410 +17592282314783 Jose Angel Rayas Jantes Payroll Outstanding 25200 +17592282347868 Rogelio E. Marin Payroll Outstanding 25200 +17592282347952 Tarik Turk Building Cleaning & Maintenance 74600 +17592287149228 Andrew Romero Payroll Taxes Outstanding 25200 +17592282554394 Willy Leobardo Hernandez Hernandez Payroll Outstanding 25200 +17592282558474 Selvin Hernandez Parking 73200 +17592282615507 Gerardo Saldana Payroll Outstanding 25200 +17592282616088 Zoe A Tong Payroll Outstanding 25200 +17592282642930 Marc Olenczuk Contract Labor 74800 +17592282669054 ZANOTTO`S MARKET Food Cost 50000 +17592282669194 Rodolfo Locon Parking 73200 +17592282669285 Tarabay and Associates, CPA Professional Fees 81110 +17592282731683 Tatyanna Azevedo Maia Payroll Outstanding 25200 +17592282822680 Bianca Mendoza Payroll Outstanding 25200 +17592282822927 Beatriz Rayas Tips Payable 25500 +17592282830143 John Knox Co-op Preschool Marketing 72100 +17592282830230 JEZZICA AMIGO Tips Payable 25500 +17592282830248 BRIANNA DALZOCCHIO Tips Payable 25500 +17592282918195 Sejen Tiano Gardere Payroll Outstanding 25200 +17592282961971 Soth fork vodka Alcohol Cost 54000 +17592282962965 south fork vodka Alcohol Cost 54000 +17592283120071 LUIGI D'AMORE Tips Payable 25500 +17592283123013 JACKYLEN GONZALEZ Tips Payable 25500 +17592234608227 Groupon Outstanding Promos Outstanding 25400 +17592283162250 Brads Auto Care Auto and Truck Expenses 73100 +17592283162252 San Jose Country Club Meals and Entertainment 91200 +17592283209130 Baltazar Dacanay Doctolero Repairs to Building 74500 +17592283216937 Kalara Corp. Wine Cost 54400 +17592283216963 Islamic Meat & Poultry Food Cost 50000 +17592283256609 Rebeka Montano Payroll Outstanding 25200 +17592283262075 Payton Zacharisen Payroll Outstanding 25200 +17592283265523 Umit Kirmizialan Tips Payable 25500 +17592283290465 Martinez Alan Employee Training 73500 +17592283355908 Estaban Parra Morales Payroll Outstanding 25200 +17592283365204 olive land & more Dry Goods Costs 51500 +17592283389663 Boons Sales Food Cost 50000 +17592283483562 NYLAH LEMUS Tips Payable 25500 +17592283537696 Fernanda Rodriguez Payroll Outstanding 25200 +17592283583842 Tsar Nicoulai Caviar Food Cost 50000 +17592283624595 MASTRO`S STEACKHOUSE Meals and Entertainment 91200 +17592283624639 SUSHI ZONO Meals and Entertainment 91200 +17592283648617 Sergio Fajardo Payroll Outstanding 25200 +17592283841842 AC Solutions Repairs to Equipment 74700 +17592283916609 225 Arizona Ave Partners Rent 82100 +17592283916911 Edgar Beltran Contract Labor 74800 +17592283930620 Brylle Dublan Payroll Outstanding 25200 +17592283933548 South Lake Brewing Co. Beer Cost 54100 +17592284030661 Cardenas Food Cost 50000 +17592284221629 Eddie's Produce Produce Costs 51200 +17592284391264 Maria Ospina Tips Payable 25500 +17592284391282 1518 Lincoln Blvd Lincoln, CA 95648 Payroll Outstanding 25200 +17592284391285 Francisco Garcia Payroll Outstanding 25200 +17592284454548 Awakening Church Meals and Entertainment 91200 +17592284586158 Promised Land Brewing Company Beer Cost 54100 +17592284625539 Kevin Lanier Payroll Outstanding 25200 +17592284742902 Kalara Corp. Wine Cost 54400 +17592284744710 Granada High School Charitable Contributions 91100 +17592284746578 Luis Carlos Dominguez Contract Labor 74800 +17592232599204 CDTFA Sales Taxes Payable 23000 +17592186046031 Brian Skarbek - Rent and CAM Impound Transfer in Process 12980 +17592186046079 Maria Van Houten (SLO Client) Transfer in Process 12980 +17592284776273 Yorem Food LLC Food Cost 50000 +17592284843848 St Gregory School Advertising 72180 +17592284846738 Jose Alanis Payroll Outstanding 25200 +17592284846740 Luis Castillo Reyes Payroll Outstanding 25200 +17592284848866 Cristian Castro Feble Payroll Outstanding 25200 +17592284849412 Cruz Maria Covenas Guillermo Payroll Outstanding 25200 +17592284849414 Oliver Solano Soriano Payroll Outstanding 25200 +17592284849416 Paola Torres Payroll Outstanding 25200 +17592284877045 CAYLEE FRIEDMAN Payroll Outstanding 25200 +17592284921799 CVE PATA Promotional or Donation Meal Comps 72710 +17592285042549 Griselda Valle Contract Labor 74800 +17592285043159 Republic Urban Properties Rent 82100 +17592285043193 Israel Cornejo Repairs to Equipment 74700 +17592285043244 Alberto Bernardo Colinder Building Cleaning & Maintenance 74600 +17592285043253 Alredo Sebastian Building Cleaning & Maintenance 74600 +17592285068902 Brayan Cruz Payroll Outstanding 25200 +17592285093641 NNN, LLC Rent 82100 +17592285093657 Walter Davila Contract Labor 74800 +17592285093666 Gabriela Hernandez Contract Labor 74800 +17592285093675 Mariana Jimenez Contract Labor 74800 +17592285121500 Valley air conditioning & Repair, Inc. Building Cleaning & Maintenance 74600 +17592186046086 Farwell Rashkis (SLO Vendor) Transfer in Process 12980 +17592186046226 Farwell Rashkis (SLO) Transfer in Process 12980 +17592186046228 Umberto Pala - Transfer Transfer in Process 12980 +17592285171084 Skyline Building Care, Inc. Building Cleaning & Maintenance 74600 +17592285199728 City of Morgan Hill Professional Fees 81110 +17592285214959 Patrick Jacobs Advertising 72180 +17592285252840 Sofia Vargas Payroll Outstanding 25200 +17592285253025 Cesar Moreno Payroll Outstanding 25200 +17592285253027 Angie Servin Payroll Outstanding 25200 +17592285258528 Angelita Raquel Torres Payroll Outstanding 25200 +17592285492120 Jessica Nicole Oledan Payroll Outstanding 25200 +17592285492138 Wilian Versabi Dabila Gomez Payroll Outstanding 25200 +17592285492156 CIG Other Insurance 85200 +17592285493395 Osualdo Fabian Sanchez Payroll Outstanding 25200 +17592285548178 Payroll Outstanding Payroll Outstanding 25200 +17592285596407 Amador Valley High School Boosters Charitable Contributions 91100 +17592285635813 Levent Altan Payroll Outstanding 25200 +17592285658017 JUAN CARLOS ORELLANA Building Cleaning & Maintenance 74600 +17592285728626 First Glass Co Repairs to Building 74500 +17592285782167 Santa Cruz Property Management Rent 82100 +17592285782224 Windows Graphics Sign Co Inc Advertising 72180 +17592285817360 Wynton Howard Payroll Outstanding 25200 +17592285820252 Wayde Betz Payroll Outstanding 25200 +17592186852222 Bank of America - Los Angeles Transfer in Process 12980 +17592285863997 Mercedes Cleaning service Building Cleaning & Maintenance 74600 +17592285909896 Patrick Sousa Payroll Outstanding 25200 +17592285932605 Freia Kalman Rent 82100 +17592285951899 Temescal Brewing Draft Beer Cost 54200 +17592285952296 Fieldwork Brewing Co Draft Beer Cost 54200 +17592286033930 Luis Meza Payroll Outstanding 25200 +17592286299342 B2BSigns Advertising 72180 +17592186852274 CHASE Transfer in Process 12980 +17592186852698 WELLS FARGO FINANCIAL CARDS Transfer in Process 12980 +17592286592474 George Petroutsas Delivery Mileage Reimbursement 57100 +17592187687128 Bank of America Visa Transfer in Process 12980 +17592286619081 Ismal Ilial Romero Payroll Outstanding 25200 +17592286622122 Alternative HVAC Solutions Repairs to Building 74500 +17592286656982 Ignite HR Solutions HR Services 81160 +17592187939168 Orale Labor Expense Transfer in Process 12980 +17592286686279 Tony Serrano Repairs to Equipment 74700 +17592286686407 Meyro Celmikli Tips Payable 25500 +17592286726247 Poly-On Security System, Inc. Security System/ Alarms 83800 +17592286727039 Law Office of Parissa Taghlbagl, Inc. Professional Fees 81110 +17592286840303 AlmaLopez G Contract Labor 74800 +17592286841980 Eduardo Flores Contract Labor 74800 +17592286842053 Roberts Management & Investments Rent 82100 +17592286842358 Christian Guiterrez Munoz Contract Labor 74800 +17592286842367 Rodrigo Cruz Contract Labor 74800 +17592286863429 TLC Hood Cleaning & More Building Cleaning & Maintenance 74600 +17592286863666 Kathlyn Belmar Payroll Outstanding 25200 +17592286865334 Evan Low Meals and Entertainment 91200 +17592286867660 ROIC Warner Rent 82100 +17592286867713 Aaron Libman Contract Labor 74800 +17592286874303 Kiwi LMS Restaurant Software Fees 75300 +17592286907964 Ali Gulen Payroll Outstanding 25200 +17592287047499 Weeklys Advertising 72180 +17592287047634 Russian River Brewing Draft Beer Cost 54200 +17592287062879 Two Rivers Cider Draft Beer Cost 54200 +17592287075692 K & R Association, Inc. Contract Cleaning 74150 +17592201251343 Campbell Brewing Transfer Transfer in Process 12980 +17592232591124 Transfer (Bank to Bank) Transfer in Process 12980 +17592287098535 Jose Sandoval Alvarado Payroll Outstanding 25200 +17592287099207 Samantha A Moser Payroll Outstanding 25200 +17592287147867 A1 Sewer Building Cleaning & Maintenance 74600 +17592235156842 American Express Payment Transfer in Process 12980 +17592239573018 Nick The Greek Transfer in Process 12980 +17592287264288 Michael Washington Wine Cost 54400 +17592246812509 KY ENTERPRISES Transfer in Process 12980 +17592287285882 Jonathan Bennet Payroll Outstanding 25200 +17592287364887 Gravitas Wine Marketing, LLC Wine Cost 54400 +17592287364904 Maisons, Marques & Domaines Wine Cost 54400 +17592235866205 State Compensation Insurance Fund Worker's Compensation - Variable 69930 +") + + + (def numeric-code->account-id + (->> (da/q '[:find ?nc ?a + :in $ + :where [?a :account/numeric-code ?nc]] + (da/db auto-ap.datomic/conn)) + (into {}))) + + (def vendors-current + (->> (da/q '[:find ?v ?a + :in $ + :where [?v :vendor/default-account ?a]] + (da/db auto-ap.datomic/conn)) + (into {}))) + + (doseq [vendor-update (->> (clojure.data.csv/read-csv + vendor-accounts-csv + :separator \tab + ) + (map (fn [[vendor-id _ _ numeric-code]] + {:db/id (Long/parseLong vendor-id) + :vendor/default-account (numeric-code->account-id (Long/parseLong numeric-code))})) + + (filter (fn [x] + (not= (:vendor/default-account x) + (vendors-current (:db/id x))))) + + (partition-all 100))] + (da/transact auto-ap.datomic/conn (conj vendor-update {:db/id "datomic.tx" + :audit/user "Fixup account allowances - vendor updates"}))) + + + (def invoice-fixup-csv + "17592252870516 50000 +17592253835604 50000 +17592254231571 50000 +17592254777411 50000 +17592255396285 50000 +17592255254024 25200 +17592255254032 25200 +17592255253993 25200 +17592255254095 25200 +17592255254103 25200 +17592255254339 25200 +17592255254347 25200 +17592255254355 25200 +17592255254331 25200 +17592255254570 25200 +17592255254578 25200 +17592255241057 25200 +17592256947943 50000 +17592282347808 11000 +17592282347871 25200 +17592282347836 25500 +17592283072557 25500 +17592283072549 11000 +17592283216940 54400 +17592283216956 51130 +17592283216948 51130 +17592283216974 51500 +17592283216966 50000 +17592285068944 11000 +17592283665345 25500 +17592283665175 11000 +17592283868307 15410 +17592283868299 11000 +17592284300092 74800 +17592284300084 74600 +17592284300076 74600 +17592284300068 25500 +17592284300060 25500 +17592284300100 74800 +17592285068965 15410 +17592285068973 74800 +17592285068913 74600 +17592285068887 25500 +17592285068895 25500 +17592285214944 74800 +17592285214906 51500 +17592285214795 51500 +17592285214787 50000 +17592285214763 51500 +17592285214779 51500 +17592285214771 51130 +17592285068994 74800 +17592285068905 12400 +17592285569980 72100 +17592285760035 74600 +17592285760019 25500 +17592285760027 74800 +17592285760003 25500 +17592285760011 74600 +17592285759995 25500 +17592286345461 25500 +17592286345558 74800 +17592286622038 51130 +17592286345550 15410 +17592286345529 74800 +17592286345493 25500 +17592286345485 25500 +17592286345477 25500 +17592286345469 25500 +17592286619116 74600 +17592286622070 50000 +17592286619108 74800 +17592286622125 74500 +17592286830708 15410 +17592287075905 50000 +17592287078522 25500 +17592287078530 25500 +17592287078538 25500 +17592287078546 25500 +17592287078554 25500 +17592287078572 25500 +17592287078736 25500 +17592282963325 50000 +17592282963518 50000 +17592282963520 50000 +17592253471289 50000 +17592282963522 50000 +17592282963524 50000 +17592253836267 50000 +17592282963526 50000 +17592282963528 50000 +17592282963530 50000 +17592282963532 50000 +17592282963494 50000 +17592282963496 50000 +17592282963500 50000 +17592282963502 50000 +17592282963504 50000 +17592282963456 50000 +17592255313033 50000 +17592282963458 50000 +17592282963506 50000 +17592282963460 50000 +17592282963462 50000 +17592282963510 50000 +17592282963464 50000 +17592282963512 50000 +17592282963466 50000 +17592255924148 50000 +17592282963514 50000 +17592282963468 50000 +17592282963470 50000 +17592282963498 50000 +17592282964141 51200 +17592282964549 50000 +17592282963472 50000 +17592282963474 50000 +17592282963476 50000 +17592256545792 50000 +17592282963478 50000 +17592282963480 50000 +17592282963482 50000 +17592256888748 50000 +17592282963484 50000 +17592282963486 50000 +17592257483500 50000 +17592257584831 50000 +17592257668718 50000 +17592257878508 50000 +17592258009858 50000 +17592258447107 50000 +17592260036091 50000 +17592260036093 50000 +17592260036095 50000 +17592258967591 50000 +17592260036097 50000 +17592260036099 50000 +17592260036101 50000 +17592260036103 50000 +17592260036105 50000 +17592259532724 50000 +17592262753430 50000 +17592262753432 50000 +17592261123413 50000 +17592262753434 50000 +17592262753436 50000 +17592262753438 50000 +17592262753440 50000 +17592261745305 50000 +17592262753442 50000 +17592262753444 50000 +17592261976613 50000 +17592264050032 50000 +17592264613867 50000 +17592268799720 50000 +17592268799722 50000 +17592265280138 50000 +17592268799724 50000 +17592268799726 50000 +17592268799728 50000 +17592265838046 50000 +17592268799730 50000 +17592268799732 50000 +17592268799734 50000 +17592266385728 50000 +17592266474529 50000 +17592268799736 50000 +17592268799738 50000 +17592268799740 50000 +17592268799742 50000 +17592268799744 50000 +17592268799746 50000 +17592268799748 50000 +17592268799750 50000 +17592268799752 50000 +17592267518379 50000 +17592268799754 50000 +17592282963422 50000 +17592282963424 50000 +17592282963426 50000 +17592282963428 50000 +17592282963430 50000 +17592282963432 50000 +17592282963434 50000 +17592268745146 50000 +17592282963436 50000 +17592268892306 50000 +17592282963438 50000 +17592282963440 50000 +17592282963442 50000 +17592282963444 50000 +17592282963446 50000 +17592282963448 50000 +17592269932440 50000 +17592282963450 50000 +17592282963452 50000 +17592270292354 50000 +17592282963380 50000 +17592282963382 50000 +17592270560782 50000 +17592270560784 50000 +17592282963384 50000 +17592282963386 50000 +17592282963388 50000 +17592282963390 50000 +17592271078415 50000 +17592282963392 50000 +17592282963394 50000 +17592271456062 50000 +17592282963396 50000 +17592271759216 50000 +17592282963402 50000 +17592282963404 50000 +17592271986293 50000 +17592282963406 50000 +17592282963408 50000 +17592282963410 50000 +17592282963412 50000 +17592272413683 50000 +17592282963414 50000 +17592282963416 50000 +17592282963418 50000 +17592282964612 50000 +17592273188465 50000 +17592273628384 50000 +17592273875439 50000 +17592274405908 50000 +17592276638757 50000 +17592276837443 50000 +17592277747766 50000 +17592279449395 50000 +17592279555496 50000 +17592280131776 50000 +17592283532168 50000 +17592284012316 50000 +17592286014917 50000 +17592286126464 50000 +17592286355525 50000 +17592286774893 25200 +17592286726569 50000 +17592286844463 50000 +17592287313974 50000 +17592287313976 50000 +17592252590604 54300 +17592263007938 74700 +17592263007953 74700 +17592245878540 81310 +17592263007147 74700 +17592285984214 74150 +17592285984029 74600 +17592285984009 74600 +17592252395327 50000 +17592252487448 74100 +17592252487416 51400 +17592252485940 50000 +17592252735676 51400 +17592254156859 74100 +17592252648641 83100 +17592252531602 50000 +17592252590500 52000 +17592252660108 54700 +17592259866641 74700 +17592252831266 52200 +17592252635278 50000 +17592252831105 51400 +17592252648504 83500 +17592252694192 50000 +17592252846118 50000 +17592252845461 51400 +17592252836338 74100 +17592252925523 51400 +17592252830841 50000 +17592252870508 50000 +17592252870506 50000 +17592253042078 51400 +17592253305096 52200 +17592252925601 50000 +17592252925593 54700 +17592253112936 51400 +17592253143996 74600 +17592253143896 84200 +17592253306391 50000 +17592253289365 51400 +17592253750718 50000 +17592253410739 51400 +17592253750722 50000 +17592253305121 74100 +17592253532151 51400 +17592253289227 50000 +17592253723868 52200 +17592253410622 54700 +17592253438847 81110 +17592253750730 50000 +17592253554944 51400 +17592253750732 50000 +17592253750736 50000 +17592253788181 51400 +17592253904395 51400 +17592253732435 74100 +17592253870342 74700 +17592253704968 50000 +17592253927060 51400 +17592253769711 50000 +17592253769713 50000 +17592253769715 50000 +17592259866656 74700 +17592253836269 50000 +17592254074898 52200 +17592254159257 54700 +17592253969737 51400 +17592253921853 81310 +17592253961656 50000 +17592254019120 50000 +17592254019122 50000 +17592254019116 50000 +17592254019118 50000 +17592254074940 51400 +17592254075286 74610 +17592267967789 81110 +17592254074385 50000 +17592254074383 50000 +17592254074381 50000 +17592254148662 51400 +17592254148827 74100 +17592284967635 51400 +17592254201224 86100 +17592253927129 81310 +17592254614218 54300 +17592254315376 51400 +17592255796281 52000 +17592254238717 54700 +17592254614295 52200 +17592254237618 50000 +17592254613038 51400 +17592254379495 50000 +17592254620648 50000 +17592267255933 74700 +17592254613552 54300 +17592254618216 51400 +17592254612793 50000 +17592254612795 50000 +17592254671565 51400 +17592254614451 74100 +17592254654559 50000 +17592254774027 51400 +17592254803395 83500 +17592254737916 54700 +17592255044207 52200 +17592254737368 50000 +17592254895300 74100 +17592254803525 83100 +17592254871421 51400 +17592254869073 50000 +17592254929234 50000 +17592255054641 51400 +17592255040988 74610 +17592255032413 50000 +17592255127481 51400 +17592255054633 74100 +17592255239568 51400 +17592255448234 52000 +17592255239552 54700 +17592255676833 52200 +17592255811017 51400 +17592255407580 50000 +17592255676599 50000 +17592255505524 50000 +17592255794763 51400 +17592255811442 51400 +17592255721571 74100 +17592255596855 50000 +17592255638208 25200 +17592263008001 74700 +17592256282876 51400 +17592255845506 54700 +17592256366988 52200 +17592255834941 50000 +17592255924150 50000 +17592256013159 51400 +17592255984017 50000 +17592256050340 50000 +17592256181681 51400 +17592256156999 50000 +17592256464567 51400 +17592256216408 50000 +17592256216406 50000 +17592256281920 52200 +17592258242091 74600 +17592256298640 51400 +17592256464498 54300 +17592256216783 81310 +17592256292152 50000 +17592256292150 50000 +17592256464618 54700 +17592256844085 74700 +17592256473444 51400 +17592258792707 74100 +17592256434227 50000 +17592256545794 50000 +17592256708271 52000 +17592256706527 51400 +17592256843099 52200 +17592256707981 74100 +17592256843229 51400 +17592256680127 50000 +17592256680125 50000 +17592257409415 74700 +17592256731048 50000 +17592256731046 50000 +17592256903076 51400 +17592256808136 50000 +17592256843202 54700 +17592257542468 83500 +17592256999839 54700 +17592256999856 51400 +17592257281685 50000 +17592256986735 50000 +17592257236153 51400 +17592257067678 50000 +17592257244034 50000 +17592257281677 50000 +17592257395924 52200 +17592257236420 84200 +17592257330672 51400 +17592257542332 74100 +17592257542452 83100 +17592257211240 50000 +17592257211242 50000 +17592257211238 50000 +17592257396449 51400 +17592257267780 50000 +17592257396457 54300 +17592257631808 51400 +17592257631816 51400 +17592257542314 54700 +17592257584833 50000 +17592257668720 50000 +17592257778003 51400 +17592257884215 52200 +17592257884249 51400 +17592257751322 50000 +17592257751320 50000 +17592257751318 50000 +17592257751324 50000 +17592257778028 74100 +17592258375772 50000 +17592257884181 54700 +17592257909468 51400 +17592257885323 54700 +17592257951940 50000 +17592257951942 50000 +17592258025940 51400 +17592258052387 97200 +17592258052443 97200 +17592258009860 50000 +17592258225477 51400 +17592258097396 50000 +17592259433274 50000 +17592259433258 50000 +17592258225135 74610 +17592258227244 74100 +17592258184620 50000 +17592258393646 51400 +17592258361408 52200 +17592259433300 74500 +17592259433317 50000 +17592258286647 50000 +17592258361400 72150 +17592258447109 50000 +17592258504867 54700 +17592258504875 54700 +17592258603990 51400 +17592258325826 81310 +17592258978078 54300 +17592258578921 50000 +17592258663453 50000 +17592258792723 51400 +17592259267277 51400 +17592259087214 74700 +17592258793112 74100 +17592258978095 51400 +17592258978204 52200 +17592258765778 50000 +17592258978111 51400 +17592258901096 50000 +17592258978119 54700 +17592259077556 51400 +17592258967595 50000 +17592258967597 50000 +17592258967593 50000 +17592259063651 50000 +17592259578958 50000 +17592259234449 51400 +17592259433333 54100 +17592259467120 83500 +17592259384770 52200 +17592259384762 51400 +17592259234026 50000 +17592259267269 74100 +17592259467087 83100 +17592259428973 51400 +17592259407160 72600 +17592259407192 54700 +17592259579006 51400 +17592261164448 74700 +17592259464727 50000 +17592259464729 50000 +17592259467004 54700 +17592259532726 50000 +17592259639664 50000 +17592259867009 51400 +17592259739151 50000 +17592259739153 50000 +17592259739147 50000 +17592259739149 50000 +17592260019692 74600 +17592259907669 52200 +17592259899746 51400 +17592259908397 74100 +17592259826888 50000 +17592259826890 50000 +17592259826884 50000 +17592259826886 50000 +17592259826892 50000 +17592259826880 50000 +17592259826882 50000 +17592263008012 74700 +17592259866719 74700 +17592260080430 51400 +17592263465967 74100 +17592260080708 51400 +17592260003245 54700 +17592260003237 54700 +17592259973194 50000 +17592260435541 50000 +17592260068978 50000 +17592261126471 54700 +17592260212647 51400 +17592260151162 50000 +17592260151160 50000 +17592260410415 52200 +17592260410498 74100 +17592260362221 51400 +17592260190589 50000 +17592260190587 50000 +17592260190591 50000 +17592260410267 51400 +17592260500851 50000 +17592261126340 51400 +17592261581638 54700 +17592260664501 50000 +17592260664499 50000 +17592263362495 81110 +17592261126258 51400 +17592261564281 54300 +17592260434307 81310 +17592260898155 50000 +17592261126225 51400 +17592261126436 74100 +17592261576346 51400 +17592261124232 52200 +17592261602405 54700 +17592263386338 54700 +17592261044049 50000 +17592261123415 50000 +17592261123417 50000 +17592263088365 52000 +17592261288420 51400 +17592261603497 74700 +17592261208188 50000 +17592261576354 51400 +17592261873597 50000 +17592261299954 50000 +17592261563460 74100 +17592261645970 52200 +17592261580540 51400 +17592261498914 86200 +17592261408926 50000 +17592260081801 83500 +17592261672435 51400 +17592261645984 54700 +17592261646092 50000 +17592261646094 50000 +17592261877267 51400 +17592261745307 50000 +17592261873014 50000 +17592263088020 51400 +17592261928688 50000 +17592262647162 51400 +17592263088071 50000 +17592263088189 74100 +17592262828361 52200 +17592261976615 50000 +17592262680334 54000 +17592263049396 51400 +17592262646153 50000 +17592262646155 50000 +17592262753547 50000 +17592262828401 54700 +17592263067562 51400 +17592262874857 50000 +17592262994492 50000 +17592263252639 51400 +17592263237740 50000 +17592263362588 51400 +17592263262696 74100 +17592263465898 52200 +17592263310492 50000 +17592263465959 51400 +17592263528740 54700 +17592264076642 74150 +17592263528732 51400 +17592263622855 50000 +17592264068305 51400 +17592263719300 50000 +17592264076777 74610 +17592264068535 52200 +17592264394989 51400 +17592263838207 50000 +17592264076390 54700 +17592264076650 74100 +17592265147939 81110 +17592264394981 51400 +17592265232721 84200 +17592263885314 50000 +17592263885312 50000 +17592263986347 50000 +17592264164625 54300 +17592263895747 81310 +17592264796665 82100 +17592264651998 52000 +17592264050034 50000 +17592264050038 50000 +17592264050036 50000 +17592264394811 51400 +17592264162738 50000 +17592264257180 50000 +17592264257178 50000 +17592264709662 50000 +17592264394794 51400 +17592264396426 74600 +17592264379914 50000 +17592264379912 50000 +17592264536601 52200 +17592264536648 51400 +17592264545826 51400 +17592264441974 50000 +17592264535134 50000 +17592264536640 54700 +17592264720067 51400 +17592264707075 50000 +17592264795326 50000 +17592264938952 51400 +17592264938581 51400 +17592265096888 50000 +17592264910358 50000 +17592264910360 50000 +17592264942365 74100 +17592270439006 74200 +17592265098074 51400 +17592265098137 54700 +17592265178533 50000 +17592265178531 50000 +17592265291251 51400 +17592265280140 50000 +17592265474833 50000 +17592265474817 51400 +17592265587754 51400 +17592265621777 52200 +17592265505701 74100 +17592265470716 50000 +17592265741923 51400 +17592265532377 50000 +17592265839712 51400 +17592265741914 54700 +17592265838048 50000 +17592265866564 50000 +17592266211808 51400 +17592266322937 51400 +17592266526314 52200 +17592266186938 50000 +17592267852182 74100 +17592267982218 74100 +17592266494381 51400 +17592267746973 74610 +17592267255575 74700 +17592267747279 54700 +17592266494348 51400 +17592267062969 82100 +17592267852144 54300 +17592266396322 81310 +17592266597115 50000 +17592267747107 51400 +17592266687204 50000 +17592267343612 74600 +17592268204162 74700 +17592267747013 51400 +17592266774675 50000 +17592267747021 51400 +17592268203978 74100 +17592267747253 52000 +17592267747230 52200 +17592267747029 51400 +17592267747384 54700 +17592267036705 50000 +17592267036703 50000 +17592267747037 51400 +17592267675872 50000 +17592267746982 52200 +17592267235090 50000 +17592267235088 50000 +17592267891384 74100 +17592267891582 51400 +17592267331792 25200 +17592267852167 51400 +17592267657497 74700 +17592267408606 25200 +17592267405302 50000 +17592267405304 50000 +17592267891489 50000 +17592267851812 51400 +17592267630040 50000 +17592267851867 51400 +17592267830320 50000 +17592267830318 50000 +17592268604882 51400 +17592268018934 52200 +17592267891240 74100 +17592268604874 51400 +17592267982382 54700 +17592268015357 50000 +17592268015359 50000 +17592269152845 74700 +17592268604866 51400 +17592268105288 50000 +17592268671531 74610 +17592268236771 50000 +17592268359838 50000 +17592268534256 51400 +17592268486494 50000 +17592268486496 50000 +17592268486498 50000 +17592268671554 52200 +17592268796416 51400 +17592268534265 74100 +17592268671562 54700 +17592268796424 51400 +17592268670662 54700 +17592268654628 50000 +17592269152532 51400 +17592268892308 50000 +17592269108293 51400 +17592268987637 50000 +17592269106806 50000 +17592269298146 52200 +17592269437289 54300 +17592269152853 74100 +17592269493134 51400 +17592268909399 81310 +17592269497858 51400 +17592269335678 50000 +17592269335676 50000 +17592269449344 54700 +17592269497916 51400 +17592269492957 52000 +17592269498878 50000 +17592270073309 50000 +17592269659091 51400 +17592269634627 50000 +17592269634625 50000 +17592269659123 74100 +17592269834036 51400 +17592270479669 52200 +17592269834571 74610 +17592273482525 74700 +17592269790582 81310 +17592270059081 54300 +17592269834077 50000 +17592269834028 51400 +17592269823749 82100 +17592269693267 50000 +17592269693263 50000 +17592269693265 50000 +17592269834060 54700 +17592270059154 51400 +17592270031601 50000 +17592270031603 50000 +17592270343731 51400 +17592270292356 50000 +17592270479564 52200 +17592270353245 74100 +17592270488184 51400 +17592270488769 51400 +17592270481267 54700 +17592270472146 50000 +17592270929606 51400 +17592273254891 74100 +17592270652734 50000 +17592270929614 51400 +17592271578061 74700 +17592271025467 52200 +17592270851707 50000 +17592270851705 50000 +17592270968945 51400 +17592270932943 74100 +17592271035408 51400 +17592271025459 84200 +17592271025451 54700 +17592271011607 50000 +17592271241994 51400 +17592271188869 74700 +17592271186616 50000 +17592271487004 51400 +17592271668210 52200 +17592271456064 50000 +17592271474673 25200 +17592271577951 51400 +17592271578045 74200 +17592271487969 74100 +17592271775032 51400 +17592271570249 50000 +17592271774203 54700 +17592272307494 82100 +17592271908541 51400 +17592272255222 54300 +17592271875361 50000 +17592272253995 51400 +17592272408242 50000 +17592272254864 51400 +17592271986295 50000 +17592272453686 52000 +17592272254873 51400 +17592272255254 74100 +17592272255312 52200 +17592272255287 54700 +17592272216951 50000 +17592276138856 74100 +17592272307090 50000 +17592272307092 50000 +17592272306712 50000 +17592272413223 51400 +17592273482386 74700 +17592272413687 50000 +17592272413689 50000 +17592272413685 50000 +17592272513217 50000 +17592272663140 51400 +17592272663170 51400 +17592272829729 51400 +17592272698606 74100 +17592272651892 50000 +17592272925462 52200 +17592272951737 25200 +17592272922699 50000 +17592273212260 74610 +17592274432896 54700 +17592273050648 50000 +17592273050646 50000 +17592273486271 51400 +17592273188467 50000 +17592273188469 50000 +17592273486262 51400 +17592273483143 74700 +17592273628365 52200 +17592273463259 50000 +17592273486609 74100 +17592273574429 51400 +17592273552961 81110 +17592273695072 51400 +17592273628386 50000 +17592273628373 54700 +17592273748264 50000 +17592273912678 51400 +17592273875441 50000 +17592274011908 51400 +17592274349472 52200 +17592274012022 50000 +17592274012020 50000 +17592274270319 51400 +17592277193689 73300 +17592274012683 74100 +17592274350782 51400 +17592274348791 50000 +17592274350789 54700 +17592274432416 75050 +17592274495560 51400 +17592274498926 25200 +17592274494975 50000 +17592274498336 25200 +17592274875508 51400 +17592274929471 54300 +17592275241020 81160 +17592274214923 82100 +17592275080071 52000 +17592274875659 74100 +17592274848184 50000 +17592275080117 52200 +17592275079991 51400 +17592274909874 75050 +17592275196139 74610 +17592275080087 50000 +17592275079905 54700 +17592275079921 51400 +17592275170249 51400 +17592275169772 50000 +17592275391675 51400 +17592275699582 50000 +17592275232874 50000 +17592275241116 75300 +17592275326353 50000 +17592275475618 52200 +17592275392296 74100 +17592275430103 51400 +17592275373349 50000 +17592275477425 51400 +17592275475004 50000 +17592275604991 74150 +17592275601719 54700 +17592275908647 51400 +17592275699964 50000 +17592275699966 50000 +17592275908701 51400 +17592275788337 50000 +17592275899563 50000 +17592276139850 51400 +17592276134847 52200 +17592275945972 74100 +17592276278710 51400 +17592275986720 50000 +17592275986718 50000 +17592276137142 54700 +17592276640899 74100 +17592276035726 50000 +17592276550436 51400 +17592276220838 50000 +17592276550755 51400 +17592276751746 51400 +17592276733081 52200 +17592276545165 50000 +17592276639334 74100 +17592276767834 51400 +17592276680650 81110 +17592276733073 54700 +17592276864644 51400 +17592276935895 84200 +17592276936516 50000 +17592277182230 51400 +17592278018357 74700 +17592277210422 74100 +17592277370281 52200 +17592277169272 50000 +17592277169270 50000 +17592277309042 51400 +17592276860851 82100 +17592277387842 51400 +17592277971604 54300 +17592277370273 54700 +17592278689264 74600 +17592277464448 50000 +17592277506109 51400 +17592278094410 75100 +17592277747768 50000 +17592277631144 50000 +17592278070603 52000 +17592277845038 50000 +17592277978802 51400 +17592278185043 52200 +17592278133817 51400 +17592278841127 25200 +17592277999151 74100 +17592278094629 74610 +17592277971614 50000 +17592277971612 50000 +17592277971616 50000 +17592278259141 51400 +17592278185035 54700 +17592278569280 51400 +17592278347096 50000 +17592278439350 50000 +17592278439352 50000 +17592278574245 51400 +17592278689232 74100 +17592278573870 50000 +17592278573872 50000 +17592278825639 51400 +17592278825663 52200 +17592278826109 51400 +17592278920682 54700 +17592278920345 74500 +17592278920385 50000 +17592278920387 50000 +17592279032553 51400 +17592279017841 50000 +17592279017843 50000 +17592279126760 50000 +17592279126762 50000 +17592279267868 51400 +17592279256178 50000 +17592279337403 51400 +17592279449712 52200 +17592279324886 74100 +17592279497819 51400 +17592279339572 54700 +17592279498180 51400 +17592279449781 25200 +17592279449800 25200 +17592279555498 50000 +17592282668887 74100 +17592279755979 51400 +17592279788665 74100 +17592279854882 51400 +17592279755209 50000 +17592279755211 50000 +17592279949898 85100 +17592279876761 50000 +17592279949988 51400 +17592279859934 50000 +17592280037833 54700 +17592281805041 81110 +17592279950192 50000 +17592280131778 50000 +17592280178907 51400 +17592279464663 82100 +17592280247496 50000 +17592280295391 74600 +17592280357959 50000 +17592280750888 51400 +17592281120906 51400 +17592280754326 52000 +17592280750856 74100 +17592280652277 50000 +17592280652275 50000 +17592280652279 50000 +17592281210274 51400 +17592280750604 25200 +17592281027686 54300 +17592281027630 54700 +17592281210284 50000 +17592281210282 50000 +17592281354288 51400 +17592281342356 50000 +17592281680355 51400 +17592284750325 50000 +17592281875875 84100 +17592282699722 74700 +17592281702416 74100 +17592281879467 51400 +17592281875046 52200 +17592281680363 50000 +17592281894974 51400 +17592282560242 85100 +17592281878729 50000 +17592281875010 54700 +17592282560218 74610 +17592282560132 51400 +17592282125840 50000 +17592282560140 51400 +17592282231486 50000 +17592282575107 74100 +17592282558537 50000 +17592282558539 50000 +17592282787830 52200 +17592282850934 51400 +17592284041066 74700 +17592282802986 54700 +17592283254238 51400 +17592283014576 50000 +17592284750484 50000 +17592283254515 51400 +17592283195451 50000 +17592283195449 50000 +17592283458742 52200 +17592283440191 51400 +17592283281204 74100 +17592284753716 52200 +17592283440129 84200 +17592283440137 54700 +17592283803427 51400 +17592283439375 50000 +17592283803451 50000 +17592283532170 50000 +17592283803484 51400 +17592283339793 82100 +17592283733017 50000 +17592283787711 50000 +17592284105273 50000 +17592284205464 50000 +17592284322835 50000 +17592284454567 50000 +17592284454565 50000 +17592284822261 50000 +17592284917456 50000 +17592284917452 50000 +17592284917454 50000 +17592285085139 50000 +17592285153332 50000 +17592285301347 50000 +17592285535284 50000 +17592285782869 50000 +17592285782871 50000 +17592286014919 50000 +17592286126466 50000 +17592286355527 50000 +17592286656918 50000 +17592286726571 50000 +17592286844465 50000 +17592286844467 50000 +17592286969106 50000 +17592287047223 50000 +17592287047221 50000 +17592287133451 50000 +17592287413394 50000 +17592253104880 50000 +17592252707812 50000 +17592253104900 50000 +17592253104829 50000 +17592252707810 50000 +17592253104839 50000 +17592253104960 54700 +17592253104910 50000 +17592252707808 50000 +17592253104920 50000 +17592256825179 50000 +17592253540393 54100 +17592253104930 50000 +17592253103791 50000 +17592253104970 54700 +17592253104940 50000 +17592256825187 50000 +17592253104849 50000 +17592253103789 50000 +17592253523128 50000 +17592253540489 50000 +17592253540466 50000 +17592253523126 50000 +17592253540499 50000 +17592253540513 54700 +17592253921719 50000 +17592253921729 50000 +17592253921739 50000 +17592253921620 50000 +17592253921759 50000 +17592253921749 50000 +17592253921699 50000 +17592253921769 50000 +17592253921618 50000 +17592253921779 50000 +17592253921709 50000 +17592253921789 54700 +17592256769396 50000 +17592254803334 50000 +17592254803802 50000 +17592256769372 50000 +17592256769418 50000 +17592254803829 50000 +17592254803819 50000 +17592254803813 50000 +17592254803344 50000 +17592254803112 50000 +17592254803839 50000 +17592256370170 54700 +17592254803354 50000 +17592254803110 50000 +17592254803859 50000 +17592254803849 50000 +17592254803108 50000 +17592256370180 54700 +17592254803907 50000 +17592255854329 50000 +17592255854360 50000 +17592255854418 50000 +17592255854370 50000 +17592255943630 54100 +17592255943638 54100 +17592256703417 54100 +17592256370190 54700 +17592255854416 50000 +17592255854380 50000 +17592255854340 50000 +17592255854414 50000 +17592255854390 50000 +17592255854400 50000 +17592255854350 50000 +17592255854412 50000 +17592255854410 50000 +17592256370104 50000 +17592267077713 50000 +17592256370120 50000 +17592256370114 50000 +17592256370200 54700 +17592256370130 50000 +17592267077711 50000 +17592256370140 50000 +17592256370088 50000 +17592256370150 50000 +17592256370160 50000 +17592256370210 54700 +17592256475435 50000 +17592256369251 50000 +17592256805643 50000 +17592256805307 50000 +17592256805426 54100 +17592256805591 50000 +17592256805653 50000 +17592256805601 50000 +17592256805305 50000 +17592257532350 50000 +17592257532376 50000 +17592257532386 50000 +17592282918198 54700 +17592257532163 50000 +17592257532426 54700 +17592257532396 50000 +17592257532406 50000 +17592257532161 50000 +17592257532366 50000 +17592257532416 50000 +17592257532159 50000 +17592257532436 54700 +17592257953052 50000 +17592257952948 50000 +17592257953062 50000 +17592257953032 54100 +17592257953042 50000 +17592257953072 50000 +17592258299075 50000 +17592258299106 54700 +17592258299005 50000 +17592258299085 50000 +17592258299003 50000 +17592258299095 50000 +17592258299001 50000 +17592258299065 50000 +17592258978873 50000 +17592258978903 50000 +17592258978893 50000 +17592258978811 50000 +17592258978931 54700 +17592258978913 50000 +17592258978809 50000 +17592258978883 50000 +17592258978807 50000 +17592258978941 54700 +17592259303944 50000 +17592259304059 50000 +17592259304069 50000 +17592259304079 50000 +17592259303942 50000 +17592259304089 50000 +17592260315038 50000 +17592260315028 50000 +17592259303996 50000 +17592260314932 50000 +17592260314930 50000 +17592260315048 50000 +17592260315214 54700 +17592260315058 50000 +17592260315078 50000 +17592260315068 50000 +17592260314928 50000 +17592260315321 54100 +17592260314926 50000 +17592260315007 50000 +17592260315088 50000 +17592260314924 50000 +17592260315224 54700 +17592260315154 50000 +17592260314922 50000 +17592260315164 50000 +17592260315017 50000 +17592261592122 50000 +17592261592208 54700 +17592261592132 50000 +17592282918238 54700 +17592267077709 50000 +17592261592110 50000 +17592261592142 50000 +17592261592152 50000 +17592261592402 50000 +17592261592070 50000 +17592261592162 50000 +17592261592172 50000 +17592261592218 54700 +17592261592220 54700 +17592261592080 50000 +17592261592398 50000 +17592261592400 50000 +17592261592182 50000 +17592261592090 50000 +17592261592396 50000 +17592262785266 50000 +17592261592100 50000 +17592262785276 50000 +17592262785210 50000 +17592262785286 50000 +17592262785336 54700 +17592262785306 50000 +17592262785296 50000 +17592262785316 50000 +17592262785208 50000 +17592262785256 50000 +17592262785326 50000 +17592262785346 54700 +17592263541444 50000 +17592263541505 50000 +17592263541515 50000 +17592263541442 50000 +17592263541525 50000 +17592263541495 50000 +17592263541535 50000 +17592263541561 54700 +17592264560803 50000 +17592267077707 50000 +17592264560813 50000 +17592267077705 50000 +17592264560773 50000 +17592264560823 50000 +17592264560833 50000 +17592264560681 50000 +17592264560763 54100 +17592264560843 50000 +17592264560923 54700 +17592264560783 50000 +17592264560679 50000 +17592264560853 50000 +17592264560677 50000 +17592264560675 50000 +17592264560793 50000 +17592264560673 50000 +17592265017345 54700 +17592265016711 50000 +17592265017315 50000 +17592265016067 50000 +17592265017325 50000 +17592265017335 50000 +17592265016065 50000 +17592265016129 54100 +17592265016721 50000 +17592267077993 50000 +17592267077703 50000 +17592267078003 50000 +17592267078184 54700 +17592267078013 50000 +17592267077933 50000 +17592267078023 50000 +17592267078033 50000 +17592267077701 50000 +17592267078053 50000 +17592267078043 50000 +17592267077943 50000 +17592267078073 50000 +17592267078063 50000 +17592267078084 50000 +17592267078194 54700 +17592267077699 50000 +17592267078094 50000 +17592267077697 50000 +17592267078104 50000 +17592267077953 50000 +17592267078114 50000 +17592267077695 50000 +17592267077963 50000 +17592267078204 54700 +17592267078134 50000 +17592267078124 50000 +17592267077693 50000 +17592267078144 50000 +17592267077691 50000 +17592267077973 50000 +17592267078164 50000 +17592267078154 50000 +17592267077689 50000 +17592267078216 54700 +17592267078214 54700 +17592267078174 50000 +17592267965554 50000 +17592267077983 50000 +17592267965564 50000 +17592267965513 54100 +17592267965358 50000 +17592267965574 50000 +17592267965523 50000 +17592267965584 50000 +17592267965356 50000 +17592267965624 54700 +17592267965594 50000 +17592267965534 50000 +17592267965604 50000 +17592267965614 50000 +17592267965544 50000 +17592269222113 50000 +17592269222123 50000 +17592267965354 50000 +17592269222053 50000 +17592269222203 54700 +17592269222063 50000 +17592269222133 50000 +17592269222143 50000 +17592269222083 50000 +17592269222073 50000 +17592269222213 54700 +17592269222153 50000 +17592269222093 50000 +17592269222163 50000 +17592269222173 50000 +17592269221974 50000 +17592269222183 50000 +17592269222193 50000 +17592269222103 50000 +17592269785002 50000 +17592269785012 50000 +17592269785796 50000 +17592269784762 50000 +17592269785182 54700 +17592269785794 50000 +17592269785027 50000 +17592269785792 50000 +17592271013338 50000 +17592271013348 50000 +17592269785790 50000 +17592269784775 50000 +17592269785788 50000 +17592271013359 50000 +17592271013112 50000 +17592278709720 54700 +17592271013369 50000 +17592271013110 50000 +17592271013308 50000 +17592271013379 50000 +17592271013108 50000 +17592271013389 50000 +17592271013106 50000 +17592271013318 50000 +17592271013399 50000 +17592271013409 50000 +17592271013104 50000 +17592271013419 50000 +17592278709798 54700 +17592271013102 50000 +17592271676391 50000 +17592271013100 50000 +17592271676405 50000 +17592271013328 50000 +17592271676484 54700 +17592271676415 50000 +17592271676313 50000 +17592271675944 50000 +17592272217451 50000 +17592271675942 50000 +17592272217476 50000 +17592271676290 54100 +17592271675940 50000 +17592271676343 50000 +17592272217504 50000 +17592272217543 54700 +17592272217520 50000 +17592272217220 50000 +17592272217432 50000 +17592273623496 50000 +17592272217218 50000 +17592273623506 50000 +17592272217216 50000 +17592273623516 50000 +17592273623526 50000 +17592272217214 50000 +17592273623536 50000 +17592273623607 54700 +17592273623368 50000 +17592273623366 50000 +17592280674495 50000 +17592273623546 50000 +17592273623364 50000 +17592273623556 50000 +17592273623476 50000 +17592273623576 50000 +17592273623566 50000 +17592273623362 50000 +17592273623617 54700 +17592273623360 50000 +17592273623586 50000 +17592273623358 50000 +17592273623597 50000 +17592273623356 50000 +17592275079445 50000 +17592273623486 50000 +17592274406103 50000 +17592274406112 50000 +17592274406043 50000 +17592274406121 54700 +17592275079415 50000 +17592274406041 50000 +17592275079425 50000 +17592274406039 50000 +17592275079395 50000 +17592274406037 50000 +17592275079483 54700 +17592275079481 54700 +17592275079447 50000 +17592275079435 50000 +17592275079341 50000 +17592275079465 50000 +17592275079475 50000 +17592275079449 50000 +17592275079339 50000 +17592275386010 50000 +17592275079405 50000 +17592275079337 50000 +17592275386020 50000 +17592275386030 50000 +17592275079498 54700 +17592275079496 54700 +17592280674493 50000 +17592275079335 50000 +17592275386000 50000 +17592275386040 50000 +17592275393901 50000 +17592276937786 50000 +17592276937806 50000 +17592276937796 50000 +17592276937413 50000 +17592276937415 50000 +17592276937875 54700 +17592276937721 50000 +17592276937816 50000 +17592276937411 50000 +17592276937409 50000 +17592276937407 50000 +17592276937731 50000 +17592276937920 54700 +17592276937405 50000 +17592276937403 50000 +17592276937401 50000 +17592277365109 54100 +17592276937399 50000 +17592276937741 50000 +17592276937397 50000 +17592277365129 54700 +17592277364982 50000 +17592277365154 54700 +17592277365034 50000 +17592277364977 50000 +17592277365032 50000 +17592277364969 50000 +17592277365030 50000 +17592277364964 50000 +17592277364792 50000 +17592277364960 50000 +17592277986908 50000 +17592277986931 54700 +17592277986894 50000 +17592278586220 50000 +17592277986904 50000 +17592277986955 50000 +17592277986953 50000 +17592278585795 50000 +17592281027874 50000 +17592278587343 50000 +17592278585779 50000 +17592278587498 54700 +17592278585753 50000 +17592278585775 50000 +17592278585765 50000 +17592278587341 50000 +17592279257211 50000 +17592279257207 50000 +17592279257189 50000 +17592279257203 50000 +17592279257516 50000 +17592279257199 50000 +17592279257230 54700 +17592279257179 50000 +17592279257955 54700 +17592279257514 50000 +17592279257512 50000 +17592279448030 50000 +17592279756219 54700 +17592279756087 50000 +17592279756425 50000 +17592279446193 50000 +17592279756085 50000 +17592279756421 50000 +17592279756083 50000 +17592279756417 50000 +17592279756413 50000 +17592280675077 50000 +17592279756081 50000 +17592280939689 50000 +17592280674307 54100 +17592280675081 50000 +17592280674491 50000 +17592280939632 50000 +17592280674489 50000 +17592280674297 54700 +17592280675041 50000 +17592280939596 50000 +17592280675019 50000 +17592280939592 50000 +17592280939588 50000 +17592280939584 50000 +17592280674487 50000 +17592281696643 50000 +17592281696391 50000 +17592281697154 54700 +17592281696641 50000 +17592281696385 50000 +17592281696639 50000 +17592281696381 50000 +17592282575935 50000 +17592281696637 50000 +17592282575924 50000 +17592281990062 50000 +17592282576292 50000 +17592282576035 54700 +17592282575920 50000 +17592282575912 50000 +17592282576290 50000 +17592282575889 50000 +17592282576288 50000 +17592283195777 50000 +17592283195902 54100 +17592283195755 50000 +17592283195773 50000 +17592283195769 50000 +17592283199348 50000 +17592283195816 54700 +17592283195765 50000 +17592283782972 50000 +17592283782964 50000 +17592283782960 50000 +17592283783289 50000 +17592283782948 50000 +17592283782952 50000 +17592283782956 50000 +17592283782944 50000 +17592283783287 50000 +17592283783040 54700 +17592283783050 54700 +17592283783010 50000 +17592284390703 50000 +17592284390695 50000 +17592283783285 50000 +17592283783283 50000 +17592284390699 50000 +17592284390691 50000 +17592284390728 50000 +17592284390687 50000 +17592284390683 50000 +17592283783281 50000 +17592284390655 50000 +17592284390651 50000 +17592284390647 50000 +17592284390643 50000 +17592284390398 50000 +17592284390282 54700 +17592284390639 50000 +17592284390635 50000 +17592284390631 50000 +17592284390396 50000 +17592285087044 50000 +17592284390394 50000 +17592285087011 50000 +17592285087040 50000 +17592285087032 50000 +17592285087036 50000 +17592285165365 50000 +17592285087007 50000 +17592285094401 54700 +17592285087028 50000 +17592285165363 50000 +17592285087024 50000 +17592285165361 50000 +17592285165359 50000 +17592285843546 50000 +17592285187915 50000 +17592285165357 50000 +17592285843542 50000 +17592285843450 50000 +17592285843139 54700 +17592285843538 50000 +17592285843448 50000 +17592285843534 50000 +17592285843446 50000 +17592286352708 50000 +17592285843518 50000 +17592286352704 50000 +17592286351362 54700 +17592286352289 50000 +17592286352287 50000 +17592287227644 50000 +17592287099431 54100 +17592286352285 50000 +17592287133994 50000 +17592287227636 50000 +17592287133992 50000 +17592287099371 54700 +17592287227632 50000 +17592287227691 50000 +17592287227624 50000 +17592287133990 50000 +17592287227616 50000 +17592287227620 50000 +17592287133988 50000 +17592287227600 50000 +17592287227687 50000 +17592252023669 81300 +17592252435397 81110 +17592252717090 51400 +17592252395333 50000 +17592252925576 52200 +17592252507246 25200 +17592252590524 52000 +17592252659991 74100 +17592252694196 50000 +17592252764752 50000 +17592252846116 50000 +17592252845453 51400 +17592253369884 54000 +17592252925531 51400 +17592252831119 83500 +17592252830845 50000 +17592252870518 50000 +17592252925585 50000 +17592252925539 54700 +17592253031229 74100 +17592253112944 51400 +17592253042364 74100 +17592253042348 74100 +17592253042087 54700 +17592253144020 74600 +17592253085959 50000 +17592253289373 51400 +17592253410731 51400 +17592253369867 84200 +17592254156814 52200 +17592253275054 50000 +17592253410723 74610 +17592253409301 50000 +17592253438891 81110 +17592253532160 74100 +17592253554936 51400 +17592253471293 50000 +17592253550025 50000 +17592253550023 50000 +17592253788173 51400 +17592253904403 51400 +17592253870310 74700 +17592253704972 50000 +17592254090468 54000 +17592253769717 50000 +17592253788205 54700 +17592253969729 51400 +17592253927052 74100 +17592254090510 74500 +17592253961660 50000 +17592257441992 74700 +17592254074963 51400 +17592254074391 50000 +17592254156518 51400 +17592254614278 52200 +17592254090518 74500 +17592254613246 54300 +17592253927145 81310 +17592255796252 52000 +17592254237622 50000 +17592252873324 83500 +17592254613046 51400 +17592254348082 74100 +17592254379501 50000 +17592254738080 54000 +17592254620646 50000 +17592254613568 54300 +17592254618224 51400 +17592254612801 50000 +17592254671557 51400 +17592254835623 74100 +17592254869081 50000 +17592255054624 51400 +17592255032419 50000 +17592255810880 52200 +17592255127489 51400 +17592255835916 74100 +17592255239560 54700 +17592255458225 52000 +17592255811050 51400 +17592255323799 74100 +17592255407584 50000 +17592255794897 54000 +17592255795697 74500 +17592255505526 50000 +17592255505528 50000 +17592255794771 51400 +17592255811434 51400 +17592255596861 50000 +17592255876785 84200 +17592255942638 74610 +17592255834943 50000 +17592255924152 50000 +17592255985726 74100 +17592256013167 51400 +17592256367904 50000 +17592255984023 50000 +17592256050342 50000 +17592256181672 51400 +17592256157003 50000 +17592256281928 52200 +17592256281994 54700 +17592256464559 51400 +17592256216410 50000 +17592256706761 54300 +17592253921845 81310 +17592254803428 83500 +17592256464506 74100 +17592256354390 50000 +17592256473459 51400 +17592256434231 50000 +17592256853239 54000 +17592256706197 51400 +17592256708303 52000 +17592257236243 51400 +17592257396028 50000 +17592256680135 50000 +17592256680137 50000 +17592256731050 50000 +17592256843091 54700 +17592256888750 50000 +17592256999847 51400 +17592256936624 74100 +17592256986743 50000 +17592257236235 51400 +17592257067682 50000 +17592257244032 50000 +17592257395916 52200 +17592257330680 51400 +17592257963920 54000 +17592257211246 50000 +17592257631826 51400 +17592257630738 74100 +17592257483502 50000 +17592259433560 74100 +17592257584837 50000 +17592257778020 51400 +17592257884257 51400 +17592257751328 50000 +17592257884158 54700 +17592257951944 50000 +17592258026009 51400 +17592258026202 74100 +17592258043430 97200 +17592258009864 50000 +17592258225485 51400 +17592259002022 54000 +17592258393068 51400 +17592258184628 50000 +17592258184630 50000 +17592258361417 52200 +17592258504884 74610 +17592258603998 51400 +17592258540492 74100 +17592258325818 81310 +17592258978062 54300 +17592258578925 50000 +17592258792732 51400 +17592259267317 52000 +17592259587298 83500 +17592259433509 50000 +17592258978103 51400 +17592258765784 50000 +17592258978188 54700 +17592259077564 51400 +17592259077575 74600 +17592259098462 75050 +17592259063655 50000 +17592259569805 50000 +17592259267253 51400 +17592259384786 52200 +17592259384778 51400 +17592260013789 54000 +17592260013781 74250 +17592260013758 74200 +17592259234032 50000 +17592260410444 74200 +17592259925504 74600 +17592259587322 74100 +17592259532730 50000 +17592259532732 50000 +17592259866585 51400 +17592259639666 50000 +17592259739159 50000 +17592259899738 51400 +17592264076597 74610 +17592261591656 54000 +17592259899730 54700 +17592260080716 51400 +17592260003229 74100 +17592259973198 50000 +17592259973200 50000 +17592260068984 50000 +17592261591672 50000 +17592260212639 51400 +17592260151166 50000 +17592260151164 50000 +17592260410424 52200 +17592260362230 51400 +17592260190601 50000 +17592261692912 74100 +17592261126348 51400 +17592263265023 74100 +17592261649562 54000 +17592260664507 50000 +17592260729425 11000 +17592263362511 81110 +17592261126266 51400 +17592261580524 54300 +17592260434315 81310 +17592260898163 50000 +17592261126233 51400 +17592260081833 83500 +17592261126083 50000 +17592261126134 54700 +17592261044053 50000 +17592261146791 74100 +17592263088388 52000 +17592261694726 54000 +17592261208194 50000 +17592261873303 50000 +17592261299956 50000 +17592261567018 51400 +17592261645995 52200 +17592261580516 51400 +17592261408936 50000 +17592263046493 50000 +17592261531917 50000 +17592262669081 50000 +17592261852403 74100 +17592261877275 51400 +17592261873018 50000 +17592263046501 50000 +17592263267211 74600 +17592262670045 54000 +17592263088212 51400 +17592262647170 51400 +17592261976623 50000 +17592261976621 50000 +17592262647178 54700 +17592263066642 74100 +17592263528855 74100 +17592263067977 51400 +17592263266183 50000 +17592263045495 52200 +17592262994496 50000 +17592263252631 51400 +17592263237746 50000 +17592263362596 51400 +17592263465865 52200 +17592264442543 54000 +17592264442535 54000 +17592263465951 54700 +17592264068461 51400 +17592264076634 74150 +17592264076589 74610 +17592263561965 74100 +17592263622861 50000 +17592264068469 51400 +17592263838213 50000 +17592264395524 51400 +17592265148042 81110 +17592264395696 50000 +17592263986351 50000 +17592263986353 50000 +17592264652161 54300 +17592264652096 54300 +17592269469827 83500 +17592263895816 81310 +17592264050042 50000 +17592264652035 52000 +17592264394803 51400 +17592264162742 50000 +17592264202371 74100 +17592265846026 50000 +17592264394786 51400 +17592270433515 74700 +17592264379920 50000 +17592264536663 51400 +17592264455986 54700 +17592264536731 52200 +17592264941708 74600 +17592264719822 51400 +17592264750642 74100 +17592264707079 50000 +17592264939257 51400 +17592264910366 50000 +17592265039778 51400 +17592264978288 50000 +17592270434427 54000 +17592265291389 74100 +17592265291259 51400 +17592265280144 50000 +17592265335467 50000 +17592265474825 51400 +17592270429346 54000 +17592265621793 52200 +17592265586978 51400 +17592265470722 50000 +17592265562899 54700 +17592270428829 54100 +17592265779068 74610 +17592265619393 50000 +17592271711969 74500 +17592265764066 74100 +17592265839703 51400 +17592265838054 50000 +17592267036715 50000 +17592266212855 25200 +17592266322945 51400 +17592266186946 50000 +17592266186944 50000 +17592267891368 74100 +17592270429354 54000 +17592266537472 50000 +17592266494356 74100 +17592267992180 54300 +17592269469835 83500 +17592266410338 81310 +17592266597119 50000 +17592267746570 51400 +17592267746808 51400 +17592266774681 50000 +17592267746721 52200 +17592267746553 52000 +17592267746864 54700 +17592267746816 51400 +17592267746680 74100 +17592267036713 50000 +17592267036711 50000 +17592267992005 74100 +17592267746828 51400 +17592267746825 51400 +17592268253948 50000 +17592267235098 50000 +17592267891590 51400 +17592267851956 51400 +17592267852250 74100 +17592267630046 50000 +17592270434356 54000 +17592267851853 51400 +17592267830326 50000 +17592268604848 51400 +17592268018943 52200 +17592268604840 51400 +17592268203970 74100 +17592268262885 54700 +17592268236777 50000 +17592271711766 54000 +17592271807231 50000 +17592268534273 51400 +17592268486504 50000 +17592268796408 51400 +17592268577258 50000 +17592268670612 50000 +17592268818541 74100 +17592268745154 50000 +17592269152540 51400 +17592268892312 50000 +17592269108301 51400 +17592271712426 50000 +17592269106812 50000 +17592269469843 83500 +17592269437331 54300 +17592270495807 86400 +17592270479533 74600 +17592269493126 51400 +17592268909381 81310 +17592269298276 84200 +17592270428850 52200 +17592269497787 51400 +17592269496554 74100 +17592269492940 52000 +17592269498882 50000 +17592270075147 50000 +17592269659083 51400 +17592270429370 54000 +17592269634633 50000 +17592269659107 84200 +17592269834044 51400 +17592269790730 81310 +17592269834086 54700 +17592270479315 74700 +17592271502924 74700 +17592270058974 74100 +17592270059162 51400 +17592270058571 84200 +17592270031607 50000 +17592270343718 51400 +17592270150292 50000 +17592270292362 50000 +17592270479524 52200 +17592270488194 51400 +17592270560788 50000 +17592270936762 74100 +17592270652748 50000 +17592273266322 74100 +17592270929136 51400 +17592271503330 54000 +17592271107053 74610 +17592270851713 50000 +17592270969197 51400 +17592275404743 54000 +17592275419468 74600 +17592271025662 54700 +17592271025638 50000 +17592271186154 74100 +17592271241986 51400 +17592271186620 50000 +17592271487012 51400 +17592271668202 52200 +17592271456070 50000 +17592271577959 51400 +17592275419089 50000 +17592271908549 51400 +17592272255238 54300 +17592272564617 82100 +17592271803005 74100 +17592271875365 50000 +17592272254026 51400 +17592272408429 50000 +17592275405333 54000 +17592271986301 50000 +17592272255279 51400 +17592272453709 52000 +17592272255271 54700 +17592272307096 50000 +17592272413215 51400 +17592272413695 50000 +17592272468415 74100 +17592272408787 74500 +17592275419357 74700 +17592272687912 51400 +17592275405578 54000 +17592275419483 74700 +17592272829745 51400 +17592272651898 50000 +17592272925454 52200 +17592274432776 74100 +17592273486308 51400 +17592273188473 50000 +17592273486254 51400 +17592275405753 54000 +17592273463265 50000 +17592273574339 51400 +17592273463267 50000 +17592273556629 50000 +17592276861025 81110 +17592273551570 50000 +17592273551568 50000 +17592273628388 50000 +17592273679763 54700 +17592273912708 51400 +17592273912686 74100 +17592273875445 50000 +17592274011900 51400 +17592275405768 54000 +17592275405487 54000 +17592274349465 52200 +17592274012030 50000 +17592274012028 50000 +17592274270327 51400 +17592274358813 74610 +17592274266646 50000 +17592274432394 74100 +17592274495568 51400 +17592274405912 50000 +17592274494979 50000 +17592275241028 81160 +17592274214935 82100 +17592275079975 54300 +17592274876960 51400 +17592275080023 52000 +17592276002762 74700 +17592274848190 50000 +17592274848192 50000 +17592275079929 51400 +17592276002841 74700 +17592274901968 50000 +17592275080007 54700 +17592275080281 50000 +17592275170468 74100 +17592275402374 74600 +17592275169780 50000 +17592275391655 51400 +17592275699618 50000 +17592275241124 75300 +17592276001758 54000 +17592275326359 50000 +17592275475610 52200 +17592275430119 51400 +17592275475006 50000 +17592275908786 51400 +17592275706721 74100 +17592275699970 50000 +17592275908797 51400 +17592275899569 50000 +17592276139820 51400 +17592276135252 50000 +17592276139207 54700 +17592276035728 50000 +17592276140552 74100 +17592276551161 74100 +17592276753309 74610 +17592276220842 50000 +17592276362641 50000 +17592276362643 50000 +17592276551141 51400 +17592276751795 51400 +17592276733089 52200 +17592276545173 50000 +17592276638759 50000 +17592278093866 74700 +17592276767113 81110 +17592276935879 74100 +17592276864652 51400 +17592276936520 50000 +17592278094322 54000 +17592277182207 51400 +17592277308786 51400 +17592277169276 50000 +17592278094350 54000 +17592277987097 54300 +17592276860843 82100 +17592277370265 54700 +17592277506101 51400 +17592277525169 74100 +17592277747774 50000 +17592278821471 74600 +17592278070574 52000 +17592277845044 50000 +17592277845042 50000 +17592277978794 51400 +17592278133809 51400 +17592278185068 52200 +17592278264798 86200 +17592277971622 50000 +17592278070750 50000 +17592278205928 51200 +17592278204975 54300 +17592278837081 74610 +17592278569306 51400 +17592281260785 74500 +17592278569603 74100 +17592278347100 50000 +17592278347102 50000 +17592278439354 50000 +17592278574253 51400 +17592279771483 54000 +17592279771468 50000 +17592278573878 50000 +17592278825604 51400 +17592278821487 54700 +17592279256373 74100 +17592279032573 51400 +17592279017847 50000 +17592279032763 50000 +17592279267860 51400 +17592279256182 50000 +17592279337391 51400 +17592279449720 52200 +17592279261831 74100 +17592279756020 74100 +17592279498188 51400 +17592279555504 50000 +17592279788844 74100 +17592279755971 51400 +17592280137325 54000 +17592280158932 50000 +17592279854898 51400 +17592279755217 50000 +17592280939523 54700 +17592280272090 74100 +17592281027776 54300 +17592280134736 82100 +17592280178778 51400 +17592280247500 50000 +17592280295910 74600 +17592280750902 51400 +17592280849746 52200 +17592281120930 51400 +17592280754342 52000 +17592280652283 50000 +17592280751370 50000 +17592281354296 51400 +17592281340610 74100 +17592283831532 54000 +17592283831446 50000 +17592281342362 50000 +17592281441593 50000 +17592281441591 50000 +17592284776314 50000 +17592281680347 51400 +17592281879475 51400 +17592281680371 50000 +17592283831268 74600 +17592282559961 50000 +17592282560122 51400 +17592282558703 74100 +17592282558485 51400 +17592282125844 50000 +17592282558477 51400 +17592283831462 54000 +17592282558545 50000 +17592282787838 52200 +17592282787846 51400 +17592283254195 74610 +17592283254230 51400 +17592282963293 74100 +17592282907582 50000 +17592283014580 50000 +17592284776322 50000 +17592283254507 51400 +17592283195457 50000 +17592283440199 51400 +17592283440153 54700 +17592283444312 82100 +17592283803539 51400 +17592283804928 74100 +17592283532174 50000 +17592283804975 51400 +17592286659500 12980 +17592283444334 82100 +17592283733021 50000 +17592283787713 50000 +17592284105277 50000 +17592284322843 50000 +17592284454589 50000 +17592284725272 50000 +17592284822267 50000 +17592285085145 50000 +17592285535288 50000 +17592285632576 50000 +17592285782877 50000 +17592286126470 50000 +17592286355533 50000 +17592286355535 50000 +17592286656920 50000 +17592264614026 81120 +17592264614018 81120 +17592252277643 50000 +17592257908974 54300 +17592252806461 82100 +17592269641304 71400 +17592252510144 51200 +17592252807596 50000 +17592252806514 51130 +17592252635338 50000 +17592252806531 51200 +17592252807741 54400 +17592252808387 50000 +17592252808171 54400 +17592252808163 54700 +17592255448092 51200 +17592252764766 50000 +17592253932921 51200 +17592253933182 50000 +17592252876763 74100 +17592252870542 50000 +17592252928319 54700 +17592281895419 50000 +17592253933067 51130 +17592253933157 50000 +17592253933322 51200 +17592253932930 51200 +17592253933051 51130 +17592253169957 50000 +17592281895401 50000 +17592253932938 51200 +17592253353181 74500 +17592253933125 50000 +17592253932951 51200 +17592253933020 51130 +17592253933166 50000 +17592256723043 74500 +17592253471317 50000 +17592253522564 54400 +17592256721690 74500 +17592253550039 50000 +17592253933174 50000 +17592258495751 54400 +17592253932967 51200 +17592252925142 50000 +17592253932959 51200 +17592253769727 50000 +17592253904013 50000 +17592253932900 83400 +17592253933149 50000 +17592253933190 54400 +17592255448100 51200 +17592281895415 50000 +17592255820225 54700 +17592255448108 51200 +17592256300843 51130 +17592281895428 50000 +17592255372207 50000 +17592255858021 82100 +17592254832215 50000 +17592255305423 82100 +17592257908982 54300 +17592281895402 50000 +17592254313981 50000 +17592254832492 51200 +17592254337130 52200 +17592254379511 50000 +17592254832644 50000 +17592254832699 54700 +17592255820233 54700 +17592254831940 51200 +17592254832913 51130 +17592254832130 50000 +17592281895408 50000 +17592254832320 51200 +17592254832152 51200 +17592254832050 50000 +17592254832500 51200 +17592254832923 54400 +17592255372025 71400 +17592255372033 50000 +17592255820417 54700 +17592257532551 50000 +17592255372044 51130 +17592255372052 51130 +17592255372077 54400 +17592257418093 51200 +17592255372215 54400 +17592255686212 51200 +17592255372060 51130 +17592255011015 72600 +17592281895431 50000 +17592255686123 52200 +17592255372008 51200 +17592255372166 50000 +17592255372158 51130 +17592255240003 52200 +17592255372174 50000 +17592255372190 50000 +17592255372198 51200 +17592255313063 50000 +17592255343904 74100 +17592255686164 51200 +17592255372085 54700 +17592255558673 72600 +17592255505548 50000 +17592258495772 54400 +17592255686156 51130 +17592255686173 51200 +17592235517203 74200 +17592255667504 41001 +17592259078064 52200 +17592256776604 50000 +17592255699528 51200 +17592255686140 74200 +17592256001884 50000 +17592256000812 51200 +17592256000994 54400 +17592256001471 71400 +17592256001876 54400 +17592255924180 50000 +17592257418175 51200 +17592256001234 51200 +17592255995144 15600 +17592257970225 54700 +17592257970246 54700 +17592256299391 54400 +17592255984037 50000 +17592256000491 54700 +17592256000657 50000 +17592258125064 54400 +17592258495917 54700 +17592256299088 51130 +17592256299161 51200 +17592256778698 51130 +17592281895433 50000 +17592257330857 82100 +17592256299177 51200 +17592257908990 54300 +17592256299400 50000 +17592256775244 51200 +17592256299169 54400 +17592256776150 50000 +17592256354422 50000 +17592263030204 50000 +17592256775548 51200 +17592256777724 50000 +17592256775896 54400 +17592281895398 50000 +17592256776385 50000 +17592256776429 51130 +17592256775119 54700 +17592256774946 51200 +17592256843551 51200 +17592256843578 74100 +17592258604596 51200 +17592256843607 50000 +17592256852570 51200 +17592259078072 52200 +17592256888796 50000 +17592256888794 50000 +17592257418046 51130 +17592257418075 51200 +17592258495925 54700 +17592281895399 50000 +17592261710384 54400 +17592257417873 51130 +17592257418022 54400 +17592257418014 54700 +17592257418084 51200 +17592257418006 51200 +17592257123187 72600 +17592257417998 51200 +17592257417973 50000 +17592257417981 51200 +17592257417989 51130 +17592257417881 50000 +17592257417965 50000 +17592257542179 83400 +17592257542196 86100 +17592257532640 51200 +17592257532648 51130 +17592257483538 50000 +17592257631683 51200 +17592257631699 51130 +17592257631707 50000 +17592281895407 50000 +17592259473754 74100 +17592259473724 74100 +17592258495583 54400 +17592257909031 51130 +17592257909015 51200 +17592258604588 51200 +17592257773339 52200 +17592259078080 52200 +17592257909006 51200 +17592257908998 50000 +17592257908958 51200 +17592257909023 51130 +17592257971757 52200 +17592258393930 51200 +17592258394064 51200 +17592258394014 50000 +17592257951968 50000 +17592258393922 51200 +17592258394030 71400 +17592258394022 54400 +17592258394046 54700 +17592258394038 51130 +17592258394055 50000 +17592258125042 72600 +17592258393998 51200 +17592258393914 50000 +17592258394006 51130 +17592259077815 54700 +17592259077932 51200 +17592259077924 54400 +17592259077962 54400 +17592258447137 50000 +17592259804173 82100 +17592259077791 51130 +17592259077940 51200 +17592259077916 54400 +17592281895429 50000 +17592259077807 51200 +17592259077948 51130 +17592258718018 72600 +17592259077799 51200 +17592259077823 50000 +17592264978153 54400 +17592258867075 58000 +17592259077908 51130 +17592259077900 51200 +17592259078008 50000 +17592259078000 50000 +17592259077992 50000 +17592258967625 50000 +17592259049694 28500 +17592259453559 71400 +17592281895423 50000 +17592259077984 51130 +17592259063675 50000 +17592259078045 51200 +17592259078036 50000 +17592259111309 72600 +17592259453586 54400 +17592261128828 54000 +17592259453570 54700 +17592259196198 72650 +17592259612242 51200 +17592260401036 51130 +17592259207059 72600 +17592259453551 74700 +17592259453475 50000 +17592259453543 51200 +17592261266778 52200 +17592259464769 50000 +17592259612283 51130 +17592259453578 54400 +17592263030196 50000 +17592281895432 50000 +17592259612234 54700 +17592259612250 51200 +17592259612258 51130 +17592259612291 54400 +17592259612267 50000 +17592259631782 72600 +17592261128844 54000 +17592260083667 51130 +17592260401045 51130 +17592260083698 51200 +17592259710449 72650 +17592260083651 50000 +17592260083706 51200 +17592259754548 52200 +17592263380168 54000 +17592260083659 50000 +17592260083675 51200 +17592260083690 51130 +17592261128852 54000 +17592260083643 51200 +17592259973234 50000 +17592260082940 51200 +17592260775408 54400 +17592260083480 51130 +17592260083720 50000 +17592281895396 50000 +17592260141976 72600 +17592260775459 51200 +17592260775570 51130 +17592260173466 72650 +17592236399233 74200 +17592260177470 72600 +17592260775561 51200 +17592260775392 71400 +17592260775545 50000 +17592260775537 50000 +17592260775139 51130 +17592260775553 51200 +17592260775229 51200 +17592260500883 50000 +17592260500885 50000 +17592281895424 50000 +17592260775238 51200 +17592260802141 72650 +17592260775431 51130 +17592260775439 54400 +17592260775422 54400 +17592260775400 50000 +17592260775578 54700 +17592260775529 50000 +17592260775692 25100 +17592263381047 54000 +17592261266491 51130 +17592261266754 51200 +17592260861744 72600 +17592265340667 83800 +17592262711357 82100 +17592260912775 74100 +17592261266507 71400 +17592261266483 50000 +17592261266545 51200 +17592261266746 50000 +17592261266729 51130 +17592261266737 51200 +17592263995974 50000 +17592261266762 51200 +17592261123445 50000 +17592266291671 54400 +17592261266529 51130 +17592261266499 54400 +17592261266553 51130 +17592261266537 54700 +17592261266770 51200 +17592281895418 50000 +17592261645739 54400 +17592263381056 54000 +17592261645715 51130 +17592261645723 51200 +17592261396682 72680 +17592261342084 72600 +17592261580890 73100 +17592269641312 71400 +17592264328948 52200 +17592261683265 50000 +17592261745343 50000 +17592261958652 54400 +17592261958661 54400 +17592261958669 51200 +17592261958677 54400 +17592261958685 50000 +17592261958693 54700 +17592261873496 54400 +17592261958636 74200 +17592261958701 51200 +17592261958709 51130 +17592261941822 72650 +17592261959576 72600 +17592263030212 50000 +17592262380892 72180 +17592261976673 50000 +17592262378441 51200 +17592263030163 50000 +17592263030155 51200 +17592263030179 51130 +17592263030187 50000 +17592264652419 51200 +17592263030147 54700 +17592263030220 51200 +17592262874893 50000 +17592281895404 50000 +17592263030131 54700 +17592263030139 54000 +17592263030122 54400 +17592263030171 74700 +17592263662858 51130 +17592263030106 54400 +17592263673142 54400 +17592263662904 51200 +17592263181328 72650 +17592263662667 51200 +17592263662834 51130 +17592263198422 72600 +17592263662745 50000 +17592263662761 51200 +17592263662753 51200 +17592263662676 51130 +17592261958718 84100 +17592263504222 50000 +17592263662794 50000 +17592263662810 54700 +17592263662769 51130 +17592263662777 51200 +17592263662684 54400 +17592263662912 86200 +17592265775811 54700 +17592268497530 74100 +17592263995895 54400 +17592263774187 72650 +17592263995879 51130 +17592263995887 51200 +17592263783420 72600 +17592263995862 51200 +17592263995870 51200 +17592264075752 50000 +17592264004174 54400 +17592264063901 51130 +17592264936315 82100 +17592264050074 50000 +17592264050076 50000 +17592264328932 51200 +17592264063865 51130 +17592264063873 51130 +17592266988928 54700 +17592264328924 51130 +17592264328916 50000 +17592264328880 51200 +17592264328888 54400 +17592281895420 50000 +17592267128146 51130 +17592264328982 51200 +17592264328940 51130 +17592264319205 72650 +17592264329154 72600 +17592266962146 54400 +17592264978049 50000 +17592264978137 50000 +17592264328974 54400 +17592267563408 54700 +17592264978041 54000 +17592264978033 51200 +17592264978129 50000 +17592264978121 51200 +17592265340623 52200 +17592264978113 51130 +17592265340636 52200 +17592264978145 51200 +17592264613909 50000 +17592281895393 50000 +17592267128154 51130 +17592264978016 54700 +17592264978000 51130 +17592264761875 54400 +17592264761934 51200 +17592264761895 50000 +17592264978008 51130 +17592264977992 51200 +17592264839922 72650 +17592264872092 72600 +17592264978024 54700 +17592265340539 51200 +17592265645541 50000 +17592264980698 50000 +17592265340563 52200 +17592265108432 54400 +17592265178571 50000 +17592265340555 51200 +17592265340522 51130 +17592265340711 51130 +17592265340547 51200 +17592265340531 50000 +17592265340506 54700 +17592265340498 54400 +17592265340758 50000 +17592269750582 51130 +17592265280164 50000 +17592281895414 50000 +17592265644758 51130 +17592265644721 51200 +17592265407548 72600 +17592265775837 54000 +17592265644742 54000 +17592265644729 50000 +17592265644713 51200 +17592267095096 50000 +17592265776442 54000 +17592265619401 50000 +17592265644750 51200 +17592267095221 54400 +17592267095213 51200 +17592265769110 54300 +17592265728615 50000 +17592267095230 54400 +17592267095205 51130 +17592267095238 54400 +17592267095189 54400 +17592267095197 51200 +17592267095015 54400 +17592266962590 54400 +17592267094983 54400 +17592267094991 54700 +17592267094909 54400 +17592267095023 51200 +17592266080043 72650 +17592266122076 72600 +17592267095007 51200 +17592268497538 74100 +17592267095173 54700 +17592267095104 51200 +17592267095123 51130 +17592263995903 50000 +17592268373466 72700 +17592266475953 50000 +17592263996089 51200 +17592281895422 50000 +17592267179230 82100 +17592267095156 51200 +17592268373108 54300 +17592267128162 54400 +17592267128137 51130 +17592269436829 54000 +17592269436781 54000 +17592267094974 51130 +17592267095131 51200 +17592266728007 72650 +17592266687250 50000 +17592266755584 72600 +17592267094966 51200 +17592267094950 50000 +17592267094958 51130 +17592267094942 52200 +17592267095258 74250 +17592266982742 50000 +17592270594616 51200 +17592267095115 50000 +17592267788372 50000 +17592267094999 50000 +17592267094934 51200 +17592267094917 51130 +17592267094926 50000 +17592267788210 51200 +17592267788227 51130 +17592267131047 72650 +17592267360244 51200 +17592267179255 72600 +17592267788251 51200 +17592267788235 50000 +17592267788243 51200 +17592267788259 51130 +17592267518417 50000 +17592270594625 51200 +17592281895439 50000 +17592267788364 54700 +17592267788356 54400 +17592267788268 51200 +17592267708730 54400 +17592267775184 72650 +17592267788347 51130 +17592267788339 51200 +17592267788218 83400 +17592267796578 72600 +17592268694603 51200 +17592268373122 51200 +17592268373229 50000 +17592269436797 54000 +17592268373130 51200 +17592269641294 71400 +17592269641273 71400 +17592268694668 51200 +17592268373139 74250 +17592268373261 50000 +17592268373253 50000 +17592268373269 50000 +17592268105332 50000 +17592268373196 54700 +17592268373210 54400 +17592268373163 54400 +17592268373155 50000 +17592268373147 51200 +17592268373221 51130 +17592281895413 50000 +17592267095249 74250 +17592268694636 51130 +17592268694628 51130 +17592268373019 81200 +17592268373285 83400 +17592268373277 51200 +17592268411532 72600 +17592281895403 50000 +17592268497522 74100 +17592268694660 50000 +17592268694644 51130 +17592268694611 51200 +17592268694676 50000 +17592268694652 51200 +17592271712856 54700 +17592269165285 54400 +17592281895421 50000 +17592269165378 50000 +17592270594737 51200 +17592268745502 50000 +17592281895394 50000 +17592269436870 54000 +17592269436853 54000 +17592269165427 74200 +17592269165403 51200 +17592269165386 54400 +17592269165370 54700 +17592269165362 51130 +17592269065122 72650 +17592269165411 51130 +17592269165419 51200 +17592269073234 72600 +17592269165618 86300 +17592269309817 25200 +17592269165269 50000 +17592269165277 51200 +17592270107246 82100 +17592276388491 54300 +17592269750574 50000 +17592269750566 51130 +17592269750558 51200 +17592269347046 25200 +17592270709628 52200 +17592269347407 25200 +17592269335352 25200 +17592269436573 50000 +17592269750550 74250 +17592269750532 51200 +17592269750516 54400 +17592269437741 25200 +17592271210426 54400 +17592269750491 50000 +17592269750453 51130 +17592269750598 54700 +17592269750590 72700 +17592269750524 51200 +17592271712886 54700 +17592271712906 54700 +17592269761528 51200 +17592269772035 51130 +17592269834597 51200 +17592269834589 51200 +17592269600109 72600 +17592269617635 72650 +17592269761544 51130 +17592269772021 51200 +17592269761536 51200 +17592270107279 50000 +17592270107263 71400 +17592270107271 54400 +17592269932492 50000 +17592269979358 28500 +17592270428612 51200 +17592270107562 50000 +17592270107288 50000 +17592281895417 50000 +17592270428629 51130 +17592271713070 54700 +17592270107305 54700 +17592270107313 54700 +17592270107321 51200 +17592270428620 51130 +17592270428670 51200 +17592270144087 72650 +17592270144071 72600 +17592270428661 51200 +17592274517668 51200 +17592270428637 51130 +17592270709693 50000 +17592270428645 51200 +17592270428653 51200 +17592270709722 51200 +17592270709808 74250 +17592270560828 50000 +17592270594704 74100 +17592270709772 54700 +17592271210381 54400 +17592271210407 54700 +17592281895409 50000 +17592271210180 51200 +17592271792936 50000 +17592271210391 51130 +17592271210172 51200 +17592270787013 72650 +17592270742368 72600 +17592271210296 50000 +17592271210155 51200 +17592271210261 50000 +17592271210164 51200 +17592271210230 51130 +17592271210147 51200 +17592271024448 15600 +17592272838664 52200 +17592271078455 50000 +17592271210139 51200 +17592271407650 54400 +17592271543300 71400 +17592271210216 54700 +17592271210327 54700 +17592271210357 54700 +17592271902284 75100 +17592281895416 50000 +17592271407622 51130 +17592271407667 54400 +17592271407658 51200 +17592271543355 51200 +17592271543332 51130 +17592271543316 50000 +17592271411676 72600 +17592271422188 72650 +17592271543324 51200 +17592271543308 50000 +17592281895392 50000 +17592271791895 50000 +17592271902476 51200 +17592271902468 51130 +17592271902451 51200 +17592271902443 50000 +17592271902349 50000 +17592281895426 50000 +17592273034295 82100 +17592271759252 50000 +17592271902332 74250 +17592272838667 51200 +17592276388499 54300 +17592281895436 50000 +17592271902292 50000 +17592271902324 54700 +17592271902308 51200 +17592271983283 51130 +17592271983280 72700 +17592271983289 51200 +17592271983286 51130 +17592271983316 72650 +17592271983310 72600 +17592272821639 51200 +17592272821647 51200 +17592272838414 50000 +17592274517420 51200 +17592272307298 74500 +17592272838491 51200 +17592272307150 50000 +17592272821587 54400 +17592272838046 50000 +17592272838054 54700 +17592273380511 50000 +17592272838405 51200 +17592272838381 54400 +17592281895425 50000 +17592272838363 51130 +17592272838372 51130 +17592272838392 51200 +17592272605464 72650 +17592272605369 72600 +17592272821558 51200 +17592273380495 50000 +17592274517660 51200 +17592272841251 51200 +17592272821663 83400 +17592273380503 51130 +17592273380486 51200 +17592273380600 51200 +17592273380584 54400 +17592273050718 50000 +17592273380535 50000 +17592273380519 74250 +17592281895434 50000 +17592273380608 54700 +17592273380568 54700 +17592273380576 54400 +17592273380552 51200 +17592273380560 54700 +17592273380543 50000 +17592276860737 54700 +17592273330484 72600 +17592273273301 15600 +17592273380592 51130 +17592273388013 72650 +17592279883511 51200 +17592273980913 54400 +17592274517638 51200 +17592275024068 54400 +17592274786458 50000 +17592274789159 72680 +17592274789037 74100 +17592273980905 50000 +17592275258336 52200 +17592273980897 54400 +17592274517606 51200 +17592273748304 50000 +17592273980889 51130 +17592273980881 54400 +17592273980873 50000 +17592273980849 54700 +17592273980841 51200 +17592273875467 50000 +17592273980865 51200 +17592273980857 51130 +17592273985859 72600 +17592274358022 51200 +17592281895400 50000 +17592274221864 74700 +17592274221737 74700 +17592274318533 72650 +17592274358055 54400 +17592274358048 50000 +17592274358029 51200 +17592287229133 50000 +17592274783723 54400 +17592274785386 54700 +17592274783731 74250 +17592274783763 51200 +17592274405954 50000 +17592274783803 54400 +17592274783811 51130 +17592274783739 51200 +17592274783755 50000 +17592274783747 54700 +17592274783771 54400 +17592274783787 51200 +17592274783779 51130 +17592276388507 54300 +17592274783819 72600 +17592274783835 83400 +17592274783827 72650 +17592274879790 54700 +17592274879798 54700 +17592274783795 74200 +17592275004161 51200 +17592274789143 73100 +17592275004153 50000 +17592281895440 50000 +17592275004145 51200 +17592276388475 52200 +17592275102967 54700 +17592275080319 50000 +17592281895430 50000 +17592275258360 54700 +17592275258368 54400 +17592275258344 51130 +17592275258352 54700 +17592275258392 50000 +17592275258376 54400 +17592275258536 54700 +17592275258328 51200 +17592280775920 51200 +17592280775928 51200 +17592275715783 51200 +17592275258311 51130 +17592275258320 51200 +17592275715113 50000 +17592275296062 72600 +17592275296094 58000 +17592275296070 72650 +17592275715472 51130 +17592275715272 51200 +17592275715609 50000 +17592275576150 50000 +17592275588143 74100 +17592276063471 54400 +17592276063411 54700 +17592276063403 51130 +17592281895427 50000 +17592276063358 54400 +17592276063380 54400 +17592275734455 15600 +17592275734473 82100 +17592275700000 50000 +17592275710541 50000 +17592275710450 51200 +17592275714674 50000 +17592276063419 51200 +17592276063441 51130 +17592275854399 72650 +17592275854383 72600 +17592276063513 50000 +17592287078309 74700 +17592276063535 54700 +17592276063483 50000 +17592276063505 51130 +17592276063449 51200 +17592276388483 52200 +17592274517630 51200 +17592276111806 50000 +17592276388403 51130 +17592287229034 50000 +17592281895405 50000 +17592276388451 54700 +17592276388459 50000 +17592276388467 50000 +17592276388427 51130 +17592276388435 51200 +17592276481967 72650 +17592276481941 72600 +17592277115302 51200 +17592277115700 54400 +17592277115238 50000 +17592277116041 51200 +17592280776397 51200 +17592234423934 74200 +17592276837487 50000 +17592280776389 51200 +17592281895437 50000 +17592277115572 74250 +17592276936536 50000 +17592277114574 51130 +17592277114589 51200 +17592277114723 51200 +17592277116476 72650 +17592277921568 51200 +17592277921560 50000 +17592277116460 72600 +17592278136128 82100 +17592277921552 51200 +17592277921544 50000 +17592279256573 74450 +17592279757458 83800 +17592277921536 50000 +17592277464490 50000 +17592277921620 54400 +17592277921612 54400 +17592277921596 50000 +17592281840823 54700 +17592277921604 54700 +17592277921588 51200 +17592278616232 51130 +17592278616224 51200 +17592277921719 72600 +17592278070768 50000 +17592278610208 50000 +17592278611141 51130 +17592278610192 51200 +17592281895395 50000 +17592278613105 74250 +17592278259375 50000 +17592282006991 54700 +17592282006969 54700 +17592278613097 50000 +17592278613056 54400 +17592278613081 51130 +17592278613089 54400 +17592278519759 72600 +17592278612275 51130 +17592279257034 51130 +17592279256605 50000 +17592278890488 72650 +17592278920443 50000 +17592278920441 50000 +17592278948225 54700 +17592279256537 83400 +17592281840831 54700 +17592281895410 50000 +17592279256685 50000 +17592279256709 54700 +17592279256725 50000 +17592279256741 54400 +17592279185189 72600 +17592279358493 74100 +17592279707719 50000 +17592279755531 74700 +17592279707671 52200 +17592279707703 51130 +17592279707711 74250 +17592279555568 50000 +17592279707687 50000 +17592281895406 50000 +17592279707695 51130 +17592279712723 72600 +17592268756036 74500 +17592279757569 83800 +17592279876964 15600 +17592281895438 50000 +17592280674574 71400 +17592280674631 54400 +17592280674639 50000 +17592279859952 50000 +17592280674582 50000 +17592280674615 50000 +17592280674976 54700 +17592281895412 50000 +17592283387755 54400 +17592282575256 54300 +17592280131826 50000 +17592281895088 82100 +17592280674984 54400 +17592280674998 51200 +17592281895397 50000 +17592280357975 50000 +17592280357973 50000 +17592280357971 50000 +17592280674647 51130 +17592280674655 74200 +17592281475131 50000 +17592281475267 54400 +17592281475123 74100 +17592281265516 74700 +17592281210328 50000 +17592281475275 54400 +17592281475251 51130 +17592281475259 74250 +17592281475163 50000 +17592281895435 50000 +17592281475155 50000 +17592281475147 54400 +17592281475139 51130 +17592282575248 50000 +17592281785052 15600 +17592282575525 50000 +17592282575517 50000 +17592281980015 50000 +17592282575509 51200 +17592282575443 54700 +17592282575451 54700 +17592282125858 50000 +17592282575280 50000 +17592282575397 50000 +17592282575415 50000 +17592282575264 51130 +17592283458570 50000 +17592282560075 15600 +17592285472918 54700 +17592283458578 50000 +17592284432666 51130 +17592282862032 15600 +17592282907630 50000 +17592282962974 54000 +17592282939170 74250 +17592283458522 54400 +17592283458538 50000 +17592283458474 54700 +17592283458498 50000 +17592283458506 54700 +17592283458562 51200 +17592283458554 51130 +17592283458546 50000 +17592283458466 51200 +17592283458586 51200 +17592284432218 51200 +17592283458594 54400 +17592283439421 50000 +17592283583735 54700 +17592283583719 50000 +17592283583727 54400 +17592284432130 51130 +17592284432122 51200 +17592285043588 82100 +17592284432114 51200 +17592283936618 74250 +17592287078765 52200 +17592286774872 74100 +17592284012356 50000 +17592284432154 50000 +17592284432138 74250 +17592284432162 50000 +17592284432146 51130 +17592285043546 51130 +17592285043577 50000 +17592285043446 50000 +17592284725322 50000 +17592285725838 71400 +17592285043398 54400 +17592285043367 50000 +17592285043382 51130 +17592285043390 50000 +17592285043312 50000 +17592285043320 51200 +17592285043283 51130 +17592285725870 50000 +17592285725774 51130 +17592285258549 52200 +17592285725955 74250 +17592285725963 51200 +17592285301391 50000 +17592285725939 51130 +17592285725947 50000 +17592285725923 50000 +17592285725931 54700 +17592287011752 54700 +17592285725915 51200 +17592285725904 51130 +17592287078773 50000 +17592287078781 51130 +17592287078757 52200 +17592285952557 15600 +17592286014967 50000 +17592287010090 51200 +17592287011688 50000 +17592287011696 71400 +17592287011704 54700 +17592287011712 50000 +17592287011720 51130 +17592287011728 50000 +17592287011736 50000 +17592287011744 50000 +17592287010098 51200 +17592287011680 51130 +17592286576465 50000 +17592287011672 51130 +17592287431461 71400 +17592287011664 54400 +17592287079354 72600 +17592286774864 74100 +17592286726631 50000 +17592286749348 54700 +17592287011652 51200 +17592287078821 54400 +17592287010082 54400 +17592287010122 50000 +17592287011110 54400 +17592287078805 54700 +17592287078813 50000 +17592287078789 51130 +17592287078797 51200 +17592287134171 74200 +17592287314036 50000 +17592287431759 54700 +17592287432047 54700 +17592287430992 54700 +17592254823506 74150 +17592256181745 74700 +17592255588720 74150 +17592256181575 74150 +17592258637594 34000 +17592258637831 34000 +17592256477452 74150 +17592256706016 50000 +17592257009517 74150 +17592257605076 74150 +17592258019425 74150 +17592258637848 25500 +17592258664714 74150 +17592259088943 74150 +17592259206485 25500 +17592259394024 34000 +17592259579419 74150 +17592259988420 74150 +17592260190841 25500 +17592260665579 74150 +17592261257048 74150 +17592261341883 25500 +17592261888279 74150 +17592262647370 34000 +17592263029952 74150 +17592263504307 50000 +17592263504331 74150 +17592264169895 74150 +17592264324724 25500 +17592264707307 74150 +17592265365561 25500 +17592265836913 74150 +17592266258704 34000 +17592266259352 50000 +17592266599507 74150 +17592266748225 25500 +17592267037493 74700 +17592267037473 74150 +17592267629837 74150 +17592267787184 25500 +17592268233767 74150 +17592268890936 74150 +17592269125699 74600 +17592269492592 74150 +17592270031501 74150 +17592270217870 25500 +17592270656925 74150 +17592271210099 74150 +17592271819889 74150 +17592272214912 74600 +17592272406028 81200 +17592272406011 74150 +17592272600025 25500 +17592273177569 74150 +17592273553710 50000 +17592273917354 86200 +17592273980168 34000 +17592274495091 74150 +17592274909853 74600 +17592275165558 74150 +17592275295973 25500 +17592275736185 91100 +17592275736219 91100 +17592276936601 74150 +17592276462241 25500 +17592276936617 74150 +17592277305649 74600 +17592277305588 74500 +17592277305526 74700 +17592277913907 25500 +17592277568391 74150 +17592278351052 74150 +17592279013439 74150 +17592279294739 25500 +17592279583242 74150 +17592279788625 86100 +17592280481693 34000 +17592280035843 74600 +17592280246615 74150 +17592281215078 74150 +17592282125508 74150 +17592282312514 25500 +17592283011652 74150 +17592283209133 74500 +17592283202458 50000 +17592283532751 74150 +17592283532660 74600 +17592284117170 74150 +17592284822846 74150 +17592285000794 25500 +17592285547992 74150 +17592286127998 74600 +17592286128020 74150 +17592286846532 74150 +17592287410345 74150 +17592282804702 51200 +17592254748266 50000 +17592280651259 11000 +17592254835256 50000 +17592254748274 50000 +17592254835264 50000 +17592257304356 73100 +17592258014264 74700 +17592257303548 50000 +17592257304380 50000 +17592258592657 54100 +17592281776566 50000 +17592281776564 50000 +17592264061174 50000 +17592265118527 74700 +17592281776565 50000 +17592264061247 50000 +17592271578340 74700 +17592257303540 50000 +17592282125596 51200 +17592282804717 51200 +17592283831308 74600 +17592283806334 74500 +17592284740697 74700 +17592257303556 50000 +17592253943998 74600 +17592252735713 81110 +17592254614484 83500 +17592253927207 82100 +17592253921837 82100 +17592254348074 74600 +17592256217000 82100 +17592263330018 74600 +17592258325834 82100 +17592263330026 74600 +17592260935299 82100 +17592263895832 82100 +17592263895849 74600 +17592266396994 74600 +17592266410247 82100 +17592266597169 81110 +17592267240639 74700 +17592270496000 86400 +17592268909478 82100 +17592270117924 82100 +17592271486786 82100 +17592274214673 82100 +17592275609287 25200 +17592285171096 74600 +17592276860890 25200 +17592278920329 74500 +17592279267748 74700 +17592279464641 82100 +17592281805033 81110 +17592285171088 74600 +17592281784777 74500 +17592283444342 82100 +17592252359481 74500 +17592252507403 34010 +17592252590587 82100 +17592252635308 50000 +17592252653284 50000 +17592282068414 50000 +17592252714922 15600 +17592252696050 11000 +17592252696034 11000 +17592252696010 11000 +17592252695986 11000 +17592252695944 11000 +17592252695914 11000 +17592252695898 11000 +17592252695882 11000 +17592252695866 11000 +17592252695850 11000 +17592252695833 11000 +17592252695817 11000 +17592252766158 11000 +17592253042902 74800 +17592253042323 54400 +17592253044273 54400 +17592253135904 85100 +17592253480471 11000 +17592253480519 11000 +17592253480535 11000 +17592253480551 11000 +17592253480567 11000 +17592253480584 11000 +17592253480600 11000 +17592253480616 11000 +17592253480632 11000 +17592253480648 11000 +17592253480664 11000 +17592253480680 11000 +17592253480696 11000 +17592253480712 11000 +17592253480729 11000 +17592253578243 11000 +17592253595394 54400 +17592253552733 15600 +17592253614500 11000 +17592253701143 54400 +17592253858995 54400 +17592253859201 54400 +17592253912667 11000 +17592253912683 11000 +17592253912699 11000 +17592253912715 11000 +17592253913038 11000 +17592253913054 11000 +17592253913199 11000 +17592253913236 11000 +17592253913252 11000 +17592253913331 11000 +17592253913366 11000 +17592253913385 11000 +17592254050268 34010 +17592254177629 54400 +17592254317981 50000 +17592254322967 51130 +17592254424260 15600 +17592254415241 74600 +17592254415322 11000 +17592254415305 11000 +17592254415354 11000 +17592254415338 11000 +17592254415386 11000 +17592254415370 11000 +17592254415418 11000 +17592254415402 11000 +17592254415451 11000 +17592254415434 11000 +17592254415483 11000 +17592254415467 11000 +17592254415515 11000 +17592254415499 11000 +17592254415550 11000 +17592254415531 11000 +17592254496704 54400 +17592254496721 54400 +17592254613442 82100 +17592254921844 11000 +17592254961802 11000 +17592254961818 11000 +17592254961851 11000 +17592254961835 11000 +17592254961883 11000 +17592254961867 11000 +17592254961899 11000 +17592254961971 11000 +17592254961955 11000 +17592254961987 11000 +17592254962036 11000 +17592254962019 11000 +17592254962068 11000 +17592254962052 11000 +17592254962100 11000 +17592254962084 11000 +17592254962134 11000 +17592254962116 11000 +17592254962167 11000 +17592254962150 11000 +17592255054906 74700 +17592255110451 91201 +17592255066573 11000 +17592255054690 54400 +17592255054707 54400 +17592255266666 91200 +17592255558834 11000 +17592255558532 11000 +17592255558866 11000 +17592255558850 11000 +17592255558917 11000 +17592255558933 11000 +17592255558885 11000 +17592255558901 11000 +17592255558986 11000 +17592255559002 11000 +17592255558954 11000 +17592255558970 11000 +17592255559044 11000 +17592255559028 11000 +17592255847650 54400 +17592255845907 25200 +17592255836360 11000 +17592255836376 11000 +17592255836344 11000 +17592255836425 11000 +17592255836392 11000 +17592255836409 11000 +17592255836498 11000 +17592255836550 11000 +17592255836566 11000 +17592255836515 11000 +17592255836534 11000 +17592255836614 11000 +17592255836632 11000 +17592255836582 11000 +17592255836598 11000 +17592255836681 11000 +17592255836699 11000 +17592255836648 11000 +17592255836665 11000 +17592255847198 74800 +17592255950885 54400 +17592256013851 54400 +17592256013868 54400 +17592256061097 11000 +17592256206633 34010 +17592256245105 51500 +17592282068418 50000 +17592256314455 52000 +17592256366924 54400 +17592256515552 72130 +17592256560823 73100 +17592256606249 11000 +17592256606297 11000 +17592256606281 11000 +17592256606265 11000 +17592256606361 11000 +17592256606345 11000 +17592256606329 11000 +17592256606313 11000 +17592256606426 11000 +17592256606402 11000 +17592256606377 11000 +17592256606490 11000 +17592256606474 11000 +17592256606458 11000 +17592256606442 11000 +17592256606548 11000 +17592256606596 11000 +17592256606580 11000 +17592256606564 11000 +17592256676345 25200 +17592256666457 74700 +17592256676421 11000 +17592256707200 82100 +17592256824037 54400 +17592256815944 54400 +17592257000734 74800 +17592257018264 11000 +17592257018248 11000 +17592257018302 11000 +17592257018280 11000 +17592257018326 11000 +17592257018391 11000 +17592257018367 11000 +17592257018455 11000 +17592257018439 11000 +17592257018407 11000 +17592257018471 11000 +17592257123292 11000 +17592257123357 11000 +17592257123341 11000 +17592257123325 11000 +17592257123309 11000 +17592257123373 11000 +17592257175460 54400 +17592257221260 51130 +17592257221244 51130 +17592257452073 74100 +17592282068419 50000 +17592282068421 50000 +17592257605156 11000 +17592257605172 11000 +17592257605188 11000 +17592257605204 11000 +17592257605287 11000 +17592257605303 11000 +17592257605320 11000 +17592257605336 11000 +17592257605223 11000 +17592257605239 11000 +17592257605255 11000 +17592257605271 11000 +17592257605413 11000 +17592257605429 11000 +17592257605445 11000 +17592257605368 11000 +17592257605384 11000 +17592257674454 74800 +17592257670494 74600 +17592257670532 74600 +17592257673387 54400 +17592257728016 74800 +17592257912425 11000 +17592257947444 11000 +17592257886603 11000 +17592257947461 11000 +17592258034440 11000 +17592258115308 11000 +17592258115324 11000 +17592258115340 11000 +17592258115356 11000 +17592258115444 11000 +17592258394288 11000 +17592258394304 11000 +17592258394320 11000 +17592258394404 11000 +17592258394420 11000 +17592258394436 11000 +17592258394452 11000 +17592258394339 11000 +17592258394388 11000 +17592258394468 11000 +17592258394484 11000 +17592258394501 11000 +17592258495693 50000 +17592258495945 54400 +17592258496045 54400 +17592258496029 54400 +17592258701270 74500 +17592258682992 74600 +17592258801891 50000 +17592258840444 74500 +17592258914399 11000 +17592258914383 11000 +17592258934780 54400 +17592258914518 11000 +17592258914432 11000 +17592258914416 11000 +17592258914448 11000 +17592258914598 11000 +17592258914550 11000 +17592258914534 11000 +17592258914582 11000 +17592258914566 11000 +17592258934796 54400 +17592258953965 54400 +17592259089251 82100 +17592259295304 34010 +17592259407176 54400 +17592259394229 11000 +17592259394261 11000 +17592259394245 11000 +17592259394177 11000 +17592259394348 11000 +17592259394392 11000 +17592259394277 11000 +17592259394493 11000 +17592259394477 11000 +17592259394461 11000 +17592259474675 74100 +17592259641631 51130 +17592260144692 11000 +17592260141960 11000 +17592260142126 11000 +17592260142094 11000 +17592260142110 11000 +17592260142056 11000 +17592260142078 11000 +17592260142212 11000 +17592260142228 11000 +17592260142196 11000 +17592260145722 11000 +17592260142024 11000 +17592260142040 11000 +17592260141992 11000 +17592260142008 11000 +17592260176918 54400 +17592260187893 54400 +17592260186914 25200 +17592260400295 54400 +17592260533493 11000 +17592260533686 11000 +17592260533605 11000 +17592260533780 11000 +17592260533764 11000 +17592260536107 11000 +17592260536038 11000 +17592260534867 11000 +17592260532941 11000 +17592260532925 11000 +17592260532909 11000 +17592260807749 51130 +17592260822049 54400 +17592260880388 25200 +17592282068420 50000 +17592261171091 51500 +17592261126454 54400 +17592282068413 50000 +17592261137118 11000 +17592261137101 11000 +17592261137085 11000 +17592261137069 11000 +17592261137016 25200 +17592261137000 11000 +17592261137182 11000 +17592261137166 11000 +17592261137150 11000 +17592261137134 11000 +17592261126888 50000 +17592261137290 11000 +17592261137274 11000 +17592261137258 11000 +17592261269187 11000 +17592261179734 74700 +17592261331410 74600 +17592261225128 54000 +17592261225111 86500 +17592261649522 54400 +17592261648083 82100 +17592261634181 54400 +17592261634201 54400 +17592261648586 86500 +17592261779164 11000 +17592261779344 11000 +17592261779360 11000 +17592261779376 11000 +17592261779392 11000 +17592261779408 11000 +17592261779424 11000 +17592261779440 11000 +17592261779476 11000 +17592261779492 11000 +17592261779508 11000 +17592261779525 11000 +17592261779541 11000 +17592261900466 74600 +17592262892830 11000 +17592262892814 11000 +17592262892862 11000 +17592262892846 11000 +17592262891637 11000 +17592262891621 11000 +17592262891670 11000 +17592262891653 11000 +17592262891540 11000 +17592262891573 11000 +17592262891556 11000 +17592262891605 11000 +17592262891589 11000 +17592263226322 25200 +17592263349678 82100 +17592263551937 34010 +17592263662997 11000 +17592263662947 11000 +17592263662963 11000 +17592263663058 11000 +17592263663074 11000 +17592263663013 11000 +17592263663114 11000 +17592263663090 11000 +17592263663153 11000 +17592263663169 11000 +17592263852047 50000 +17592263852068 50000 +17592263842061 74700 +17592264394693 82100 +17592264148041 11000 +17592264076140 54400 +17592264148106 11000 +17592264148073 11000 +17592264148089 11000 +17592264148190 11000 +17592264148057 11000 +17592264148240 11000 +17592264148256 11000 +17592264148206 11000 +17592264148222 11000 +17592264148272 11000 +17592264185949 15410 +17592264169879 74600 +17592264186142 15410 +17592264243902 72680 +17592264170432 51130 +17592264394710 82100 +17592264467486 51500 +17592264666251 11000 +17592264641672 11000 +17592264641688 11000 +17592264666235 11000 +17592264641736 11000 +17592264641704 11000 +17592264641720 11000 +17592264651775 11000 +17592264750322 74100 +17592264652562 11000 +17592264652546 11000 +17592264651707 11000 +17592264850463 72680 +17592264884104 54400 +17592265180181 11000 +17592265180165 11000 +17592265180245 11000 +17592265180229 11000 +17592265180213 11000 +17592265180197 11000 +17592265180057 11000 +17592265180041 11000 +17592265180017 11000 +17592265180111 11000 +17592265180073 11000 +17592265314162 11000 +17592265363705 72680 +17592265667540 54400 +17592265757797 11000 +17592265757813 11000 +17592265757679 11000 +17592265757695 11000 +17592265757712 11000 +17592265793875 74700 +17592265757615 11000 +17592265757631 11000 +17592265757647 11000 +17592265757663 11000 +17592265757599 11000 +17592265796443 25200 +17592266322315 73000 +17592266389353 11000 +17592266389369 11000 +17592266389385 11000 +17592266389401 11000 +17592266389289 11000 +17592266389305 11000 +17592266389321 11000 +17592266389337 11000 +17592266389257 11000 +17592266389273 11000 +17592266483529 54400 +17592266483550 54400 +17592266494620 50000 +17592266734162 72680 +17592266886994 73000 +17592282068415 50000 +17592266897290 73000 +17592266937227 54700 +17592266999132 51130 +17592266988804 74600 +17592266988814 74600 +17592267219002 82100 +17592266998956 11000 +17592266998907 25200 +17592266998891 11000 +17592266998940 25200 +17592266998924 11000 +17592266998842 25200 +17592266998875 11000 +17592266998859 11000 +17592266998755 11000 +17592266999164 51130 +17592266999148 51130 +17592266999180 51130 +17592266998733 11000 +17592267111958 72680 +17592267553942 11000 +17592267551833 11000 +17592267557878 11000 +17592267557901 11000 +17592267539683 11000 +17592267552418 11000 +17592267603603 25200 +17592267556642 11000 +17592267556866 11000 +17592267553034 11000 +17592267557856 25200 +17592267557738 11000 +17592267746704 72680 +17592267727252 11000 +17592267727423 11000 +17592267727269 11000 +17592267991631 15450 +17592268142581 54400 +17592268141007 11000 +17592268141023 11000 +17592268140974 11000 +17592268140991 93100 +17592268140958 25200 +17592268140878 11000 +17592268163323 54400 +17592268141161 11000 +17592268141073 11000 +17592268141089 11000 +17592268141040 11000 +17592268141056 11000 +17592268353487 72680 +17592268592753 51130 +17592268590568 11000 +17592268591538 11000 +17592268593468 15410 +17592268591825 11000 +17592268577500 54700 +17592268593845 15410 +17592268577678 11000 +17592268577657 11000 +17592268577550 11000 +17592268577517 11000 +17592268591848 11000 +17592268577534 25200 +17592268591864 11000 +17592268686260 11000 +17592268782046 50000 +17592268973315 72680 +17592269122612 11000 +17592269124931 74600 +17592269121345 11000 +17592269123357 11000 +17592269119970 25200 +17592269119920 11000 +17592269123973 11000 +17592270078012 84300 +17592269121888 11000 +17592269123842 11000 +17592269122259 11000 +17592269120086 11000 +17592269347915 54700 +17592269347899 54700 +17592269372875 74100 +17592269335483 82100 +17592269531113 72680 +17592269644993 34010 +17592269648992 25200 +17592269641136 34010 +17592269653689 11000 +17592269651486 11000 +17592269653927 11000 +17592269654172 11000 +17592269648015 11000 +17592269650183 11000 +17592269916744 11000 +17592270488202 11000 +17592269649421 11000 +17592269650619 11000 +17592269652864 11000 +17592269988292 84300 +17592270144105 72680 +17592270408261 34010 +17592270485286 54400 +17592270488340 11000 +17592270488456 11000 +17592270488473 11000 +17592270488489 11000 +17592270488506 11000 +17592270488522 11000 +17592270488538 11000 +17592270488259 11000 +17592270714974 50000 +17592270990491 11000 +17592270990474 11000 +17592270990524 11000 +17592270990508 11000 +17592270895866 54700 +17592270895863 54700 +17592270990649 11000 +17592270990666 11000 +17592270990557 11000 +17592270990541 11000 +17592271170074 86200 +17592271170051 86200 +17592271170091 86200 +17592271557025 11000 +17592271557045 25200 +17592271557484 74600 +17592271516580 54400 +17592271557211 11000 +17592271574228 51500 +17592271557098 11000 +17592271557178 11000 +17592271557155 11000 +17592271557194 11000 +17592271557227 11000 +17592271668359 54400 +17592271668433 54400 +17592271775100 51130 +17592271887553 84300 +17592272170621 82100 +17592271840078 74700 +17592271899252 50000 +17592271840096 74700 +17592272064747 11000 +17592272064764 11000 +17592272064981 11000 +17592272064731 11000 +17592272064698 11000 +17592272065001 11000 +17592272065110 11000 +17592285045798 11000 +17592272147126 54700 +17592272379096 12980 +17592272481896 11000 +17592272565376 84300 +17592272794864 11000 +17592285045797 11000 +17592272794978 11000 +17592272888967 54700 +17592272795534 73500 +17592272795598 11000 +17592272795137 11000 +17592272795188 11000 +17592272795719 11000 +17592272796193 25500 +17592272938566 15600 +17592272938591 74100 +17592273009556 85100 +17592273239108 54400 +17592273497938 11000 +17592273504168 25500 +17592273500489 11000 +17592273500473 11000 +17592273500456 11000 +17592285045803 11000 +17592273498110 11000 +17592273594404 11000 +17592273500357 93100 +17592273506514 15450 +17592273500949 11000 +17592285045795 11000 +17592273819343 54400 +17592273818535 54700 +17592273820190 54400 +17592273952713 25200 +17592274350373 11000 +17592274350148 11000 +17592274221891 11000 +17592274221552 54700 +17592274350408 11000 +17592274350429 11000 +17592274350308 11000 +17592274350331 11000 +17592274350352 25500 +17592274350266 11000 +17592285045806 11000 +17592274977141 74600 +17592274879387 11000 +17592274877611 11000 +17592285045804 11000 +17592274875920 82100 +17592274878772 11000 +17592274878886 11000 +17592274878902 11000 +17592274878918 11000 +17592274878934 54700 +17592274878854 11000 +17592274878870 25200 +17592274878685 11000 +17592274852411 75050 +17592274879040 11000 +17592274879056 51130 +17592275080510 73500 +17592275080526 73500 +17592275080542 73500 +17592275102722 50000 +17592275149387 74600 +17592275326273 25500 +17592275326257 11000 +17592275326289 11000 +17592275326241 11000 +17592275326331 11000 +17592275326315 11000 +17592275326044 11000 +17592275326076 11000 +17592275326092 11000 +17592285045808 11000 +17592275471498 84300 +17592275504898 54700 +17592275608300 51500 +17592276039260 11000 +17592275936659 11000 +17592275936991 11000 +17592275947949 73000 +17592275947981 11000 +17592275937638 11000 +17592285045801 11000 +17592275937272 11000 +17592275933379 11000 +17592275935367 11000 +17592275948336 11000 +17592275933988 11000 +17592275948079 54700 +17592275935833 11000 +17592275948005 11000 +17592275948056 11000 +17592275921417 11000 +17592275948248 11000 +17592276259088 54400 +17592276259208 54400 +17592276423353 11000 +17592285045805 11000 +17592276551615 11000 +17592276551955 11000 +17592276552142 11000 +17592276552104 11000 +17592276552120 11000 +17592276552072 11000 +17592276552088 11000 +17592276552056 11000 +17592276644038 74150 +17592276551847 11000 +17592276644020 74800 +17592276733238 74100 +17592276767877 54700 +17592276789981 54700 +17592276767416 54400 +17592277007060 72650 +17592277235890 11000 +17592277235906 11000 +17592277235650 11000 +17592277235808 11000 +17592282127877 11000 +17592282127876 11000 +17592282127882 11000 +17592279589316 74600 +17592277235792 11000 +17592277235760 11000 +17592277235776 11000 +17592277235856 11000 +17592277235872 11000 +17592277235840 11000 +17592285045809 11000 +17592278186539 82100 +17592277439640 74600 +17592282127873 11000 +17592282127888 11000 +17592282127883 11000 +17592277394203 74800 +17592277394361 54700 +17592277797854 71700 +17592282068417 50000 +17592282068416 50000 +17592278103393 11000 +17592282127864 11000 +17592285045796 11000 +17592282127875 11000 +17592278103883 11000 +17592278103677 11000 +17592278104336 11000 +17592278104294 11000 +17592282127886 11000 +17592282127869 11000 +17592278094613 73000 +17592278094579 73000 +17592278103000 11000 +17592278102992 11000 +17592278105037 11000 +17592278105026 11000 +17592278133276 11000 +17592278104547 11000 +17592278094555 73000 +17592278197278 54400 +17592278283253 54700 +17592278280496 50000 +17592282127868 11000 +17592278587867 54700 +17592285045800 11000 +17592278785898 54400 +17592278726591 11000 +17592278726615 11000 +17592278726623 11000 +17592282127881 11000 +17592282127861 11000 +17592282127880 11000 +17592278726639 11000 +17592278726647 11000 +17592278726655 11000 +17592278726671 11000 +17592278793037 11000 +17592278793055 11000 +17592278948079 54700 +17592279036219 11000 +17592279036227 11000 +17592279036127 11000 +17592279032787 74800 +17592282127874 11000 +17592282127862 11000 +17592285045794 11000 +17592279304061 11000 +17592279304053 11000 +17592279304077 11000 +17592279304093 11000 +17592279304085 11000 +17592279304109 11000 +17592282127866 11000 +17592282127885 11000 +17592282127865 11000 +17592282127893 11000 +17592279417769 72710 +17592285045793 11000 +17592279795491 54400 +17592279795501 54400 +17592279795326 11000 +17592279795358 11000 +17592279795334 11000 +17592279795342 11000 +17592279795251 11000 +17592279795297 11000 +17592282127889 11000 +17592282127871 11000 +17592279792108 54700 +17592282127860 11000 +17592282127878 11000 +17592282127870 11000 +17592282127892 11000 +17592282127890 11000 +17592280651927 82100 +17592280157089 50000 +17592280264811 74600 +17592280512403 74700 +17592280512379 74700 +17592280526667 74800 +17592282127884 11000 +17592280512463 74700 +17592280755344 51500 +17592281027614 11000 +17592281027662 11000 +17592281027678 11000 +17592281027670 11000 +17592281027622 93100 +17592281027638 11000 +17592285045791 11000 +17592282127867 11000 +17592282127894 11000 +17592281121475 54400 +17592282127863 11000 +17592281243384 50000 +17592281360685 54400 +17592281360996 54400 +17592281776604 82100 +17592285045799 11000 +17592282127887 11000 +17592282127872 11000 +17592282127879 11000 +17592282127891 11000 +17592281784857 11000 +17592281784865 11000 +17592281784841 11000 +17592281784849 11000 +17592281784889 11000 +17592281784897 11000 +17592281784881 11000 +17592285045701 11000 +17592285045705 11000 +17592282688176 11000 +17592285045687 11000 +17592285045689 11000 +17592285045694 11000 +17592285045697 11000 +17592285045700 11000 +17592282290757 72680 +17592285045706 11000 +17592285045692 11000 +17592282320929 11000 +17592282320897 25200 +17592282320881 25200 +17592282694716 11000 +17592282699698 11000 +17592282697397 11000 +17592282697405 11000 +17592282697413 72710 +17592282697421 11000 +17592285045709 11000 +17592285045790 11000 +17592282698159 11000 +17592282696035 11000 +17592285045708 11000 +17592282696606 11000 +17592282822784 74100 +17592282822684 74100 +17592283034411 51130 +17592283034395 51130 +17592283262316 11000 +17592283262332 11000 +17592283262324 11000 +17592283262270 11000 +17592283262262 11000 +17592283262284 11000 +17592283262300 11000 +17592283262292 11000 +17592283256629 54400 +17592285045703 11000 +17592285045688 11000 +17592285045707 11000 +17592285045802 11000 +17592283483515 54700 +17592283458830 50000 +17592283583847 50000 +17592285045693 11000 +17592284117275 82100 +17592284117259 82100 +17592285045695 11000 +17592283988744 25500 +17592283719417 11000 +17592283719401 11000 +17592283719444 11000 +17592283719427 11000 +17592283719436 11000 +17592283719357 11000 +17592283719393 11000 +17592283719365 11000 +17592285045702 11000 +17592285045699 11000 +17592285045792 11000 +17592285045696 11000 +17592285045710 11000 +17592285045691 11000 +17592283803293 74600 +17592285045704 11000 +17592283915793 51130 +17592285045690 11000 +17592285045698 11000 +17592284456123 11000 +17592284456159 11000 +17592285045711 11000 +17592284456041 11000 +17592284456091 11000 +17592284455991 11000 +17592284456014 11000 +17592285045807 11000 +17592284743785 54400 +17592285678930 25500 +17592285678914 25500 +17592285256875 25500 +17592285257535 25500 +17592285257294 25500 +17592285256043 11000 +17592285256035 11000 +17592285256065 11000 +17592285256057 25500 +17592285256027 11000 +17592285256019 25500 +17592285258042 11000 +17592285256579 25500 +17592285256497 25500 +17592285256489 11000 +17592285256513 25500 +17592285256505 25500 +17592285256374 11000 +17592285811260 54700 +17592285863254 51500 +17592285847350 54400 +17592285867607 25500 +17592285867591 25500 +17592285867599 11000 +17592285867575 25500 +17592285867583 11000 +17592285867559 11000 +17592285867567 11000 +17592285867543 11000 +17592285867551 25500 +17592285867527 11000 +17592285867535 11000 +17592285867519 25500 +17592285872529 54400 +17592286176303 54400 +17592286645407 49500 +17592286645391 11000 +17592286596205 11000 +17592286596185 11000 +17592286596169 11000 +17592286596127 11000 +17592286361258 54700 +17592286616758 14100 +17592286596268 49500 +17592286596233 11000 +17592286596213 11000 +17592286596177 49500 +17592286596149 11000 +17592286596141 11000 +17592286617451 82100 +17592286907967 11000 +17592286677376 49500 +17592286677350 49500 +17592286677342 49500 +17592286677334 11000 +17592286867691 74600 +17592286869023 50000 +17592286873901 54400 +17592286874013 54400 +17592287076034 50000 +17592287078239 54700 +17592287133605 11000 +17592287133613 11000 +17592287133621 93100 +17592287133629 11000 +17592287133637 11000 +17592287133645 11000 +17592287133653 11000 +17592287133661 11000 +17592287133669 49500 +17592287133677 11000 +17592263030305 71100 +17592258025895 72150 +17592252507381 82100 +17592252507373 82100 +17592252436357 82100 +17592252581703 51200 +17592252581695 51200 +17592252581610 50000 +17592252581616 50000 +17592252581612 50000 +17592264076691 71100 +17592263472771 71100 +17592252510167 82100 +17592252581709 51200 +17592252925351 50000 +17592252925334 50000 +17592252925200 55000 +17592252925196 55000 +17592263004718 71100 +17592252581699 51200 +17592252581691 51200 +17592252925331 50000 +17592252925277 50000 +17592252925269 50000 +17592252925255 50000 +17592252925273 50000 +17592263472780 71100 +17592264076800 71100 +17592253431646 51200 +17592253431658 51200 +17592252925275 50000 +17592252925267 50000 +17592252925259 50000 +17592252925257 50000 +17592252925192 55000 +17592283552884 51200 +17592252925265 50000 +17592253431648 51200 +17592253431660 51200 +17592252925343 50000 +17592252925339 50000 +17592252925271 50000 +17592252925263 50000 +17592252925261 50000 +17592252925188 55000 +17592263472862 71100 +17592264076808 71100 +17592253431515 50000 +17592252925347 50000 +17592252925184 55000 +17592252928769 74250 +17592283552857 51200 +17592253431519 50000 +17592253431521 50000 +17592253431517 50000 +17592253431523 50000 +17592253431640 51200 +17592253431650 51200 +17592252930909 81150 +17592264076816 71100 +17592253431527 50000 +17592253431529 50000 +17592253431525 50000 +17592253431615 55000 +17592253431652 51200 +17592263472906 71100 +17592253431531 50000 +17592253431642 51200 +17592253431533 50000 +17592253392417 81150 +17592253431535 50000 +17592253431537 50000 +17592253431543 50000 +17592253431545 50000 +17592253431539 50000 +17592253431541 50000 +17592253431654 51200 +17592253431724 50000 +17592264076824 71100 +17592253431624 55000 +17592253431632 55000 +17592263472914 71100 +17592253431728 50000 +17592253431732 50000 +17592253431662 51200 +17592253846001 50000 +17592253846005 50000 +17592253846003 50000 +17592264076920 71100 +17592263472922 71100 +17592253846013 50000 +17592253846011 50000 +17592253846009 50000 +17592253846007 50000 +17592253846077 51200 +17592253846132 55000 +17592253846015 50000 +17592254194679 82100 +17592253846017 50000 +17592253846021 50000 +17592253846019 50000 +17592253846023 50000 +17592253846079 51200 +17592253846083 51200 +17592253846110 50000 +17592264076935 71100 +17592263472930 71100 +17592253846106 50000 +17592253846103 50000 +17592253846129 55000 +17592254201326 51200 +17592254201334 51200 +17592254238547 50000 +17592254238549 50000 +17592254238551 50000 +17592254238553 50000 +17592254238555 50000 +17592254201285 55000 +17592253933406 74600 +17592253943948 75050 +17592254201281 55000 +17592254201299 50000 +17592254201328 51200 +17592264076943 71100 +17592254201342 51200 +17592254201336 51200 +17592254238557 50000 +17592254238559 50000 +17592254238561 50000 +17592263472939 71100 +17592254238563 50000 +17592254238565 50000 +17592254104727 82100 +17592254201303 50000 +17592254201330 51200 +17592254201338 51200 +17592254238567 50000 +17592254238569 50000 +17592254238571 50000 +17592254194703 82100 +17592254194695 82100 +17592254201307 50000 +17592265232236 71100 +17592254748703 55000 +17592254748711 55000 +17592254748795 50000 +17592254748799 50000 +17592254748859 51200 +17592254748853 51200 +17592254378339 82100 +17592265558245 71100 +17592264749361 71100 +17592254748723 50000 +17592254748725 50000 +17592254748721 50000 +17592254748861 51200 +17592265232251 71100 +17592254748695 55000 +17592254748731 50000 +17592254748727 50000 +17592254748729 50000 +17592254748867 51200 +17592265558253 71100 +17592264749369 71100 +17592254748855 51200 +17592254748733 50000 +17592254748735 50000 +17592254748737 50000 +17592254748803 50000 +17592254748807 50000 +17592254748863 51200 +17592254748869 51200 +17592255276274 55000 +17592255276282 55000 +17592254695220 50000 +17592265232301 71100 +17592254748811 50000 +17592265558261 71100 +17592264749377 71100 +17592255276292 50000 +17592255276294 50000 +17592255276290 50000 +17592255276553 51200 +17592255276545 51200 +17592255276296 50000 +17592254809328 15200 +17592254809319 15200 +17592257811528 50000 +17592255276298 50000 +17592255276300 50000 +17592255276302 50000 +17592255276266 55000 +17592255276555 51200 +17592255276563 51200 +17592265232359 71100 +17592265558269 71100 +17592264749385 71100 +17592255276258 55000 +17592255276304 50000 +17592255276306 50000 +17592255276308 50000 +17592255276358 50000 +17592255276354 50000 +17592255276547 51200 +17592255276557 51200 +17592287210007 51200 +17592255876254 50000 +17592255876342 54100 +17592255276362 50000 +17592255276565 51200 +17592265232422 71100 +17592255140084 15306 +17592265558277 71100 +17592264749393 71100 +17592255140747 15200 +17592255876232 55000 +17592255876256 50000 +17592255876258 50000 +17592255876246 55000 +17592255876260 50000 +17592255276549 51200 +17592255276559 51200 +17592255240099 15200 +17592255240168 15200 +17592255876262 50000 +17592255876268 50000 +17592255876264 50000 +17592255876266 50000 +17592256298354 51200 +17592256298352 51200 +17592256298366 51200 +17592265232451 71100 +17592265558285 71100 +17592264749401 71100 +17592255876270 50000 +17592255876272 50000 +17592255876274 50000 +17592255876276 50000 +17592255876278 50000 +17592255876350 50000 +17592256298376 51200 +17592256298368 51200 +17592256298356 51200 +17592255876209 55000 +17592255876357 50000 +17592255876354 50000 +17592255794735 15200 +17592265232494 71100 +17592264749412 71100 +17592265558351 71100 +17592256298378 51200 +17592256298448 50000 +17592256298446 50000 +17592256298444 50000 +17592256298603 55000 +17592256298450 50000 +17592256298358 51200 +17592256298456 50000 +17592256298454 50000 +17592256298452 50000 +17592256298561 50000 +17592256298630 54100 +17592256298599 55000 +17592256356072 51200 +17592265232515 71100 +17592264749420 71100 +17592265558359 71100 +17592255996572 74600 +17592255996592 81120 +17592259113854 50000 +17592256298370 51200 +17592256298458 50000 +17592256298460 50000 +17592256298380 51200 +17592256298360 51200 +17592256298466 50000 +17592256298464 50000 +17592256298462 50000 +17592256298595 55000 +17592256298372 51200 +17592265221843 72150 +17592256298568 50000 +17592256298565 50000 +17592256298591 55000 +17592256298587 55000 +17592268605002 71100 +17592266936276 71100 +17592256300894 82100 +17592256300902 82100 +17592256300910 82100 +17592256301078 82100 +17592256299016 82100 +17592266932354 71100 +17592265789681 71100 +17592256298382 51200 +17592256298362 51200 +17592256843750 50000 +17592256843752 50000 +17592256843754 50000 +17592256388699 81150 +17592256388738 81150 +17592256843724 50000 +17592256843820 51200 +17592266933280 71100 +17592268605011 71100 +17592266936285 71100 +17592256487216 15200 +17592256843705 55000 +17592256843756 50000 +17592256843758 50000 +17592256843760 50000 +17592256843828 51200 +17592256843822 51200 +17592265789689 71100 +17592256486296 15200 +17592256843762 50000 +17592256843832 51200 +17592256843764 50000 +17592256843728 50000 +17592256843701 55000 +17592256843697 55000 +17592256843766 50000 +17592256843768 50000 +17592256843770 50000 +17592256843824 51200 +17592266933400 71100 +17592268605021 71100 +17592256843732 50000 +17592266936293 71100 +17592257884313 51200 +17592265789697 71100 +17592257884323 51200 +17592257884339 51200 +17592257446438 50000 +17592257446440 50000 +17592257446442 50000 +17592257446444 50000 +17592256891538 81150 +17592257446560 50000 +17592266933637 71100 +17592268605030 71100 +17592257884325 51200 +17592257884341 51200 +17592266936318 71100 +17592257884315 51200 +17592265789706 71100 +17592257446446 50000 +17592257446448 50000 +17592257446450 50000 +17592257446782 55000 +17592257884327 51200 +17592257884343 51200 +17592257446452 50000 +17592257446454 50000 +17592257446456 50000 +17592257446556 50000 +17592266933652 71100 +17592268605038 71100 +17592266936326 71100 +17592265789714 71100 +17592257446564 50000 +17592257446774 55000 +17592257446778 55000 +17592257830423 50000 +17592257830421 50000 +17592257830419 50000 +17592257884329 51200 +17592257884331 51200 +17592257884345 51200 +17592257884317 51200 +17592266933660 71100 +17592257830425 50000 +17592268605046 71100 +17592257830429 50000 +17592257830427 50000 +17592257605352 74600 +17592257605360 74600 +17592257884201 55000 +17592257884333 51200 +17592266936411 71100 +17592265789784 71100 +17592257830431 50000 +17592257830437 50000 +17592257830435 50000 +17592257830433 50000 +17592257773534 15200 +17592257884197 55000 +17592257884223 50000 +17592257884335 51200 +17592257884347 51200 +17592257884319 51200 +17592258366619 55000 +17592268605054 71100 +17592266933895 71100 +17592257884227 50000 +17592257884231 50000 +17592266936419 71100 +17592257884349 51200 +17592265789792 71100 +17592259113864 71100 +17592258366573 50000 +17592258363100 50000 +17592258363098 50000 +17592258363096 50000 +17592258928927 51200 +17592258604094 82100 +17592258928943 51200 +17592258366615 55000 +17592268605062 71100 +17592266933906 71100 +17592258363106 50000 +17592258363104 50000 +17592258363102 50000 +17592266936427 71100 +17592258928935 51200 +17592265789800 71100 +17592258928929 51200 +17592258363108 50000 +17592258928937 51200 +17592258366581 50000 +17592258366611 55000 +17592258363114 50000 +17592258363112 50000 +17592258363110 50000 +17592258928939 51200 +17592258366577 50000 +17592258366585 50000 +17592258366607 55000 +17592268605071 71100 +17592266934079 71100 +17592266936435 71100 +17592265789808 71100 +17592258393771 15200 +17592258393779 15200 +17592258928788 50000 +17592258928790 50000 +17592258928792 50000 +17592258928931 51200 +17592258604104 82100 +17592258604113 82100 +17592258612450 82100 +17592258612550 75050 +17592259433912 51200 +17592259433910 51200 +17592269640939 71100 +17592269498573 71100 +17592258928770 55000 +17592258928796 50000 +17592258928798 50000 +17592258928794 50000 +17592258928893 50000 +17592269498742 71100 +17592259433756 50000 +17592259433914 51200 +17592259433898 51200 +17592258928804 50000 +17592258928766 55000 +17592258928800 50000 +17592258928802 50000 +17592258928897 50000 +17592259433758 50000 +17592269641071 71100 +17592258928762 55000 +17592269498751 71100 +17592258928901 50000 +17592258928905 50000 +17592269498597 71100 +17592259433764 50000 +17592259433762 50000 +17592259433760 50000 +17592259433916 51200 +17592259433900 51200 +17592258928714 74200 +17592258906830 74600 +17592258928746 74200 +17592259433770 50000 +17592259433768 50000 +17592259433766 50000 +17592259433918 51200 +17592259433902 51200 +17592259433892 51200 +17592259434036 50000 +17592259434075 55000 +17592259433772 50000 +17592269641079 71100 +17592259433904 51200 +17592269498775 71100 +17592269498605 71100 +17592259113785 71100 +17592259433778 50000 +17592259433776 50000 +17592259433774 50000 +17592259433920 51200 +17592259433906 51200 +17592259434033 50000 +17592259114669 72150 +17592269641087 71100 +17592259433894 51200 +17592259434045 50000 +17592259434041 50000 +17592259434071 55000 +17592259434067 55000 +17592269498815 71100 +17592269498614 71100 +17592259864793 50000 +17592259864791 50000 +17592259864795 50000 +17592259864865 51200 +17592259864859 51200 +17592269641095 71100 +17592259864801 50000 +17592259864799 50000 +17592259864797 50000 +17592269498823 71100 +17592259864924 55000 +17592259864867 51200 +17592259864855 51200 +17592259864861 51200 +17592259865056 54100 +17592269498622 71100 +17592259864869 51200 +17592259864803 50000 +17592259804256 82100 +17592259864906 50000 +17592259864920 55000 +17592259864871 51200 +17592259864809 50000 +17592259864807 50000 +17592259864805 50000 +17592259804264 82100 +17592269641103 71100 +17592260335561 51200 +17592260337605 50000 +17592260337597 50000 +17592259864916 55000 +17592269498630 71100 +17592269498928 71100 +17592260337601 50000 +17592260362301 50000 +17592260362299 50000 +17592260362297 50000 +17592259889283 74500 +17592260336034 51200 +17592260336027 51200 +17592269641112 71100 +17592260337160 55000 +17592260362307 50000 +17592260362305 50000 +17592260362303 50000 +17592260336036 51200 +17592269498638 71100 +17592269499014 71100 +17592260105011 25500 +17592260335563 51200 +17592260337609 50000 +17592260362309 50000 +17592261074066 55000 +17592260337156 55000 +17592260337613 50000 +17592260362315 50000 +17592260362313 50000 +17592260362311 50000 +17592260239821 15200 +17592260336038 51200 +17592260239750 15200 +17592260336029 51200 +17592269641120 71100 +17592261074160 50000 +17592261074152 50000 +17592269498662 71100 +17592269499022 71100 +17592260352959 15200 +17592261074092 50000 +17592261074088 50000 +17592261074090 50000 +17592261074207 51200 +17592261074195 51200 +17592261074187 51200 +17592261074297 54100 +17592266494514 72150 +17592261682331 74700 +17592260746278 15200 +17592260746286 15200 +17592261074094 50000 +17592261074096 50000 +17592261074098 50000 +17592261074062 55000 +17592260746347 15200 +17592269641128 71100 +17592261074209 51200 +17592261074197 51200 +17592260746744 15200 +17592269498670 71100 +17592269499030 71100 +17592261074100 50000 +17592261074189 51200 +17592261234557 82100 +17592261074102 50000 +17592261074104 50000 +17592261074106 50000 +17592261074211 51200 +17592261074199 51200 +17592261074156 50000 +17592271560128 71100 +17592261074054 55000 +17592261074058 55000 +17592261074201 51200 +17592261074191 51200 +17592261074164 50000 +17592261074301 54100 +17592270876540 71100 +17592261005089 82100 +17592270385817 71100 +17592261074213 51200 +17592261074203 51200 +17592261694886 50000 +17592261694890 50000 +17592261694888 50000 +17592261694950 50000 +17592261694953 50000 +17592265789357 55000 +17592265561798 71100 +17592261695001 51200 +17592261154862 55100 +17592261694868 55000 +17592261694894 50000 +17592261694892 50000 +17592261694896 50000 +17592261694992 51200 +17592270876548 71100 +17592261695007 51200 +17592271560170 71100 +17592270385825 71100 +17592261694898 50000 +17592261694994 51200 +17592261694902 50000 +17592261694900 50000 +17592261694904 50000 +17592261694962 50000 +17592261694996 51200 +17592261695003 51200 +17592261695009 51200 +17592261694860 55000 +17592261694864 55000 +17592261694958 50000 +17592261694966 50000 +17592270876556 71100 +17592271560179 71100 +17592270385849 71100 +17592261682339 74700 +17592261692579 15200 +17592262695966 50000 +17592262695968 50000 +17592262695970 50000 +17592261694756 74700 +17592261695011 51200 +17592261683187 15200 +17592261683199 15200 +17592262696103 51200 +17592262696036 51200 +17592262696040 51200 +17592262696139 55000 +17592262695972 50000 +17592262695974 50000 +17592262695976 50000 +17592262695978 50000 +17592271560222 71100 +17592270385858 71100 +17592262695980 50000 +17592262696042 51200 +17592262696125 50000 +17592262696135 55000 +17592262695982 50000 +17592262695984 50000 +17592262695986 50000 +17592271560456 71100 +17592262669831 74600 +17592263387006 51200 +17592263387077 50000 +17592270876648 71100 +17592270385866 71100 +17592262797184 15200 +17592263386994 51200 +17592262797193 15200 +17592263387050 55000 +17592263387081 50000 +17592263386932 50000 +17592263386934 50000 +17592263386930 50000 +17592263387002 51200 +17592271560474 71100 +17592263386996 51200 +17592263387073 50000 +17592263387046 55000 +17592263386940 50000 +17592263386936 50000 +17592263386938 50000 +17592270876656 71100 +17592270385874 71100 +17592263387008 51200 +17592263386942 50000 +17592263992013 50000 +17592263386998 51200 +17592263387042 55000 +17592263386944 50000 +17592263386946 50000 +17592263386948 50000 +17592264004093 74700 +17592271560528 71100 +17592263387038 55000 +17592270876665 71100 +17592263992015 50000 +17592263992162 50000 +17592263992158 50000 +17592270385882 71100 +17592263992017 50000 +17592263992019 50000 +17592263992021 50000 +17592263992096 51200 +17592263992146 50000 +17592263992102 51200 +17592263551677 15200 +17592263551669 15200 +17592263551661 15200 +17592271560603 71100 +17592270876673 71100 +17592263992023 50000 +17592263992025 50000 +17592263992027 50000 +17592263991995 55000 +17592263992104 51200 +17592263992108 51200 +17592270385890 71100 +17592263992029 50000 +17592263992098 51200 +17592263992031 50000 +17592264478408 51200 +17592263992033 50000 +17592263992035 50000 +17592264478329 50000 +17592264478398 51200 +17592264478394 51200 +17592271560625 71100 +17592270876681 71100 +17592270385898 71100 +17592263991984 55000 +17592263991980 55000 +17592266937215 72150 +17592263992142 50000 +17592263992154 50000 +17592263992150 50000 +17592263924840 82100 +17592264478335 50000 +17592264478331 50000 +17592264478333 50000 +17592264478400 51200 +17592263996936 54000 +17592263996928 54000 +17592263925576 82100 +17592264478513 50000 +17592263923875 82100 +17592264013825 72710 +17592264761724 82100 +17592264478339 50000 +17592264478341 50000 +17592264478337 50000 +17592264478402 51200 +17592271701881 71100 +17592264478450 55000 +17592273504272 71100 +17592273123900 71100 +17592264478410 51200 +17592265059111 50000 +17592265059113 50000 +17592264478347 50000 +17592264478343 50000 +17592264478345 50000 +17592264478412 51200 +17592264478404 51200 +17592271701897 71100 +17592273504280 71100 +17592265059265 50000 +17592265059261 50000 +17592265059089 55000 +17592273124036 71100 +17592265059115 50000 +17592266936851 74700 +17592266936843 74700 +17592265059221 51200 +17592265059213 51200 +17592265059253 50000 +17592265059093 55000 +17592265059119 50000 +17592265059121 50000 +17592265059117 50000 +17592265059209 51200 +17592273124348 71100 +17592271701915 71100 +17592264749149 15200 +17592264749125 15200 +17592264749117 15200 +17592273504288 71100 +17592265059085 55000 +17592265059127 50000 +17592265059123 50000 +17592265059125 50000 +17592265059223 51200 +17592265059215 51200 +17592265059129 50000 +17592265562018 55000 +17592265059217 51200 +17592265059257 50000 +17592265059135 50000 +17592265059131 50000 +17592265059133 50000 +17592273124476 71100 +17592271701923 71100 +17592265561879 50000 +17592265561921 51200 +17592273504297 71100 +17592265561815 50000 +17592265561817 50000 +17592265561813 50000 +17592265562014 55000 +17592265561883 50000 +17592265561929 51200 +17592265561913 51200 +17592265561871 50000 +17592265561923 51200 +17592265221953 74600 +17592273124692 71100 +17592265561823 50000 +17592265561819 50000 +17592265561821 50000 +17592271701931 71100 +17592265561992 55000 +17592265561931 51200 +17592265561915 51200 +17592273504306 71100 +17592266410960 50000 +17592266411052 55000 +17592265561825 50000 +17592265561875 50000 +17592265561827 50000 +17592265561829 50000 +17592265561925 51200 +17592265561917 51200 +17592273124747 71100 +17592266411090 50000 +17592271701940 71100 +17592273504314 71100 +17592266410898 51200 +17592266411048 55000 +17592266411093 50000 +17592265672903 25200 +17592265673036 25200 +17592266410962 50000 +17592266410966 50000 +17592266410964 50000 +17592266410912 51200 +17592271789692 55000 +17592265763799 74600 +17592266410904 51200 +17592266411044 55000 +17592273125012 71100 +17592271702264 71100 +17592273504322 71100 +17592266410972 50000 +17592266410970 50000 +17592266410968 50000 +17592266410914 51200 +17592266410974 50000 +17592266410976 50000 +17592266411078 50000 +17592266410982 50000 +17592266410980 50000 +17592266411036 55000 +17592266411040 55000 +17592266410916 51200 +17592266410978 50000 +17592266410906 51200 +17592266411125 54100 +17592266411086 50000 +17592266411081 50000 +17592273125134 71100 +17592273504330 71100 +17592266948912 50000 +17592266410900 51200 +17592266948918 50000 +17592266948916 50000 +17592266948914 50000 +17592266410918 51200 +17592266410908 51200 +17592266523904 25200 +17592266821173 50000 +17592269836555 72150 +17592266525796 82100 +17592266525785 82100 +17592266525715 82100 +17592275004486 71100 +17592266526085 74600 +17592266995771 51200 +17592266995757 51200 +17592266948922 50000 +17592266948920 50000 +17592266948926 50000 +17592266948924 50000 +17592276001598 71100 +17592266830340 55000 +17592266525629 82100 +17592266995763 51200 +17592266948930 50000 +17592266948928 50000 +17592275004494 71100 +17592266995759 51200 +17592266948934 50000 +17592266948932 50000 +17592266948936 50000 +17592276001606 71100 +17592274430824 71100 +17592267347525 50000 +17592267347527 50000 +17592267347529 50000 +17592267349949 50000 +17592267349963 50000 +17592267349967 50000 +17592271707834 55000 +17592266995765 51200 +17592266995773 51200 +17592267350338 55000 +17592275004502 71100 +17592267349978 51200 +17592267350110 51200 +17592267350329 55000 +17592276001622 71100 +17592274430869 71100 +17592267347531 50000 +17592267349972 51200 +17592267350112 51200 +17592267966019 55000 +17592267966023 55000 +17592267347533 50000 +17592267347535 50000 +17592267347537 50000 +17592267349953 50000 +17592267349980 51200 +17592267349974 51200 +17592275004510 71100 +17592267965997 50000 +17592267966001 50000 +17592267965928 51200 +17592274430798 71100 +17592274430895 71100 +17592276001638 71100 +17592267965870 50000 +17592267965868 50000 +17592267965872 50000 +17592267965936 51200 +17592267965944 51200 +17592267965874 50000 +17592267965878 50000 +17592267965876 50000 +17592275004518 71100 +17592267966015 55000 +17592267965930 51200 +17592267965938 51200 +17592267965946 51200 +17592267965948 51200 +17592270989263 82100 +17592274430921 71100 +17592276001646 71100 +17592267965882 50000 +17592267965880 50000 +17592267965884 50000 +17592267965932 51200 +17592267965940 51200 +17592267965950 51200 +17592268616755 55000 +17592268616717 50000 +17592268616708 50000 +17592268616705 50000 +17592274430947 71100 +17592275004526 71100 +17592276001670 71100 +17592268616635 50000 +17592267936652 82100 +17592267936660 82100 +17592268616795 51200 +17592268616789 51200 +17592268616637 50000 +17592268616641 50000 +17592268616639 50000 +17592268184647 15200 +17592268616751 55000 +17592268184639 15200 +17592268616643 50000 +17592268190614 74150 +17592268616867 54100 +17592268616855 54100 +17592268616811 51200 +17592268616797 51200 +17592268616747 55000 +17592274430992 71100 +17592275004534 71100 +17592276001678 71100 +17592268616645 50000 +17592268616649 50000 +17592268616647 50000 +17592268616791 51200 +17592268616813 51200 +17592268616799 51200 +17592268616713 50000 +17592268533462 15200 +17592269256976 50000 +17592268616653 50000 +17592268616651 50000 +17592268616655 50000 +17592274431018 71100 +17592275004542 71100 +17592269256554 55000 +17592269256712 50000 +17592269256968 50000 +17592269256958 50000 +17592276001686 71100 +17592269943277 51200 +17592269943484 50000 +17592269943488 50000 +17592269256550 55000 +17592269256714 50000 +17592269256720 50000 +17592269256716 50000 +17592269256718 50000 +17592269943291 51200 +17592269943307 51200 +17592269256722 50000 +17592274431150 71100 +17592275004550 71100 +17592269256546 55000 +17592269256728 50000 +17592269256724 50000 +17592269256726 50000 +17592276001694 71100 +17592269943279 51200 +17592269943293 51200 +17592269943309 51200 +17592269943311 51200 +17592269166087 74700 +17592269877131 91100 +17592269256944 50000 +17592269943496 50000 +17592269256730 50000 +17592268682696 82100 +17592275099879 72150 +17592268683327 82100 +17592269256736 50000 +17592269256732 50000 +17592269256734 50000 +17592268708195 82100 +17592269761182 82100 +17592271106957 72150 +17592269943281 51200 +17592269943295 51200 +17592269943313 51200 +17592269943492 50000 +17592269735884 50000 +17592269735886 50000 +17592276767187 71100 +17592277412280 71100 +17592269943429 55000 +17592269943459 50000 +17592269655624 74500 +17592269655616 74500 +17592269735892 50000 +17592269735888 50000 +17592269735890 50000 +17592269943283 51200 +17592269943297 51200 +17592269943456 50000 +17592269735894 50000 +17592269943315 51200 +17592269943425 55000 +17592269943464 50000 +17592269735900 50000 +17592269735896 50000 +17592269735898 50000 +17592276767195 71100 +17592277412288 71100 +17592269773475 55100 +17592269773453 74800 +17592269943285 51200 +17592269943299 51200 +17592269943317 51200 +17592269943421 55000 +17592269735902 50000 +17592269943468 50000 +17592269735904 50000 +17592269735906 50000 +17592269735908 50000 +17592269735910 50000 +17592269943301 51200 +17592269943319 51200 +17592269943417 55000 +17592269943476 50000 +17592277412296 71100 +17592270506754 50000 +17592269943287 51200 +17592276767203 71100 +17592269943472 50000 +17592270506756 50000 +17592270506758 50000 +17592270506760 50000 +17592269943303 51200 +17592269943321 51200 +17592269943413 55000 +17592269943480 50000 +17592270483051 51200 +17592269988092 72400 +17592270506764 50000 +17592270506762 50000 +17592270483416 55000 +17592270483039 51200 +17592270483045 51200 +17592277412305 71100 +17592270506766 50000 +17592270506768 50000 +17592270506770 50000 +17592276767257 71100 +17592270876564 71100 +17592270483053 51200 +17592270506772 50000 +17592270483323 50000 +17592270483041 51200 +17592270483047 51200 +17592274432021 74250 +17592270506774 50000 +17592270506776 50000 +17592270506778 50000 +17592270929225 51200 +17592270929283 50000 +17592270483319 50000 +17592282918382 74700 +17592277412313 71100 +17592276767211 71100 +17592270929239 51200 +17592270929289 50000 +17592270929287 50000 +17592270929285 50000 +17592270929383 55000 +17592270605547 25200 +17592270929231 51200 +17592270929291 50000 +17592270929369 50000 +17592280035082 55000 +17592270929227 51200 +17592270929297 50000 +17592270929295 50000 +17592270929293 50000 +17592270929503 55000 +17592277412321 71100 +17592276767219 71100 +17592270929233 51200 +17592270929241 51200 +17592270929301 50000 +17592270929299 50000 +17592270929243 51200 +17592270929235 51200 +17592270929307 50000 +17592270929305 50000 +17592270929303 50000 +17592270929365 50000 +17592271576641 55000 +17592271576629 50000 +17592271576745 51200 +17592271028674 82100 +17592276767227 71100 +17592277412329 71100 +17592271025630 74600 +17592271576637 50000 +17592271576625 55000 +17592271576645 50000 +17592271576647 50000 +17592271576649 50000 +17592271576757 51200 +17592271576751 51200 +17592271116222 15200 +17592271116230 15200 +17592271116238 15200 +17592271576651 50000 +17592271576621 55000 +17592271576659 50000 +17592271576653 50000 +17592271576655 50000 +17592271576657 50000 +17592271576759 51200 +17592271576747 51200 +17592271576753 51200 +17592276767235 71100 +17592277412337 71100 +17592271576661 50000 +17592271576633 50000 +17592271576667 50000 +17592271576663 50000 +17592271576665 50000 +17592271576761 51200 +17592273124756 51200 +17592273124730 51200 +17592272128423 50000 +17592272128879 55000 +17592276767249 71100 +17592277412351 71100 +17592272128622 50000 +17592272128626 50000 +17592271701303 82100 +17592273124770 51200 +17592271700969 15200 +17592271701125 82100 +17592271773658 74500 +17592271702372 71100 +17592272128425 50000 +17592272128427 50000 +17592272128429 50000 +17592272128875 55000 +17592273124772 51200 +17592276131650 72150 +17592270989255 82100 +17592271906048 15200 +17592273124758 51200 +17592273124774 51200 +17592271905858 15200 +17592272128431 50000 +17592272128433 50000 +17592272128435 50000 +17592279035914 71100 +17592272128803 55000 +17592272128437 50000 +17592273124760 51200 +17592273124776 51200 +17592272128439 50000 +17592272128441 50000 +17592272128443 50000 +17592272782752 55000 +17592272782775 50000 +17592279035930 71100 +17592273124762 51200 +17592272782748 55000 +17592273124732 51200 +17592272782787 50000 +17592273124778 51200 +17592272782771 50000 +17592272850767 50000 +17592272850769 50000 +17592272850765 50000 +17592272782744 55000 +17592273124734 51200 +17592272782783 50000 +17592273124780 51200 +17592272850775 50000 +17592272850771 50000 +17592272850773 50000 +17592278838813 55000 +17592279035946 71100 +17592272850777 50000 +17592272850779 50000 +17592273124764 51200 +17592272782813 54100 +17592272782779 50000 +17592273124782 51200 +17592272850783 50000 +17592272850785 50000 +17592272850781 50000 +17592273124736 51200 +17592273553871 50000 +17592273576030 55000 +17592273576057 50000 +17592273576053 50000 +17592279035970 71100 +17592273124766 51200 +17592273124784 51200 +17592273553877 50000 +17592273553875 50000 +17592273553873 50000 +17592273576026 55000 +17592273553879 50000 +17592273553963 51200 +17592273553881 50000 +17592273553885 50000 +17592273553883 50000 +17592279036022 71100 +17592273576022 55000 +17592273576071 54100 +17592273553953 51200 +17592273553889 50000 +17592273553887 50000 +17592273553957 51200 +17592275103960 74500 +17592275104004 74500 +17592273553895 50000 +17592273553893 50000 +17592273553891 50000 +17592273553959 51200 +17592273553965 51200 +17592274274573 50000 +17592274274576 50000 +17592274274585 50000 +17592279036030 71100 +17592273576018 55000 +17592274274485 50000 +17592274274559 55000 +17592273668576 15200 +17592274976847 51200 +17592274274489 50000 +17592274274487 50000 +17592274274491 50000 +17592274274555 55000 +17592274976825 51200 +17592274976849 51200 +17592279036038 71100 +17592274274493 50000 +17592274274497 50000 +17592274274495 50000 +17592274296002 72400 +17592274296010 74250 +17592274432302 74800 +17592274274581 50000 +17592274976835 51200 +17592274274499 50000 +17592275022817 55100 +17592275100250 72150 +17592275948146 74600 +17592274295868 71600 +17592274274607 54100 +17592274976827 51200 +17592274976837 51200 +17592274976851 51200 +17592274274501 50000 +17592274274505 50000 +17592274274503 50000 +17592274295900 15200 +17592279036046 71100 +17592274976945 50000 +17592274976949 50000 +17592274976917 55000 +17592274359322 74700 +17592274976839 51200 +17592274976853 51200 +17592274976770 50000 +17592274976772 50000 +17592274976774 50000 +17592274976933 50000 +17592274976913 55000 +17592274432049 74250 +17592274976829 51200 +17592274976855 51200 +17592279036054 71100 +17592274976780 50000 +17592274976776 50000 +17592274976778 50000 +17592281119697 55000 +17592274432000 82100 +17592274431912 82100 +17592274432358 82100 +17592274976831 51200 +17592274976841 51200 +17592274976782 50000 +17592274976843 51200 +17592274976857 51200 +17592274976784 50000 +17592274976786 50000 +17592274976788 50000 +17592274976937 50000 +17592275475514 50000 +17592283014128 71100 +17592279886237 71100 +17592274948526 75100 +17592274948551 75990 +17592274976941 50000 +17592274976909 55000 +17592282067592 71100 +17592282067581 71100 +17592275385816 51200 +17592275385822 51200 +17592275475520 50000 +17592275475516 50000 +17592275475518 50000 +17592275385877 50000 +17592275022617 74500 +17592275385860 55000 +17592275385864 55000 +17592282063538 72150 +17592275385818 51200 +17592275475522 50000 +17592275475524 50000 +17592275475526 50000 +17592283014136 71100 +17592275385830 51200 +17592279886497 71100 +17592275385824 51200 +17592275385881 50000 +17592275475528 50000 +17592275385826 51200 +17592275475530 50000 +17592275475532 50000 +17592275475534 50000 +17592275385832 51200 +17592275995233 50000 +17592275995205 55000 +17592276661454 50000 +17592283014144 71100 +17592275995225 50000 +17592282067652 71100 +17592279886514 71100 +17592275448526 74500 +17592275995259 25200 +17592275995237 50000 +17592276040868 51200 +17592276040856 51200 +17592276001084 82100 +17592276001076 82100 +17592276001109 82100 +17592275995221 50000 +17592275995151 50000 +17592275995147 50000 +17592275995149 50000 +17592276040870 51200 +17592276040848 51200 +17592275995201 55000 +17592282068184 71100 +17592279886870 71100 +17592283014152 71100 +17592276040858 51200 +17592275995197 55000 +17592275995155 50000 +17592275995157 50000 +17592275995153 50000 +17592276040860 51200 +17592276040862 51200 +17592276040850 51200 +17592276040872 51200 +17592275995229 50000 +17592275995163 50000 +17592275995159 50000 +17592275995161 50000 +17592275948168 74600 +17592282068332 71100 +17592279887030 71100 +17592276661446 50000 +17592276661470 50000 +17592276661430 55000 +17592283014160 71100 +17592276040852 51200 +17592276661297 50000 +17592276661295 50000 +17592276661293 50000 +17592276661450 50000 +17592276040874 51200 +17592276661426 55000 +17592276040864 51200 +17592284028392 55000 +17592276661458 50000 +17592282068340 71100 +17592276243534 11000 +17592276661303 50000 +17592276661301 50000 +17592276661299 50000 +17592276661422 55000 +17592283014168 71100 +17592276246251 11000 +17592276246267 11000 +17592276246413 11000 +17592276246219 11000 +17592276246185 11000 +17592276246169 11000 +17592276244936 11000 +17592276244900 11000 +17592276244918 11000 +17592276244884 11000 +17592279887935 71100 +17592276732838 51200 +17592276732826 51200 +17592276732832 51200 +17592276661462 50000 +17592276661305 50000 +17592276661311 50000 +17592276661309 50000 +17592276661307 50000 +17592276661466 50000 +17592276577916 74500 +17592276962224 15200 +17592276962216 15200 +17592276732834 51200 +17592276732828 51200 +17592282068348 71100 +17592283014182 71100 +17592277284034 50000 +17592277284010 55000 +17592279888619 71100 +17592276732840 51200 +17592277284026 50000 +17592277283977 51200 +17592277283969 51200 +17592277368937 50000 +17592277368939 50000 +17592277368941 50000 +17592277284006 55000 +17592276860464 74500 +17592276864660 91301 +17592276864628 74600 +17592282068356 71100 +17592279889085 71100 +17592283014190 71100 +17592277284002 55000 +17592277283971 51200 +17592277283963 51200 +17592277368947 50000 +17592277368943 50000 +17592277368945 50000 +17592277284030 50000 +17592277283965 51200 +17592277368949 50000 +17592277283973 51200 +17592277368951 50000 +17592277368953 50000 +17592277368955 50000 +17592278195267 50000 +17592284776593 71100 +17592283439159 71100 +17592284068776 71100 +17592278100810 50000 +17592278100806 50000 +17592278100785 55000 +17592277412594 82100 +17592277389896 82100 +17592277389905 82100 +17592277394096 82100 +17592278195273 50000 +17592278195271 50000 +17592278195269 50000 +17592279876804 74700 +17592281785316 51200 +17592281786338 51200 +17592277373289 74600 +17592278100779 55000 +17592277412586 81110 +17592281785378 51200 +17592278100814 50000 +17592277412615 72400 +17592278195279 50000 +17592278195277 50000 +17592278195275 50000 +17592281785346 51200 +17592284776601 71100 +17592283439167 71100 +17592284068784 71100 +17592278100775 55000 +17592281785318 51200 +17592280076994 51200 +17592278195285 50000 +17592278195283 50000 +17592278195281 50000 +17592281785348 51200 +17592281785320 51200 +17592278838938 50000 +17592278838904 55000 +17592278838934 50000 +17592284776609 71100 +17592283439187 71100 +17592284068792 71100 +17592281785322 51200 +17592281785380 51200 +17592278838900 55000 +17592278838956 50000 +17592278838841 50000 +17592278838839 50000 +17592278838837 50000 +17592278433206 74800 +17592281785350 51200 +17592281785324 51200 +17592278839031 54100 +17592278838896 55000 +17592278838847 50000 +17592278838845 50000 +17592278838843 50000 +17592284776617 71100 +17592281786340 51200 +17592283439195 71100 +17592284068800 71100 +17592281785352 51200 +17592278838849 50000 +17592281785354 51200 +17592281785326 51200 +17592282918374 74700 +17592278838855 50000 +17592278838853 50000 +17592278838851 50000 +17592278618121 71100 +17592279323804 55000 +17592279323724 50000 +17592281785382 51200 +17592278838943 50000 +17592278838952 50000 +17592278618213 71100 +17592278618229 71100 +17592278618245 71100 +17592284776625 71100 +17592278618261 71100 +17592283439203 71100 +17592278618137 71100 +17592278618153 71100 +17592278618173 71100 +17592278618189 71100 +17592284068808 71100 +17592279323794 55000 +17592281785356 51200 +17592281785328 51200 +17592279323730 50000 +17592279323728 50000 +17592279323726 50000 +17592279323834 50000 +17592279323790 55000 +17592279032821 74800 +17592281785358 51200 +17592281785330 51200 +17592281785384 51200 +17592279323736 50000 +17592279323734 50000 +17592279323732 50000 +17592284776633 71100 +17592283439211 71100 +17592279035890 71100 +17592279035906 71100 +17592279035938 71100 +17592279035954 71100 +17592279035962 71100 +17592279032679 74800 +17592284068816 71100 +17592279323738 50000 +17592279035898 71100 +17592279035922 71100 +17592279035978 71100 +17592279323826 50000 +17592279323830 50000 +17592279323850 54100 +17592281785360 51200 +17592281785332 51200 +17592279323744 50000 +17592279323742 50000 +17592279323740 50000 +17592279266236 74500 +17592279877154 50000 +17592279877133 55000 +17592284776641 71100 +17592283439219 71100 +17592284068830 71100 +17592279362207 71100 +17592279362252 71100 +17592279362244 71100 +17592279362268 71100 +17592279362260 71100 +17592281785362 51200 +17592281786334 51200 +17592279877129 55000 +17592281786342 51200 +17592279362276 71100 +17592279949931 50000 +17592279949927 50000 +17592279949929 50000 +17592279362220 71100 +17592279362236 71100 +17592279362228 71100 +17592279949933 50000 +17592280076978 51200 +17592281785364 51200 +17592281785334 51200 +17592280800293 55000 +17592281785386 51200 +17592280678140 82100 +17592279877158 50000 +17592279949939 50000 +17592279949935 50000 +17592279949937 50000 +17592279876812 74700 +17592284068838 71100 +17592280800309 50000 +17592280678097 72400 +17592284776862 71100 +17592279875692 74600 +17592283439227 71100 +17592280800225 50000 +17592281785366 51200 +17592280800289 55000 +17592280800231 50000 +17592281785336 51200 +17592280800227 50000 +17592280800229 50000 +17592280800312 50000 +17592279876980 82100 +17592279876956 82100 +17592279876938 82100 +17592281785388 51200 +17592285535381 71100 +17592280800285 55000 +17592280800233 50000 +17592281785338 51200 +17592280800235 50000 +17592280800237 50000 +17592287362499 71100 +17592286617735 71100 +17592281785368 51200 +17592281785390 51200 +17592281013614 51200 +17592280800239 50000 +17592281141310 51200 +17592281785370 51200 +17592280800241 50000 +17592281785340 51200 +17592280800243 50000 +17592280800245 50000 +17592280800317 50000 +17592285535395 71100 +17592281785392 51200 +17592286617756 71100 +17592281785292 55000 +17592281785264 50000 +17592287363274 71100 +17592281785372 51200 +17592281785342 51200 +17592281785207 50000 +17592281785209 50000 +17592281785205 50000 +17592281785288 55000 +17592281785394 51200 +17592285535403 71100 +17592281785374 51200 +17592281785344 51200 +17592287363844 71100 +17592286617777 71100 +17592281384962 74600 +17592281785215 50000 +17592281785211 50000 +17592281785213 50000 +17592281785284 55000 +17592281785396 51200 +17592281785217 50000 +17592281785376 51200 +17592281786336 51200 +17592281785223 50000 +17592281785219 50000 +17592281785221 50000 +17592282688447 50000 +17592285535411 71100 +17592282699618 50000 +17592283390248 72400 +17592287363852 71100 +17592286617792 71100 +17592282699747 50000 +17592282699622 50000 +17592282699620 50000 +17592282699624 50000 +17592282699818 50000 +17592282699626 50000 +17592282699755 50000 +17592285535419 71100 +17592282699714 55000 +17592282699718 55000 +17592282699630 50000 +17592282699628 50000 +17592282699632 50000 +17592286617808 71100 +17592287363860 71100 +17592282688439 50000 +17592282699634 50000 +17592282699638 50000 +17592282699636 50000 +17592282699642 50000 +17592282699640 50000 +17592282699646 50000 +17592282699644 50000 +17592283281142 55000 +17592285535427 71100 +17592283281166 50000 +17592283281162 50000 +17592287360282 74500 +17592286617822 71100 +17592287363868 71100 +17592283368242 50000 +17592285489670 74250 +17592283281138 55000 +17592283281158 50000 +17592283368248 50000 +17592283368244 50000 +17592283368246 50000 +17592283368250 50000 +17592285535435 71100 +17592285467778 74600 +17592283281134 55000 +17592286617842 71100 +17592283368256 50000 +17592283368258 50000 +17592283368252 50000 +17592283368254 50000 +17592283368260 50000 +17592283368262 50000 +17592285535443 71100 +17592287360290 74500 +17592286617859 71100 +17592287363876 71100 +17592286617950 71100 +17592283806853 82100 +17592284783633 51200 +17592284783562 51200 +17592284783570 51200 +17592284783407 51200 +17592284783338 51200 +17592284783300 51200 +17592284783308 51200 +17592284783316 51200 +17592284783330 51200 +17592284783276 51200 +17592284783284 51200 +17592284783292 51200 +17592285569161 74250 +17592287424936 15200 +17592285253212 82100 +17592285258513 74600 +17592285258497 74701 +17592285478124 74500 +17592285253572 82100 +17592286055840 72150 +17592286684589 51200 +17592286754407 82100 +17592286753948 82100 +17592287261644 74700 +17592259654959 85100 +17592275609267 82100 +17592275669657 50000 +17592275669665 73100 +17592252707831 50000 +17592253104027 50000 +17592253103854 50000 +17592253104037 50000 +17592253104047 50000 +17592253103864 50000 +17592253103805 50000 +17592253104068 54700 +17592253104057 50000 +17592253540413 50000 +17592253523142 50000 +17592253540402 50000 +17592253540423 50000 +17592253921678 54700 +17592253921634 50000 +17592253921665 50000 +17592253921655 50000 +17592254803134 50000 +17592254803269 50000 +17592254803374 54700 +17592254803364 50000 +17592254803069 50000 +17592254803279 50000 +17592254803067 50000 +17592254803132 50000 +17592254803289 50000 +17592254803065 50000 +17592255943484 50000 +17592255943685 50000 +17592255943674 50000 +17592255943695 50000 +17592255943482 50000 +17592255943644 50000 +17592255943480 50000 +17592255943705 50000 +17592255943654 50000 +17592255943478 50000 +17592255943664 50000 +17592256369818 50000 +17592256927712 50000 +17592256369828 50000 +17592256369921 50000 +17592256369304 50000 +17592256369518 50000 +17592256369931 54700 +17592256369302 50000 +17592257532238 50000 +17592256805612 50000 +17592257532227 50000 +17592256805321 50000 +17592256805444 50000 +17592257532207 50000 +17592257532248 50000 +17592257532217 50000 +17592257532258 50000 +17592257532181 50000 +17592257953102 54700 +17592257953092 50000 +17592257952960 50000 +17592257953082 50000 +17592257952958 50000 +17592258299126 50000 +17592258979013 50000 +17592258299039 50000 +17592258299116 50000 +17592258978951 50000 +17592258979023 50000 +17592258979033 50000 +17592258979060 50000 +17592258979050 50000 +17592282941244 50000 +17592258978829 50000 +17592258978971 50000 +17592258978961 50000 +17592258979077 50000 +17592258979087 54700 +17592259313120 50000 +17592259313110 50000 +17592260315254 50000 +17592259303958 50000 +17592260315294 54700 +17592260315264 50000 +17592260314964 50000 +17592260315234 50000 +17592260315274 50000 +17592260315284 50000 +17592261592255 50000 +17592260314962 50000 +17592260315244 50000 +17592261592265 50000 +17592261592235 50000 +17592261592275 50000 +17592261592285 50000 +17592261592428 50000 +17592261592426 50000 +17592262785367 50000 +17592261592245 50000 +17592261592424 50000 +17592262785377 50000 +17592262785387 50000 +17592262785397 50000 +17592262785226 50000 +17592262785407 50000 +17592262785417 50000 +17592262785357 50000 +17592262785224 50000 +17592263541641 50000 +17592263541651 50000 +17592263541458 50000 +17592263541631 50000 +17592263541661 50000 +17592264560953 50000 +17592264560963 50000 +17592264560933 50000 +17592267064211 50000 +17592267064220 50000 +17592264560973 50000 +17592264560710 50000 +17592264560983 50000 +17592264560708 50000 +17592264560993 50000 +17592264560943 50000 +17592265016083 50000 +17592265017935 50000 +17592265017945 50000 +17592267078860 50000 +17592265016081 50000 +17592267064305 50000 +17592267078870 50000 +17592267078880 50000 +17592267064297 50000 +17592267078890 50000 +17592267079217 54700 +17592267078230 50000 +17592267064289 50000 +17592267078900 50000 +17592267078923 50000 +17592267078240 50000 +17592267064279 50000 +17592267078250 50000 +17592272925167 50000 +17592267078850 50000 +17592267079099 50000 +17592267079125 50000 +17592267077791 50000 +17592267965654 50000 +17592267077789 50000 +17592267965664 50000 +17592267965634 50000 +17592279756058 50000 +17592267965674 50000 +17592267965394 50000 +17592267965684 54700 +17592267965644 50000 +17592269222264 50000 +17592267965392 50000 +17592269222274 50000 +17592269222223 50000 +17592269222233 50000 +17592269222284 50000 +17592269791010 50000 +17592269222294 50000 +17592269222244 50000 +17592269222304 50000 +17592269791055 50000 +17592272925210 50000 +17592269222314 50000 +17592269221984 50000 +17592269222254 50000 +17592269785385 50000 +17592269785395 50000 +17592271013449 50000 +17592269785283 50000 +17592269786046 50000 +17592271013429 50000 +17592271013156 50000 +17592271013459 50000 +17592271013469 50000 +17592271013154 50000 +17592271013152 50000 +17592271013150 50000 +17592271013148 50000 +17592271013439 50000 +17592271013146 50000 +17592272925146 54700 +17592271675967 50000 +17592271676538 50000 +17592271676501 50000 +17592271676550 50000 +17592271675965 50000 +17592272925262 50000 +17592272925054 50000 +17592272217332 50000 +17592272218446 50000 +17592272218459 50000 +17592272218474 50000 +17592272218484 50000 +17592272217330 50000 +17592272217567 50000 +17592272218499 50000 +17592273623647 50000 +17592273623406 50000 +17592273623627 50000 +17592273623687 54700 +17592273623657 50000 +17592273623667 50000 +17592278754538 50000 +17592273623404 50000 +17592273623402 50000 +17592273623637 50000 +17592273623677 50000 +17592274406065 50000 +17592274406063 50000 +17592274406130 50000 +17592278754490 50000 +17592275079521 50000 +17592274406061 50000 +17592275079531 50000 +17592275079541 50000 +17592275079551 50000 +17592275079561 50000 +17592275386060 50000 +17592275079511 50000 +17592275079591 54700 +17592275079581 50000 +17592275079571 50000 +17592275079360 50000 +17592278755898 50000 +17592275393913 50000 +17592275386076 50000 +17592276938173 50000 +17592275393911 50000 +17592275386050 50000 +17592276938184 50000 +17592276937480 50000 +17592276938195 50000 +17592276938211 50000 +17592278756003 54700 +17592276937939 50000 +17592276937478 50000 +17592276937476 50000 +17592278754292 50000 +17592276938222 50000 +17592276937474 50000 +17592276937472 50000 +17592277366164 50000 +17592276937470 50000 +17592277366152 50000 +17592276937468 50000 +17592277387825 50000 +17592277366156 50000 +17592276937466 50000 +17592277366148 50000 +17592277366136 50000 +17592277366140 50000 +17592277366144 50000 +17592277366120 50000 +17592277365795 50000 +17592278755934 50000 +17592277986921 50000 +17592278586351 50000 +17592278586347 50000 +17592278587314 50000 +17592278587316 50000 +17592278586081 50000 +17592278587312 50000 +17592278585994 50000 +17592278587310 50000 +17592278586337 50000 +17592278586333 50000 +17592282917320 50000 +17592282917328 50000 +17592282917336 50000 +17592279257492 50000 +17592279446493 50000 +17592279257490 50000 +17592282917344 50000 +17592279756054 50000 +17592279446181 50000 +17592279446185 50000 +17592279446189 50000 +17592279756052 50000 +17592279756444 50000 +17592280674466 50000 +17592280674287 54700 +17592285043406 50000 +17592280674464 50000 +17592280675132 50000 +17592280674462 50000 +17592280675128 50000 +17592280939566 50000 +17592281696675 50000 +17592280770617 50000 +17592281696367 50000 +17592281696673 50000 +17592281696363 50000 +17592282576254 50000 +17592282576256 50000 +17592282575928 50000 +17592281990201 50000 +17592282576252 50000 +17592282575916 50000 +17592282575893 50000 +17592282575885 50000 +17592283195806 50000 +17592283195796 50000 +17592283199743 50000 +17592283199741 50000 +17592283782976 50000 +17592283783020 50000 +17592283782968 50000 +17592283783262 50000 +17592283783260 50000 +17592284390606 50000 +17592283783258 50000 +17592284390602 50000 +17592285043454 50000 +17592284390754 50000 +17592284390594 50000 +17592284390598 50000 +17592284390422 50000 +17592283783256 50000 +17592284390750 50000 +17592284390590 50000 +17592284390278 54700 +17592284390586 50000 +17592285087081 50000 +17592285087085 50000 +17592285187937 50000 +17592285165341 50000 +17592285087077 50000 +17592285087073 50000 +17592285165339 50000 +17592285165337 50000 +17592285087069 50000 +17592285843379 50000 +17592285187911 50000 +17592285165335 50000 +17592285843394 50000 +17592285843375 50000 +17592286352725 50000 +17592286352729 50000 +17592285843392 50000 +17592286351333 54700 +17592286352259 50000 +17592286352721 50000 +17592287227640 50000 +17592287133969 50000 +17592287133967 50000 +17592287133965 50000 +17592287227628 50000 +17592287227608 50000 +17592287227604 50000 +17592287227612 50000 +17592287227695 50000 +17592287133963 50000 +17592253578438 50000 +17592252120451 69900 +17592253578113 50000 +17592253943109 50000 +17592252515956 25500 +17592252515964 25500 +17592252515940 25500 +17592252515924 25500 +17592252515932 25500 +17592253578097 50000 +17592253143925 51100 +17592253578354 50000 +17592253586697 51200 +17592252590400 25500 +17592252590373 25500 +17592252590357 25500 +17592252590365 25500 +17592253595427 50000 +17592252515948 25500 +17592253578422 74100 +17592253586737 51200 +17592252658021 25500 +17592252658012 25500 +17592252658003 25500 +17592252657995 25500 +17592253595411 54700 +17592253595513 51130 +17592252603390 54700 +17592253578455 50000 +17592252659035 83250 +17592252714225 25500 +17592252714217 25500 +17592252714209 25500 +17592252714195 25500 +17592252714186 25500 +17592252775392 25500 +17592253143939 51100 +17592253578346 50000 +17592253586745 51200 +17592253595318 74450 +17592252775472 25500 +17592252775464 25500 +17592252775456 25500 +17592252775447 25500 +17592252775439 25500 +17592252775431 25500 +17592253586753 51200 +17592253854969 34000 +17592253595359 74450 +17592253586762 51200 +17592253870164 74600 +17592253870234 74600 +17592253449457 25500 +17592253449656 25500 +17592253595496 51130 +17592253449083 25500 +17592253449091 25500 +17592253449099 25500 +17592253586777 51200 +17592253586785 51200 +17592253595505 51130 +17592253517972 25500 +17592253517980 25500 +17592253517988 25500 +17592253517996 25500 +17592253518004 25500 +17592261941932 50000 +17592253586793 51200 +17592253586801 51200 +17592253595443 51130 +17592253870195 74600 +17592253870242 74600 +17592253567437 25500 +17592253567445 25500 +17592253567453 25500 +17592253567461 25500 +17592253567469 25500 +17592253578281 50000 +17592253586809 51200 +17592253595367 74450 +17592253861684 50000 +17592253861932 51130 +17592253639377 25500 +17592253639386 25500 +17592253639410 25500 +17592253639418 25500 +17592253639426 25500 +17592253639434 25500 +17592253639505 25500 +17592253639516 25500 +17592254516250 54400 +17592253670556 50000 +17592253654425 50000 +17592253679072 25500 +17592253679063 25500 +17592253679117 25500 +17592253679109 25500 +17592253679133 25500 +17592253679125 25500 +17592253648601 54790 +17592253861804 51200 +17592253861836 51200 +17592253861845 50000 +17592253861869 50000 +17592253861902 50000 +17592253861940 51130 +17592253815841 25500 +17592253815833 25500 +17592253815857 25500 +17592253815849 25500 +17592253815865 25500 +17592253813381 25500 +17592253854977 34000 +17592253815874 74150 +17592253815912 74150 +17592253854994 25500 +17592253854986 25500 +17592253855010 25500 +17592253855002 25500 +17592253855018 25500 +17592253861693 50000 +17592253861728 51200 +17592253861757 51200 +17592253861948 51200 +17592253861957 50000 +17592253933198 25500 +17592253933207 25500 +17592253933231 25500 +17592253933223 25500 +17592253933250 25500 +17592253861701 50000 +17592253861765 51200 +17592253861812 51130 +17592253949219 69900 +17592253943100 50000 +17592253988577 25500 +17592253988593 25500 +17592253988585 25500 +17592253988609 25500 +17592253988601 25500 +17592254363322 51130 +17592254363306 74450 +17592253988568 83250 +17592254027634 25500 +17592254027626 25500 +17592254027650 25200 +17592254027642 25500 +17592254027659 25500 +17592254027675 25500 +17592254027667 25500 +17592254027683 25500 +17592254027748 25500 +17592254356407 51200 +17592254057451 25500 +17592254057443 25500 +17592254057467 25500 +17592254057459 25500 +17592254363330 51200 +17592254356415 51130 +17592254057426 25500 +17592254057418 25500 +17592254057434 25500 +17592254057475 25500 +17592254201164 25500 +17592254201180 25500 +17592254201172 25500 +17592254201189 25500 +17592254363314 51130 +17592254363354 50000 +17592254363338 51200 +17592254363346 51200 +17592254363363 50000 +17592254363410 50000 +17592254267313 25500 +17592254267339 25500 +17592254267416 25500 +17592254267446 25500 +17592254267438 25500 +17592254231492 72400 +17592254363238 51200 +17592254363418 50000 +17592254363426 74100 +17592254267517 72400 +17592254356281 25500 +17592254356289 25500 +17592254356314 25500 +17592254356298 25500 +17592254356306 25500 +17592254439027 25500 +17592254439035 25500 +17592254363246 50000 +17592254439059 25500 +17592254363298 51200 +17592254439043 25500 +17592254439051 25500 +17592254356322 54700 +17592254516279 54400 +17592254516287 74450 +17592254516264 50000 +17592254516319 51130 +17592254516295 51200 +17592254511221 25500 +17592254511229 25500 +17592254511253 25500 +17592254511261 25500 +17592254511237 25500 +17592254511245 25500 +17592254511269 25500 +17592254511277 25500 +17592254516311 51130 +17592254516303 51200 +17592254586501 25500 +17592254586549 25500 +17592254586557 25500 +17592254586581 25500 +17592254586589 25500 +17592254586573 25500 +17592254586597 25500 +17592254586565 25500 +17592254586607 25500 +17592254687611 25500 +17592254687602 25500 +17592254687619 25500 +17592254687675 25500 +17592254687683 25500 +17592254687691 25500 +17592254757258 34000 +17592254748948 25500 +17592254757169 25500 +17592254757193 25500 +17592254757249 25500 +17592255066548 50000 +17592255066540 51130 +17592255066532 51200 +17592255066589 50000 +17592255066639 54400 +17592255066679 54700 +17592255066663 50000 +17592255066753 54100 +17592255066745 51200 +17592254832691 25500 +17592254832715 25500 +17592254832707 25500 +17592254787692 25500 +17592254787684 11000 +17592254787739 25500 +17592254787747 25500 +17592254832879 25500 +17592255066486 51200 +17592255066671 51130 +17592254895963 25500 +17592254895995 25500 +17592254895987 25500 +17592254895979 25500 +17592254895971 25500 +17592254896003 25500 +17592255058226 54400 +17592255066524 50000 +17592255066704 51200 +17592254942240 25500 +17592254942232 25500 +17592254942224 25500 +17592254942216 25500 +17592254942273 25500 +17592254942265 25500 +17592254942257 25500 +17592254942248 25500 +17592255058213 54400 +17592255066507 74450 +17592255066499 51200 +17592255066712 51130 +17592255066696 54700 +17592255066728 50000 +17592255055037 25500 +17592255055029 25500 +17592254942381 72400 +17592255055020 25500 +17592254942373 83250 +17592255055069 25500 +17592255055061 25500 +17592255055053 25500 +17592255055045 25500 +17592255066655 51200 +17592255166360 25500 +17592255166428 25500 +17592255166420 25500 +17592255166412 25500 +17592255166403 25500 +17592255166452 25500 +17592255166444 25500 +17592255166436 25500 +17592255066516 51200 +17592255066720 51130 +17592259647026 50000 +17592255239806 25500 +17592255239838 25500 +17592255239870 25500 +17592255239854 25500 +17592255239846 25500 +17592255239878 25500 +17592257745427 51130 +17592257737494 51200 +17592257737794 51200 +17592255304835 54700 +17592255356487 25500 +17592255356495 25500 +17592255356503 25500 +17592255356511 25500 +17592255356471 25200 +17592255356479 25500 +17592257745370 51130 +17592256936387 50000 +17592257737413 51200 +17592257737434 51200 +17592257680114 50000 +17592255448326 25500 +17592255448334 25500 +17592255448342 25500 +17592255448350 25500 +17592255448310 25500 +17592255448318 25500 +17592255387589 74600 +17592255395979 50000 +17592257682007 50000 +17592257737481 51200 +17592257737907 74450 +17592259646993 50000 +17592255518920 25500 +17592255518928 25500 +17592255518936 25500 +17592255518944 25500 +17592255518912 25500 +17592255518952 25500 +17592255518960 25500 +17592255518968 25500 +17592257745362 51130 +17592256936395 50000 +17592257745395 51130 +17592257737526 51200 +17592257737535 51200 +17592255579269 25500 +17592255579277 25500 +17592255579285 25500 +17592255579293 25500 +17592255579245 25500 +17592255579253 25500 +17592255579261 25500 +17592255579301 25500 +17592255579408 54700 +17592255579484 54700 +17592255529545 83250 +17592257737426 51200 +17592255810831 25500 +17592255810823 25500 +17592255810815 25500 +17592255810807 25500 +17592255810863 25500 +17592255810855 25500 +17592255810872 25500 +17592255579492 50000 +17592256302504 74800 +17592255811084 74150 +17592255811076 74600 +17592259647010 50000 +17592255866633 25500 +17592255866609 25500 +17592255866625 25500 +17592255866617 25500 +17592257745346 50000 +17592257681826 50000 +17592256936423 50000 +17592257737679 51200 +17592257737802 51200 +17592259646902 54700 +17592255952850 25500 +17592255952842 25500 +17592255952858 25500 +17592255952834 25500 +17592255952826 25500 +17592255952870 25500 +17592257745387 51130 +17592257737510 51200 +17592257737518 51200 +17592256007515 25500 +17592256007507 25500 +17592256007632 25500 +17592256007624 25500 +17592256007616 25500 +17592256936431 50000 +17592257737502 51200 +17592257737924 74450 +17592256060766 25500 +17592256060758 25500 +17592256060782 25500 +17592256060774 25500 +17592256060791 25500 +17592256060845 25500 +17592256060861 25500 +17592256060853 25500 +17592256499306 74450 +17592257737473 51200 +17592256060923 54700 +17592256081526 50000 +17592257745379 51130 +17592257737465 51200 +17592256117661 25500 +17592256117710 25500 +17592256117702 25500 +17592256117718 25500 +17592256117677 25500 +17592256117669 25500 +17592256117693 25500 +17592256117685 25500 +17592256244826 25500 +17592256244846 25500 +17592256244838 25500 +17592256244863 25500 +17592256244855 25500 +17592256244899 25500 +17592256141031 83250 +17592257737810 51200 +17592257737819 50000 +17592257680587 50000 +17592257738058 50000 +17592256301219 82300 +17592257681843 50000 +17592256313811 25500 +17592256313821 25500 +17592257745460 51130 +17592256313960 25500 +17592257737442 51200 +17592257680324 50000 +17592256397332 25500 +17592256397340 25500 +17592256397316 25500 +17592256397324 25500 +17592256397348 25500 +17592256313655 25500 +17592257745286 50000 +17592257745403 51130 +17592257737551 51200 +17592256496644 25500 +17592256496628 25500 +17592256496636 25500 +17592256496620 25500 +17592257737450 51200 +17592256582648 25500 +17592256582632 25500 +17592256582640 25500 +17592256582709 25500 +17592256582701 25500 +17592257737915 74450 +17592257737948 54400 +17592257737827 50000 +17592257737964 54700 +17592257737973 54700 +17592256531822 83250 +17592257745294 50000 +17592257745419 51130 +17592256582615 25500 +17592256582624 25500 +17592256582607 25500 +17592257737625 51200 +17592256649109 25500 +17592256649117 25500 +17592256649093 25500 +17592256649101 25500 +17592256649077 25500 +17592256649085 25500 +17592256649069 25500 +17592256769976 50000 +17592256649125 25500 +17592257745411 51130 +17592257737633 51200 +17592256770075 25500 +17592256770116 25500 +17592256770124 25500 +17592256770108 25500 +17592256770083 25500 +17592256770091 25500 +17592256843625 74800 +17592257737744 51200 +17592259647129 50000 +17592256843615 25500 +17592256843599 25500 +17592256843591 25500 +17592256843575 25500 +17592256843567 25500 +17592257681354 74100 +17592256769904 50000 +17592256770100 25500 +17592257745317 50000 +17592257745444 51130 +17592257737711 51200 +17592256936403 25500 +17592256936379 25500 +17592256936456 25500 +17592256936448 25500 +17592256936439 25500 +17592256936529 25500 +17592257681931 54400 +17592257737719 51200 +17592257737899 50000 +17592259646956 54700 +17592257681012 50000 +17592257745325 50000 +17592256936577 50000 +17592257030867 25500 +17592257030908 25500 +17592257737687 51200 +17592257737703 51200 +17592257737752 51200 +17592257737940 74450 +17592259647165 50000 +17592257103648 25500 +17592257103640 25500 +17592257103632 25500 +17592257103624 25500 +17592257103616 25500 +17592257103608 25500 +17592257103664 25500 +17592257103656 25500 +17592257745436 51130 +17592257030900 25500 +17592257030892 25500 +17592257030883 25500 +17592257737695 51200 +17592257737760 51200 +17592257114305 50000 +17592257745452 51130 +17592257174111 25500 +17592257174103 25500 +17592257174095 25500 +17592257174087 25500 +17592257174078 25500 +17592257174070 25500 +17592257174062 25500 +17592257123270 50000 +17592257330018 25500 +17592257330058 25500 +17592257330050 25500 +17592257330042 25500 +17592257330034 25500 +17592257330026 25500 +17592257543221 25500 +17592257737736 51200 +17592257737956 54400 +17592257429039 25500 +17592257429047 25500 +17592257429055 25500 +17592257429064 25500 +17592257429026 25500 +17592259647113 50000 +17592257745308 50000 +17592257460890 25500 +17592257330066 25500 +17592257737785 51200 +17592257543229 25500 +17592257543364 25500 +17592257543372 25500 +17592257543380 25500 +17592257745468 51130 +17592257737768 51200 +17592257737777 51200 +17592257738050 54100 +17592257681000 50000 +17592257630938 25500 +17592257630946 25500 +17592257630954 25500 +17592257630962 25500 +17592257630970 25500 +17592257630986 25500 +17592257737728 51200 +17592257737932 74450 +17592257674787 25500 +17592257674795 25500 +17592257674803 25500 +17592257674811 25500 +17592257674766 25500 +17592257674774 25500 +17592259647096 50000 +17592257675015 74700 +17592257675025 25500 +17592257675403 25500 +17592257745338 50000 +17592257745354 51130 +17592257675841 83250 +17592259648038 50000 +17592259650775 51200 +17592257676556 50000 +17592259652214 51130 +17592257719206 25500 +17592257719214 25500 +17592257719222 25500 +17592257719230 25500 +17592257719238 25500 +17592257719182 25500 +17592257719190 25500 +17592257719198 25500 +17592257843365 25500 +17592257843319 25500 +17592257843327 25500 +17592257843343 25500 +17592257843351 25500 +17592257922294 74800 +17592259654825 54100 +17592259075686 50000 +17592257843335 25500 +17592259649837 54100 +17592259652019 51130 +17592257921614 25500 +17592257921606 25500 +17592257921630 25500 +17592257921622 25500 +17592257921638 25500 +17592259650361 51200 +17592257921969 25500 +17592259648932 54700 +17592257969702 25500 +17592257969718 25500 +17592257969678 25500 +17592257969670 25500 +17592257969694 25500 +17592257969686 25500 +17592259649182 54700 +17592259647392 51130 +17592259652309 51200 +17592259652524 50000 +17592258043346 25500 +17592258043338 25500 +17592258043362 25500 +17592258043354 25500 +17592258043378 25500 +17592258043370 25500 +17592259075688 50000 +17592257969965 74150 +17592257969979 74600 +17592259653584 51200 +17592258106603 25500 +17592258106595 25500 +17592258106619 25500 +17592258106611 25500 +17592258106637 25500 +17592258106629 25500 +17592258106653 25500 +17592258106645 25500 +17592259075690 50000 +17592259647400 51130 +17592259647409 50000 +17592258052310 50000 +17592259654362 51200 +17592259654383 74450 +17592259654573 54400 +17592258125143 50000 +17592258162094 25500 +17592258162085 25500 +17592258162108 25500 +17592258162124 25500 +17592258162116 25500 +17592258162140 25500 +17592258162132 25500 +17592258162077 25500 +17592258106784 50000 +17592259647312 51200 +17592259647330 51130 +17592258115655 72400 +17592258162001 50000 +17592258316347 25500 +17592258316480 25500 +17592258316472 25500 +17592258316418 25500 +17592258316553 25500 +17592258316564 25500 +17592259654644 51200 +17592259654935 54400 +17592259075692 50000 +17592259647321 51130 +17592258316612 72400 +17592258394577 25500 +17592258394593 25500 +17592258394585 25500 +17592258394609 25500 +17592258394601 25500 +17592258394617 25500 +17592258514231 25500 +17592258514239 25500 +17592258514223 25500 +17592258514247 25500 +17592258514255 25500 +17592259647287 51130 +17592259647295 51200 +17592259654660 51200 +17592259654668 50000 +17592259654652 51130 +17592258514264 83250 +17592258514272 50000 +17592259650993 54700 +17592259075694 50000 +17592258621606 25500 +17592258515122 83250 +17592258621565 25500 +17592258621590 25500 +17592258621598 25500 +17592258621573 25500 +17592258621581 25500 +17592259654677 51200 +17592259654685 51200 +17592259654636 74100 +17592259654856 54400 +17592259654840 50000 +17592259654807 51200 +17592259654815 74450 +17592259647255 51130 +17592259647263 50000 +17592258675512 25500 +17592258675520 25500 +17592258675496 25500 +17592258675504 25500 +17592258675479 25500 +17592258675487 25500 +17592258675463 25500 +17592258628355 54790 +17592258675471 25500 +17592258735543 25500 +17592258735551 25500 +17592258735527 25500 +17592258735575 25500 +17592258735583 25500 +17592258735567 25500 +17592258735519 25500 +17592259647184 51130 +17592259647193 51200 +17592258682819 50000 +17592258711604 50000 +17592258866480 50000 +17592258735591 25500 +17592258865726 25500 +17592258865734 25500 +17592258865742 25500 +17592258865687 25500 +17592258865695 25500 +17592258865679 25500 +17592259089062 34000 +17592258866488 50000 +17592259661508 50000 +17592259661516 50000 +17592259661500 50000 +17592259655310 51130 +17592259661654 51200 +17592258866940 69900 +17592258935221 25500 +17592258935213 25500 +17592258935205 25500 +17592258935197 25500 +17592258935189 25500 +17592258935181 25500 +17592259655342 50000 +17592259661662 51200 +17592259016636 25500 +17592259016671 25500 +17592259016656 25500 +17592259016648 25500 +17592259016691 25500 +17592259016683 25500 +17592259655327 51200 +17592259016966 25500 +17592259089022 25500 +17592259089014 25500 +17592259089054 25500 +17592259089046 25500 +17592259089038 25500 +17592259089030 25500 +17592259655223 50000 +17592259655185 51200 +17592259661532 51130 +17592259661589 50000 +17592259661540 54700 +17592259661548 54700 +17592259661557 74450 +17592259183039 25500 +17592259183031 25500 +17592259183023 25500 +17592259183015 25500 +17592259183071 25500 +17592259183063 25500 +17592259183055 25500 +17592259183047 25500 +17592259655201 51200 +17592259661597 51200 +17592259215936 25500 +17592259215928 25500 +17592259215920 25500 +17592259215912 25500 +17592259215952 25500 +17592259215944 25500 +17592259215904 25500 +17592259215895 25500 +17592259329452 25500 +17592259329404 25500 +17592259329395 25500 +17592259329428 25500 +17592259329420 25500 +17592259329412 25500 +17592259661524 50000 +17592259654943 51130 +17592259655193 51200 +17592259329518 50000 +17592259661565 50000 +17592259434431 25500 +17592259434409 25500 +17592259434461 25500 +17592259434439 25500 +17592259434495 25500 +17592259434476 25500 +17592259338868 50000 +17592259655159 51200 +17592259474372 25500 +17592259474340 25500 +17592259474348 25500 +17592259474356 25500 +17592259474364 25500 +17592259655135 50000 +17592259655143 51200 +17592259661573 51200 +17592259586890 25500 +17592259586898 25500 +17592259586912 25500 +17592259586874 25500 +17592259586882 25500 +17592259646684 25500 +17592259655002 50000 +17592259646724 25500 +17592259646732 25500 +17592259646692 25500 +17592259646700 25500 +17592259646708 25500 +17592259646716 25500 +17592259655047 51200 +17592259655062 50000 +17592259655023 51130 +17592259655039 74450 +17592259596637 83250 +17592259596667 50000 +17592259631701 50000 +17592259654980 50000 +17592259654951 51200 +17592259661581 51130 +17592259661671 51200 +17592259848408 25500 +17592259848416 25500 +17592259848456 25500 +17592259848464 25500 +17592259848472 25500 +17592259848431 25500 +17592259848440 25500 +17592259848448 25500 +17592259662787 50000 +17592259943761 34000 +17592260153598 74800 +17592259925440 25500 +17592259925575 25500 +17592259925545 25500 +17592259925553 25500 +17592259925529 25500 +17592259925537 25500 +17592261941513 51200 +17592259848744 50000 +17592259848735 74150 +17592259848686 74600 +17592261942362 54400 +17592261933125 50000 +17592260014347 25500 +17592260014339 25500 +17592260014363 25500 +17592260014355 25500 +17592260014317 25500 +17592260014325 25500 +17592261941505 51200 +17592261933353 51130 +17592260037182 25500 +17592261942370 54100 +17592260091110 25500 +17592260499066 50000 +17592260090050 25500 +17592261941521 51200 +17592261941529 51200 +17592260092470 25500 +17592260090399 25500 +17592260090663 25500 +17592260092732 25500 +17592261942353 54100 +17592260153037 25500 +17592260153029 25500 +17592260153054 25500 +17592260153045 25500 +17592260153005 25500 +17592260152997 25500 +17592260153021 25500 +17592260153013 25500 +17592261933223 54000 +17592261941319 74450 +17592261941489 51200 +17592261933332 51130 +17592261941839 50000 +17592260153773 50000 +17592261941537 51200 +17592261933369 51130 +17592261941940 50000 +17592260186832 25500 +17592260186824 25500 +17592260186848 25500 +17592260186840 25500 +17592260186816 25500 +17592260186808 25500 +17592260186856 25500 +17592260332748 25500 +17592260332765 25500 +17592260332756 25500 +17592260332781 25500 +17592260332773 25500 +17592260332789 25500 +17592260338957 50000 +17592261123634 50000 +17592260579271 25500 +17592260579279 25500 +17592260579255 25500 +17592260579263 25500 +17592260579239 25500 +17592260579247 25500 +17592261941497 51200 +17592261933377 51130 +17592261933232 54000 +17592260579480 25500 +17592260579488 25500 +17592260579463 25500 +17592260579471 25500 +17592260579429 25500 +17592260579439 25500 +17592261941481 51200 +17592259654628 54400 +17592261941456 51200 +17592261951908 54400 +17592261951916 54400 +17592261933361 51130 +17592260768601 25500 +17592260768609 25500 +17592260768593 25500 +17592260768567 25500 +17592260768575 25500 +17592260768558 25500 +17592260775376 83250 +17592261123636 50000 +17592261123638 50000 +17592261941465 51200 +17592261933035 74100 +17592261941310 74450 +17592260831526 25500 +17592260831510 25500 +17592260831518 25500 +17592260831494 25500 +17592260831502 11000 +17592260831478 25500 +17592260831486 25500 +17592260831469 25500 +17592261933344 51130 +17592261941847 50000 +17592260851081 50000 +17592259647304 51200 +17592260862039 25500 +17592260862048 25500 +17592260862023 25500 +17592260862031 25500 +17592260862015 25500 +17592260862072 25500 +17592260862056 25500 +17592260862064 25500 +17592261941545 51200 +17592273292440 72100 +17592260996890 25500 +17592260996898 25500 +17592260996867 25500 +17592260996875 25500 +17592260996838 25500 +17592260996846 25500 +17592261278698 34000 +17592261078168 25500 +17592261080198 25500 +17592261027480 50000 +17592261027458 74600 +17592261027449 74150 +17592261019258 82300 +17592261078757 25500 +17592261079376 25500 +17592261933324 51130 +17592261941554 51200 +17592261079846 25500 +17592261077758 25500 +17592261146815 25500 +17592261146807 25500 +17592261146799 25500 +17592261146893 25500 +17592261146885 25500 +17592261146877 25500 +17592261941562 51200 +17592261841777 50000 +17592261841779 50000 +17592261942378 54700 +17592261266625 25500 +17592261266595 25500 +17592261266586 25500 +17592261266578 25500 +17592261266682 25500 +17592261940963 51130 +17592261933100 50000 +17592261933117 50000 +17592261941570 51200 +17592261942219 54400 +17592261332363 25200 +17592261320417 25500 +17592261320409 25500 +17592261320401 25500 +17592261320393 25500 +17592261320456 25500 +17592261320448 25500 +17592261320433 25500 +17592261941415 51200 +17592261941302 74450 +17592261933385 51130 +17592261941867 50000 +17592261941755 50000 +17592261841783 50000 +17592261841781 50000 +17592261320425 11000 +17592261941431 51200 +17592261933417 51130 +17592261342050 25500 +17592261341993 25500 +17592261341985 25500 +17592261341977 25500 +17592261341969 25500 +17592261342075 25500 +17592261342067 25500 +17592261342059 25500 +17592261581671 25500 +17592261581709 25500 +17592261581717 25500 +17592261581622 25500 +17592261581630 25500 +17592261581646 25500 +17592261581655 25500 +17592261581663 25500 +17592261682276 25500 +17592261682197 25500 +17592261682205 25500 +17592261682213 25500 +17592261682221 25500 +17592261682230 25500 +17592261942332 54400 +17592261941082 51130 +17592261941578 51200 +17592261603956 50000 +17592261602153 25500 +17592261602236 25500 +17592261942211 54400 +17592261672458 82600 +17592261809749 25500 +17592261941439 51200 +17592261810184 25500 +17592261695721 25500 +17592261810681 25500 +17592261809067 25500 +17592261809075 25500 +17592261941473 51200 +17592261942236 54400 +17592261876921 50000 +17592261942320 54400 +17592261932910 50000 +17592261930869 25500 +17592261930877 25500 +17592261930885 25500 +17592261930893 25500 +17592261930907 25500 +17592261930915 25500 +17592261930923 25500 +17592261930931 25500 +17592261932889 50000 +17592261933215 54000 +17592261941447 51200 +17592261941222 74450 +17592261941294 74450 +17592267018679 54400 +17592261933316 51130 +17592261952046 54400 +17592261941855 50000 +17592261942228 54400 +17592261940994 51130 +17592261931118 71260 +17592261931126 52200 +17592261959809 25500 +17592261959817 25500 +17592261931140 50000 +17592261959825 25500 +17592261959833 25500 +17592261959841 25500 +17592261959849 25500 +17592261959857 25500 +17592261941423 51200 +17592261959865 74700 +17592262681276 25500 +17592262681300 11000 +17592262681308 25500 +17592262681284 25500 +17592262681292 25500 +17592262681316 25500 +17592262753419 54400 +17592262796343 25500 +17592262796351 25500 +17592262796375 25500 +17592262796359 25500 +17592263735498 51200 +17592263735490 50000 +17592263735792 50000 +17592262796367 25500 +17592263735474 50000 +17592263735482 51130 +17592263735672 51200 +17592262902483 25500 +17592262902499 25500 +17592262902507 25500 +17592263064865 25500 +17592263065212 25500 +17592263735406 51200 +17592263735506 50000 +17592262975542 50000 +17592263064276 25500 +17592262902491 25500 +17592263066107 25500 +17592263064584 25500 +17592263151295 25500 +17592263151286 25500 +17592263151312 11000 +17592263151303 25500 +17592263102362 54790 +17592263151553 25500 +17592263735422 51130 +17592263735465 50000 +17592263152008 25500 +17592263735681 50000 +17592263092650 72400 +17592263735568 74100 +17592263735576 54100 +17592263735623 54700 +17592263735640 51200 +17592263735648 50000 +17592263735599 74450 +17592263152397 25500 +17592263152388 25500 +17592278205986 50000 +17592263735451 51130 +17592263735607 51200 +17592263207583 25500 +17592263207575 11000 +17592263207567 25500 +17592263207559 25500 +17592263207615 25500 +17592263207607 25500 +17592263207599 25500 +17592263207591 25500 +17592263160636 71160 +17592263160628 50000 +17592263387195 25500 +17592263387187 25500 +17592263387179 25500 +17592263387171 25500 +17592263387211 25500 +17592263387203 25500 +17592263735430 50000 +17592263735443 54400 +17592263735414 50000 +17592263465150 25500 +17592263465142 25500 +17592263465180 25500 +17592263735689 54400 +17592263465217 25500 +17592263465203 25500 +17592263465188 25500 +17592263735615 51200 +17592263735808 50000 +17592263472729 54790 +17592263735664 51200 +17592263551704 25500 +17592263433163 74800 +17592263551745 25500 +17592263551729 25500 +17592263551720 25500 +17592263422802 34000 +17592263662802 25500 +17592263662818 25500 +17592263662786 25500 +17592263662826 25500 +17592263662842 25500 +17592263662850 25500 +17592263735243 51200 +17592263735311 50000 +17592263735269 54400 +17592263735373 51130 +17592263735389 50000 +17592263551712 25500 +17592263551737 25500 +17592263662931 25200 +17592263734921 25500 +17592263734929 25500 +17592263734937 25500 +17592263734945 25500 +17592263734905 25500 +17592263734913 25500 +17592263734953 25500 +17592263734961 25500 +17592263735260 74450 +17592263735302 51200 +17592263735294 54100 +17592263735381 50000 +17592263735776 54100 +17592263735825 50000 +17592263783633 25500 +17592263783641 25500 +17592263783592 25500 +17592263783601 25500 +17592263783617 11000 +17592263783659 25500 +17592263783727 25500 +17592263783735 25500 +17592263735252 51200 +17592263735397 51130 +17592263735585 54400 +17592263944004 25500 +17592263944018 25500 +17592263944026 25500 +17592263944034 25500 +17592263943987 25500 +17592263943995 25500 +17592264004634 25500 +17592264004601 25500 +17592264004609 25500 +17592264004650 25500 +17592264004658 25500 +17592266028659 51130 +17592263958241 50000 +17592266028951 51200 +17592273292561 72100 +17592266028667 54000 +17592266028683 50000 +17592266028701 50000 +17592266028960 71400 +17592266035679 51200 +17592264040965 91200 +17592264137484 25500 +17592264137492 25500 +17592264137452 25500 +17592264137460 25500 +17592264137468 25500 +17592266028709 51130 +17592266035663 51200 +17592266035671 51200 +17592264202766 25500 +17592264202758 25500 +17592264202774 25500 +17592264202734 25500 +17592264202750 25500 +17592264202742 25500 +17592264137540 74600 +17592266028911 74450 +17592266028793 50000 +17592266029106 50000 +17592264202613 25200 +17592266035585 51200 +17592266035594 51200 +17592264278674 25500 +17592264278666 25500 +17592264278690 25500 +17592264278682 25500 +17592264278628 25500 +17592264278658 25500 +17592264278650 25500 +17592264278698 25500 +17592264202726 74800 +17592264137476 25500 +17592266028866 51200 +17592266028817 51130 +17592264329437 25500 +17592264329488 25500 +17592264329479 25500 +17592264329453 25500 +17592264329445 25500 +17592264329471 25500 +17592264329461 25500 +17592264570766 83250 +17592264482801 25500 +17592264483215 25500 +17592264728920 50000 +17592264483442 25500 +17592264483433 11000 +17592264483451 25500 +17592264569935 25500 +17592266028643 51200 +17592266028858 50000 +17592266028826 74100 +17592264569647 25500 +17592264569663 25500 +17592264569655 25500 +17592266028427 54700 +17592264570758 50000 +17592264652578 25500 +17592264652623 25500 +17592264652615 25500 +17592264652586 25500 +17592264652607 25500 +17592278206054 50000 +17592266029077 50000 +17592266029085 51200 +17592264810085 83250 +17592266028992 51130 +17592264802470 34000 +17592266029094 51200 +17592264762327 25500 +17592264762311 25500 +17592264762319 25500 +17592264762278 11000 +17592264762286 25500 +17592266028651 74450 +17592266028968 50000 +17592266028984 51200 +17592264802462 25500 +17592264802486 25500 +17592264802478 25500 +17592264802392 25500 +17592264802400 25500 +17592264802384 25500 +17592266028451 51130 +17592264810029 54700 +17592264872551 25500 +17592264872535 25500 +17592264872543 25500 +17592264872519 25500 +17592264872527 25500 +17592264872503 25500 +17592264872511 25500 +17592266027943 51200 +17592265078724 25500 +17592264904913 50000 +17592265048458 25500 +17592265048442 25500 +17592265048424 25500 +17592265048434 25500 +17592265048408 25500 +17592265048416 25500 +17592264872655 50000 +17592266028057 54100 +17592266028402 54400 +17592266028410 54400 +17592266028418 51200 +17592266028386 50000 +17592266028593 51130 +17592266028553 50000 +17592278205994 50000 +17592265129732 25500 +17592265130437 25500 +17592265130421 25500 +17592265130429 25500 +17592265130413 25500 +17592265130523 50000 +17592266028361 54000 +17592266028370 51200 +17592266028378 51200 +17592266028545 50000 +17592265264923 25500 +17592265264915 25500 +17592265264955 25500 +17592265264947 25500 +17592265264939 25500 +17592265160691 50000 +17592266028073 51130 +17592266028110 51200 +17592266028267 51200 +17592265314008 25500 +17592265314000 25500 +17592265313992 25500 +17592265313984 25500 +17592265313976 25500 +17592265265058 74600 +17592266028044 74450 +17592266028065 51200 +17592266028443 51130 +17592265264931 25500 +17592265341578 25500 +17592265341569 25500 +17592265341561 25500 +17592265341553 25500 +17592265341545 25500 +17592265341537 25500 +17592265341529 25500 +17592265341521 25500 +17592266028459 51130 +17592266028467 51130 +17592265407394 25500 +17592265407386 25500 +17592266027959 51200 +17592265407378 25500 +17592265407434 25500 +17592265407426 25500 +17592265407418 25500 +17592265407410 25500 +17592265407402 25500 +17592265794668 83250 +17592265601760 25500 +17592265601744 25500 +17592265601736 25500 +17592265601728 25500 +17592265419530 50000 +17592265601776 25500 +17592265601768 25500 +17592266028618 51130 +17592265690620 25500 +17592266028626 50000 +17592265690611 25500 +17592265690601 25500 +17592265649954 25500 +17592265649946 25500 +17592265649938 25500 +17592265649930 25500 +17592265649970 25500 +17592265649962 25500 +17592266027951 51200 +17592265788839 25500 +17592265788847 25500 +17592265788855 25500 +17592265788863 25500 +17592265788831 11000 +17592265695607 50000 +17592265601752 25500 +17592266027926 50000 +17592266027935 51200 +17592265863602 25500 +17592265863554 25500 +17592265863562 25500 +17592265863570 25500 +17592265863586 25500 +17592266395884 54400 +17592266410857 25500 +17592266027894 54400 +17592266027902 51200 +17592266410809 25500 +17592266410832 11000 +17592265794378 50000 +17592266410824 25500 +17592266410849 25500 +17592266410841 25500 +17592266046629 25500 +17592266046637 25500 +17592266046645 25500 +17592266046653 25500 +17592266046666 11000 +17592266046675 74600 +17592266046684 11000 +17592266046621 25500 +17592266036651 25500 +17592266036660 25500 +17592266036668 25500 +17592266036684 25500 +17592266036700 25500 +17592266046692 25500 +17592266036716 25500 +17592266036724 25500 +17592266036740 25500 +17592266027878 50000 +17592266027845 51200 +17592266027869 74450 +17592266122279 25500 +17592266122247 25500 +17592266122255 25500 +17592266122263 25500 +17592266122271 25500 +17592266028717 51130 +17592266028850 54700 +17592267806885 51130 +17592266058023 25500 +17592266058031 25500 +17592266058039 25500 +17592267806959 51200 +17592266122169 25500 +17592266122210 25500 +17592266124434 50000 +17592266122333 25200 +17592266122158 25200 +17592266322795 75990 +17592266322787 25500 +17592266322803 25500 +17592266322779 25500 +17592266322771 25500 +17592266409969 25500 +17592266409961 25500 +17592266409985 25500 +17592266409977 25500 +17592266409993 25500 +17592267788658 54400 +17592267806984 51200 +17592267788989 54700 +17592266525918 25500 +17592266525910 25500 +17592266525937 25500 +17592266525928 25500 +17592266525945 25500 +17592267634362 54400 +17592267806893 51130 +17592267788650 50000 +17592267806975 51200 +17592267806967 51200 +17592267708532 50000 +17592267806763 54000 +17592266606593 25500 +17592266606610 25500 +17592266606602 25500 +17592266606626 25500 +17592266606618 25500 +17592267788756 54400 +17592267806992 51200 +17592273292577 72100 +17592267634318 50000 +17592266717147 25500 +17592266311524 25200 +17592266716905 25500 +17592267806902 51130 +17592266717409 25500 +17592267806779 74450 +17592266717575 25500 +17592266717588 25500 +17592266717421 25500 +17592267807000 51200 +17592267788832 50000 +17592266756524 25500 +17592266756516 25500 +17592266756491 25500 +17592266756483 25500 +17592266756508 25500 +17592266756500 25500 +17592266756440 25500 +17592267806951 51200 +17592266853508 50000 +17592266850002 25500 +17592266850261 25500 +17592266850269 25500 +17592266850299 25500 +17592266850280 25500 +17592266850290 25500 +17592267634320 50000 +17592267806910 51130 +17592267806943 51200 +17592267788764 74100 +17592267788795 50000 +17592266997940 25500 +17592266997948 25500 +17592266997924 25500 +17592266997932 25500 +17592266997916 25500 +17592266997904 11000 +17592267788676 54400 +17592267807008 51200 +17592267081258 25500 +17592267081266 25500 +17592267081242 25500 +17592267081250 25500 +17592267081234 25500 +17592267806926 51130 +17592267807016 51200 +17592267128249 25500 +17592267128257 25500 +17592267128241 25500 +17592267128281 25500 +17592267128265 25500 +17592267128273 25500 +17592267634365 54400 +17592267634322 50000 +17592267806787 74450 +17592267788667 54400 +17592267807024 51200 +17592267788781 50000 +17592267198395 25500 +17592267198378 25500 +17592267198386 25500 +17592267198419 25500 +17592278206008 50000 +17592267198427 25500 +17592267198403 25500 +17592267198411 25500 +17592267198370 25500 +17592267806877 51130 +17592267807032 51200 +17592267386238 25500 +17592267360553 25500 +17592267360545 25500 +17592267360537 25500 +17592267360529 25500 +17592267360521 25500 +17592268164308 54400 +17592267386327 50000 +17592267441888 25500 +17592267441880 25500 +17592267441872 25500 +17592267441864 25500 +17592267441896 25500 +17592267806746 50000 +17592267788772 50000 +17592278211817 50000 +17592267580482 25500 +17592267580474 25500 +17592267580453 25500 +17592267580431 25500 +17592267634371 54400 +17592267806755 54000 +17592267807040 51200 +17592267788820 50000 +17592267789145 54700 +17592268164304 54400 +17592267580439 25500 +17592267806935 51130 +17592267788685 54400 +17592267807048 51200 +17592267756032 25500 +17592267709309 25500 +17592267709300 25500 +17592267709292 25500 +17592267709284 25500 +17592267709325 25500 +17592267709317 25500 +17592267746064 50000 +17592266311526 25200 +17592267806869 51130 +17592267806805 74450 +17592267755841 25500 +17592267755833 25500 +17592267755819 25500 +17592267807056 51200 +17592267755777 25500 +17592267755769 25500 +17592267755810 25500 +17592267755802 25500 +17592267755794 25500 +17592267755786 25500 +17592267788812 50000 +17592267789153 50000 +17592267746072 25200 +17592278206016 50000 +17592267806918 51130 +17592267796927 25500 +17592267796919 25500 +17592267796911 25500 +17592267796903 25500 +17592267796943 25500 +17592267796935 25500 +17592267796895 25500 +17592267796887 25500 +17592267807064 51200 +17592267965735 25500 +17592267965744 25500 +17592267965752 25500 +17592267965711 25500 +17592267965719 25500 +17592267965727 25500 +17592268045736 25500 +17592268045720 25500 +17592268045728 25500 +17592268045859 25500 +17592268045807 25500 +17592268045815 25500 +17592268378082 50000 +17592268378001 51130 +17592268377985 50000 +17592268378108 51200 +17592268377993 51200 +17592268377968 50000 +17592268377928 54700 +17592268377920 51130 +17592268142791 25500 +17592268142799 25500 +17592268142773 25500 +17592268142781 25500 +17592268142601 25500 +17592268142610 25500 +17592268378091 54700 +17592268378100 50000 +17592268184752 91200 +17592268184712 25500 +17592268377960 50000 +17592268377936 51200 +17592268377952 51130 +17592268377944 51200 +17592268377887 54000 +17592268292648 25500 +17592268292656 25500 +17592268292664 25500 +17592268292672 25500 +17592268292631 25500 +17592268292639 25500 +17592268377977 50000 +17592268377904 74450 +17592268377895 50000 +17592268377912 51200 +17592268376259 25500 +17592268376244 25500 +17592268378116 54700 +17592268376521 25500 +17592268376511 25500 +17592268376429 25500 +17592268314983 25500 +17592268376413 25500 +17592268376358 25500 +17592268376347 25500 +17592268315119 25500 +17592268377824 25500 +17592268377871 51200 +17592268377863 51200 +17592268377832 25500 +17592268377855 51130 +17592268618257 25500 +17592268618249 25500 +17592268618265 25500 +17592268618224 25500 +17592268618233 25500 +17592271210319 54700 +17592271210423 54400 +17592271222039 50000 +17592271220006 50000 +17592271221763 51200 +17592271197934 54400 +17592268715775 74800 +17592271208704 51130 +17592268708235 25500 +17592268708227 25500 +17592268708244 25500 +17592268708219 25500 +17592268708211 25500 +17592271221548 50000 +17592268618241 25500 +17592268801070 91200 +17592268801062 25500 +17592268715660 74600 +17592268715669 74600 +17592271220601 50000 +17592271198161 54700 +17592271210487 51200 +17592268800845 25500 +17592268800814 25500 +17592268800806 25500 +17592268800833 25500 +17592268800823 25500 +17592268800798 25500 +17592271198135 51200 +17592268943152 25500 +17592268943127 25500 +17592268943136 25500 +17592268943109 25500 +17592268943093 25500 +17592268943101 25500 +17592269028567 25500 +17592269028537 25500 +17592269028631 25500 +17592271210335 51130 +17592271210365 74450 +17592271210349 50000 +17592271220587 51200 +17592266311528 25200 +17592268953911 25500 +17592268953919 91200 +17592269017979 25500 +17592269017909 25500 +17592269017887 25500 +17592269017865 25500 +17592269017855 25500 +17592271210238 51130 +17592269029268 25500 +17592269029260 25500 +17592267806771 54000 +17592269073097 25500 +17592269073105 25500 +17592269073081 25500 +17592269073089 25500 +17592269073065 25500 +17592269073073 25500 +17592269073049 25500 +17592269073057 25500 +17592271221730 51200 +17592269618244 74800 +17592269618235 25500 +17592269240214 25500 +17592269240222 25500 +17592269240197 25500 +17592269240205 25500 +17592269240181 25500 +17592269240189 25500 +17592269074474 50000 +17592269091069 25500 +17592269091299 11000 +17592273292585 72100 +17592271220037 50000 +17592271210282 51200 +17592271210525 51130 +17592269361445 25500 +17592269361432 25500 +17592269361788 25500 +17592269361769 25500 +17592269361778 25500 +17592269361754 25500 +17592269468897 25500 +17592269468889 25500 +17592269468881 25500 +17592269468872 74700 +17592269468864 25500 +17592271209565 54790 +17592269409970 50000 +17592271220614 51130 +17592271198170 51200 +17592278206030 50000 +17592269509893 25500 +17592269468937 25500 +17592269509885 25500 +17592269509877 25500 +17592269509869 25500 +17592269509861 25500 +17592271220568 54400 +17592269531217 25500 +17592269531209 91200 +17592271221299 51200 +17592271220123 51200 +17592271209461 50000 +17592271209524 74450 +17592271220518 51200 +17592271197997 51130 +17592269586399 25500 +17592269586391 25500 +17592269586338 25500 +17592269586300 25500 +17592269586291 25500 +17592269586283 25500 +17592270401874 50000 +17592269531233 25500 +17592269531225 91200 +17592269586407 25500 +17592271197980 51130 +17592271197988 51200 +17592269598941 25500 +17592269598933 25500 +17592269598847 25500 +17592269586546 25500 +17592269586538 11000 +17592269598973 25500 +17592269598965 25500 +17592269598957 25500 +17592269598949 25500 +17592269608815 11000 +17592269608750 25500 +17592269793445 25500 +17592269793437 25500 +17592269793429 25500 +17592269793420 25500 +17592269793412 25500 +17592269750289 25500 +17592269740453 25500 +17592269740676 25500 +17592269740668 25500 +17592269740652 25500 +17592269740547 25500 +17592269740539 25500 +17592269866007 74800 +17592269865988 25500 +17592271197956 51200 +17592271198013 51130 +17592271198092 50000 +17592269877291 25500 +17592269877283 25500 +17592269877275 25500 +17592269877267 25500 +17592269877259 25500 +17592269865850 25500 +17592269865836 74600 +17592269865828 25500 +17592269865820 25500 +17592269865806 25500 +17592271197948 51200 +17592269981357 25500 +17592269981365 11000 +17592269981373 25500 +17592269981381 25500 +17592269981389 25500 +17592270401876 50000 +17592269865899 11000 +17592269865891 25500 +17592270118279 25500 +17592270118287 25500 +17592270118295 11000 +17592270118303 25500 +17592270118311 25500 +17592270118319 25500 +17592269981524 25500 +17592269981532 91200 +17592271208928 54100 +17592271209262 51130 +17592271209405 50000 +17592271223354 51200 +17592271209022 54400 +17592271209176 54700 +17592271224039 50000 +17592270118367 25500 +17592270124113 74800 +17592270118375 25500 +17592266311530 25200 +17592271208727 51130 +17592271208735 74450 +17592270401878 50000 +17592270189302 25500 +17592270189331 25500 +17592270189339 25500 +17592270189347 25500 +17592270189355 25500 +17592271208976 51200 +17592270189222 25500 +17592270189230 25500 +17592270189238 25500 +17592270190410 25500 +17592270190418 25500 +17592271208719 51130 +17592271208868 51200 +17592271226889 54100 +17592270809762 25500 +17592270809770 74800 +17592271230207 50000 +17592271230190 54400 +17592271230239 54400 +17592271226214 51200 +17592270544812 25500 +17592271226858 51130 +17592270516337 25500 +17592270516353 25500 +17592270516345 25500 +17592270516361 25500 +17592270516384 25500 +17592270516376 25500 +17592271225729 50000 +17592271227436 50000 +17592271230216 51130 +17592270605650 25500 +17592270605666 25500 +17592270605658 25500 +17592270605682 25500 +17592270605674 25500 +17592271230230 50000 +17592278205920 51200 +17592270715339 91200 +17592270715347 25500 +17592270715371 25500 +17592270715387 25500 +17592270715403 25500 +17592270715395 25500 +17592271225399 51200 +17592270726255 91200 +17592270772180 74500 +17592271225139 51130 +17592271225164 51200 +17592270715355 91200 +17592270772299 25500 +17592271224904 50000 +17592270772312 25500 +17592270772409 25500 +17592270772994 25500 +17592270773007 25500 +17592270773108 25500 +17592270773123 25500 +17592270715363 25500 +17592270715379 25500 +17592271225374 74450 +17592270775499 25500 +17592270775507 91200 +17592270786919 74800 +17592270809136 25500 +17592270809128 25500 +17592270809153 25500 +17592270809145 25500 +17592270809161 25500 +17592270809245 25500 +17592270809253 25500 +17592271223552 50000 +17592271223716 51200 +17592271598970 74800 +17592271598962 25500 +17592270842176 11000 +17592270842168 25500 +17592270989400 25500 +17592270989408 11000 +17592270989392 25500 +17592270989433 25500 +17592270989416 25500 +17592270989424 25500 +17592271224580 50000 +17592271240996 54400 +17592271224362 51130 +17592271224447 51200 +17592271240850 50000 +17592275106507 51400 +17592271035064 25500 +17592271035072 25500 +17592271035056 25500 +17592271035096 25500 +17592271035080 25500 +17592271035088 25500 +17592271224052 51200 +17592271242490 54700 +17592271242482 54700 +17592271242365 54700 +17592271242448 54700 +17592271095573 25500 +17592271095581 25500 +17592271095565 25500 +17592271095605 25500 +17592271095589 11000 +17592271095597 25500 +17592271241790 51130 +17592271254845 25500 +17592271254876 25500 +17592271162753 25500 +17592271254884 25500 +17592271254892 25500 +17592271254916 25500 +17592271254924 25500 +17592271242456 51200 +17592271163018 25500 +17592271255567 25500 +17592275106419 51400 +17592271242474 51200 +17592271242515 50000 +17592271242523 51130 +17592271598862 74800 +17592271242499 50000 +17592271242507 51200 +17592271242357 74450 +17592271242341 50000 +17592271242465 51200 +17592271210399 54400 +17592266311532 25200 +17592271210208 50000 +17592271255837 83250 +17592271341879 25500 +17592271341887 25500 +17592271341863 25500 +17592271341895 25500 +17592271341903 25500 +17592271341943 25500 +17592271341989 25500 +17592271220796 51130 +17592271255744 25500 +17592271255759 25500 +17592271198005 74100 +17592271411513 25500 +17592271341871 25500 +17592274809076 51130 +17592271411578 25500 +17592271411561 25500 +17592271411570 25500 +17592271411608 25500 +17592271411616 25500 +17592271411592 25500 +17592271411600 25500 +17592271341998 25500 +17592271342219 25500 +17592271317687 51200 +17592271348411 50000 +17592271317702 51200 +17592271598978 25500 +17592271598986 74800 +17592271421664 25500 +17592271421641 25500 +17592271598466 25500 +17592271598458 25500 +17592271598450 25500 +17592271598442 25500 +17592271598482 25500 +17592271598474 25500 +17592274429060 51200 +17592271710625 25500 +17592271710658 25500 +17592271710642 25500 +17592271710634 25500 +17592271710674 25500 +17592271710666 25500 +17592275105980 51400 +17592275106531 50000 +17592275106427 50000 +17592271820027 25500 +17592271820019 25500 +17592271820010 25500 +17592271820035 25500 +17592271819924 25500 +17592274808635 51200 +17592274809336 51130 +17592272218733 50000 +17592273292569 72100 +17592271820051 25500 +17592271820043 25500 +17592275106166 54400 +17592271925729 25500 +17592274809594 51130 +17592271925761 25500 +17592271925753 25500 +17592271925745 25500 +17592271925737 25500 +17592271925775 25500 +17592272218735 50000 +17592272218741 54400 +17592275106515 51200 +17592275102909 74450 +17592275102901 50000 +17592275102917 51200 +17592271983106 25500 +17592271983103 25500 +17592271983100 25500 +17592271983121 25500 +17592271983118 25500 +17592271983115 25500 +17592271983112 25500 +17592271983109 25500 +17592271925823 25500 +17592272218763 54400 +17592275106467 50000 +17592271925861 25500 +17592272218737 50000 +17592275106523 50000 +17592280275256 51200 +17592275106198 51130 +17592275105970 51400 +17592275106539 51200 +17592271983155 25500 +17592271983152 25500 +17592271983149 25500 +17592271983265 25500 +17592271983262 25500 +17592271983259 25500 +17592271983256 25500 +17592271983277 25500 +17592271983274 25500 +17592271983271 25500 +17592271983268 25500 +17592272164777 25500 +17592272164785 25500 +17592272164793 25500 +17592272164801 11000 +17592272164885 25500 +17592272164893 25500 +17592272164901 25500 +17592271983465 25500 +17592271983462 25500 +17592272255858 25500 +17592272255866 74800 +17592271983250 81200 +17592275449169 50000 +17592275102975 50000 +17592275449048 51400 +17592278205970 51200 +17592274807536 51130 +17592272235210 25500 +17592275106411 51200 +17592272235218 25500 +17592272235186 25500 +17592272235194 25500 +17592272235202 25500 +17592275449177 51200 +17592275449185 51130 +17592272555345 74600 +17592274490631 51200 +17592274490424 50000 +17592272349443 25500 +17592275106092 54400 +17592272349451 25500 +17592272349459 25500 +17592275106100 54400 +17592272349427 25500 +17592272349435 25500 +17592274490406 50000 +17592272467987 25500 +17592272468035 25500 +17592272468051 25500 +17592272468019 25500 +17592272468027 25500 +17592272889240 74800 +17592272543159 25500 +17592274490377 54400 +17592272555048 12300 +17592272506714 50000 +17592275103478 74450 +17592272553934 25500 +17592272553950 25500 +17592272555527 25500 +17592272889330 74800 +17592266311534 25200 +17592274429430 54400 +17592275106084 51200 +17592275106076 50000 +17592272467995 25500 +17592272553958 25500 +17592272531530 25500 +17592272531538 25500 +17592272468043 25500 +17592272468003 25500 +17592272562738 74800 +17592275106499 50000 +17592272610588 25500 +17592272561434 25500 +17592272561457 25500 +17592274429214 51130 +17592274490363 51400 +17592272610490 25500 +17592272553942 25500 +17592272601323 11000 +17592272601331 25500 +17592272601439 25500 +17592275106068 51200 +17592272601449 25500 +17592272601464 74600 +17592272601554 11000 +17592272613849 25500 +17592272601300 25500 +17592272611491 25500 +17592272601267 25500 +17592272610146 25500 +17592272561044 25500 +17592272613866 25500 +17592272613975 25500 +17592272609828 25500 +17592272845192 25500 +17592272845168 25500 +17592272845160 25500 +17592272845176 25500 +17592272845233 25500 +17592272845225 11000 +17592272845279 25500 +17592280275285 51200 +17592272845287 74800 +17592274490645 51130 +17592274429328 50000 +17592274490391 50000 +17592272889436 25500 +17592272889476 25500 +17592272889452 25500 +17592272889444 25500 +17592272889468 25500 +17592272889460 25500 +17592280275308 51200 +17592275106060 50000 +17592274490398 74100 +17592273022081 50000 +17592273035014 25500 +17592273034992 25500 +17592273035006 25500 +17592273034976 25500 +17592273034968 25500 +17592275106004 51200 +17592274490638 51400 +17592273110431 25500 +17592273110441 25500 +17592273286169 25500 +17592273286177 25500 +17592273286201 25500 +17592273286209 25500 +17592273286185 25500 +17592273286193 25500 +17592275449056 51200 +17592275106052 51130 +17592274490337 50000 +17592274490370 51130 +17592273287005 25500 +17592273350550 25500 +17592273350558 25500 +17592273350542 25500 +17592273350530 25500 +17592273287013 25500 +17592273350502 25500 +17592273287021 74600 +17592273350582 25500 +17592273350566 25500 +17592273350574 25500 +17592275106028 50000 +17592275106044 54700 +17592275106036 74450 +17592275105996 51200 +17592274490323 50000 +17592273357804 25500 +17592274490384 51400 +17592275102941 50000 +17592275102933 51200 +17592275103557 51130 +17592275105953 50000 +17592273357655 25500 +17592273388441 25500 +17592273388449 25500 +17592273388425 25500 +17592273388433 25500 +17592273388409 25500 +17592273388417 25500 +17592273388393 25500 +17592273388401 25500 +17592273574938 25500 +17592273574946 25500 +17592273574930 25500 +17592273575044 25500 +17592273575052 25500 +17592273575036 25500 +17592273413333 25500 +17592273413341 25500 +17592273413325 25500 +17592273726188 74800 +17592273726051 25500 +17592275102997 50000 +17592275449281 51400 +17592275103590 50000 +17592275103650 51200 +17592273605457 25500 +17592273605449 25500 +17592273605441 25500 +17592273605432 25500 +17592273605424 25500 +17592273605416 25500 +17592276278424 51200 +17592275632459 51130 +17592276284327 50000 +17592273801823 25500 +17592273801815 25500 +17592273801847 25500 +17592273801839 25500 +17592273689188 50000 +17592273801831 25500 +17592275471546 54400 +17592275471530 51400 +17592275471562 50000 +17592275632476 51200 +17592273914271 25500 +17592273914263 25500 +17592273914255 25500 +17592273914247 25500 +17592273914287 25500 +17592273914279 25500 +17592273820301 25500 +17592273820293 25500 +17592275633624 54700 +17592275633320 50000 +17592275471490 51200 +17592275471506 74450 +17592273915651 25500 +17592273915643 25500 +17592266311536 25200 +17592274527931 25200 +17592273917540 25200 +17592275632558 51130 +17592273915877 50000 +17592273952871 25500 +17592273952987 25500 +17592273952979 25500 +17592273952971 25500 +17592273952963 25500 +17592273952955 25500 +17592273952947 25500 +17592273952939 25500 +17592273952931 25500 +17592275106475 50000 +17592275449273 51400 +17592273975065 25500 +17592273975049 25500 +17592273975041 25500 +17592273975033 25500 +17592273975025 25500 +17592273975017 25500 +17592273975151 25500 +17592273975143 25500 +17592273975265 25500 +17592273975257 25500 +17592275633837 51130 +17592273953053 25500 +17592273953045 11000 +17592273953061 25500 +17592273975321 25500 +17592273975313 25500 +17592273975305 25500 +17592273975297 25500 +17592273975289 25500 +17592273975281 25500 +17592273975273 25500 +17592274005915 25500 +17592274005907 25500 +17592274005899 25500 +17592274005891 25500 +17592274005883 25500 +17592274005875 25500 +17592276694631 72110 +17592273985889 25500 +17592273985881 25500 +17592273985897 25500 +17592274359236 74800 +17592274359243 25500 +17592275449225 54100 +17592275449257 51200 +17592274296252 72400 +17592275449289 54700 +17592275471482 50000 +17592274397071 50000 +17592275449942 50000 +17592274350824 25500 +17592274350831 25500 +17592274350838 25500 +17592274344518 25500 +17592274344525 25500 +17592274344532 25500 +17592274344539 25500 +17592274344546 25500 +17592274350810 25500 +17592274350817 25500 +17592275449265 51200 +17592275449303 51200 +17592274431926 25500 +17592274431933 25500 +17592274431940 25500 +17592274431954 25500 +17592274431947 25500 +17592274431961 25500 +17592275633845 50000 +17592275449145 51400 +17592275449249 51130 +17592274497060 25500 +17592274497068 25500 +17592274497076 25500 +17592274432056 25500 +17592274497525 25500 +17592274497533 25500 +17592274497541 25500 +17592274432014 25500 +17592274432028 25500 +17592275449209 50000 +17592275449217 74450 +17592275449193 50000 +17592275449201 54700 +17592275449241 51200 +17592275449233 51200 +17592275102925 54400 +17592275633853 54100 +17592274550819 25500 +17592274550827 25500 +17592274550835 25500 +17592274550843 25500 +17592274550851 25500 +17592274550859 25500 +17592274550867 25500 +17592274550875 25500 +17592274550797 75050 +17592274550883 25500 +17592274550891 25500 +17592275106483 50000 +17592275449153 50000 +17592274789360 25500 +17592274789352 25500 +17592274789368 25500 +17592275633867 51130 +17592274550811 75050 +17592275106547 51200 +17592274789296 25500 +17592274789312 25500 +17592274789304 25500 +17592274789328 25500 +17592274789320 25500 +17592274789344 25500 +17592274789336 25500 +17592274832806 25500 +17592274832751 25500 +17592274832759 25500 +17592274832775 25500 +17592275317972 25500 +17592275317980 74800 +17592274789486 25500 +17592274789478 25500 +17592274789494 25500 +17592274832767 25500 +17592275449161 50000 +17592275004849 25500 +17592275004841 25500 +17592275004937 25500 +17592275004951 25500 +17592277037636 51200 +17592276276603 54700 +17592275102706 25500 +17592275102698 25500 +17592275102714 25500 +17592275102730 25500 +17592275102754 25500 +17592275102746 25500 +17592277037644 51200 +17592278224337 50000 +17592276278408 50000 +17592276278432 54100 +17592275082987 83250 +17592275104225 25500 +17592275149204 52200 +17592276278186 51130 +17592277037612 74100 +17592277037604 54000 +17592277037628 51200 +17592275149298 25500 +17592275104233 25500 +17592275149314 25500 +17592275149306 25500 +17592275149330 25500 +17592275149322 25500 +17592275149338 25500 +17592276278535 74450 +17592276278543 50000 +17592275170498 83250 +17592276278416 54700 +17592278224681 50000 +17592266311538 25200 +17592275241194 25500 +17592275196341 25500 +17592275196333 25500 +17592275196370 50000 +17592275270026 74800 +17592275241146 25500 +17592275241154 25500 +17592275241138 25500 +17592275241178 25500 +17592275241186 25500 +17592275241162 25500 +17592275241170 25500 +17592277037620 51200 +17592277037596 50000 +17592277037588 54700 +17592275258715 25500 +17592275258693 25500 +17592275258701 25500 +17592274490415 54400 +17592276278290 51130 +17592276278298 51130 +17592275296287 25500 +17592275296440 25500 +17592275296448 25500 +17592275296432 25500 +17592275296388 25500 +17592276677526 51200 +17592275506468 74800 +17592275428590 25500 +17592275506452 25500 +17592275428391 25500 +17592275428420 25500 +17592275428383 25500 +17592275428463 25500 +17592275296271 15400 +17592275296456 25500 +17592275296464 25500 +17592275296404 25500 +17592275296412 25500 +17592275296396 25500 +17592276677500 54400 +17592275506241 25500 +17592276278282 50000 +17592276284441 50000 +17592275506364 25500 +17592275506349 25500 +17592275506309 25500 +17592277053380 51200 +17592276262540 51130 +17592276021400 50000 +17592276021384 50000 +17592276677508 50000 +17592276677516 51200 +17592276677492 54400 +17592275590525 25500 +17592275590294 25500 +17592275588918 25500 +17592276254619 51400 +17592275589113 25500 +17592277037572 51200 +17592276278344 51200 +17592276278352 51130 +17592275590153 25500 +17592275610042 25500 +17592275610026 50000 +17592275610034 25500 +17592275665705 25500 +17592275665689 25500 +17592275665697 25500 +17592275665673 25500 +17592275665681 25500 +17592277037564 51200 +17592275610256 50000 +17592276278360 50000 +17592276278368 50000 +17592276278322 50000 +17592276278336 74450 +17592275736156 25500 +17592275736148 25500 +17592276284936 50000 +17592275633826 51200 +17592275788538 25500 +17592275788530 25500 +17592275788516 25500 +17592275782226 52200 +17592275788476 25500 +17592275788508 25500 +17592275788492 25500 +17592275788484 25500 +17592275838302 25500 +17592275838294 25500 +17592275838286 25500 +17592275838278 25500 +17592275838180 50000 +17592275838334 25500 +17592275838326 25500 +17592275838318 25500 +17592275838310 25500 +17592276278314 51130 +17592276278376 51200 +17592278206038 50000 +17592275794215 25500 +17592275794207 25500 +17592275794199 25500 +17592275849218 25500 +17592275849210 25500 +17592275849202 25500 +17592275788500 25500 +17592275855610 25500 +17592275855592 25500 +17592275855625 25500 +17592275995074 25500 +17592275995066 25500 +17592276285912 25500 +17592275995050 25500 +17592276285920 74800 +17592275995090 25500 +17592275995042 25500 +17592275995034 25500 +17592278206046 50000 +17592278205978 51200 +17592276284786 50000 +17592276278306 51130 +17592276255900 51200 +17592276278400 50000 +17592276258568 54400 +17592276256429 50000 +17592276258478 54400 +17592276062656 25500 +17592276062648 25500 +17592276062640 25500 +17592276062686 25500 +17592276277691 51200 +17592276277251 51200 +17592276278021 50000 +17592276277853 50000 +17592276062694 25500 +17592276278384 50000 +17592276278392 50000 +17592276128064 25500 +17592276128216 25500 +17592276062664 25500 +17592276127831 25500 +17592276127814 25500 +17592276192570 25500 +17592276192554 25500 +17592276192546 25500 +17592276192538 25500 +17592276192530 25500 +17592276278274 51130 +17592276128957 83250 +17592276139227 25500 +17592276277076 50000 +17592278134348 54100 +17592276258872 54700 +17592278132850 51200 +17592276277754 51200 +17592278132145 50000 +17592276285169 25500 +17592266311540 25200 +17592276285133 25500 +17592276246235 25500 +17592278132984 51200 +17592278130733 54100 +17592278132866 51130 +17592278132858 51130 +17592278131443 74450 +17592278131435 54400 +17592276388803 25500 +17592276388811 25500 +17592276388819 25500 +17592276263898 83250 +17592276388771 25500 +17592276388779 25500 +17592276388795 25500 +17592276388763 25500 +17592276285928 11000 +17592276487395 25500 +17592276487371 25500 +17592276487379 25500 +17592276487387 25500 +17592276487272 25500 +17592276487280 25500 +17592276487288 25500 +17592276487298 25500 +17592278133084 51200 +17592278133204 51130 +17592276388787 25500 +17592276388739 25500 +17592276388747 25500 +17592276388755 25500 +17592276667831 25500 +17592276667839 25500 +17592276487248 25500 +17592276487256 25500 +17592276487264 25500 +17592276666595 25500 +17592276666603 25500 +17592277006814 25500 +17592276666579 25500 +17592276666587 25500 +17592278134300 50000 +17592278130725 50000 +17592276720425 25500 +17592276720433 25500 +17592276720441 25500 +17592276720449 25500 +17592276720417 25500 +17592278133244 50000 +17592278133236 50000 +17592278133228 51130 +17592278133220 51200 +17592276863984 25500 +17592278134308 51200 +17592278134395 54400 +17592278134372 51130 +17592278225064 50000 +17592276863969 25500 +17592276863961 25500 +17592276863888 25500 +17592276863903 25500 +17592276864089 25500 +17592276864152 25500 +17592278134447 51400 +17592278134403 51130 +17592278134387 51200 +17592278128993 54700 +17592278130717 50000 +17592276910921 25500 +17592276910937 25500 +17592276910897 25500 +17592276910913 25500 +17592276910905 25500 +17592278130547 54700 +17592278134439 51130 +17592278134431 50000 +17592278134411 51200 +17592276988349 25500 +17592276988341 25500 +17592276955247 50000 +17592276910929 25500 +17592278129525 74450 +17592277006822 74800 +17592277006983 25500 +17592277007009 25500 +17592277006999 25500 +17592277006959 25500 +17592277006951 25500 +17592277006975 25500 +17592277006967 25500 +17592277111982 25500 +17592277111990 25500 +17592278128410 51400 +17592278134463 51130 +17592278134455 51200 +17592277084613 25500 +17592277084589 25500 +17592277084581 25500 +17592277084605 25500 +17592277084597 25500 +17592277037449 50000 +17592277084573 25500 +17592277084565 25500 +17592277053613 25500 +17592277053605 25500 +17592277006991 25500 +17592277157675 25500 +17592277157691 25500 +17592277157683 25500 +17592277157617 25500 +17592277157458 25500 +17592277157474 25500 +17592277157466 25500 +17592277157582 25500 +17592277157590 25500 +17592277157490 25500 +17592277157482 25500 +17592277157498 25500 +17592277309439 74800 +17592277309421 25500 +17592277123694 25500 +17592277123686 25500 +17592278528266 54400 +17592277328524 25500 +17592277394668 25200 +17592278128095 54400 +17592277394521 25500 +17592277394529 25500 +17592277394513 25500 +17592277394493 25500 +17592277394552 25500 +17592277394544 25500 +17592278134519 51200 +17592280391373 72100 +17592278134487 50000 +17592278134479 50000 +17592278134471 51200 +17592276767309 82100 +17592278134511 50000 +17592278134503 51130 +17592278134495 51200 +17592277475655 25500 +17592277475629 25500 +17592277475558 25500 +17592277475566 25500 +17592277475542 25500 +17592277475550 25500 +17592277475489 25500 +17592277771662 11000 +17592277499279 25500 +17592277498880 25500 +17592277770066 25500 +17592277770008 25500 +17592277770016 25500 +17592278134543 51400 +17592277769992 25500 +17592277770000 25500 +17592278116105 50000 +17592277769968 25500 +17592277859564 25500 +17592277859807 25500 +17592277859400 25500 +17592278115462 74450 +17592277859466 25500 +17592278134559 50000 +17592278134527 51200 +17592277859930 25500 +17592277859922 25500 +17592277859909 25500 +17592266311542 25200 +17592277768485 25200 +17592277768349 83250 +17592277859267 25500 +17592277859212 25500 +17592278114902 51130 +17592278111678 51200 +17592277859727 25500 +17592277901245 25500 +17592277901237 25500 +17592277901405 25500 +17592277901397 25500 +17592277901389 25500 +17592277901381 25500 +17592277901373 25500 +17592277901365 25500 +17592278112460 51130 +17592277901421 25500 +17592277901413 25500 +17592278113084 50000 +17592278130688 25500 +17592278108252 25500 +17592278108244 25200 +17592278108236 25500 +17592278108228 25500 +17592277921832 25500 +17592277921824 25500 +17592278130696 74800 +17592278108268 25500 +17592278108260 25500 +17592278160220 25500 +17592280276011 50000 +17592278134535 51200 +17592278225961 25500 +17592278225953 25500 +17592278225945 25500 +17592278225937 25500 +17592278225929 25500 +17592278225921 25500 +17592278134567 50000 +17592278134551 51400 +17592278110145 50000 +17592278225843 50000 +17592278205891 54400 +17592278283474 25500 +17592278283466 25500 +17592278283451 25500 +17592278283426 25500 +17592278283418 25500 +17592278283410 25500 +17592278134316 51200 +17592278134419 51200 +17592278528306 51200 +17592278528314 51200 +17592280043223 54400 +17592278528250 51130 +17592278380799 25500 +17592278380807 25500 +17592278528322 50000 +17592278528338 51200 +17592278380696 25500 +17592278380704 25500 +17592278380712 25500 +17592278380720 25500 +17592278380728 25500 +17592278380585 25500 +17592278463515 83250 +17592278528370 51200 +17592278528258 54100 +17592278528274 54700 +17592278528282 54400 +17592278528290 54700 +17592278528298 74450 +17592278528330 51200 +17592278528346 50000 +17592278528354 51130 +17592278429691 25500 +17592278429699 25500 +17592278463210 25500 +17592278463218 25500 +17592278463226 25500 +17592278463234 25500 +17592278463242 25500 +17592278463250 25500 +17592278463258 25500 +17592278463202 25500 +17592278528362 51130 +17592278528101 25500 +17592278528109 25500 +17592278528019 25500 +17592278528027 25500 +17592278528035 25500 +17592278528043 25500 +17592278528051 25500 +17592278528059 25500 +17592278528067 25500 +17592278528075 25500 +17592278552188 25500 +17592278552196 25500 +17592278552204 25500 +17592278552212 25500 +17592278552220 25500 +17592278552228 25500 +17592278552236 25500 +17592278552244 25500 +17592278890448 74600 +17592279234603 54400 +17592280275433 51200 +17592280275352 51200 +17592280275391 51200 +17592279032723 50000 +17592278793153 25500 +17592278793161 25500 +17592278793169 25500 +17592278793177 25500 +17592278793185 25500 +17592279032631 50000 +17592279032663 51130 +17592279032493 50000 +17592279903496 74800 +17592278890331 82100 +17592279032731 51130 +17592279032747 51200 +17592279032623 50000 +17592278897183 25500 +17592278897199 25500 +17592278897191 25500 +17592278897216 25500 +17592278897207 25500 +17592279099269 25500 +17592279099323 25500 +17592280275360 51200 +17592278980752 25500 +17592278980768 25500 +17592278980760 25500 +17592278991774 25500 +17592278991766 25500 +17592278991790 25500 +17592278991782 25500 +17592278991798 25500 +17592279032755 51130 +17592279032779 74100 +17592279032562 50000 +17592279067807 25500 +17592279067799 25500 +17592279032803 83250 +17592279099235 11000 +17592279099277 25500 +17592279099309 11000 +17592279099301 25500 +17592279099331 11000 +17592266311544 25200 +17592279099647 25500 +17592279099639 25500 +17592279099663 25500 +17592279099655 25500 +17592279099679 25500 +17592279099671 25500 +17592279099695 25500 +17592279099687 25500 +17592279099570 11000 +17592279234555 50000 +17592279234587 51200 +17592279234579 51130 +17592279032639 74450 +17592279032355 50000 +17592279241817 25500 +17592279166925 25500 +17592279166941 25500 +17592279166933 25500 +17592279166957 25500 +17592279166949 25500 +17592279166973 25500 +17592279166965 25500 +17592279234571 51200 +17592279166989 25500 +17592279234563 51200 +17592279166981 25500 +17592279166997 25500 +17592279234595 50000 +17592279241841 25500 +17592279241833 25500 +17592279241857 25500 +17592279241849 25500 +17592279241871 25500 +17592279241879 25500 +17592279241825 25500 +17592279526847 74600 +17592279930817 54700 +17592279930022 54700 +17592279417879 25500 +17592279417887 25500 +17592279417911 25500 +17592279417919 25500 +17592279417895 25500 +17592279417903 25500 +17592279930757 54700 +17592279930849 51130 +17592280275383 51200 +17592280275375 51200 +17592280038117 54400 +17592280038109 54700 +17592279526774 25500 +17592279526782 25500 +17592279526766 25500 +17592279526742 25500 +17592279526750 25500 +17592279930769 51130 +17592279930809 54700 +17592279928824 51200 +17592279497689 74800 +17592279526758 25500 +17592280077595 83200 +17592279930833 51200 +17592279930825 51130 +17592278133212 51200 +17592279659265 25500 +17592279659289 25500 +17592279659297 25500 +17592279659273 25500 +17592279659281 25500 +17592279659319 25500 +17592279659329 25500 +17592279659305 25500 +17592279929336 74450 +17592279930841 51130 +17592279680757 25500 +17592279680765 25500 +17592279680741 25500 +17592279680749 25500 +17592279680781 25500 +17592279680693 25500 +17592279680701 25500 +17592279680725 25500 +17592279680733 73500 +17592279680709 25500 +17592279680717 25500 +17592278130623 54100 +17592279734647 25500 +17592279734655 25500 +17592279734639 25500 +17592279734679 25500 +17592279734687 25500 +17592279734663 25500 +17592279734671 25500 +17592280107560 74600 +17592281280299 54400 +17592280065556 50000 +17592279931295 25500 +17592279931287 25500 +17592279931319 25500 +17592279931311 25500 +17592279931303 25500 +17592280064793 50000 +17592281280210 54400 +17592280107487 25500 +17592280107479 25500 +17592280076986 51200 +17592280076970 50000 +17592280107519 25500 +17592280107511 25500 +17592280107503 25500 +17592280107495 25500 +17592280208383 25500 +17592280208375 25500 +17592280208367 25500 +17592280208399 25500 +17592280208391 25500 +17592281280242 54000 +17592281280218 51200 +17592279640475 82100 +17592280187172 83250 +17592280208279 25500 +17592280208265 25500 +17592276767329 82100 +17592284609800 50000 +17592280373097 25500 +17592280373204 25500 +17592280372987 25500 +17592280372979 25500 +17592281280234 51130 +17592280373009 25500 +17592280373037 25500 +17592280373081 25500 +17592281280202 74450 +17592281280226 54400 +17592266311546 25200 +17592280372955 25500 +17592281280194 51200 +17592281280186 50000 +17592280608220 25500 +17592280593668 25500 +17592280607977 25500 +17592280607961 25500 +17592280373212 25500 +17592281280258 51130 +17592281280250 51200 +17592280373073 25500 +17592280608566 25500 +17592280608403 25500 +17592280608315 25500 +17592280593889 25500 +17592280637289 25500 +17592280637253 25500 +17592280637273 25500 +17592280637281 25500 +17592280637237 25500 +17592280637245 25500 +17592280608388 25500 +17592280608831 25500 +17592283049156 54400 +17592281172903 74600 +17592281142666 25500 +17592281142646 25500 +17592281280274 51200 +17592281280266 51130 +17592281142925 73500 +17592281142945 25500 +17592281142893 25500 +17592281280178 50000 +17592281142799 25500 +17592281280162 51200 +17592281280170 51130 +17592281150418 82200 +17592281172945 25500 +17592281172935 25500 +17592281172911 25500 +17592281172927 25500 +17592281172919 25500 +17592281260817 25500 +17592281260833 25500 +17592281260825 25500 +17592281260849 25500 +17592281260841 25500 +17592281280282 51200 +17592281280291 50000 +17592281280307 54700 +17592281360024 25500 +17592281359982 25500 +17592281360089 25500 +17592281359888 25500 +17592281359903 25500 +17592281359911 25500 +17592281308046 25500 +17592281308038 25500 +17592281308054 25500 +17592281308014 25500 +17592281308030 25500 +17592281308022 73500 +17592281931175 51200 +17592281931410 54400 +17592281931386 74450 +17592281931286 50000 +17592281931294 54700 +17592281931270 54400 +17592281931278 51130 +17592281931254 50000 +17592281931262 50000 +17592281308062 25500 +17592281461390 25500 +17592281461360 25500 +17592281461376 25500 +17592281461368 25500 +17592281461330 25500 +17592281461322 25500 +17592281461346 25500 +17592281461338 25500 +17592281461314 25500 +17592281931207 51130 +17592281931191 51200 +17592281931394 51200 +17592281503894 25500 +17592281503902 25500 +17592281503878 25500 +17592281503886 25500 +17592281503862 25500 +17592281503870 25500 +17592281503846 25500 +17592281503854 25500 +17592281503910 25500 +17592281503838 25500 +17592281785110 25500 +17592281785094 25500 +17592281785102 25500 +17592281785086 25500 +17592281785140 25500 +17592281785148 25500 +17592281785124 25500 +17592281785132 25500 +17592282021162 74600 +17592281931223 50000 +17592281931215 54100 +17592281931199 51130 +17592281931183 51200 +17592281840964 25500 +17592281840972 25500 +17592281840950 25500 +17592281840934 25500 +17592281840942 25500 +17592281931402 50000 +17592281931167 51200 +17592281931651 25500 +17592281931635 25500 +17592281931643 25500 +17592281931619 25500 +17592281931627 25500 +17592281931611 25500 +17592281931418 54700 +17592282728682 51200 +17592282171259 25500 +17592280045207 51200 +17592282728690 50000 +17592282728713 51130 +17592282171420 25500 +17592282171407 25500 +17592282171444 25500 +17592282171436 25500 +17592282171428 25500 +17592282727197 50000 +17592282269116 25500 +17592266311548 25200 +17592282728649 51200 +17592282728666 51130 +17592282728674 74450 +17592282239904 73500 +17592282239896 25500 +17592282239888 25500 +17592282239880 25500 +17592282239872 25500 +17592282239864 25500 +17592282239856 25500 +17592282239848 25500 +17592282239920 25500 +17592282239912 25500 +17592282731269 74100 +17592282314657 25500 +17592282314648 25500 +17592282314640 25500 +17592282314632 25500 +17592282314712 25500 +17592282314704 25500 +17592282314696 25500 +17592282314688 25500 +17592282314680 25500 +17592282314665 25500 +17592282728218 51130 +17592282269208 83250 +17592282728641 51200 +17592282171452 25500 +17592282720226 25500 +17592282720157 25500 +17592282347955 83100 +17592282721205 25500 +17592282720957 25500 +17592282720970 25500 +17592282728633 54700 +17592283072579 74600 +17592282721466 25500 +17592282721481 25500 +17592282760937 25500 +17592282760897 25500 +17592282760905 25500 +17592282760913 25500 +17592282760921 25500 +17592282760929 25500 +17592282728658 50000 +17592282731420 51130 +17592282727205 51200 +17592283049196 54400 +17592283049188 54100 +17592282963123 73500 +17592282963154 25500 +17592283049180 51200 +17592283049172 51200 +17592282963071 25500 +17592282963079 25500 +17592282963094 25500 +17592282963102 25500 +17592283049019 54400 +17592283049164 51130 +17592283049068 54400 +17592283049076 54400 +17592283049027 50000 +17592283049043 51200 +17592283034471 25500 +17592283034479 25500 +17592283034487 25500 +17592283034495 25500 +17592283034503 25500 +17592283034447 25500 +17592283034455 25500 +17592283034463 25500 +17592283049204 50000 +17592283049060 54700 +17592283049035 51130 +17592283264882 25500 +17592283264871 25500 +17592283264636 25500 +17592283264627 25500 +17592283264651 25500 +17592283512946 54700 +17592283265117 25500 +17592283265056 25500 +17592283265758 25500 +17592283265749 25500 +17592283265528 25500 +17592283049052 74450 +17592283610875 74600 +17592283512898 51200 +17592283389862 25500 +17592283389822 25500 +17592283389814 25500 +17592283389838 25500 +17592283389830 25500 +17592283389846 25500 +17592286617434 54100 +17592283512890 51130 +17592284609898 54400 +17592283837631 51200 +17592283512938 54700 +17592283512882 51130 +17592283512868 54100 +17592283512914 50000 +17592283512930 51200 +17592283512922 50000 +17592283482607 25500 +17592283482623 25500 +17592283482615 25500 +17592283482637 25500 +17592283482653 25500 +17592283482645 25500 +17592280048790 51200 +17592280063027 50000 +17592283582420 25500 +17592283582428 25500 +17592283512906 50000 +17592283582452 25500 +17592283582460 25500 +17592283582436 25500 +17592283582444 25500 +17592283582468 25500 +17592283512860 50000 +17592283582476 25500 +17592280038125 54400 +17592280050489 51130 +17592280042176 54400 +17592280067483 50000 +17592283866575 74450 +17592283866236 51200 +17592283867052 51130 +17592283610935 25500 +17592283610943 25500 +17592283610915 25500 +17592283610967 25500 +17592283610951 25500 +17592283610959 25500 +17592283610899 25500 +17592283610907 25500 +17592283610883 25500 +17592283610891 25500 +17592266311550 25200 +17592283831478 25500 +17592283831486 86100 +17592283831470 25500 +17592283831510 25500 +17592283831518 25500 +17592283831494 25500 +17592283831502 25500 +17592283831414 25500 +17592283831422 25500 +17592283831454 25500 +17592283831430 25500 +17592283831438 25500 +17592283865702 51130 +17592279903480 82100 +17592285753142 72110 +17592285753134 72110 +17592284090299 74600 +17592283968919 25500 +17592283968927 25500 +17592283968903 25500 +17592283968911 25500 +17592283994007 51200 +17592283993991 54700 +17592284611341 74100 +17592283993960 25500 +17592283994015 51200 +17592283993999 54700 +17592283993944 25500 +17592283993952 25500 +17592283993936 25500 +17592283994090 51130 +17592284611325 51200 +17592284096621 25500 +17592284096607 25500 +17592284096599 25500 +17592284096591 25500 +17592284096583 25500 +17592284611301 50000 +17592284611309 51130 +17592284611293 50000 +17592284226634 25500 +17592284225473 25500 +17592284225392 25500 +17592284225380 25500 +17592284225227 25500 +17592284225959 25500 +17592284225944 25500 +17592284225704 25500 +17592284096629 25500 +17592284226526 25500 +17592284611333 51130 +17592284611349 50000 +17592284611357 51200 +17592284611317 51200 +17592284611285 74450 +17592284226194 25500 +17592284226106 25500 +17592284285185 25500 +17592284285177 25500 +17592284285160 25500 +17592284285193 25500 +17592284285120 25500 +17592284285112 25500 +17592284285152 25500 +17592284285144 25500 +17592284285128 25500 +17592284625580 51130 +17592284609959 25500 +17592284610007 25500 +17592284610290 25500 +17592284610275 25500 +17592284610175 25500 +17592284610183 25500 +17592284610131 25500 +17592284610051 25500 +17592284285168 25500 +17592284285136 25500 +17592284670879 74600 +17592284903880 54700 +17592284903888 54400 +17592284903896 50000 +17592284903904 50000 +17592284903864 51200 +17592284670533 25500 +17592284670541 25500 +17592284670502 25500 +17592284670525 25500 +17592284670479 25500 +17592284670437 25500 +17592284810375 25500 +17592284810383 25500 +17592284810391 25500 +17592284810399 25500 +17592284903872 51200 +17592285065594 51200 +17592285065562 54400 +17592284903912 51130 +17592285065570 50000 +17592285065522 54000 +17592284904181 83250 +17592284904038 25500 +17592284904046 25500 +17592284904054 25500 +17592284904062 25500 +17592284904006 25500 +17592284904014 25500 +17592284904022 25500 +17592284904030 25500 +17592284945444 25500 +17592284945460 25500 +17592284945468 25500 +17592284945412 25500 +17592284945420 25500 +17592284945428 25500 +17592284945436 25500 +17592284945380 25500 +17592284945388 25500 +17592284945396 25500 +17592284945404 25500 +17592266311552 25200 +17592285065578 51200 +17592285065586 74450 +17592285065546 54700 +17592285065554 51130 +17592285065514 54400 +17592285065530 51200 +17592285065538 51200 +17592285065495 50000 +17592285065506 51130 +17592285037518 25500 +17592285037526 25500 +17592285037534 25500 +17592285037480 25500 +17592285037488 25500 +17592285037496 25500 +17592285037504 25500 +17592285037446 25500 +17592285037454 25500 +17592285037472 25500 +17592285037422 25500 +17592285037430 25500 +17592285037438 25500 +17592284945452 25200 +17592285193234 25500 +17592285193226 25500 +17592285193202 25500 +17592285193194 25500 +17592285193218 25500 +17592285193210 25500 +17592285193186 25500 +17592285193178 25500 +17592285728645 74600 +17592285640420 51200 +17592285639714 50000 +17592285654636 50000 +17592285653643 50000 +17592285235724 25500 +17592285235716 25500 +17592285235732 25500 +17592285235692 25500 +17592285235708 25500 +17592285235700 25500 +17592285491099 25500 +17592285654659 51200 +17592285491537 25500 +17592285491525 25500 +17592285655261 51130 +17592285492069 25500 +17592285492054 25500 +17592285653499 51200 +17592285655543 54400 +17592285654972 51200 +17592285593318 25500 +17592285593195 25500 +17592285593187 25500 +17592285654644 54700 +17592285593203 25500 +17592285593162 25500 +17592285640259 54400 +17592285593179 25500 +17592285593171 25500 +17592285593154 25500 +17592285640170 54700 +17592285759849 54400 +17592285759841 54400 +17592285655142 51130 +17592285596515 25500 +17592285653661 50000 +17592285636044 25500 +17592285636036 25500 +17592285636052 25500 +17592285636012 25500 +17592285636004 25500 +17592285636028 25500 +17592285636020 25500 +17592285635980 25500 +17592285635972 25500 +17592285635996 25500 +17592285635988 25500 +17592285759865 50000 +17592285759857 51200 +17592285759833 51200 +17592285759825 74450 +17592285748692 25500 +17592285748700 25500 +17592285748676 25500 +17592285636060 25500 +17592285748684 25500 +17592285748756 25500 +17592285748740 25500 +17592285748748 25500 +17592285748724 25500 +17592285748732 25500 +17592285748708 25500 +17592285748716 25500 +17592285759817 51130 +17592285899226 25500 +17592285899234 25500 +17592285899210 25500 +17592285899447 25500 +17592285899431 25500 +17592285899439 25500 +17592285899415 25500 +17592285899423 25500 +17592285899407 25500 +17592285899304 25500 +17592285899266 25500 +17592285899242 25500 +17592286055818 74600 +17592285728661 25500 +17592286602588 51200 +17592286603092 51130 +17592285955683 25500 +17592285955691 25500 +17592285955659 25500 +17592286603287 54700 +17592286601191 50000 +17592285870828 74600 +17592286055762 25500 +17592286055722 25500 +17592286055730 25500 +17592286055714 25500 +17592285951868 74600 +17592286600995 51200 +17592285955667 25500 +17592286616271 51130 +17592286601747 51200 +17592286160215 25500 +17592286055754 25500 +17592286055738 25500 +17592286055746 25500 +17592286616745 54400 +17592286159988 25500 +17592286159972 25500 +17592286160704 25500 +17592286159658 25500 +17592286159643 25500 +17592286159456 25500 +17592286616113 51200 +17592286602437 50000 +17592286277471 25500 +17592286277451 25500 +17592286277443 25500 +17592286277429 25500 +17592286277409 25500 +17592286277401 25500 +17592286277387 25500 +17592286277379 25500 +17592286277353 25500 +17592286277345 25500 +17592286277337 25500 +17592286277329 25500 +17592266311554 25200 +17592286600712 54700 +17592286599508 51130 +17592286600033 74450 +17592286599822 50000 +17592286616909 51130 +17592286342151 25500 +17592286342133 25500 +17592286342125 25500 +17592286342117 25500 +17592286342109 25500 +17592286342101 25500 +17592286342093 25500 +17592286342085 25500 +17592286342077 25500 +17592286342069 25500 +17592286596772 25500 +17592286596758 25500 +17592286596744 25500 +17592286596730 25500 +17592286596722 25500 +17592286596708 25500 +17592286596700 25500 +17592286342143 25500 +17592286714122 74600 +17592286617056 51130 +17592286645371 50000 +17592286598965 51200 +17592286697224 25500 +17592286697788 25500 +17592286697693 25500 +17592286697682 25500 +17592286599233 54700 +17592281931426 82100 +17592287025698 51200 +17592287025706 51200 +17592286697796 25500 +17592286714106 83250 +17592286714138 25500 +17592286714146 25500 +17592286714154 25500 +17592286714162 25500 +17592286714170 25500 +17592286714178 25500 +17592286875521 25500 +17592286875529 25500 +17592286875537 25500 +17592286875545 25500 +17592286875553 25500 +17592286875561 25500 +17592286875569 25500 +17592287025689 51130 +17592287025714 51200 +17592286981604 25500 +17592286981760 25500 +17592286981772 25500 +17592286981935 25500 +17592286981948 25500 +17592286981186 25500 +17592286981199 25500 +17592286981368 25500 +17592286981383 25500 +17592286981593 25500 +17592287025738 51200 +17592287025754 50000 +17592287025762 74450 +17592287020834 25500 +17592287020842 25500 +17592287020850 25500 +17592287020866 25500 +17592287020874 25500 +17592287020882 25500 +17592287020898 25500 +17592287025722 51200 +17592287025730 51200 +17592287025770 51130 +17592287180870 25500 +17592287180878 25500 +17592287180886 25500 +17592287180894 25500 +17592287180902 25500 +17592287180911 25500 +17592287180937 25500 +17592287180945 25500 +17592287184521 74600 +17592287020858 25500 +17592287020890 25500 +17592287020906 25500 +17592287025746 51200 +17592287229732 25500 +17592287229747 25500 +17592287229755 25500 +17592287229763 25500 +17592287229771 25500 +17592287330050 25500 +17592287328909 25500 +17592287328386 25500 +17592287330668 25500 +17592287330660 25500 +17592287330684 25500 +17592287330676 25500 +17592287232984 83400 +17592266311556 25200 +17592266311558 25200 +17592286601462 54400 +17592281931440 82100 +17592266311560 25200 +17592266311562 25200 +17592281931448 82100 +17592266311564 25200 +17592266311566 25200 +17592281931456 82100 +17592266311568 25200 +17592266311570 25200 +17592285980203 82100 +17592266311572 25200 +17592266311574 25200 +17592266311576 25200 +17592285980245 82100 +17592266311578 25200 +17592266311580 25200 +17592283933552 54100 +17592285952422 54200 +17592285935573 54200 +17592285951561 54100 +17592285952319 54200 +17592285951884 54200 +17592285951892 54100 +17592285951904 54200 +17592287062686 54200 +17592285864001 74600 +17592287062941 54200 +17592285935606 50000 +17592287063029 54100 +17592287063073 54100 +17592287075697 74150 +17592287063111 54100 +17592287066541 54200 +17592287071237 54100 +17592287075677 54100 +17592287075685 54200 +17592252572626 82300 +17592252955247 11000 +17592254721406 54300 +17592252955202 11000 +17592252955194 11000 +17592252955186 11000 +17592254721482 51400 +17592252955040 11000 +17592252955271 11000 +17592252955255 11000 +17592252955178 11000 +17592252955048 11000 +17592252955312 11000 +17592252955303 11000 +17592252955287 11000 +17592254852475 52200 +17592254721490 51400 +17592252955295 11000 +17592254721498 51400 +17592252707841 50000 +17592252955352 11000 +17592252955328 11000 +17592252955320 11000 +17592254852355 50000 +17592254721507 51400 +17592253104118 54700 +17592252955360 11000 +17592252955344 11000 +17592252955336 11000 +17592252955401 11000 +17592252955162 11000 +17592254721515 51400 +17592252955032 11000 +17592252707845 50000 +17592252955393 11000 +17592252955385 11000 +17592252955377 11000 +17592254721523 51400 +17592252955121 11000 +17592252955088 11000 +17592252955072 11000 +17592252955056 11000 +17592254852483 52200 +17592252955105 11000 +17592252955097 11000 +17592254721531 51400 +17592252955080 11000 +17592252955064 11000 +17592252955145 11000 +17592252955137 11000 +17592252955129 11000 +17592252955113 11000 +17592253103816 50000 +17592252955417 11000 +17592252955409 11000 +17592252955153 11000 +17592254721539 51400 +17592253679218 11000 +17592253104128 54700 +17592253104132 54700 +17592253104130 54700 +17592254021659 11000 +17592253540385 54100 +17592254021651 11000 +17592253605992 11000 +17592254721547 51400 +17592253605802 11000 +17592253605844 11000 +17592253605861 11000 +17592253605962 11000 +17592254851973 25200 +17592254852003 11000 +17592254721555 51400 +17592253605853 11000 +17592253605869 11000 +17592253605945 11000 +17592253606042 11000 +17592253606050 11000 +17592253606088 11000 +17592253606097 11000 +17592253606105 11000 +17592253606113 11000 +17592253606121 11000 +17592253606129 11000 +17592253606146 11000 +17592254721563 51400 +17592253605673 11000 +17592253605681 11000 +17592253605836 11000 +17592253606034 11000 +17592253606138 11000 +17592253606154 11000 +17592253523152 50000 +17592254852364 50000 +17592253605689 11000 +17592253605755 11000 +17592253605954 11000 +17592254852372 50000 +17592254852491 52200 +17592254721571 51400 +17592253605714 11000 +17592253605722 11000 +17592253605747 11000 +17592254721423 74100 +17592253605697 11000 +17592253605706 11000 +17592253605793 11000 +17592256824453 54400 +17592254852433 54200 +17592253605739 11000 +17592253921688 54400 +17592253827919 11000 +17592253827935 11000 +17592253827927 11000 +17592254721580 51400 +17592254021667 11000 +17592253827902 11000 +17592253827893 11000 +17592253827910 11000 +17592253827943 11000 +17592253827981 11000 +17592253827997 11000 +17592253827989 11000 +17592253828005 11000 +17592254721588 51400 +17592253827885 11000 +17592253827877 11000 +17592254852380 50000 +17592254852467 54400 +17592253833492 11000 +17592253921644 50000 +17592253827869 11000 +17592253827860 11000 +17592254721415 54300 +17592254721596 51400 +17592254021586 11000 +17592254021594 11000 +17592254852339 54100 +17592254803258 54100 +17592254852450 54100 +17592254803752 54700 +17592254803754 54700 +17592254021554 11000 +17592254021610 11000 +17592254021634 11000 +17592254021626 11000 +17592254803170 50000 +17592254852459 54100 +17592254721604 51400 +17592254021681 11000 +17592254021698 11000 +17592254021689 11000 +17592254021706 11000 +17592254541013 11000 +17592254541005 11000 +17592254721612 51400 +17592254540980 11000 +17592254540988 11000 +17592254540964 11000 +17592254540972 11000 +17592254167454 11000 +17592254540857 11000 +17592254540865 11000 +17592254540956 11000 +17592254167463 74610 +17592254347995 74150 +17592254348020 74150 +17592254540824 11000 +17592254540947 11000 +17592254540939 11000 +17592254803168 50000 +17592256350405 52200 +17592254167471 82300 +17592254167480 74100 +17592254540926 11000 +17592254721367 74700 +17592254721398 81330 +17592256350116 51400 +17592254540832 11000 +17592254540841 11000 +17592254540849 11000 +17592254540754 11000 +17592254803166 50000 +17592254721380 74700 +17592254803768 54700 +17592254803770 54700 +17592256350124 51400 +17592256792571 54700 +17592256350294 50000 +17592256350413 52200 +17592254540721 11000 +17592254540762 11000 +17592254721253 11000 +17592254721261 11000 +17592256350133 51400 +17592254540729 11000 +17592254540737 11000 +17592254540770 11000 +17592254540746 11000 +17592254721245 11000 +17592254721270 11000 +17592254721313 11000 +17592254721323 11000 +17592254721236 11000 +17592254721228 11000 +17592256350141 51400 +17592254803164 50000 +17592254851821 11000 +17592254851871 11000 +17592254851887 11000 +17592254851879 11000 +17592254803384 54400 +17592256350149 51400 +17592254851805 11000 +17592254851796 11000 +17592254851904 11000 +17592254851895 11000 +17592255305357 11000 +17592255305365 11000 +17592255305373 11000 +17592256605799 50000 +17592254851813 11000 +17592255943542 54100 +17592255305256 11000 +17592255305382 11000 +17592255305390 11000 +17592256350157 51400 +17592256350303 50000 +17592256350311 50000 +17592256350421 52200 +17592255943515 50000 +17592255305239 11000 +17592255305247 11000 +17592255305349 11000 +17592255305324 11000 +17592255305332 11000 +17592255305340 11000 +17592256350165 51400 +17592255305223 11000 +17592255305231 11000 +17592255305198 11000 +17592255305206 11000 +17592255305215 11000 +17592255305190 11000 +17592256605791 50000 +17592255305414 11000 +17592255305439 11000 +17592256350173 51400 +17592255305398 11000 +17592255305406 11000 +17592255498320 11000 +17592255943513 50000 +17592255304859 74700 +17592256350056 74100 +17592256350182 51400 +17592255498312 11000 +17592255498304 11000 +17592255943511 50000 +17592256046263 11000 +17592255498328 11000 +17592255498295 11000 +17592255943550 54100 +17592256041967 11000 +17592255943743 54700 +17592256046271 11000 +17592256605783 50000 +17592256350108 54300 +17592256350190 51400 +17592256350364 50000 +17592256041069 11000 +17592256350429 52200 +17592256041658 11000 +17592255943509 50000 +17592255943558 54100 +17592256046238 11000 +17592256046247 11000 +17592256042280 11000 +17592256042724 11000 +17592256044879 11000 +17592256350198 51400 +17592256043133 11000 +17592256046177 11000 +17592256046169 11000 +17592256046185 11000 +17592256046255 11000 +17592256046160 11000 +17592256046152 11000 +17592256046142 11000 +17592256046134 11000 +17592256603462 50000 +17592256350206 51400 +17592256045351 11000 +17592256046072 11000 +17592256046125 11000 +17592256604078 50000 +17592256037079 11000 +17592256350372 50000 +17592256350380 50000 +17592256037380 11000 +17592255943507 50000 +17592256038028 11000 +17592256038222 11000 +17592256038526 11000 +17592256350214 51400 +17592256350388 50000 +17592256201717 11000 +17592256035936 11000 +17592256040675 11000 +17592256039672 11000 +17592256201709 11000 +17592256201700 11000 +17592256201725 11000 +17592256370078 54700 +17592256350223 51400 +17592256792660 54100 +17592256350397 50000 +17592256350438 52200 +17592256369389 50000 +17592256605040 54100 +17592256201737 11000 +17592256201755 11000 +17592256201747 11000 +17592256206034 11000 +17592256206084 11000 +17592256350231 51400 +17592256792579 54700 +17592256792652 54700 +17592256523079 11000 +17592256206092 11000 +17592256206109 11000 +17592256206100 11000 +17592256206125 11000 +17592256206117 11000 +17592256206133 11000 +17592256206150 11000 +17592256206141 11000 +17592256605815 50000 +17592256605823 50000 +17592256605807 50000 +17592256350239 51400 +17592256523106 11000 +17592256523114 11000 +17592256531639 11000 +17592256531703 11000 +17592256350048 54300 +17592256369387 50000 +17592259681054 50000 +17592256523087 11000 +17592256201692 74150 +17592256201684 82300 +17592256531803 11000 +17592259499250 51400 +17592256523095 11000 +17592256531730 11000 +17592259499265 51400 +17592256531844 11000 +17592256531852 11000 +17592256531812 11000 +17592256805406 54100 +17592256531722 11000 +17592256531712 11000 +17592256531795 11000 +17592259672384 52200 +17592256805392 50000 +17592256805663 54700 +17592259681062 50000 +17592259681071 50000 +17592259499695 51400 +17592256792504 11000 +17592256792512 11000 +17592256596149 11000 +17592256596157 11000 +17592256596564 11000 +17592256598816 11000 +17592256792422 11000 +17592256792430 11000 +17592256792537 11000 +17592256792553 11000 +17592256792562 11000 +17592256686892 11000 +17592259499790 51400 +17592256792545 11000 +17592256792520 11000 +17592256792528 11000 +17592259672368 50000 +17592256974309 11000 +17592256792406 11000 +17592256792414 11000 +17592256805390 50000 +17592259681079 50000 +17592256974300 11000 +17592256974292 11000 +17592256974284 11000 +17592256974276 11000 +17592259499798 51400 +17592259672394 52200 +17592259498940 74700 +17592256974268 11000 +17592257532446 54100 +17592259681257 54700 +17592259499806 51400 +17592257718573 11000 +17592257718581 11000 +17592257532193 50000 +17592257718652 11000 +17592259681087 50000 +17592259681240 54100 +17592259499814 51400 +17592257718564 11000 +17592257718532 11000 +17592257718540 11000 +17592257718548 11000 +17592257718556 11000 +17592257532340 54700 +17592257718507 11000 +17592257718515 11000 +17592257718523 11000 +17592257718693 11000 +17592259499822 51400 +17592259672403 52200 +17592257718676 11000 +17592257718685 11000 +17592258000297 11000 +17592257532191 50000 +17592257718660 11000 +17592257718668 11000 +17592259681100 50000 +17592258001670 11000 +17592259681232 54100 +17592259681273 54400 +17592257999982 11000 +17592259499840 51400 +17592257998754 11000 +17592257999093 11000 +17592257999632 11000 +17592259681215 74100 +17592258001901 11000 +17592257953022 54100 +17592257998614 11000 +17592257998746 11000 +17592258000961 25200 +17592258001284 11000 +17592258001444 11000 +17592257909229 54400 +17592258001913 11000 +17592257952992 50000 +17592259499848 51400 +17592257998606 11000 +17592257998762 11000 +17592259672411 52200 +17592257999077 11000 +17592259681108 50000 +17592257996368 11000 +17592257996360 11000 +17592257996384 11000 +17592257996376 11000 +17592259499856 51400 +17592257996681 11000 +17592257996812 11000 +17592257997864 11000 +17592257998098 11000 +17592257998090 11000 +17592257996344 11000 +17592257996312 11000 +17592257999085 11000 +17592259681488 54100 +17592257996352 11000 +17592259499865 51400 +17592257996823 11000 +17592259672376 50000 +17592257997383 11000 +17592257997642 11000 +17592257952990 50000 +17592257996304 11000 +17592257996320 11000 +17592259681116 50000 +17592257996336 11000 +17592257996328 11000 +17592257996296 11000 +17592259499873 51400 +17592259681281 54100 +17592258348496 11000 +17592258348557 11000 +17592258348656 11000 +17592258348664 11000 +17592259681265 54700 +17592258299051 50000 +17592258299136 54400 +17592258348639 11000 +17592258348565 11000 +17592258348647 11000 +17592258348672 11000 +17592259499881 51400 +17592259672419 52200 +17592259681249 54100 +17592259681178 50000 +17592258348523 11000 +17592258348721 11000 +17592258348713 11000 +17592258348688 11000 +17592258348680 11000 +17592258348705 11000 +17592258348697 11000 +17592259499889 51400 +17592258348514 11000 +17592258348504 11000 +17592258348540 11000 +17592258348531 11000 +17592258348548 11000 +17592259499958 51400 +17592258654870 11000 +17592259681223 74610 +17592258657142 11000 +17592258299049 50000 +17592258655528 11000 +17592258654652 11000 +17592258657193 11000 +17592259681190 50000 +17592258657184 11000 +17592259499966 51400 +17592258656464 11000 +17592258657151 11000 +17592258657175 11000 +17592258978863 54100 +17592259050519 11000 +17592259681199 50000 +17592258657134 11000 +17592258657159 11000 +17592258657167 11000 +17592258978841 50000 +17592259050510 11000 +17592259050696 11000 +17592259050596 11000 +17592259050731 11000 +17592258979097 54700 +17592259499974 51400 +17592258793428 82300 +17592262712083 52200 +17592259681207 50000 +17592259050713 11000 +17592259050705 11000 +17592259050723 11000 +17592259060096 11000 +17592259060083 11000 +17592262712067 51400 +17592259051007 11000 +17592259060025 11000 +17592259060003 11000 +17592259060139 11000 +17592259060068 11000 +17592258796704 74700 +17592259060120 11000 +17592262711864 51400 +17592259060477 11000 +17592259060494 11000 +17592262712124 50000 +17592258978839 50000 +17592259060335 11000 +17592259060485 11000 +17592262712108 50000 +17592259060439 11000 +17592259060351 11000 +17592262711872 51400 +17592259060324 11000 +17592258906773 74700 +17592259050739 11000 +17592262720759 54100 +17592259050872 11000 +17592259313130 54400 +17592259303986 54100 +17592259060210 11000 +17592259060452 11000 +17592262720645 50000 +17592262720694 54000 +17592259497093 11000 +17592259497113 11000 +17592259497068 11000 +17592259497077 11000 +17592262720768 54700 +17592262720817 54100 +17592259313140 54700 +17592259303970 50000 +17592262711880 51400 +17592262712133 50000 +17592259497122 11000 +17592259497060 11000 +17592259497085 11000 +17592259497215 11000 +17592259497396 11000 +17592259497357 11000 +17592262711896 51400 +17592259497130 11000 +17592259497101 11000 +17592259497239 11000 +17592259497348 11000 +17592259497521 11000 +17592259497890 11000 +17592259498529 11000 +17592259496935 11000 +17592259496943 11000 +17592262711888 51400 +17592259496927 11000 +17592259497052 11000 +17592259496951 11000 +17592259303968 50000 +17592262712149 50000 +17592262712141 50000 +17592259496968 11000 +17592259496976 11000 +17592262711856 54300 +17592262711904 51400 +17592262712075 74100 +17592259497044 11000 +17592259496959 11000 +17592262720809 54100 +17592260052620 11000 +17592259881566 11000 +17592262720784 54100 +17592260314984 50000 +17592260315304 54700 +17592262711969 51400 +17592259881478 11000 +17592259881486 11000 +17592259881495 11000 +17592259881503 11000 +17592259881598 11000 +17592262712157 50000 +17592260052550 11000 +17592260052574 11000 +17592260052590 11000 +17592260052582 11000 +17592262711986 51400 +17592259881662 11000 +17592259881574 11000 +17592259881585 11000 +17592260052558 11000 +17592260052566 11000 +17592260052542 11000 +17592260052532 11000 +17592259881775 11000 +17592260052612 11000 +17592260052604 11000 +17592262711978 51400 +17592260052425 11000 +17592260052441 11000 +17592262720801 54100 +17592260052524 11000 +17592260314982 50000 +17592262712222 50000 +17592260052433 11000 +17592260052449 11000 +17592262720776 54100 +17592260052457 11000 +17592262711994 51400 +17592262712091 52200 +17592262712116 50000 +17592261114959 11000 +17592261114951 11000 +17592261114943 11000 +17592260315339 54100 +17592262720677 50000 +17592261115035 11000 +17592260990813 11000 +17592260153171 25200 +17592260314980 50000 +17592261114076 11000 +17592261114201 11000 +17592261114159 11000 +17592261114292 11000 +17592262712002 51400 +17592262712230 50000 +17592261115052 11000 +17592261115043 11000 +17592260990856 11000 +17592261114185 11000 +17592261114176 11000 +17592261114268 11000 +17592262712018 51400 +17592261115068 11000 +17592261115060 11000 +17592260990828 11000 +17592261114067 11000 +17592261114193 11000 +17592261114168 11000 +17592261114142 11000 +17592262720669 50000 +17592261114926 11000 +17592260990805 11000 +17592261114301 11000 +17592262712010 51400 +17592261114934 11000 +17592262720792 54100 +17592260370007 75200 +17592260382531 74610 +17592260314978 50000 +17592262712238 50000 +17592262720686 54000 +17592261592305 54700 +17592261115344 11000 +17592260990797 11000 +17592261114284 11000 +17592261114276 11000 +17592262712026 51400 +17592261115174 11000 +17592261592295 54400 +17592261592315 54700 +17592262720825 54100 +17592260990848 11000 +17592261114150 11000 +17592262720661 50000 +17592261115077 11000 +17592261115208 11000 +17592261592452 50000 +17592261115319 11000 +17592261115298 11000 +17592260990888 11000 +17592267077821 50000 +17592262712034 51400 +17592262712246 50000 +17592262712254 50000 +17592262712099 52200 +17592261115232 11000 +17592262720920 74610 +17592261115191 11000 +17592261115183 11000 +17592261115158 11000 +17592261115336 11000 +17592261115306 11000 +17592260990864 11000 +17592262712042 51400 +17592261115094 11000 +17592261115085 11000 +17592261115199 11000 +17592261115166 11000 +17592261115327 11000 +17592260990880 11000 +17592260991029 82300 +17592262720637 50000 +17592261114049 11000 +17592261114041 11000 +17592262712050 51400 +17592262720653 50000 +17592261592450 50000 +17592261114057 11000 +17592262712262 50000 +17592261115216 11000 +17592261114620 11000 +17592262712058 51400 +17592261114830 11000 +17592261868517 11000 +17592261868525 11000 +17592261868533 11000 +17592261592475 54100 +17592261592325 54700 +17592264884509 54100 +17592261868474 11000 +17592261868720 11000 +17592261868541 11000 +17592261592448 50000 +17592264885684 51400 +17592265160714 50000 +17592265160722 50000 +17592264884674 50000 +17592264884533 54000 +17592264892990 52200 +17592261868499 11000 +17592261868508 11000 +17592261868367 11000 +17592261868695 11000 +17592261868703 11000 +17592261868711 11000 +17592261868574 11000 +17592261868582 11000 +17592261868590 11000 +17592261868600 11000 +17592264886355 51400 +17592261868678 11000 +17592261868687 11000 +17592261868744 11000 +17592261868752 11000 +17592261868549 11000 +17592261868557 11000 +17592261868566 11000 +17592261868728 11000 +17592261868736 11000 +17592261868769 11000 +17592261868777 11000 +17592264886678 51400 +17592261868760 11000 +17592261592446 50000 +17592267077819 50000 +17592265160878 50000 +17592265160730 50000 +17592265160738 50000 +17592264884500 50000 +17592262711417 11000 +17592262711401 11000 +17592264884433 74100 +17592262711385 11000 +17592262711393 11000 +17592262711377 11000 +17592264886686 51400 +17592262711425 11000 +17592262711409 11000 +17592262711444 11000 +17592262711452 11000 +17592262711436 11000 +17592265160886 50000 +17592262785242 50000 +17592265160798 50000 +17592262785429 54700 +17592262785427 54700 +17592262711553 11000 +17592262711561 11000 +17592262711569 11000 +17592262711593 11000 +17592262711820 11000 +17592264886843 51400 +17592264888140 51400 +17592262711667 11000 +17592262711714 11000 +17592262711691 11000 +17592262711739 11000 +17592262711804 11000 +17592262711812 11000 +17592262711478 11000 +17592262711470 11000 +17592262711610 11000 +17592262711618 11000 +17592262711643 11000 +17592262711626 11000 +17592262711634 11000 +17592262711829 11000 +17592262711461 11000 +17592264892798 52200 +17592262967587 11000 +17592262967949 11000 +17592264888927 51400 +17592265160806 50000 +17592265160814 50000 +17592262785240 50000 +17592265160894 50000 +17592262967391 11000 +17592262965606 11000 +17592264884517 54400 +17592262966166 11000 +17592263226447 11000 +17592262966805 11000 +17592262974990 25500 +17592265160822 50000 +17592264890571 51400 +17592264884665 50000 +17592264884541 54000 +17592263226519 11000 +17592263226511 11000 +17592264884682 54300 +17592264884525 54000 +17592263541690 54700 +17592263541680 54400 +17592263541485 54100 +17592263226594 11000 +17592263226754 11000 +17592263226775 11000 +17592263226767 11000 +17592263226620 11000 +17592263226852 11000 +17592265160838 50000 +17592265160830 50000 +17592264904783 54100 +17592264884492 50000 +17592264890682 51400 +17592263541470 50000 +17592263226527 11000 +17592263226561 11000 +17592263226552 11000 +17592263226535 11000 +17592263226585 11000 +17592263226577 11000 +17592263226569 11000 +17592264891152 51400 +17592263226398 11000 +17592263226430 11000 +17592263226422 11000 +17592263226414 11000 +17592263226406 11000 +17592263226438 11000 +17592264891703 51400 +17592264044365 11000 +17592264892642 52200 +17592264044536 11000 +17592264043587 11000 +17592264044204 11000 +17592265160854 50000 +17592265160846 50000 +17592263541468 50000 +17592264043446 11000 +17592267891481 74700 +17592264041597 11000 +17592264892001 51400 +17592264884657 50000 +17592264041362 11000 +17592263541700 54700 +17592264041297 25500 +17592264041281 11000 +17592264041424 11000 +17592263541710 54700 +17592264041289 11000 +17592264041264 11000 +17592264892044 51400 +17592264042273 11000 +17592264042295 11000 +17592265160862 50000 +17592265160902 50000 +17592265160870 50000 +17592264560730 50000 +17592264044603 11000 +17592264041248 11000 +17592264892356 51400 +17592264042770 11000 +17592264042778 11000 +17592264043104 11000 +17592264043429 11000 +17592264043437 11000 +17592264043282 11000 +17592264041890 11000 +17592264042118 11000 +17592264041972 11000 +17592264041981 11000 +17592264042607 11000 +17592264042594 11000 +17592264045321 11000 +17592264041273 11000 +17592264045735 11000 +17592264045797 11000 +17592264045825 11000 +17592264044776 11000 +17592267890920 51400 +17592267891248 50000 +17592264045528 11000 +17592264045476 11000 +17592264045377 11000 +17592264045833 11000 +17592264044652 11000 +17592264044746 11000 +17592264560728 50000 +17592264045841 25500 +17592264045849 11000 +17592264045858 11000 +17592264075404 82300 +17592267890934 51400 +17592264509582 11000 +17592264560752 54100 +17592264509517 11000 +17592264509509 25500 +17592264509477 11000 +17592264509501 11000 +17592267891419 52200 +17592264509469 11000 +17592264509461 11000 +17592264560726 50000 +17592264509485 11000 +17592264509493 11000 +17592264561005 54700 +17592264561003 54700 +17592267891014 51400 +17592267891199 54100 +17592264510464 11000 +17592267891022 51400 +17592264510051 11000 +17592264510168 11000 +17592264510363 11000 +17592264510190 11000 +17592264510277 11000 +17592264510660 11000 +17592264510472 11000 +17592264510561 11000 +17592264511019 11000 +17592264511027 11000 +17592264509596 11000 +17592267891032 51400 +17592264510377 11000 +17592267891497 74700 +17592265067588 11000 +17592265067596 11000 +17592264509453 11000 +17592264509445 11000 +17592264560724 50000 +17592265067610 11000 +17592265067572 11000 +17592265067580 11000 +17592265067564 11000 +17592267603742 74100 +17592264904861 11000 +17592267891040 51400 +17592265067548 11000 +17592265067556 11000 +17592265018627 54700 +17592265018617 54400 +17592264904869 11000 +17592265160675 11000 +17592265160683 11000 +17592265067626 11000 +17592265067634 11000 +17592265067704 11000 +17592265067696 11000 +17592265067618 11000 +17592264904877 11000 +17592267891050 51400 +17592265016099 50000 +17592265067721 11000 +17592265067713 11000 +17592265067906 11000 +17592264904853 11000 +17592267891058 51400 +17592265160584 11000 +17592265160592 11000 +17592265160576 11000 +17592265160659 11000 +17592265160667 11000 +17592265160651 11000 +17592265160568 11000 +17592265160560 11000 +17592267891066 51400 +17592267077922 54100 +17592265159835 11000 +17592265159811 11000 +17592265159894 11000 +17592265159904 11000 +17592265159912 11000 +17592265160551 11000 +17592267891223 54100 +17592265016097 50000 +17592265159827 11000 +17592265159819 11000 +17592265863594 11000 +17592265863546 11000 +17592265863578 11000 +17592267891074 51400 +17592265863387 11000 +17592265863649 11000 +17592265863538 11000 +17592267891265 50000 +17592267603734 54300 +17592267077817 50000 +17592267891082 51400 +17592265863473 11000 +17592265863481 11000 +17592265863489 11000 +17592265863505 11000 +17592265863395 11000 +17592265863404 11000 +17592267079962 54700 +17592267891435 52200 +17592265863338 11000 +17592265863314 11000 +17592265863530 11000 +17592267891090 51400 +17592265863497 11000 +17592265863513 11000 +17592265863521 11000 +17592265863347 11000 +17592265863355 11000 +17592265863363 11000 +17592265863371 11000 +17592265863379 11000 +17592265863306 11000 +17592265863322 11000 +17592265863330 11000 +17592265863272 11000 +17592265863280 11000 +17592265863288 11000 +17592265863296 11000 +17592267891106 51400 +17592267079333 54400 +17592267077815 50000 +17592265863263 11000 +17592265863178 11000 +17592265863186 11000 +17592265863153 11000 +17592265863194 11000 +17592267891114 51400 +17592266550947 11000 +17592267603750 54200 +17592265863162 11000 +17592265863170 11000 +17592267079976 54700 +17592267079972 54700 +17592267079974 54700 +17592266552880 11000 +17592266614753 11000 +17592267077813 50000 +17592266551522 11000 +17592266549359 11000 +17592266549709 11000 +17592267891122 51400 +17592266559769 11000 +17592266560155 11000 +17592266548319 11000 +17592266560795 11000 +17592266561014 11000 +17592267891138 51400 +17592266552111 11000 +17592266548018 11000 +17592266552125 11000 +17592266560812 11000 +17592266560804 11000 +17592266561023 11000 +17592266571275 11000 +17592266571284 11000 +17592266614701 11000 +17592266614693 11000 +17592266560936 11000 +17592266560893 25500 +17592266560901 11000 +17592266560927 11000 +17592267891130 51400 +17592267891281 50000 +17592266560911 11000 +17592266560919 11000 +17592267077811 50000 +17592270484519 50000 +17592266614720 11000 +17592266614711 11000 +17592266614728 11000 +17592267891146 51400 +17592270484420 50000 +17592267891182 54400 +17592267965495 54100 +17592266976618 11000 +17592267110874 11000 +17592267110882 11000 +17592266973424 11000 +17592266973687 11000 +17592266976635 11000 +17592266976626 11000 +17592274243124 54100 +17592267077809 50000 +17592267891154 51400 +17592267110865 11000 +17592266615140 82300 +17592266664255 25200 +17592267110961 11000 +17592267891573 58000 +17592267891443 52200 +17592267111175 11000 +17592267891162 51400 +17592267111094 11000 +17592267111210 11000 +17592267111218 11000 +17592267111167 11000 +17592267111192 25500 +17592267111200 11000 +17592267111184 11000 +17592267111077 11000 +17592267111085 11000 +17592267111069 11000 +17592267111058 25500 +17592267110969 11000 +17592267110977 11000 +17592267110985 11000 +17592266972383 11000 +17592266976601 25500 +17592266976610 11000 +17592266972403 11000 +17592267891170 51400 +17592266974373 11000 +17592266974813 11000 +17592266975048 11000 +17592267077807 50000 +17592267080019 54700 +17592267080021 54700 +17592266973815 11000 +17592267313435 11000 +17592270488364 51400 +17592267317811 11000 +17592267317803 11000 +17592267317787 11000 +17592267317778 11000 +17592267965499 54100 +17592269222040 54100 +17592270488448 74100 +17592267317795 11000 +17592267317746 11000 +17592267317738 11000 +17592267317770 11000 +17592274579386 52200 +17592267077805 50000 +17592267317730 11000 +17592267317722 11000 +17592267317629 11000 +17592267317654 11000 +17592267317645 11000 +17592270483555 50000 +17592270483682 50000 +17592270488356 51400 +17592267317762 11000 +17592267317754 11000 +17592267603451 11000 +17592267317637 11000 +17592267313468 11000 +17592267313460 11000 +17592267313452 25500 +17592267313444 11000 +17592270488324 51400 +17592267603426 11000 +17592267603637 11000 +17592267603629 11000 +17592267603442 25500 +17592267603434 11000 +17592267603459 11000 +17592267603418 11000 +17592267603409 11000 +17592270488332 51400 +17592267965413 50000 +17592267603586 11000 +17592267603578 11000 +17592267603570 11000 +17592267603594 11000 +17592270483698 50000 +17592267603645 11000 +17592267603621 11000 +17592267603484 11000 +17592270488315 51400 +17592267603476 11000 +17592267603468 11000 +17592267906887 11000 +17592267906863 11000 +17592267906879 11000 +17592267965411 50000 +17592274579394 52200 +17592267745215 11000 +17592267906985 11000 +17592267906969 11000 +17592267906977 11000 +17592267906895 11000 +17592267906903 11000 +17592267906871 11000 +17592270483904 50000 +17592270483896 50000 +17592270488307 51400 +17592267906953 11000 +17592267906961 11000 +17592267906929 11000 +17592267906937 25500 +17592267906945 11000 +17592270488291 51400 +17592267907018 11000 +17592267907026 11000 +17592267907034 11000 +17592267907042 11000 +17592267906994 11000 +17592267907002 25500 +17592267907010 11000 +17592267906921 11000 +17592267906911 11000 +17592268219587 11000 +17592268553682 11000 +17592268553674 11000 +17592267906776 50000 +17592270488299 51400 +17592268219374 11000 +17592269222324 54400 +17592267965409 50000 +17592270484031 50000 +17592268219240 11000 +17592270484044 50000 +17592268221423 11000 +17592268219873 11000 +17592268553666 11000 +17592268221778 11000 +17592269222356 54700 +17592269222344 54400 +17592269222354 54700 +17592269222334 54400 +17592268220690 11000 +17592270488283 51400 +17592268553611 11000 +17592268553627 11000 +17592268553586 11000 +17592268553515 11000 +17592269222022 54100 +17592268553644 25500 +17592268553636 11000 +17592268553652 11000 +17592271230014 11000 +17592268553619 11000 +17592268553594 11000 +17592269222000 50000 +17592270484213 50000 +17592270484230 50000 +17592270488251 51400 +17592268553578 11000 +17592268553551 25500 +17592268553539 11000 +17592268553560 11000 +17592268553531 11000 +17592268553523 11000 +17592270488275 51400 +17592268553568 11000 +17592268553507 11000 +17592268553482 11000 +17592268553499 11000 +17592268553491 11000 +17592268553474 11000 +17592268553466 25500 +17592268553769 11000 +17592268553761 11000 +17592270132582 11000 +17592270488243 51400 +17592270132598 11000 +17592270132607 11000 +17592268553602 11000 +17592269221998 50000 +17592270484238 50000 +17592270484325 50000 +17592270134007 11000 +17592270134015 11000 +17592270134023 11000 +17592270134032 11000 +17592270134049 11000 +17592270488235 51400 +17592269222025 54100 +17592270134041 11000 +17592270134057 11000 +17592270134065 11000 +17592270134139 11000 +17592274579402 52200 +17592269221996 50000 +17592270209776 11000 +17592270488227 51400 +17592270209744 11000 +17592270209752 11000 +17592270209760 11000 +17592270210119 11000 +17592270210168 11000 +17592270209790 11000 +17592270209845 11000 +17592270209864 25500 +17592270209888 11000 +17592270210014 11000 +17592270211627 11000 +17592270488219 51400 +17592270210282 11000 +17592270210290 11000 +17592270210298 25500 +17592270480652 54300 +17592270210307 11000 +17592270210316 11000 +17592270210325 11000 +17592270210265 11000 +17592270210274 11000 +17592270210408 11000 +17592270210416 11000 +17592270210425 11000 +17592272494041 51400 +17592268550380 82300 +17592270210509 11000 +17592270210518 11000 +17592270210526 11000 +17592274454401 50000 +17592274454408 50000 +17592269221994 50000 +17592270401904 50000 +17592272494050 51400 +17592270210569 11000 +17592274243148 74100 +17592270210654 11000 +17592270210545 11000 +17592270210553 11000 +17592270210561 11000 +17592269785566 54700 +17592274454373 50000 +17592274454380 50000 +17592272494058 51400 +17592270210663 11000 +17592270210671 11000 +17592270210680 11000 +17592270210688 11000 +17592270210697 11000 +17592269786067 50000 +17592270210787 11000 +17592270210797 11000 +17592270210805 11000 +17592270210813 11000 +17592272494066 51400 +17592270210779 11000 +17592270211481 11000 +17592270211289 11000 +17592270132615 11000 +17592270132623 25500 +17592270132725 11000 +17592270132916 11000 +17592270132924 11000 +17592270132932 11000 +17592270210822 11000 +17592270132942 11000 +17592270132967 11000 +17592270132975 11000 +17592270132991 11000 +17592274454394 50000 +17592274454387 50000 +17592274243196 50000 +17592269786065 50000 +17592270133007 11000 +17592270133015 11000 +17592270133023 11000 +17592270133051 11000 +17592270133120 11000 +17592272494089 51400 +17592274243084 52200 +17592275638005 50000 +17592270133133 11000 +17592270133145 11000 +17592270133153 11000 +17592270133162 11000 +17592271013193 50000 +17592270640877 11000 +17592270640893 11000 +17592274454354 50000 +17592274454366 50000 +17592272494097 51400 +17592274243172 50000 +17592270640861 11000 +17592270640852 11000 +17592270640976 11000 +17592270640968 25500 +17592270640993 11000 +17592270640985 11000 +17592270210534 11000 +17592272494105 51400 +17592270640778 11000 +17592271740071 11000 +17592270640786 11000 +17592270640795 11000 +17592270640812 11000 +17592270640844 11000 +17592270640836 11000 +17592272494113 51400 +17592270640702 11000 +17592270640803 11000 +17592270640820 11000 +17592271013191 50000 +17592274454347 50000 +17592270640685 11000 +17592270640694 11000 +17592271013479 54400 +17592274243188 50000 +17592270640828 11000 +17592274243132 54300 +17592270640675 11000 +17592272494122 51400 +17592274243076 54400 +17592274243092 54700 +17592271013523 54700 +17592271013288 54100 +17592271013291 54100 +17592270641010 11000 +17592270641002 11000 +17592270641026 11000 +17592270641018 11000 +17592274243164 54100 +17592271241739 11000 +17592271013189 50000 +17592271227905 11000 +17592271228044 11000 +17592271228128 25200 +17592274454415 50000 +17592272494130 51400 +17592274454991 50000 +17592274455309 50000 +17592271227828 11000 +17592271227820 11000 +17592271227532 11000 +17592271228152 11000 +17592271228143 11000 +17592272494138 51400 +17592274243180 50000 +17592271229284 11000 +17592271229408 11000 +17592271227621 11000 +17592271227803 11000 +17592271227613 11000 +17592271226705 11000 +17592271225156 11000 +17592271225188 11000 +17592271226881 11000 +17592271227444 11000 +17592271225391 11000 +17592271226689 11000 +17592271226697 11000 +17592272494146 51400 +17592271226868 11000 +17592271013187 50000 +17592271226081 11000 +17592274454436 50000 +17592274454422 50000 +17592274454429 50000 +17592274243108 50000 +17592274243068 54100 +17592271226545 11000 +17592274454602 50000 +17592271225737 11000 +17592271225480 11000 +17592273963728 11000 +17592271429059 11000 +17592272494154 51400 +17592274243246 50000 +17592271241516 11000 +17592271241336 11000 +17592271241815 11000 +17592271285494 11000 +17592271285505 25500 +17592271285478 11000 +17592271285486 11000 +17592271285470 11000 +17592274243116 54100 +17592274243156 74100 +17592271676208 54100 +17592271428923 11000 +17592271428914 11000 +17592271428939 11000 +17592271428978 11000 +17592271676858 54700 +17592271429033 11000 +17592271285462 11000 +17592274454456 50000 +17592274243140 52200 +17592272494162 51400 +17592274243204 50000 +17592274243212 51130 +17592274243222 50000 +17592274243230 50000 +17592271676170 50000 +17592271428906 75100 +17592271428931 11000 +17592271429025 11000 +17592271429051 11000 +17592271429042 11000 +17592272494253 51400 +17592271428889 11000 +17592271428898 11000 +17592271428873 11000 +17592271428881 11000 +17592271739964 11000 +17592271739956 25500 +17592271739972 11000 +17592271740063 11000 +17592271740055 11000 +17592272494261 51400 +17592271676870 54700 +17592271739931 11000 +17592271739947 11000 +17592274454447 50000 +17592274243238 50000 +17592271676168 50000 +17592271983587 11000 +17592271739939 11000 +17592274243100 54700 +17592272494269 51400 +17592272218529 54700 +17592272218527 54700 +17592271983577 11000 +17592272217397 54100 +17592271740081 82300 +17592272359876 25500 +17592271983574 11000 +17592272217362 50000 +17592275638535 50000 +17592272359826 11000 +17592272359836 11000 +17592275638638 51400 +17592272359844 11000 +17592272359852 11000 +17592272359860 11000 +17592272359868 11000 +17592275638447 50000 +17592275638476 51130 +17592275638395 50000 +17592275638432 50000 +17592272359769 11000 +17592272359777 25500 +17592272359818 11000 +17592272359785 25500 +17592272359793 11000 +17592272359802 11000 +17592272359810 11000 +17592275638646 51400 +17592272359753 11000 +17592272359761 11000 +17592272359721 11000 +17592272359729 11000 +17592272359737 11000 +17592272359745 11000 +17592272359893 25500 +17592272359688 11000 +17592272359696 11000 +17592272359704 11000 +17592272359712 11000 +17592272359672 25500 +17592272359680 11000 +17592275638654 51400 +17592272217360 50000 +17592272359901 11000 +17592275638662 51400 +17592275638362 50000 +17592275638372 50000 +17592275638380 50000 +17592272359909 11000 +17592272359987 11000 +17592272359885 11000 +17592275638670 51400 +17592275638354 50000 +17592272360003 11000 +17592272359995 11000 +17592273035054 11000 +17592273035063 11000 +17592272494081 51400 +17592273623466 54100 +17592272360011 11000 +17592273034984 11000 +17592273034848 11000 +17592273034960 11000 +17592273034919 11000 +17592273623430 50000 +17592275638678 51400 +17592275638326 50000 +17592275638336 50000 +17592275638344 54300 +17592275638300 52200 +17592273035072 25500 +17592273034782 11000 +17592273034832 11000 +17592273034823 11000 +17592273034840 11000 +17592273034799 11000 +17592273034791 11000 +17592275638686 51400 +17592273034766 11000 +17592273034758 11000 +17592273034774 11000 +17592273034733 11000 +17592273034750 11000 +17592273034741 25500 +17592273034815 11000 +17592273034807 11000 +17592275638694 51400 +17592273034717 11000 +17592273034725 11000 +17592273623428 50000 +17592275638310 50000 +17592275638318 50000 +17592275638290 50000 +17592273623727 54700 +17592273623729 54700 +17592273584068 11000 +17592273584051 11000 +17592273584060 11000 +17592275638702 51400 +17592273623697 54400 +17592273584076 11000 +17592273584043 11000 +17592273623454 54100 +17592275638282 54100 +17592273584019 11000 +17592273584027 11000 +17592273584003 11000 +17592273584011 11000 +17592275638234 50000 +17592273584035 11000 +17592275638710 51400 +17592273623426 50000 +17592273584100 11000 +17592275638266 50000 +17592275638274 51130 +17592275638258 50000 +17592273584084 11000 +17592273584092 11000 +17592275638718 51400 +17592273584109 25500 +17592273584214 11000 +17592273584222 11000 +17592273584206 25500 +17592273584177 11000 +17592273583856 11000 +17592273583962 11000 +17592273583970 25500 +17592273583978 11000 +17592273583986 11000 +17592273583864 11000 +17592273583873 11000 +17592273583848 11000 +17592275638242 52200 +17592275638726 51400 +17592273623707 54400 +17592273583995 11000 +17592275638226 50000 +17592277421649 82600 +17592273963336 11000 +17592273623424 50000 +17592275638250 50000 +17592273623717 54400 +17592275638202 54700 +17592275638210 54700 +17592275638180 54200 +17592275638218 50000 +17592273963328 11000 +17592273963320 11000 +17592273963312 11000 +17592273963304 11000 +17592275638734 51400 +17592275638188 74100 +17592273963394 11000 +17592273963384 11000 +17592273963376 11000 +17592274406094 54100 +17592275638164 50000 +17592275638172 50000 +17592275638148 51130 +17592275638156 50000 +17592273963360 11000 +17592273963352 11000 +17592273963344 11000 +17592275638742 51400 +17592273963368 11000 +17592273965713 11000 +17592274406082 50000 +17592273964445 11000 +17592273965005 11000 +17592275639800 51400 +17592273964666 11000 +17592274461078 25500 +17592273965104 11000 +17592274461518 11000 +17592273965730 11000 +17592274459844 11000 +17592274474140 25500 +17592274460549 11000 +17592274460216 25500 +17592274460231 11000 +17592274460906 11000 +17592274459312 11000 +17592275639808 51400 +17592274473411 11000 +17592275638132 50000 +17592275638140 51130 +17592275638120 50000 +17592274458217 11000 +17592274458900 11000 +17592274406080 50000 +17592275639816 51400 +17592274568050 11000 +17592274568058 11000 +17592274568066 11000 +17592275638102 50000 +17592283072255 11000 +17592275079385 54100 +17592274568026 25500 +17592274568034 11000 +17592274568042 11000 +17592275638073 51130 +17592275638110 54100 +17592275638013 54100 +17592275638023 54700 +17592275638031 50000 +17592275639824 51400 +17592275079601 54700 +17592275079372 50000 +17592274567994 11000 +17592274568002 11000 +17592274568010 11000 +17592274568018 11000 +17592278870270 51400 +17592275214809 25500 +17592275214817 11000 +17592275214793 25500 +17592275214801 25200 +17592274579438 82300 +17592274579446 74150 +17592275214825 11000 +17592275214785 11000 +17592275214753 25500 +17592275215033 11000 +17592275214969 11000 +17592275214953 11000 +17592282008688 52200 +17592274831117 25200 +17592278870262 51400 +17592275214937 11000 +17592275214945 11000 +17592275214866 11000 +17592282009092 50000 +17592278870232 51130 +17592275079370 50000 +17592282010363 50000 +17592275214841 11000 +17592275214833 11000 +17592281478232 51400 +17592275214777 11000 +17592275214761 11000 +17592275214769 11000 +17592278870278 51400 +17592275215025 11000 +17592275393941 54100 +17592275214977 11000 +17592275214961 25500 +17592275214985 11000 +17592275214993 11000 +17592275393928 50000 +17592282009477 50000 +17592282009469 50000 +17592275386086 54400 +17592278870286 51400 +17592282010391 50000 +17592282010371 50000 +17592281496209 54100 +17592275215017 11000 +17592276322987 11000 +17592276322970 11000 +17592276322978 11000 +17592275215001 11000 +17592275215009 11000 +17592278870310 51400 +17592276323011 11000 +17592276323023 11000 +17592276323031 11000 +17592276322995 11000 +17592276323003 11000 +17592276322954 11000 +17592276322962 25500 +17592276322272 11000 +17592276322600 11000 +17592276322583 25500 +17592276322890 11000 +17592276322898 11000 +17592276322906 11000 +17592276322882 11000 +17592276322946 25500 +17592275386096 54400 +17592278870302 51400 +17592276322866 11000 +17592276322874 11000 +17592276096421 11000 +17592275393926 50000 +17592282008696 50000 +17592282009084 50000 +17592282010411 50000 +17592276322914 11000 +17592276322922 11000 +17592276096437 11000 +17592278870294 51400 +17592276322938 11000 +17592276096445 11000 +17592276096461 11000 +17592276096453 25500 +17592276096429 11000 +17592282008832 50000 +17592276096408 11000 +17592276096215 11000 +17592282008672 52200 +17592276938323 54700 +17592278870318 51400 +17592278870240 51130 +17592282010517 50000 +17592276937526 50000 +17592276096469 11000 +17592276096569 11000 +17592276096561 11000 +17592276096553 11000 +17592276096545 11000 +17592276096537 25500 +17592276096521 11000 +17592278870326 51400 +17592276096477 25500 +17592276096513 11000 +17592276096501 11000 +17592276096493 11000 +17592276096485 11000 +17592276096529 11000 +17592276316164 25500 +17592276317186 11000 +17592281478674 54400 +17592278870334 51400 +17592276316565 11000 +17592276322930 11000 +17592276317423 11000 +17592282008824 50000 +17592282008816 50000 +17592276317874 11000 +17592281479617 54700 +17592282010525 50000 +17592276937524 50000 +17592281479825 54700 +17592276318533 11000 +17592276320608 11000 +17592278870342 51400 +17592276319118 11000 +17592281496185 54100 +17592276319457 11000 +17592276321402 11000 +17592276938338 54700 +17592276318515 25500 +17592276937578 54100 +17592281496177 74100 +17592276938310 54400 +17592276996447 11000 +17592278870248 51130 +17592278870350 51400 +17592276937522 50000 +17592282010533 50000 +17592276996642 11000 +17592276996634 11000 +17592277420516 11000 +17592276996609 11000 +17592276484783 25200 +17592276996577 25500 +17592278870358 51400 +17592276996618 11000 +17592276996593 11000 +17592276996585 11000 +17592276996601 11000 +17592277419065 11000 +17592277420564 11000 +17592277420548 11000 +17592277420556 25500 +17592277420532 11000 +17592277420540 11000 +17592277420524 11000 +17592278870366 51400 +17592276996626 11000 +17592282008680 52200 +17592282008802 50000 +17592277420499 11000 +17592277420507 11000 +17592277420491 11000 +17592276937520 50000 +17592278870374 51400 +17592276996439 11000 +17592276996471 11000 +17592282010541 50000 +17592277802643 11000 +17592276996463 25500 +17592276996455 11000 +17592277394387 54100 +17592282008794 50000 +17592277802635 11000 +17592277802627 11000 +17592277802619 11000 +17592277802611 11000 +17592278870383 51400 +17592276937518 50000 +17592282010549 50000 +17592277394377 54700 +17592281496201 54100 +17592277420371 11000 +17592277420379 25500 +17592277420363 11000 +17592278870496 51400 +17592277420403 11000 +17592277420387 11000 +17592277420395 25500 +17592277420120 11000 +17592277419328 11000 +17592277420451 11000 +17592277420459 25500 +17592277420419 11000 +17592277420427 11000 +17592277420411 11000 +17592277419312 11000 +17592278870488 51400 +17592277420483 11000 +17592277420467 11000 +17592277420475 11000 +17592278870224 74610 +17592281496217 52200 +17592282008712 50000 +17592282008704 50000 +17592277420355 11000 +17592277420347 11000 +17592277420135 11000 +17592277420144 82300 +17592282010567 50000 +17592277394351 50000 +17592277802692 11000 +17592277802684 11000 +17592277802676 11000 +17592277802660 11000 +17592281475284 51400 +17592278105059 54100 +17592277802668 11000 +17592277802652 11000 +17592278227684 11000 +17592278227644 25500 +17592281479004 54300 +17592278104307 50000 +17592281475292 51400 +17592282010557 50000 +17592278227700 11000 +17592278227692 11000 +17592281496193 54100 +17592278227676 11000 +17592278227668 11000 +17592278227660 11000 +17592278227652 11000 +17592281475300 51400 +17592278227708 11000 +17592278227490 11000 +17592278227482 25500 +17592278227474 11000 +17592278227636 11000 +17592278227628 11000 +17592278227620 11000 +17592278227612 11000 +17592278227604 25500 +17592278227552 25500 +17592278227538 11000 +17592278227530 11000 +17592278227596 11000 +17592278227588 11000 +17592278227580 11000 +17592278227572 11000 +17592281475308 51400 +17592281476345 50000 +17592278104305 50000 +17592278105045 54700 +17592281475702 50000 +17592278227514 11000 +17592278227506 11000 +17592278227498 11000 +17592281475678 50000 +17592281476167 54700 +17592278869950 11000 +17592278869942 11000 +17592278869966 11000 +17592278869958 11000 +17592281475316 51400 +17592278870144 11000 +17592278870160 11000 +17592278870152 25500 +17592281476337 50000 +17592281475324 51400 +17592278870122 11000 +17592278870136 11000 +17592278839332 54400 +17592278870082 11000 +17592278870098 11000 +17592278839375 54700 +17592278870106 11000 +17592278839387 50000 +17592278227522 11000 +17592281475710 50000 +17592281475686 54100 +17592281475332 51400 +17592278870216 11000 +17592278870014 11000 +17592278870006 11000 +17592278870030 11000 +17592278870022 11000 +17592278870046 11000 +17592278870038 25500 +17592278869974 25500 +17592278870062 11000 +17592278870054 11000 +17592278870070 11000 +17592281475340 51400 +17592278870176 11000 +17592278870168 11000 +17592278869990 11000 +17592278839313 54400 +17592281476329 50000 +17592279076774 11000 +17592279076790 11000 +17592278870184 11000 +17592278839385 50000 +17592279075847 11000 +17592279076766 11000 +17592279076758 11000 +17592279076340 11000 +17592281475348 51400 +17592281475670 74250 +17592281475654 54400 +17592281475646 74100 +17592279324088 54700 +17592279324108 54100 +17592279075834 25500 +17592279076782 11000 +17592279075693 11000 +17592279673707 11000 +17592279324075 50000 +17592281476321 50000 +17592281475356 51400 +17592279673699 11000 +17592279673587 11000 +17592279673683 11000 +17592279673691 11000 +17592279673667 11000 +17592279673675 11000 +17592281475721 50000 +17592281475694 54100 +17592281475662 54700 +17592281478493 54000 +17592280187257 11000 +17592281475364 51400 +17592279673619 11000 +17592279673627 25500 +17592279673651 11000 +17592279673659 11000 +17592279673635 11000 +17592279673643 11000 +17592279673715 25500 +17592279673723 11000 +17592279673747 11000 +17592279673755 11000 +17592279673731 11000 +17592279673739 11000 +17592281475396 51400 +17592279673595 11000 +17592279673603 11000 +17592279673611 11000 +17592279324073 50000 +17592281476313 50000 +17592280187265 11000 +17592280187289 11000 +17592280187281 11000 +17592280187273 11000 +17592281475737 50000 +17592280187297 11000 +17592280187320 11000 +17592280187312 11000 +17592281475372 51400 +17592280187368 11000 +17592281475748 50000 +17592281476305 50000 +17592280187328 11000 +17592280187360 11000 +17592280187352 11000 +17592280187344 11000 +17592280187336 11000 +17592281475380 51400 +17592280187448 11000 +17592280187249 11000 +17592280187241 11000 +17592280187164 11000 +17592281475388 51400 +17592280187212 11000 +17592280187456 11000 +17592280187472 25500 +17592280187384 11000 +17592280187376 25500 +17592280187416 11000 +17592280187408 25500 +17592280187400 11000 +17592280187440 11000 +17592280187464 11000 +17592281476175 52200 +17592281475404 51400 +17592280187392 11000 +17592279903262 50000 +17592281475729 50000 +17592280187488 11000 +17592280187480 11000 +17592281476297 74250 +17592281475412 51400 +17592280187196 11000 +17592280187188 11000 +17592280187233 11000 +17592280187520 11000 +17592281307766 51130 +17592281475756 50000 +17592281307730 74610 +17592281476361 51130 +17592282150159 25500 +17592281476353 50000 +17592282150135 11000 +17592282150127 11000 +17592282150111 11000 +17592280208138 82300 +17592282150175 11000 +17592282150167 11000 +17592282150151 11000 +17592282150095 11000 +17592283804824 50000 +17592281141094 54700 +17592281141096 54700 +17592281141074 50000 +17592282150119 11000 +17592282150223 11000 +17592282150215 25500 +17592282150191 11000 +17592282150183 11000 +17592283803376 51400 +17592282150143 11000 +17592282150207 11000 +17592282150199 25500 +17592283805007 52200 +17592283805047 50000 +17592282150355 11000 +17592283804912 51130 +17592282150103 11000 +17592281141072 50000 +17592282150371 11000 +17592283804816 54300 +17592283803384 51400 +17592282150419 11000 +17592282150411 11000 +17592282150443 11000 +17592282150435 11000 +17592281902396 54100 +17592283806740 54100 +17592282150427 11000 +17592282150379 11000 +17592282150469 11000 +17592282094468 25500 +17592282150347 11000 +17592283804999 52200 +17592281902383 50000 +17592283804840 50000 +17592283804808 50000 +17592283806764 54100 +17592283806724 54700 +17592283803419 51400 +17592282150283 11000 +17592282150273 25500 +17592282150263 11000 +17592282150363 11000 +17592282150339 11000 +17592282150331 11000 +17592282150323 11000 +17592283803435 51400 +17592282150255 11000 +17592282150247 25500 +17592282150239 11000 +17592282150403 11000 +17592282094548 11000 +17592282094412 11000 +17592282094404 11000 +17592283806691 50000 +17592282094436 11000 +17592282094420 11000 +17592283805055 50000 +17592281902381 50000 +17592283804800 50000 +17592282094460 11000 +17592282094452 11000 +17592282094444 11000 +17592282094428 11000 +17592282150231 11000 +17592283804931 51130 +17592283806748 54200 +17592283803443 51400 +17592282150395 11000 +17592282150387 11000 +17592283555195 11000 +17592283555225 11000 +17592283555125 25500 +17592283555149 11000 +17592282829863 54700 +17592282829865 54700 +17592283806756 54000 +17592283803360 74100 +17592283555240 11000 +17592283804856 50000 +17592283804792 50000 +17592283554975 11000 +17592282829850 50000 +17592283803467 51400 +17592283555117 11000 +17592283555141 11000 +17592283555025 11000 +17592283804784 50000 +17592283803476 51400 +17592283555180 11000 +17592283555165 25500 +17592283555157 11000 +17592283554994 11000 +17592283555002 11000 +17592283555272 11000 +17592283555133 11000 +17592283555280 11000 +17592283555288 11000 +17592283805063 50000 +17592283804952 51130 +17592283804864 50000 +17592283804776 50000 +17592282829848 50000 +17592283555314 11000 +17592283555689 11000 +17592283803499 51400 +17592283555331 11000 +17592283555844 11000 +17592283555248 11000 +17592283555264 11000 +17592283555256 11000 +17592283806772 54100 +17592283806716 54100 +17592283281834 54100 +17592283555859 11000 +17592283555210 11000 +17592283804872 50000 +17592283804675 50000 +17592283803507 51400 +17592283556037 11000 +17592283555985 11000 +17592283556074 11000 +17592283556015 11000 +17592283556052 11000 +17592283803515 51400 +17592283555948 11000 +17592283555963 11000 +17592283555901 11000 +17592283555893 11000 +17592283804983 51130 +17592283804667 50000 +17592283281844 50000 +17592283556000 11000 +17592283555885 11000 +17592283806732 54700 +17592283803531 51400 +17592283938430 54700 +17592283938417 54400 +17592283556082 11000 +17592283556090 11000 +17592283805015 52200 +17592283938413 54400 +17592283556134 11000 +17592283556149 11000 +17592283556104 25500 +17592283556119 11000 +17592286544554 50000 +17592283805039 50000 +17592283804888 50000 +17592283804659 50000 +17592283803547 51400 +17592284810088 11000 +17592284810096 11000 +17592284810064 11000 +17592284810080 11000 +17592283803555 51400 +17592284810104 11000 +17592284810112 11000 +17592284810072 11000 +17592283803337 82300 +17592284810128 11000 +17592284810136 11000 +17592284810056 11000 +17592284810048 11000 +17592284810120 11000 +17592284810032 25500 +17592284810040 11000 +17592283938403 50000 +17592286687652 50000 +17592286687628 50000 +17592284809763 11000 +17592284809771 11000 +17592284809779 11000 +17592286687438 51400 +17592286691400 74700 +17592284809737 11000 +17592284809747 11000 +17592284809755 11000 +17592284586259 54100 +17592284810024 11000 +17592284810000 11000 +17592284809720 11000 +17592286687684 50000 +17592286687660 50000 +17592286687446 51400 +17592284586163 50000 +17592286687388 52200 +17592286691480 51130 +17592286687356 52200 +17592284809992 11000 +17592284810016 11000 +17592286687454 51400 +17592284809960 11000 +17592284809968 25500 +17592284809976 11000 +17592284809984 11000 +17592284809936 11000 +17592284809952 25500 +17592284809928 25500 +17592284809944 11000 +17592284809912 11000 +17592284809920 11000 +17592284809819 11000 +17592286690352 50000 +17592286687465 51400 +17592284586161 50000 +17592284809795 11000 +17592284809803 11000 +17592284809811 11000 +17592284809787 11000 +17592286691488 50000 +17592284810160 11000 +17592284810168 11000 +17592286149552 11000 +17592284810176 11000 +17592285243101 54700 +17592285243038 50000 +17592286691504 54100 +17592286691496 54700 +17592286149560 11000 +17592284810152 11000 +17592286149568 11000 +17592284810144 11000 +17592286148510 11000 +17592286148442 11000 +17592286148385 11000 +17592285243036 50000 +17592286687539 51400 +17592286687404 50000 +17592286687396 50000 +17592286687364 52200 +17592286691432 74100 +17592284810008 11000 +17592286149205 11000 +17592286148458 11000 +17592286149063 11000 +17592286149033 11000 +17592286687555 51400 +17592286149382 11000 +17592286149342 11000 +17592286149498 25500 +17592286149489 11000 +17592286149469 11000 +17592286149432 11000 +17592286149396 25500 +17592286149410 11000 +17592286148981 11000 +17592286687547 51400 +17592286149542 11000 +17592286149520 11000 +17592286690713 50000 +17592285243034 50000 +17592286149025 11000 +17592286148996 11000 +17592286149480 11000 +17592286148965 11000 +17592286148973 11000 +17592286148957 11000 +17592286687563 51400 +17592286691512 54100 +17592286148949 11000 +17592286687571 51400 +17592286148933 11000 +17592286148941 11000 +17592285956451 50000 +17592285956464 54100 +17592286687579 51400 +17592286148904 11000 +17592286148853 11000 +17592286691580 74700 +17592286148831 11000 +17592286148730 11000 +17592286691368 50000 +17592286687587 51400 +17592286148712 11000 +17592286148720 11000 +17592286148704 11000 +17592286148689 11000 +17592286149362 25500 +17592286148553 11000 +17592286149055 11000 +17592286148875 11000 +17592286148809 25500 +17592286148674 11000 +17592286149125 11000 +17592286687595 51400 +17592286148787 25500 +17592286687372 52200 +17592286149191 25500 +17592286149183 25500 +17592286687636 50000 +17592285956449 50000 +17592286691534 54700 +17592286687412 50000 +17592286691376 50000 +17592286149454 25500 +17592286149328 25500 +17592286687603 51400 +17592286149168 25500 +17592286149147 25500 +17592286149071 25500 +17592286148640 25500 +17592286148618 25500 +17592286149878 25200 +17592286696698 54700 +17592286687611 51400 +17592286691572 54100 +17592286691520 54100 +17592286687422 50000 +17592286691384 50000 +17592286696395 50000 +17592287078653 25500 +17592287371584 25500 +17592287371671 25500 +17592287184717 25500 +17592287184731 25500 +17592287371122 25500 +17592286687620 51400 +17592287285875 25500 +17592287267690 25500 +17592287266801 25500 +17592287078645 25500 +17592287184668 25500 +17592287184692 25500 +17592287184700 25500 +17592287184708 25500 +17592287078637 25500 +17592287184676 25500 +17592286687380 52200 +17592287078629 25500 +17592287184684 25500 +17592286830506 25500 +17592286830514 25500 +17592286687644 50000 +17592286687430 50000 +17592286691424 54300 +17592286691392 50000 +17592286696393 50000 +17592287078621 25500 +17592287076222 82300 +17592287186873 25500 +17592287078580 25500 +17592287187695 25500 +17592287185887 25500 +17592287189264 25500 +17592287187307 25500 +17592287268399 25500 +17592287188897 25500 +17592287180732 50000 +17592287270285 25500 +17592287078562 25500 +17592287385556 25500 +17592287371896 25500 +17592287385571 25500 +17592287268912 25500 +17592287269295 25500 +17592287184628 25500 +17592287184741 25500 +17592287186284 25500 +17592287371911 25500 +17592287184893 25500 +17592287185139 25500 +17592287185296 25500 +17592287184636 25500 +17592287184652 25500 +17592287266551 25500 +17592287184644 25500 +17592287184660 25500 +17592287180730 50000 +17592252716683 50000 +17592252716687 50000 +17592256936295 50000 +17592252716685 50000 +17592252892546 50000 +17592252892538 50000 +17592252892502 50000 +17592252892494 50000 +17592253143948 50000 +17592256936309 50000 +17592256936297 50000 +17592252892554 50000 +17592253143950 50000 +17592253605730 50000 +17592253569425 50000 +17592256936311 50000 +17592256936299 50000 +17592253569443 50000 +17592256936313 50000 +17592253569433 50000 +17592256936301 50000 +17592254456422 50000 +17592257631396 54100 +17592253835644 50000 +17592253835661 50000 +17592253835669 50000 +17592254231582 50000 +17592256936315 50000 +17592256936303 50000 +17592254231590 50000 +17592254231624 50000 +17592253835652 50000 +17592254231632 50000 +17592256936317 50000 +17592256936305 50000 +17592254456418 50000 +17592254456426 50000 +17592254777430 50000 +17592254777422 50000 +17592255343060 50000 +17592254777438 50000 +17592255343046 50000 +17592255343062 50000 +17592255343034 50000 +17592255396304 50000 +17592255343064 50000 +17592255343042 50000 +17592256013336 50000 +17592256013353 50000 +17592256936278 50000 +17592256013345 50000 +17592256262034 50000 +17592256936214 50000 +17592256262532 50000 +17592256262524 50000 +17592256936280 50000 +17592256936216 50000 +17592257631231 50000 +17592259075634 50000 +17592256936128 50000 +17592257631197 50000 +17592257631258 50000 +17592259075636 50000 +17592256948060 50000 +17592256936120 50000 +17592256936122 50000 +17592256936112 50000 +17592256936218 50000 +17592257631266 50000 +17592259075638 50000 +17592257631199 50000 +17592256936124 50000 +17592257631302 50000 +17592257631402 54100 +17592257265761 50000 +17592257265769 50000 +17592257631201 50000 +17592257631274 50000 +17592259075640 50000 +17592257631292 50000 +17592257631203 50000 +17592257631304 50000 +17592257631306 50000 +17592259075642 50000 +17592258052334 50000 +17592258052332 50000 +17592257909248 50000 +17592257909240 50000 +17592257909256 50000 +17592259075644 50000 +17592258052336 50000 +17592258430465 50000 +17592258430476 50000 +17592259075646 50000 +17592259075648 50000 +17592259075868 50000 +17592260036053 50000 +17592259075886 50000 +17592259075846 50000 +17592260036061 50000 +17592259075848 50000 +17592260036063 50000 +17592259075862 50000 +17592259075864 50000 +17592260036055 50000 +17592260036065 50000 +17592259596621 50000 +17592259596659 50000 +17592259596623 50000 +17592260036067 50000 +17592260036057 50000 +17592259596611 50000 +17592259953955 50000 +17592259953896 50000 +17592260036069 50000 +17592260036219 50000 +17592261123675 50000 +17592260036271 54100 +17592260036229 50000 +17592261123683 50000 +17592260499118 50000 +17592260499100 50000 +17592261123685 50000 +17592261123677 50000 +17592260499108 50000 +17592261123687 50000 +17592261245405 50000 +17592261123679 50000 +17592261124597 50000 +17592261124579 50000 +17592261123689 50000 +17592261245401 50000 +17592262753448 50000 +17592261123693 54100 +17592261124589 50000 +17592262753456 50000 +17592262753450 50000 +17592262753458 50000 +17592262753640 50000 +17592262753460 50000 +17592262753452 50000 +17592262753656 50000 +17592262753523 50000 +17592262753665 50000 +17592262753648 50000 +17592262753531 50000 +17592263404537 54100 +17592263404557 50000 +17592263404573 50000 +17592263404565 50000 +17592263404548 50000 +17592263931491 50000 +17592263931499 50000 +17592263931440 50000 +17592265129593 50000 +17592265129601 50000 +17592265129585 50000 +17592265129569 50000 +17592265129577 50000 +17592266396464 50000 +17592267634423 50000 +17592266396448 50000 +17592266396456 50000 +17592268799710 50000 +17592267634425 50000 +17592266395988 50000 +17592266396472 50000 +17592266396440 50000 +17592267634429 50000 +17592267634427 50000 +17592267641160 50000 +17592268799714 50000 +17592267640954 50000 +17592267641172 50000 +17592268799716 50000 +17592267640758 54100 +17592267640962 50000 +17592272218830 50000 +17592272218816 50000 +17592272218832 50000 +17592272218834 50000 +17592268799850 54100 +17592272218818 50000 +17592268800557 50000 +17592269394980 50000 +17592269394989 50000 +17592268800430 50000 +17592272218836 50000 +17592272218820 50000 +17592268800441 50000 +17592272218838 50000 +17592268800565 50000 +17592272218822 50000 +17592272218840 50000 +17592272218824 50000 +17592270401923 50000 +17592270401931 50000 +17592269865583 50000 +17592269865511 50000 +17592272218842 50000 +17592270401914 50000 +17592270401956 50000 +17592269865592 50000 +17592269865503 50000 +17592272218826 50000 +17592269865600 50000 +17592272219035 50000 +17592272218945 50000 +17592272218920 50000 +17592272219074 50000 +17592283281858 50000 +17592255176189 82300 +17592256843481 50000 +17592256843559 25500 +17592260036488 54700 +17592252401571 82100 +17592252401563 82100 +17592259016829 54300 +17592257221084 74100 +17592257221071 74100 +17592254870030 75200 +17592252411139 50000 +17592252669201 25500 +17592252669193 25500 +17592253629806 50000 +17592252401885 50000 +17592252401672 85100 +17592252401656 86400 +17592252401664 50000 +17592252401647 83500 +17592252401603 83100 +17592252401595 83100 +17592252669227 25500 +17592253629652 50000 +17592253629798 50000 +17592252669803 25500 +17592253629790 50000 +17592252669260 25500 +17592253629782 50000 +17592253629838 50000 +17592253629913 74450 +17592253629937 50000 +17592252676525 25500 +17592253630022 50000 +17592252669672 25500 +17592252669373 25500 +17592252669285 25500 +17592252785553 25500 +17592253629774 50000 +17592252751899 25500 +17592252669252 25500 +17592253392187 25500 +17592252401680 83100 +17592252915274 25500 +17592253629765 50000 +17592252915826 25500 +17592252915419 25500 +17592253629757 50000 +17592253630014 50000 +17592252915688 25500 +17592252915680 25500 +17592253629749 50000 +17592252915834 25500 +17592253131651 25500 +17592253629741 50000 +17592253629830 50000 +17592253629854 50000 +17592252912806 50000 +17592253629644 50000 +17592253392162 25500 +17592253392170 25500 +17592253629733 50000 +17592253392179 25500 +17592253392195 25500 +17592253629862 74450 +17592253630006 50000 +17592253131659 25500 +17592253629725 50000 +17592253392203 25500 +17592253392211 25500 +17592254042462 74500 +17592253392219 25500 +17592253392259 25500 +17592253629998 50000 +17592253629717 50000 +17592253392227 25500 +17592253629709 50000 +17592253392235 25500 +17592253392243 25500 +17592253629990 50000 +17592252401964 50000 +17592253854821 25500 +17592253629701 50000 +17592253392251 25500 +17592253629929 50000 +17592253933075 25500 +17592253399096 74700 +17592253629693 50000 +17592253629822 50000 +17592253392268 25500 +17592253970002 25500 +17592253638497 50000 +17592260036496 54700 +17592253854813 25500 +17592253854830 25500 +17592253629636 50000 +17592253629661 54400 +17592253629669 54400 +17592253629685 50000 +17592253629846 50000 +17592253629921 74450 +17592253629982 50000 +17592253630031 54400 +17592253630039 54400 +17592253970010 25500 +17592253970034 25500 +17592253822908 25500 +17592253509899 25500 +17592263518824 54400 +17592253629560 50000 +17592253629620 54700 +17592253629628 54700 +17592253629677 50000 +17592253629973 50000 +17592253970018 25500 +17592253970026 25500 +17592253970042 25500 +17592253638435 50000 +17592252411187 50000 +17592253569849 25500 +17592253629596 83100 +17592253629604 83500 +17592253629612 84100 +17592253970050 25500 +17592253638444 25500 +17592254870667 50000 +17592253970059 25500 +17592254870510 50000 +17592254870675 50000 +17592253933059 25500 +17592254870683 50000 +17592253933004 25500 +17592253970067 25500 +17592254870699 50000 +17592253970075 25500 +17592253933353 25500 +17592254870324 50000 +17592254870502 74610 +17592254870585 50000 +17592259013604 74450 +17592254870707 50000 +17592253970091 25500 +17592253970083 25500 +17592253970188 25500 +17592254870448 25200 +17592254870593 50000 +17592254870715 50000 +17592254201401 25500 +17592253962578 82100 +17592253962586 82100 +17592254870071 50000 +17592254870601 50000 +17592254201377 25500 +17592254201393 25500 +17592254870723 50000 +17592254201385 25500 +17592254870739 50000 +17592254201409 25500 +17592254201417 25500 +17592254338906 25500 +17592254870352 50000 +17592254870609 50000 +17592254239868 25500 +17592254239898 25500 +17592254870747 50000 +17592259016837 54300 +17592254167490 25500 +17592254869975 54100 +17592254870046 74700 +17592254870193 84100 +17592254671766 25500 +17592255343805 25500 +17592254870755 50000 +17592254549757 25500 +17592254671758 25500 +17592254870763 50000 +17592254317925 50000 +17592254895600 25500 +17592254549749 25500 +17592254338914 25500 +17592254338898 25500 +17592254338922 25500 +17592254338930 25500 +17592254870022 54700 +17592254870079 50000 +17592259013596 74450 +17592254870485 50000 +17592254870617 50000 +17592254870771 50000 +17592254895608 25500 +17592254549716 25500 +17592254549724 25500 +17592254549740 25500 +17592255942629 25500 +17592254679974 25500 +17592254870494 86400 +17592254870627 50000 +17592254549708 25500 +17592254549732 25500 +17592254549980 25500 +17592254870779 50000 +17592254679990 25500 +17592254679982 25500 +17592254870650 50000 +17592254870639 50000 +17592254679998 25500 +17592254870659 50000 +17592254870038 74700 +17592254870063 50000 +17592254833421 25500 +17592255175589 25500 +17592254870691 50000 +17592255609090 50000 +17592254870005 54400 +17592254870054 74700 +17592254870301 50000 +17592254833532 25500 +17592254870382 50000 +17592254870519 50000 +17592254870731 50000 +17592254860817 25500 +17592254895659 25500 +17592254870014 54700 +17592254869997 74450 +17592254833399 25500 +17592255175598 25500 +17592255175881 25500 +17592254870788 50000 +17592254870844 25500 +17592254870836 25500 +17592254870867 25500 +17592254870852 25500 +17592254895584 25500 +17592255608927 50000 +17592255609082 54700 +17592255609160 50000 +17592257221194 74610 +17592254870127 83100 +17592254870168 83100 +17592255175667 25500 +17592255175935 25500 +17592255175943 25500 +17592255609050 50000 +17592255175951 25500 +17592255608943 50000 +17592255176059 25500 +17592255176045 25500 +17592255176075 25500 +17592255608935 50000 +17592255609144 50000 +17592255240223 25500 +17592255608951 50000 +17592255609066 50000 +17592255158730 25500 +17592255343813 25500 +17592255343821 25500 +17592255257966 25500 +17592255176173 25500 +17592255276678 25500 +17592255608959 50000 +17592255609118 50000 +17592257221170 83100 +17592255942492 25500 +17592255942573 25500 +17592255942565 25500 +17592255942581 25500 +17592255608975 50000 +17592255609042 74450 +17592255609074 50000 +17592255609127 50000 +17592255609136 74610 +17592255609152 50000 +17592255942605 25500 +17592255942597 25500 +17592255942613 25500 +17592255942589 25500 +17592255608967 50000 +17592257221093 74100 +17592256081711 25500 +17592255942662 25500 +17592255942654 25500 +17592255942646 25500 +17592255609058 50000 +17592256066400 25500 +17592255942670 25500 +17592255942686 25500 +17592255942678 25500 +17592257212385 50000 +17592255608903 25500 +17592255608911 50000 +17592255608919 83100 +17592255609191 82100 +17592255609282 82100 +17592255713037 74500 +17592257212276 50000 +17592257212268 50000 +17592257212393 50000 +17592255942695 25500 +17592255867073 25500 +17592257212244 50000 +17592255942710 25500 +17592255867081 25500 +17592257221186 74610 +17592256066170 25500 +17592256769347 50000 +17592255964524 25500 +17592256067150 25500 +17592257212228 54700 +17592257212211 50000 +17592257212341 74450 +17592257212409 50000 +17592257221162 74100 +17592256760522 50000 +17592256760504 50000 +17592256066779 25500 +17592256066771 25500 +17592257212102 50000 +17592257212195 50000 +17592257212284 50000 +17592257212428 50000 +17592256225538 25500 +17592256066410 25500 +17592257212292 50000 +17592256398178 25500 +17592256398186 25500 +17592256398194 25500 +17592257212419 50000 +17592256398202 25500 +17592256398210 25500 +17592257212301 50000 +17592256301003 25500 +17592257212436 50000 +17592256172563 74700 +17592257221202 74600 +17592257212110 50000 +17592257212086 54100 +17592257212236 54400 +17592257212220 50000 +17592256300995 25500 +17592256300978 25500 +17592257212444 50000 +17592259016845 54300 +17592257221210 72180 +17592257221235 25500 +17592257221227 84100 +17592257212252 50000 +17592257212452 50000 +17592256398218 25500 +17592256902927 25500 +17592256902895 25500 +17592257212309 50000 +17592257212349 74450 +17592257212460 50000 +17592256398226 25500 +17592257212118 50000 +17592256843456 74700 +17592257281791 74500 +17592256902903 25500 +17592257212468 50000 +17592257048708 25500 +17592256606394 25500 +17592256496465 25500 +17592257212317 50000 +17592256649309 25500 +17592256902878 25500 +17592256902919 25500 +17592256902911 25500 +17592257212476 50000 +17592256902935 25500 +17592257212325 50000 +17592259016753 74150 +17592257221031 50000 +17592256843464 25500 +17592257212187 50000 +17592257212203 52000 +17592256902951 25500 +17592257221039 50000 +17592256902965 25500 +17592257212260 50000 +17592256843992 25500 +17592256844066 25500 +17592257221047 50000 +17592257009540 25500 +17592257212361 74450 +17592257212333 50000 +17592257048642 25500 +17592257048634 25500 +17592259017217 50000 +17592257221219 50000 +17592259065123 54700 +17592259016909 50000 +17592259016958 50000 +17592257329559 25500 +17592257329551 25500 +17592257329525 25500 +17592259017225 50000 +17592257303751 25500 +17592259016988 73500 +17592257329567 25500 +17592270584636 50000 +17592257329673 25500 +17592257329665 25500 +17592257329657 25500 +17592259017233 50000 +17592259065216 54400 +17592257212094 86100 +17592257329681 25500 +17592257221178 83100 +17592259017241 50000 +17592257995724 25500 +17592257995716 25500 +17592259065297 86200 +17592257470318 25500 +17592259016917 50000 +17592259016996 50000 +17592259017249 50000 +17592259065180 55000 +17592259065159 54400 +17592259065059 74610 +17592259065207 54400 +17592259065197 54400 +17592259065225 54400 +17592257580620 25500 +17592259016901 74700 +17592257442160 25500 +17592257442168 25500 +17592257442176 25500 +17592257442184 25500 +17592259017257 50000 +17592257475368 25500 +17592257475359 25500 +17592259065026 50000 +17592259065132 54700 +17592257580538 25500 +17592262680235 74450 +17592257580546 25500 +17592259017004 50000 +17592259017265 50000 +17592257995571 25500 +17592259017764 50000 +17592256298336 25500 +17592257580628 25500 +17592259016925 50000 +17592257995579 25500 +17592257995595 25500 +17592257995587 25500 +17592257995611 25500 +17592257995603 25500 +17592257995619 25500 +17592260036806 50000 +17592257995708 25500 +17592257995627 25500 +17592257995645 25500 +17592257995637 25500 +17592259017788 50000 +17592257995732 25500 +17592259017797 50000 +17592257995756 25500 +17592259065188 50000 +17592257969710 25500 +17592259017020 50000 +17592259016949 50000 +17592259016933 50000 +17592257995748 25500 +17592257995764 25500 +17592259065036 50000 +17592257212401 50000 +17592259016877 75100 +17592259064514 50000 +17592257995740 25500 +17592257969726 25500 +17592262680219 74450 +17592257963904 50000 +17592259017028 50000 +17592258495315 25500 +17592258495305 25500 +17592259064766 50000 +17592259065149 54700 +17592259065342 50000 +17592259065361 50000 +17592259017089 50000 +17592258495323 25500 +17592258495419 25500 +17592259064795 50000 +17592258495331 25500 +17592258495339 25500 +17592259065287 75100 +17592258495429 25500 +17592258495438 25500 +17592259064824 50000 +17592258495446 25500 +17592258495454 25500 +17592258495480 25500 +17592258495462 25500 +17592259064852 50000 +17592256902886 25500 +17592260036691 50000 +17592259064922 50000 +17592258495470 25500 +17592258486344 25500 +17592259016893 54100 +17592259016885 54100 +17592259016941 50000 +17592259017097 50000 +17592259064940 50000 +17592258486354 25500 +17592258358001 82100 +17592259064965 50000 +17592259065400 50000 +17592262680203 74450 +17592259065459 50000 +17592259065506 50000 +17592261128876 54700 +17592258357991 82100 +17592258976706 25500 +17592259064956 50000 +17592258657429 25500 +17592258735510 25500 +17592259065410 54400 +17592259065372 50000 +17592259065451 50000 +17592260036594 54300 +17592259016869 84100 +17592258570369 50000 +17592258976723 25500 +17592258976714 25500 +17592258735535 25500 +17592259065470 50000 +17592258976732 25500 +17592259065004 50000 +17592258808027 25500 +17592258808035 25500 +17592258976758 25500 +17592259064948 50000 +17592259065383 50000 +17592259065478 50000 +17592258838578 25500 +17592258923609 25500 +17592258923600 25500 +17592258976776 25500 +17592259064988 50000 +17592259065432 54400 +17592258857004 25500 +17592259064996 50000 +17592259065424 54400 +17592258977254 25500 +17592259065496 50000 +17592284670925 52000 +17592258906883 25500 +17592259419246 25500 +17592259064974 50000 +17592262680179 74450 +17592259065442 54400 +17592259016769 86400 +17592259016761 83100 +17592259016861 83100 +17592259016853 83100 +17592259419262 25500 +17592259419254 25500 +17592259065167 50000 +17592259065392 50000 +17592259313489 25500 +17592259065571 25500 +17592260036514 54700 +17592260036480 83100 +17592260036675 50000 +17592260036860 50000 +17592259419278 25500 +17592259419270 25500 +17592259419294 25500 +17592259419286 25500 +17592259206517 25500 +17592260036852 50000 +17592259419328 25500 +17592259419310 25500 +17592260036683 50000 +17592260036868 50000 +17592259303933 25500 +17592259419352 25500 +17592259419368 25500 +17592259313497 25500 +17592260036464 54100 +17592260036644 50000 +17592260036626 50000 +17592260036610 50000 +17592260036838 50000 +17592259428820 25500 +17592260036586 50000 +17592260036822 50000 +17592259911973 25500 +17592259911965 25500 +17592259429033 25500 +17592262680187 74450 +17592260036578 74150 +17592260036472 83100 +17592260036652 50000 +17592260036602 74610 +17592260036715 50000 +17592259911981 25500 +17592259911989 25500 +17592259467695 50000 +17592259586636 25500 +17592260036570 71400 +17592260036522 54700 +17592260036634 50000 +17592260036814 50000 +17592259912013 25500 +17592259911997 25500 +17592259586600 25500 +17592259586665 25500 +17592260036660 50000 +17592259912005 25500 +17592259912021 25500 +17592259696614 25500 +17592260036830 50000 +17592259833547 25500 +17592259833556 25500 +17592260036784 50000 +17592260036699 50000 +17592260036723 50000 +17592259017012 50000 +17592259912029 25500 +17592259912037 25500 +17592259912045 25500 +17592260036530 50000 +17592260036618 50000 +17592260036707 50000 +17592260315549 25500 +17592260315541 25500 +17592260041938 25500 +17592260977937 25500 +17592261767132 50000 +17592260036562 83500 +17592260036554 52000 +17592260036546 74450 +17592260036538 50000 +17592260315331 25500 +17592260036912 25500 +17592260036897 25500 +17592260036889 25500 +17592260315557 25500 +17592261767977 25500 +17592260247244 25500 +17592261765350 83100 +17592261765367 54700 +17592260315565 25500 +17592261767986 50000 +17592261766268 50000 +17592260247252 25500 +17592264456266 25500 +17592260315573 25500 +17592261767952 50000 +17592261767994 50000 +17592261766244 50000 +17592261766260 50000 +17592260977873 25500 +17592261767189 50000 +17592264456274 25500 +17592261765407 54100 +17592260977849 25500 +17592260746792 25500 +17592261767237 50000 +17592261765375 54700 +17592261765415 50000 +17592260977953 25500 +17592262680165 74450 +17592260746800 25500 +17592260746784 25500 +17592261767156 50000 +17592261767197 50000 +17592261766252 50000 +17592260977961 25500 +17592260977969 25500 +17592260746776 25500 +17592261767205 50000 +17592261765383 50000 +17592261765391 50000 +17592260978012 25500 +17592260802357 82100 +17592261767055 50000 +17592260987733 25500 +17592260978040 25500 +17592260802349 82100 +17592263991479 54300 +17592261580828 25500 +17592261767229 50000 +17592261765431 50000 +17592261766276 50000 +17592260978103 25500 +17592260978048 25500 +17592261765439 74100 +17592261767816 50000 +17592261137415 25500 +17592260972562 25500 +17592261767245 50000 +17592261765399 50000 +17592261765423 50000 +17592261129009 25500 +17592261128951 25500 +17592261768002 50000 +17592261766236 50000 +17592264871351 85100 +17592261580770 25500 +17592263991495 85100 +17592262670518 25500 +17592261767181 50000 +17592261766066 74450 +17592261767960 50000 +17592261874845 25500 +17592261580779 25500 +17592261767164 50000 +17592261765359 54700 +17592261767968 50000 +17592261424021 25500 +17592261424003 25500 +17592263986205 50000 +17592263986213 50000 +17592261874948 25500 +17592261580788 25500 +17592261767172 50000 +17592261580820 25500 +17592261874956 25500 +17592261424011 25500 +17592261423995 25500 +17592263985979 50000 +17592263986101 50000 +17592263985971 50000 +17592263986157 50000 +17592261874990 25500 +17592261874998 25500 +17592261580762 25500 +17592263985963 50000 +17592261874982 25500 +17592261875006 25500 +17592261875014 25500 +17592261797536 25500 +17592262785057 25500 +17592263986109 50000 +17592263985898 50000 +17592263986197 50000 +17592261797544 25500 +17592271148900 74610 +17592263991460 74600 +17592261765342 83500 +17592263985890 50000 +17592263986125 74450 +17592263986133 50000 +17592263986093 50000 +17592263517874 25500 +17592262670354 25500 +17592262785065 25500 +17592263985882 50000 +17592263517883 25500 +17592263986085 50000 +17592263517993 25500 +17592262785082 25500 +17592262785073 25500 +17592262785092 25500 +17592263985874 50000 +17592262785108 25500 +17592263985866 50000 +17592263986028 52000 +17592263986182 50000 +17592263986174 50000 +17592262785100 25500 +17592263528829 25500 +17592263985858 50000 +17592262875628 54400 +17592263986077 50000 +17592263986141 50000 +17592262646728 50000 +17592263986221 54400 +17592263518588 25500 +17592263518556 25500 +17592263985826 50000 +17592263985988 50000 +17592263986229 54400 +17592263517847 25500 +17592263517894 25500 +17592263985817 50000 +17592265837257 74450 +17592262875658 54400 +17592262902361 25500 +17592263986020 50000 +17592263986044 50000 +17592263986004 54700 +17592263986012 54400 +17592264871375 83100 +17592263517855 25500 +17592263018127 74700 +17592263517902 25500 +17592263088149 25500 +17592263518604 25500 +17592263985792 50000 +17592263986036 50000 +17592263517863 25500 +17592263517916 25500 +17592263518564 25200 +17592263518572 25500 +17592263528759 25500 +17592263528751 25500 +17592263985850 50000 +17592263986165 50000 +17592263518580 25500 +17592263985800 50000 +17592263986149 50000 +17592263991452 54100 +17592263991487 85100 +17592263518621 25500 +17592263518613 25500 +17592263985808 50000 +17592263986052 50000 +17592263541730 25500 +17592263518596 25500 +17592263518629 25500 +17592263985834 50000 +17592263985996 50000 +17592264137862 25500 +17592260977857 25500 +17592263730516 25500 +17592263991444 54400 +17592263528639 50000 +17592264570866 25500 +17592263985842 50000 +17592263986060 50000 +17592263986117 74450 +17592263541545 25500 +17592264871319 51130 +17592263730526 25500 +17592264871583 50000 +17592264570874 25500 +17592264243608 25500 +17592269107831 51130 +17592263986068 50000 +17592263637979 82100 +17592263637971 82100 +17592264137870 25500 +17592264243616 25500 +17592264137878 25500 +17592264137886 25500 +17592264871575 50000 +17592264871567 50000 +17592264871471 50000 +17592264066963 25500 +17592264474409 25500 +17592264243625 25500 +17592263994521 50000 +17592264871367 50000 +17592264871359 50000 +17592264871343 83500 +17592264871559 50000 +17592264871607 25500 +17592264871591 25500 +17592264871599 25500 +17592264871415 50000 +17592264871407 50000 +17592264066955 25500 +17592264474479 25500 +17592264474393 25500 +17592263991503 25500 +17592264871964 84100 +17592265837275 54300 +17592264137895 25500 +17592264871303 50000 +17592264871311 51130 +17592264871286 54400 +17592264871391 74450 +17592264871551 50000 +17592264871447 50000 +17592264871681 50000 +17592264202463 25500 +17592269107849 50000 +17592269107839 50000 +17592264871335 54700 +17592264871543 50000 +17592264871463 50000 +17592264474487 25500 +17592264474433 25500 +17592264687659 25500 +17592264456249 25500 +17592264456609 25500 +17592264202471 25500 +17592269107858 50000 +17592264243689 25500 +17592264475411 74700 +17592264871439 50000 +17592264474512 25500 +17592264474503 25500 +17592264474520 25500 +17592264474495 25500 +17592264456257 25500 +17592264840158 25500 +17592264840166 25500 +17592264871527 50000 +17592264473350 25500 +17592264871535 50000 +17592264871431 50000 +17592264474528 25500 +17592264840230 25500 +17592264871519 50000 +17592264473342 25500 +17592264840198 25500 +17592264840206 25500 +17592264840238 25500 +17592264871423 50000 +17592264871399 50000 +17592264871511 50000 +17592264840246 72100 +17592264871295 50000 +17592264871383 74450 +17592264652104 50000 +17592264871503 50000 +17592264871479 50000 +17592264871673 50000 +17592264687685 25500 +17592264687667 25500 +17592264687677 25500 +17592269107866 50000 +17592264840214 25500 +17592264840222 25500 +17592264871327 54700 +17592267111660 25500 +17592264871495 50000 +17592267360228 25500 +17592264759622 25500 +17592264759924 25500 +17592265837445 50000 +17592265837306 74100 +17592264840182 25500 +17592264840190 25500 +17592264840174 25500 +17592264871455 50000 +17592264871487 50000 +17592265837330 83100 +17592265353392 25500 +17592265353384 25500 +17592265837533 50000 +17592265837575 50000 +17592265353400 25500 +17592269107874 50000 +17592265837525 50000 +17592265837283 71400 +17592265332575 25500 +17592265837517 50000 +17592265353418 25500 +17592265353410 25500 +17592265837501 50000 +17592265837437 50000 +17592265837567 50000 +17592265353434 25500 +17592265353426 25500 +17592265837493 50000 +17592265837355 74450 +17592265837314 83100 +17592265837559 50000 +17592265332583 25500 +17592265353442 25500 +17592268671023 74450 +17592265837485 50000 +17592265837346 50000 +17592265506114 25500 +17592265353450 25500 +17592265419623 25500 +17592265837453 50000 +17592265419615 25500 +17592265419607 25500 +17592265837551 50000 +17592265506106 50000 +17592266198952 25500 +17592266198886 25500 +17592266199385 25500 +17592265837175 50000 +17592265837461 50000 +17592266209609 25500 +17592265837267 74450 +17592265837159 54700 +17592266209891 25500 +17592265837167 54400 +17592265837151 54400 +17592265837429 50000 +17592265837469 50000 +17592265837338 50000 +17592266198960 25500 +17592266198968 25500 +17592265837477 50000 +17592265837542 73500 +17592266198976 25500 +17592266198987 25500 +17592266198995 25500 +17592268671015 74450 +17592265837249 74610 +17592265837509 50000 +17592265837583 82100 +17592265837591 82100 +17592267830895 50000 +17592266199003 25500 +17592267831081 50000 +17592266199011 25500 +17592266199019 25500 +17592265838602 25500 +17592265837322 85100 +17592266597840 25500 +17592266597832 25500 +17592266598016 25500 +17592266598025 25500 +17592274010462 50000 +17592266199027 25500 +17592267830911 50000 +17592266199037 25500 +17592266209637 25500 +17592266199423 25500 +17592266597824 25500 +17592267830694 50000 +17592267830638 74150 +17592267830951 50000 +17592266597967 25500 +17592267830862 50000 +17592266597975 25500 +17592266209854 74710 +17592266597992 25500 +17592267830830 54700 +17592267830871 50000 +17592266597983 25500 +17592267831168 54400 +17592267830654 50000 +17592266598000 25500 +17592267830919 50000 +17592267830702 50000 +17592266597815 25500 +17592266598008 25500 +17592267830943 50000 +17592266597877 25500 +17592267831065 50000 +17592268671007 74450 +17592269107901 50000 +17592267830743 50000 +17592267830621 84100 +17592267830612 83500 +17592267830927 50000 +17592267765679 25500 +17592267360220 25500 +17592267360212 25500 +17592267360253 25500 +17592266936995 25500 +17592268139226 25500 +17592271150015 54300 +17592268139188 25500 +17592267765687 25500 +17592267261968 25500 +17592267831032 50000 +17592266851479 25500 +17592266853474 25500 +17592267830630 54100 +17592267830678 50000 +17592267765695 25500 +17592267831024 50000 +17592266848376 25500 +17592268139158 25500 +17592266936874 25500 +17592268411436 25500 +17592267830959 50000 +17592266938068 74600 +17592267765704 25500 +17592266936882 25500 +17592267830711 50000 +17592267830662 50000 +17592267830976 50000 +17592266989180 74700 +17592267830879 50000 +17592267830854 50000 +17592267830814 54400 +17592267765712 25500 +17592267765607 25500 +17592267831057 50000 +17592266989603 50000 +17592267360236 25500 +17592270586349 74450 +17592267830719 50000 +17592267830968 50000 +17592268139088 25500 +17592267262591 25500 +17592267262599 25500 +17592268139077 25500 +17592267830984 50000 +17592267406999 25500 +17592267262771 25500 +17592267262779 25500 +17592267830727 73500 +17592267765728 25500 +17592267765720 25500 +17592267831040 50000 +17592267765736 25500 +17592267347407 25500 +17592267830646 83100 +17592267830992 50000 +17592267830887 50000 +17592267831073 50000 +17592267831008 50000 +17592267830838 54000 +17592267830822 54700 +17592267411577 25500 +17592267765752 25500 +17592267765744 25500 +17592267261976 25500 +17592267852071 54400 +17592267580385 25500 +17592270587124 74450 +17592267580393 25500 +17592267831000 50000 +17592267659202 74500 +17592267831049 74450 +17592267765760 25500 +17592268139026 25500 +17592267936902 25500 +17592267830686 50000 +17592267830670 50000 +17592267831089 50000 +17592267831016 50000 +17592267708572 25500 +17592267765768 25500 +17592271150031 54300 +17592268203184 25500 +17592267886539 25500 +17592268203209 25500 +17592268203194 25500 +17592267951237 25500 +17592267850881 50000 +17592267886531 25500 +17592267886547 25500 +17592267850948 25500 +17592267850923 50000 +17592269108576 50000 +17592268203306 25500 +17592267830604 83100 +17592268203282 25500 +17592268203290 25500 +17592269119415 54300 +17592267851965 50000 +17592267936894 25500 +17592267951229 25500 +17592269108661 50000 +17592268203298 25500 +17592267965695 25800 +17592269119314 50000 +17592269108677 50000 +17592268203331 25500 +17592268203315 25500 +17592268203323 25500 +17592268046356 50000 +17592269108709 50000 +17592269119432 74450 +17592269119440 54700 +17592269119423 74610 +17592269119281 50000 +17592269119480 50000 +17592268411109 25500 +17592269107980 50000 +17592268342739 25500 +17592269108792 50000 +17592268411238 25500 +17592268411230 25500 +17592268411117 25500 +17592268694772 25500 +17592268687031 25500 +17592269106690 25500 +17592269119240 50000 +17592268411412 25500 +17592269108800 50000 +17592269106698 25500 +17592269106706 25500 +17592268411125 25500 +17592268411625 25500 +17592269108512 74150 +17592269106798 25500 +17592269106783 25500 +17592269108725 50000 +17592269119330 50000 +17592269106965 25500 +17592269106973 25500 +17592269119265 50000 +17592269107988 50000 +17592269107996 50000 +17592268694789 25500 +17592269108733 50000 +17592269119338 54100 +17592269119322 50000 +17592269106981 25500 +17592269107608 25500 +17592268860798 25500 +17592268694780 25500 +17592269108781 50000 +17592269106668 25500 +17592269119306 54400 +17592269107009 25500 +17592269106991 25500 +17592268671284 50000 +17592268671526 16510 +17592268682050 93100 +17592268860806 25500 +17592269108749 50000 +17592269119448 54700 +17592269359057 25500 +17592269119273 50000 +17592269107319 25500 +17592269107213 25500 +17592269119464 75100 +17592269119472 74100 +17592269119488 50000 +17592269108479 50000 +17592269108765 50000 +17592269119289 50000 +17592269107363 25500 +17592269107347 25500 +17592269107355 25500 +17592269507622 25500 +17592269107379 25500 +17592269107371 25500 +17592269107619 25500 +17592269108808 50000 +17592269107395 25500 +17592269107403 25500 +17592269107387 25500 +17592269507795 25500 +17592269108431 82100 +17592269507778 25500 +17592269507634 25500 +17592269108560 83100 +17592269108544 83100 +17592269108455 82100 +17592270585471 84100 +17592269119298 50000 +17592269119512 25500 +17592269119496 25500 +17592269119504 25500 +17592270584587 50000 +17592270584619 75100 +17592270584816 54100 +17592269108528 86200 +17592269508068 25500 +17592269359074 25500 +17592270584595 50000 +17592270584800 50000 +17592270584792 50000 +17592270584450 50000 +17592270584515 50000 +17592270584808 54400 +17592269359066 25500 +17592269324879 25500 +17592270584523 50000 +17592275672883 74450 +17592269508170 25500 +17592270585436 97200 +17592269359101 25500 +17592269508877 25500 +17592270584627 50000 +17592270584531 50000 +17592270263570 25500 +17592269854445 25500 +17592270584555 50000 +17592270263147 25500 +17592270263156 25500 +17592270584760 50000 +17592270584474 50000 +17592270263376 25500 +17592270263164 25500 +17592270263172 25500 +17592270263268 25500 +17592270584563 50000 +17592270263252 25500 +17592270263260 25500 +17592270263276 25500 +17592270263284 25500 +17592270584547 50000 +17592270584776 50000 +17592269854437 25500 +17592270584506 50000 +17592270584539 50000 +17592270263292 25500 +17592270263300 25500 +17592269836539 50000 +17592270584571 50000 +17592269978375 25500 +17592271150473 50000 +17592270263317 25500 +17592270263325 25500 +17592270263333 25500 +17592270585632 74450 +17592270059289 25500 +17592270585645 50000 +17592269978366 25500 +17592270584579 50000 +17592270584768 50000 +17592271149585 83100 +17592270584482 50000 +17592270584498 54400 +17592270263341 25500 +17592270263349 25500 +17592271148193 50000 +17592270059281 25500 +17592271149059 50000 +17592270584784 50000 +17592270210003 25500 +17592270209567 25500 +17592270584490 54400 +17592270263357 25500 +17592270263366 25500 +17592270210131 25500 +17592270210176 25500 +17592271147947 50000 +17592270263579 25500 +17592271148338 50000 +17592270316546 25500 +17592270316655 25500 +17592270274207 25500 +17592271148351 50000 +17592270263308 25500 +17592270585797 25500 +17592270274095 25500 +17592271025014 25500 +17592271025006 25500 +17592271025099 25500 +17592271148364 50000 +17592271151035 54100 +17592271149074 50000 +17592271151166 54700 +17592271147964 50000 +17592271025110 25500 +17592271025118 25500 +17592271149697 74700 +17592271148372 50000 +17592271148891 74610 +17592271116196 25500 +17592284670933 52000 +17592284670941 52000 +17592271025126 25500 +17592271025135 25500 +17592271150859 50000 +17592271148592 50000 +17592270584442 83500 +17592271149723 50000 +17592270755079 25500 +17592271025151 25500 +17592271025159 25500 +17592271025167 25500 +17592271025237 25500 +17592271148156 50000 +17592271148611 50000 +17592270585488 85100 +17592271149494 50000 +17592271241327 25500 +17592271151289 83100 +17592271151300 83100 +17592271116179 25500 +17592271116187 25500 +17592271116171 25500 +17592271025175 25500 +17592271957078 25500 +17592271241066 25500 +17592271148626 50000 +17592271025275 25500 +17592271957097 25500 +17592271025266 25500 +17592271148178 50000 +17592271148845 50000 +17592271241758 25500 +17592271241766 25500 +17592270974018 25500 +17592271957105 25500 +17592271148868 50000 +17592271116204 25500 +17592272116058 25500 +17592271149872 50000 +17592271241774 25500 +17592271957113 25500 +17592271148878 50000 +17592271116142 25500 +17592271151015 54400 +17592271150617 50000 +17592275540365 50000 +17592271149888 50000 +17592271241782 25500 +17592271241798 25500 +17592274009434 50000 +17592271150374 54300 +17592274009386 50000 +17592271025143 25500 +17592271150876 74450 +17592271116150 25500 +17592271151182 54700 +17592271147810 50000 +17592271230182 25500 +17592274009442 50000 +17592274010314 50000 +17592271151316 82100 +17592271151329 50000 +17592271151308 82100 +17592271958763 25500 +17592274009618 50000 +17592271902276 25500 +17592272116129 25500 +17592271241750 25500 +17592271241823 25500 +17592271241807 25500 +17592274009450 50000 +17592275534831 54400 +17592271950122 25500 +17592271950013 25500 +17592271958772 25500 +17592274009458 50000 +17592274009626 50000 +17592271958780 25500 +17592271950382 25500 +17592274009370 50000 +17592274009466 50000 +17592274010005 50000 +17592274010378 54100 +17592271950284 25500 +17592271958796 25500 +17592271958788 25500 +17592274009474 50000 +17592271902300 25500 +17592271958804 25500 +17592272116599 25500 +17592271950356 25500 +17592274009482 50000 +17592274009634 50000 +17592273157639 25500 +17592271902316 25500 +17592274010394 50000 +17592274010370 84100 +17592274010506 83500 +17592274010534 86200 +17592274010330 74450 +17592271958812 25500 +17592272116616 25500 +17592272116634 25500 +17592272116607 25500 +17592273091225 25500 +17592274009378 50000 +17592274009490 50000 +17592271959615 25500 +17592272116642 25500 +17592272116650 25500 +17592274009642 50000 +17592272116035 25500 +17592272116043 25500 +17592272116023 25500 +17592275793905 25500 +17592272116683 25500 +17592272116658 25500 +17592272116666 25500 +17592272116675 25500 +17592274009498 50000 +17592274009506 50000 +17592274009925 50000 +17592273157622 25500 +17592273157630 25500 +17592272116626 25500 +17592273091902 25500 +17592274009514 50000 +17592274010013 50000 +17592273157647 25500 +17592274010306 50000 +17592272220784 50000 +17592273167023 25500 +17592274009402 54700 +17592274009394 50000 +17592274009522 50000 +17592274009933 50000 +17592273157655 25500 +17592273088130 25500 +17592274010386 54400 +17592274010338 74450 +17592274009362 50000 +17592274009530 50000 +17592273088101 25500 +17592272413275 25500 +17592274009941 50000 +17592273157663 25500 +17592274009538 50000 +17592273158090 25500 +17592273158073 25500 +17592273157673 25500 +17592273157738 25500 +17592274010496 83100 +17592273090935 25500 +17592274009546 50000 +17592273158558 25500 +17592273088874 25500 +17592273158344 25500 +17592273091234 25500 +17592274009554 50000 +17592274009949 50000 +17592274009997 50000 +17592273088086 25500 +17592273159001 25500 +17592273167246 25500 +17592273158858 25500 +17592273091910 25500 +17592274009562 50000 +17592273159287 25500 +17592273159385 25500 +17592274010298 50000 +17592273167032 25500 +17592274009346 50000 +17592273091894 25500 +17592274009570 50000 +17592274009957 50000 +17592274010322 74450 +17592273166986 25500 +17592273273888 25500 +17592273241064 25500 +17592274009965 50000 +17592274009578 50000 +17592273553754 25500 +17592273088854 25500 +17592273553736 25500 +17592273553746 25500 +17592273553728 25500 +17592273388347 25500 +17592273388247 25500 +17592274009973 50000 +17592273388355 25500 +17592273388339 25500 +17592273841487 25500 +17592273841479 25500 +17592274009586 50000 +17592273553762 25500 +17592274009354 50000 +17592273841504 25500 +17592273841495 25500 +17592274009602 50000 +17592274009594 50000 +17592273553770 25500 +17592273553778 25500 +17592275534807 83100 +17592274009418 50000 +17592273841520 25500 +17592273841512 25500 +17592275672891 74450 +17592274009989 50000 +17592274009981 50000 +17592273575601 25500 +17592274010362 55000 +17592274010346 74450 +17592274009330 54100 +17592274009426 50000 +17592273841536 25500 +17592273841528 25500 +17592274010354 74610 +17592275538773 54400 +17592274009338 50000 +17592274009410 54700 +17592273841544 25500 +17592275672899 74450 +17592274010021 50000 +17592274009610 50000 +17592275539579 50000 +17592275540349 50000 +17592274010556 85100 +17592274350273 25500 +17592273914737 25500 +17592275534863 50000 +17592273974901 25500 +17592273974891 25500 +17592274350324 25500 +17592274350287 25500 +17592274350294 25500 +17592275540163 50000 +17592273914751 25500 +17592274350345 25500 +17592274350259 25500 +17592274350301 25500 +17592275534791 85100 +17592274011646 25500 +17592275539619 50000 +17592274350387 25500 +17592274350366 25500 +17592275539611 50000 +17592274350394 25500 +17592274350401 25500 +17592274350422 25500 +17592274010479 50000 +17592275540357 50000 +17592274010705 25500 +17592274010690 25500 +17592274010671 82100 +17592274010661 82100 +17592275539358 50000 +17592275539603 50000 +17592274274469 74600 +17592274406792 25500 +17592274517720 25500 +17592275539595 50000 +17592274966948 25500 +17592274966940 25500 +17592274350885 50000 +17592275534847 74450 +17592275534879 50000 +17592274517728 25500 +17592275539563 50000 +17592274966956 25500 +17592274966964 25500 +17592275540341 50000 +17592275539366 50000 +17592275793875 25500 +17592275793867 25500 +17592274517712 25500 +17592275539571 50000 +17592281966956 50000 +17592274966972 25500 +17592274966980 25500 +17592275540325 50000 +17592274495475 50000 +17592275538789 54700 +17592274967016 25500 +17592274967030 25500 +17592274966988 25500 +17592274967004 25500 +17592274966996 25500 +17592275534799 83500 +17592274967080 25500 +17592274967038 25500 +17592274967056 25500 +17592274967048 25500 +17592281968407 50000 +17592274967064 25500 +17592274879601 25500 +17592275539547 50000 +17592281967046 50000 +17592275420051 25500 +17592274967072 25500 +17592275539350 50000 +17592275534823 54100 +17592275539539 50000 +17592275540333 50000 +17592274967183 25500 +17592275536533 50000 +17592275166632 25500 +17592275166657 25500 +17592275539374 50000 +17592275166622 25500 +17592275534957 50000 +17592274967088 25500 +17592275079772 25500 +17592274967175 25500 +17592275166672 25500 +17592275534871 50000 +17592275534855 74450 +17592275539555 50000 +17592275166876 25500 +17592275540317 50000 +17592275539531 50000 +17592275794014 25500 +17592275794022 25500 +17592275794054 25500 +17592275538781 54700 +17592275420067 25500 +17592275420075 25500 +17592275420099 25500 +17592275538797 50000 +17592275420059 25500 +17592275538646 54400 +17592275421918 25500 +17592275538581 54400 +17592275420147 25500 +17592275540373 50000 +17592275420115 25500 +17592275420207 25500 +17592275420192 25500 +17592275539587 50000 +17592277181670 50000 +17592275420215 25500 +17592275420223 25500 +17592275420231 25500 +17592277181776 50000 +17592277181662 50000 +17592275793889 25500 +17592275793897 25500 +17592277181678 50000 +17592276352859 25500 +17592277182829 50000 +17592275793913 25500 +17592277181513 50000 +17592275534839 71400 +17592277181607 50000 +17592275606665 25500 +17592275672911 74450 +17592277182058 50000 +17592275793921 25500 +17592277182469 50000 +17592275793939 25500 +17592275534815 83100 +17592276669731 25500 +17592277181583 50000 +17592276083846 25500 +17592275793855 25500 +17592277182161 50000 +17592277182514 74600 +17592275793947 25500 +17592275793929 25500 +17592278714353 50000 +17592275735029 25500 +17592276083854 25500 +17592276258888 25500 +17592276258880 25500 +17592275538632 84100 +17592277181615 50000 +17592276083862 25500 +17592276001133 25500 +17592276258998 25500 +17592276258959 25500 +17592277181531 50000 +17592285166782 74610 +17592276083878 25500 +17592276083838 25500 +17592277181591 50000 +17592277181547 50000 +17592276083870 25500 +17592277182222 50000 +17592277182366 74450 +17592277182763 52000 +17592275900970 97200 +17592275900962 97100 +17592277183905 54000 +17592277181479 54100 +17592277181639 50000 +17592276083886 25500 +17592276083830 25500 +17592277185036 54400 +17592277181768 54400 +17592276669723 25500 +17592276063641 25500 +17592276083902 25500 +17592276083894 25500 +17592277181631 50000 +17592276258647 25500 +17592276258655 25500 +17592277182395 54700 +17592277182530 74100 +17592277185056 54400 +17592277538107 25500 +17592277537804 25500 +17592277181599 50000 +17592276131668 25500 +17592277182184 50000 +17592277182418 50000 +17592276258678 25500 +17592276258492 25500 +17592282939759 74450 +17592277182851 50000 +17592276258864 25500 +17592276669747 25500 +17592277181498 50000 +17592277181654 50000 +17592276889354 25500 +17592277182403 54700 +17592276889118 25500 +17592276669739 25500 +17592276889387 25500 +17592277182199 50000 +17592276889465 25500 +17592276665878 25500 +17592276423253 25500 +17592276423261 25500 +17592277181623 50000 +17592276889409 25500 +17592276889395 25500 +17592277181694 50000 +17592276889425 25500 +17592276889417 25500 +17592277182110 50000 +17592277181686 50000 +17592276889441 25500 +17592276889433 25500 +17592277182238 50000 +17592278714121 82100 +17592276665870 25500 +17592277181702 50000 +17592276889457 25500 +17592276889449 25500 +17592277182484 50000 +17592278714361 50000 +17592277181738 50000 +17592277182261 50000 +17592276861125 25500 +17592277183256 50000 +17592277006917 25500 +17592277181753 50000 +17592277181575 50000 +17592278097023 25500 +17592277182269 50000 +17592277901181 25500 +17592277057798 25500 +17592277006925 25500 +17592277182301 50000 +17592277901189 25500 +17592277057809 25500 +17592277394163 25500 +17592278097046 25500 +17592278097031 25500 +17592277901197 25500 +17592277394131 25500 +17592279161423 50000 +17592278721314 50000 +17592277181457 83100 +17592277181449 83100 +17592277181434 83100 +17592277185656 25500 +17592277901205 25500 +17592277181260 25500 +17592277181268 25500 +17592277181245 25500 +17592277181351 82100 +17592277181336 82100 +17592277181291 25500 +17592277181283 25500 +17592277185064 25500 +17592279161408 50000 +17592278097065 25500 +17592279154481 50000 +17592279161089 50000 +17592277394171 25500 +17592277351370 25500 +17592281776621 50000 +17592278097116 25500 +17592278097097 25500 +17592278097082 25500 +17592277495651 25500 +17592279150154 50000 +17592279161069 50000 +17592279152738 50000 +17592277394139 25500 +17592278097192 25500 +17592277495643 25500 +17592277901213 25500 +17592279150130 54700 +17592279153060 74450 +17592279161049 50000 +17592278097208 25500 +17592278097200 25500 +17592278714083 50000 +17592277901221 25500 +17592279154469 50000 +17592277538367 25500 +17592279152214 75100 +17592279159256 50000 +17592277832563 25500 +17592277893818 25500 +17592278097248 25500 +17592279151979 75200 +17592279903512 25500 +17592278097720 25500 +17592277921520 25500 +17592277901229 25500 +17592277901173 25500 +17592279154207 50000 +17592278102504 25500 +17592278097224 25500 +17592278097216 25500 +17592279158100 50000 +17592278097240 25500 +17592278097232 25500 +17592279157519 50000 +17592278488419 25500 +17592278488409 25500 +17592279154189 50000 +17592279150146 54100 +17592279152748 50000 +17592278764320 25500 +17592279157408 50000 +17592278102512 25500 +17592278764962 25500 +17592279150339 50000 +17592278282224 25500 +17592278714383 50000 +17592278764309 25500 +17592279157390 50000 +17592278488427 25500 +17592278488435 25500 +17592278764973 25500 +17592279150122 54700 +17592279150162 50000 +17592278380546 25500 +17592279153446 74450 +17592279157369 50000 +17592278488443 25500 +17592278764984 25500 +17592278764995 25500 +17592279153920 50000 +17592278714075 51130 +17592279156984 50000 +17592278380531 25500 +17592278488451 25500 +17592278488459 25500 +17592278488467 25500 +17592279153907 50000 +17592278765003 25500 +17592278765011 25500 +17592278765019 25500 +17592279156682 50000 +17592278765027 25500 +17592278765197 25500 +17592278711959 25500 +17592278765213 25500 +17592279156303 50000 +17592281967038 74150 +17592279156106 50000 +17592279153895 50000 +17592279903520 25500 +17592278714270 50000 +17592279152231 50000 +17592278711967 25500 +17592278841000 25500 +17592279152857 50000 +17592279151537 84100 +17592279151359 74100 +17592279156081 50000 +17592278841008 25500 +17592279150138 54400 +17592279877207 25500 +17592279150170 50000 +17592278920578 97200 +17592279903539 25500 +17592279903528 25500 +17592279153456 74450 +17592279161637 50000 +17592279153471 50000 +17592278920586 25800 +17592279903675 25500 +17592279903683 25500 +17592279152483 50000 +17592279161649 50000 +17592279166713 50000 +17592279154494 50000 +17592279903723 25500 +17592279150114 83500 +17592279231760 25200 +17592279903783 25500 +17592281968399 50000 +17592279903847 25500 +17592279903914 25500 +17592281966948 74610 +17592281966940 50000 +17592279904112 25500 +17592281968391 50000 +17592281343769 50000 +17592281968359 50000 +17592279904075 25500 +17592279877215 25500 +17592279904138 25500 +17592279904212 25500 +17592279877171 25500 +17592279471687 25500 +17592281966964 50000 +17592279464418 50000 +17592281966916 50000 +17592281966892 54700 +17592279904380 25500 +17592281968504 50000 +17592281966988 74450 +17592281968496 50000 +17592279877146 25500 +17592279904536 25500 +17592281967943 50000 +17592279877121 25500 +17592279904556 25500 +17592279904548 25500 +17592281968520 50000 +17592279904572 25500 +17592279904564 25500 +17592279904580 25500 +17592281967724 50000 +17592281968512 50000 +17592279877179 25500 +17592281496291 25500 +17592281967609 50000 +17592281968560 50000 +17592281343719 50000 +17592280674534 25500 +17592281966924 50000 +17592279931097 25500 +17592281968552 50000 +17592279875398 82100 +17592279875406 82100 +17592281966972 50000 +17592280158666 25500 +17592280674542 25500 +17592280674558 25500 +17592281496301 25500 +17592285167002 50000 +17592281968544 50000 +17592281966996 74450 +17592281426291 25500 +17592280158674 25500 +17592281966900 54400 +17592280178889 25500 +17592280178786 25500 +17592281496309 25500 +17592281968536 50000 +17592281343703 50000 +17592281426315 25500 +17592281426299 25500 +17592280674550 25500 +17592281426251 25500 +17592281966908 54400 +17592281966884 54700 +17592282314898 25500 +17592281967601 50000 +17592281426307 25500 +17592281117051 25500 +17592281496317 25500 +17592281426259 25500 +17592281496325 25500 +17592281968528 50000 +17592281967030 83100 +17592280674566 25500 +17592281496341 25500 +17592281496333 25500 +17592282940002 83500 +17592281968568 50000 +17592281343693 50000 +17592281343711 50000 +17592281426323 25500 +17592281967054 50000 +17592281117094 25500 +17592281967012 54100 +17592281966932 50000 +17592281496349 25500 +17592281968576 50000 +17592280848106 25500 +17592280848098 25500 +17592281172821 25500 +17592281260667 25500 +17592281968584 50000 +17592281968367 50000 +17592281967004 74450 +17592281966980 50000 +17592281496357 25500 +17592281496365 25500 +17592281260675 25500 +17592281117171 25500 +17592281343685 50000 +17592281426331 25500 +17592281426267 25500 +17592282940116 50000 +17592282939946 50000 +17592282939815 50000 +17592282822824 25500 +17592282822840 25500 +17592282314906 25500 +17592282314890 25500 +17592282939938 50000 +17592285166807 83100 +17592282939823 50000 +17592282940027 50000 +17592282939962 50000 +17592282064281 25500 +17592282064301 25500 +17592282064388 25500 +17592282822848 25500 +17592282822808 25500 +17592282940102 74100 +17592282939984 50000 +17592282064273 25500 +17592282939775 54700 +17592282822904 25500 +17592282314858 25500 +17592282063578 25500 +17592282940019 50000 +17592282939930 50000 +17592282064257 25500 +17592282064249 25200 +17592282827795 25500 +17592282269172 25500 +17592282939838 50000 +17592282939751 74150 +17592282939807 50000 +17592281967020 54100 +17592282822888 25500 +17592282314866 25500 +17592282822800 25500 +17592282939992 50000 +17592282150804 25500 +17592282150782 25500 +17592282150774 25500 +17592282150766 25500 +17592282150758 25500 +17592282150750 25500 +17592282939767 74450 +17592282939799 50000 +17592282822912 25500 +17592282314874 25500 +17592282127137 91100 +17592282127127 50000 +17592282939912 50000 +17592282269164 25500 +17592282939791 50000 +17592282314882 25500 +17592282827332 25500 +17592282822962 25500 +17592282822972 25500 +17592282822980 25500 +17592282822946 25500 +17592282939920 50000 +17592282823036 25500 +17592282823047 25500 +17592282823055 25500 +17592282939904 50000 +17592285166922 50000 +17592285166898 54100 +17592282731694 25500 +17592285167325 50000 +17592282939783 50000 +17592282823063 25500 +17592282823071 25500 +17592285167743 50000 +17592283364791 25500 +17592283364826 25500 +17592282829993 73100 +17592282830001 25500 +17592282829944 74500 +17592285167317 50000 +17592282828992 25500 +17592282829000 25500 +17592285167751 50000 +17592285169728 50000 +17592283309454 25500 +17592282830017 50000 +17592285167453 74450 +17592285167413 54400 +17592285167309 50000 +17592285167203 54400 +17592283364918 25500 +17592285167161 50000 +17592283364841 25500 +17592283364873 25500 +17592283364889 25500 +17592285169838 50000 +17592283309506 25500 +17592285166946 50000 +17592283364963 25500 +17592283364926 25500 +17592283364948 25500 +17592284039249 25500 +17592285167277 50000 +17592283309462 25500 +17592285167269 50000 +17592283364978 25500 +17592283309478 25500 +17592283309470 25500 +17592283365035 25500 +17592285167245 50000 +17592285167179 50000 +17592285167153 50000 +17592285167777 50000 +17592285169764 50000 +17592285166790 74610 +17592283365027 25500 +17592283365051 25500 +17592283365043 25500 +17592285167237 50000 +17592284039258 25500 +17592283560007 25500 +17592283355963 25500 +17592285166954 50000 +17592283559788 25500 +17592285167437 74450 +17592285167253 50000 +17592285167145 50000 +17592284039276 25500 +17592283532604 25500 +17592283532620 82100 +17592283532612 25500 +17592283532628 82100 +17592285167261 50000 +17592284039284 25500 +17592284039292 25500 +17592285167137 50000 +17592284039300 25500 +17592284039308 25500 +17592283937282 25500 +17592285166834 84100 +17592285166770 83500 +17592285167333 50000 +17592285235564 25500 +17592285167341 50000 +17592284039316 25500 +17592284039324 25500 +17592285167349 50000 +17592285167129 50000 +17592284039381 25500 +17592285167622 50000 +17592283937757 25500 +17592285167357 50000 +17592284039408 25500 +17592285167604 50000 +17592285167060 50000 +17592285166986 50000 +17592285166962 50000 +17592283937765 25500 +17592285167445 74450 +17592285167365 50000 +17592284038876 25500 +17592284776488 25500 +17592284776496 25500 +17592285190647 25500 +17592284137381 25500 +17592285167373 50000 +17592285167026 50000 +17592285166994 50000 +17592284670862 25500 +17592284670840 25500 +17592284904157 25500 +17592287424857 50000 +17592285093855 25500 +17592284776504 25500 +17592284776480 25500 +17592285093863 25500 +17592284904189 25500 +17592287420134 50000 +17592285093796 25500 +17592285167381 50000 +17592285093871 25500 +17592285093879 25500 +17592284904165 25500 +17592285167018 50000 +17592285166890 54100 +17592285167397 50000 +17592284586143 25500 +17592285167612 50000 +17592285093887 25500 +17592285167405 52000 +17592285167389 50000 +17592285167211 54700 +17592285167223 54400 +17592285169846 50000 +17592285167735 50000 +17592285093895 25500 +17592285093903 25500 +17592284670832 25500 +17592285167010 50000 +17592285167421 74450 +17592285167285 50000 +17592287098168 50000 +17592285190607 25500 +17592285190615 25500 +17592284670917 52000 +17592285190830 25500 +17592287424825 83000 +17592287420034 50000 +17592287427838 52000 +17592285190623 25500 +17592285093920 25500 +17592284904173 25500 +17592285093928 25500 +17592285190814 25500 +17592285190631 25500 +17592287420042 50000 +17592285093936 25500 +17592285093912 25500 +17592285190639 25500 +17592287411966 50000 +17592287420391 50000 +17592287424833 74700 +17592285190671 25500 +17592285190663 25500 +17592285190655 25500 +17592287420050 50000 +17592285303999 25500 +17592287420375 50000 +17592287427806 86400 +17592285235572 25500 +17592285190822 25500 +17592287424841 50000 +17592285304243 25500 +17592286033261 25500 +17592285304157 25500 +17592287420026 50000 +17592285166866 83100 +17592285166842 83100 +17592287420174 50000 +17592285303551 25500 +17592287419909 50000 +17592287420102 74450 +17592285304699 25500 +17592287098176 50000 +17592285899186 25500 +17592285303608 25500 +17592287424814 83100 +17592286033293 25500 +17592286033269 25500 +17592286033277 25500 +17592287420018 50000 +17592285166826 75200 +17592287420358 50000 +17592285899218 25500 +17592287421333 54700 +17592285728754 25500 +17592286202584 25500 +17592285899250 25500 +17592286033309 25500 +17592286033285 25500 +17592286033301 25500 +17592287420010 50000 +17592285899194 25500 +17592285728770 25500 +17592286033317 25500 +17592286033325 25500 +17592287419483 50000 +17592286033333 25500 +17592287420058 50000 +17592287420126 50000 +17592287420216 50000 +17592287098184 50000 +17592287098192 50000 +17592286033412 25500 +17592285899202 25500 +17592285899258 25500 +17592286033369 25500 +17592286033341 25500 +17592287420158 50000 +17592287420150 50000 +17592287419491 50000 +17592287420094 74450 +17592287420245 50000 +17592286035858 54700 +17592287419735 50000 +17592287421885 54400 +17592286033404 25500 +17592286285871 25500 +17592286285863 25500 +17592286153637 25500 +17592287419509 50000 +17592287098200 50000 +17592287421277 54700 +17592286285887 25500 +17592286285879 25500 +17592286285835 25500 +17592286153645 25500 +17592286202576 25500 +17592287420257 50000 +17592286645280 25500 +17592286285725 25500 +17592287421819 54700 +17592286285895 25500 +17592284039266 25500 +17592287411957 50000 +17592286285843 25500 +17592286949728 25500 +17592287419499 50000 +17592286949662 25500 +17592287419917 50000 +17592287420118 50000 +17592287420206 50000 +17592287424325 50000 +17592286645288 25500 +17592286645272 25500 +17592286593720 82100 +17592286593699 82100 +17592286657951 50000 +17592287411949 50000 +17592286686282 74700 +17592287047603 74710 +17592287424912 54000 +17592287420066 50000 +17592287420078 74450 +17592287420086 74450 +17592287424202 54700 +17592287420182 50000 +17592286864457 25500 +17592286864465 25500 +17592286677437 25500 +17592287421070 54700 +17592287424849 50000 +17592286949736 25500 +17592286872020 25500 +17592287411923 50000 +17592287420142 50000 +17592287420190 50000 +17592287135601 25500 +17592287421732 54700 +17592286872049 25500 +17592287156734 25500 +17592286871633 25500 +17592286949608 25500 +17592286949744 25500 +17592287147936 25500 +17592287135759 25500 +17592287135793 25500 +17592287135901 25500 +17592287136061 25500 +17592287424865 50000 +17592287411932 50000 +17592287012262 25500 +17592287136307 25500 +17592287148661 25500 +17592287136434 25500 +17592287136121 25500 +17592287136137 25500 +17592287136193 25500 +17592287411914 50000 +17592287147005 25500 +17592287146936 25500 +17592287420429 50000 +17592287133339 25500 +17592287411906 50000 +17592287420166 50000 +17592287132874 25500 +17592287148669 25500 +17592287411941 50000 +17592287421990 50000 +17592287420110 74450 +17592287420198 50000 +17592287423960 54100 +17592287429093 25500 +17592287424307 74100 +17592252846183 50000 +17592252846039 51200 +17592252846179 50000 +17592252846177 50000 +17592252846181 50000 +17592252846041 51200 +17592253031243 50000 +17592253330041 51200 +17592253086268 50000 +17592253330049 51200 +17592253339448 50000 +17592253750019 51200 +17592253549739 50000 +17592253750025 51200 +17592253769731 50000 +17592254099598 51200 +17592253961670 50000 +17592254099602 51200 +17592254620734 51200 +17592254139489 50000 +17592254139487 50000 +17592254620736 51200 +17592254379513 50000 +17592254654187 50000 +17592255054658 51200 +17592254869093 50000 +17592255054666 51200 +17592255123242 50000 +17592255642512 51200 +17592255407602 50000 +17592255642562 51200 +17592256181292 51200 +17592255709830 50000 +17592255709828 50000 +17592255984041 50000 +17592255984039 50000 +17592256193036 51200 +17592256684670 51200 +17592256215850 50000 +17592256434249 50000 +17592256684724 51200 +17592256730367 50000 +17592257222114 51200 +17592256986763 50000 +17592257243786 51200 +17592257267235 50000 +17592257773955 51200 +17592257482969 50000 +17592257580855 50000 +17592257774003 51200 +17592257812352 50000 +17592258203792 51200 +17592257871408 50000 +17592258203798 51200 +17592258009886 50000 +17592258792497 51200 +17592258286705 50000 +17592258286703 50000 +17592258286701 50000 +17592258286721 50000 +17592258286719 50000 +17592258286717 50000 +17592258286715 50000 +17592258286713 50000 +17592258286711 50000 +17592258286709 50000 +17592258286707 50000 +17592258286737 50000 +17592258286735 50000 +17592258286733 50000 +17592258286731 50000 +17592258286729 50000 +17592258286727 50000 +17592258286725 50000 +17592258286723 50000 +17592258286739 50000 +17592258576717 50000 +17592259266474 51200 +17592258837593 50000 +17592258979191 50000 +17592259302608 50000 +17592259754334 51200 +17592259826902 50000 +17592260239152 51200 +17592260920294 51200 +17592260259713 50000 +17592260964578 50000 +17592261466278 51200 +17592261044059 50000 +17592261530653 50000 +17592262380884 50000 +17592262376225 51200 +17592261871513 50000 +17592263257399 51200 +17592262646167 50000 +17592263862342 51200 +17592263862326 51200 +17592263309971 50000 +17592263622871 50000 +17592263884791 50000 +17592264401675 51200 +17592264401711 51200 +17592264401717 51200 +17592264441499 50000 +17592264933663 51200 +17592264707089 50000 +17592264945614 50000 +17592265506014 51200 +17592268654148 51200 +17592264975791 50000 +17592264975789 50000 +17592266199108 51200 +17592265529888 50000 +17592265529890 50000 +17592265529884 50000 +17592265529886 50000 +17592265529880 50000 +17592265529882 50000 +17592265529876 50000 +17592265529878 50000 +17592265529872 50000 +17592265529874 50000 +17592265529868 50000 +17592265529870 50000 +17592265529864 50000 +17592265529866 50000 +17592265529860 50000 +17592265529862 50000 +17592265529856 50000 +17592265529858 50000 +17592265529854 50000 +17592265529936 50000 +17592265529932 50000 +17592265529934 50000 +17592265529928 50000 +17592265529930 50000 +17592265529924 50000 +17592265529926 50000 +17592265529920 50000 +17592265529922 50000 +17592265529916 50000 +17592265529918 50000 +17592265529912 50000 +17592265529914 50000 +17592265529908 50000 +17592265529910 50000 +17592265529904 50000 +17592265529906 50000 +17592265529900 50000 +17592265529902 50000 +17592265529896 50000 +17592265529898 50000 +17592265529892 50000 +17592265529894 50000 +17592266796051 51200 +17592266257869 50000 +17592267240580 51200 +17592267931175 50000 +17592268654566 85100 +17592267851020 51200 +17592267931173 50000 +17592267931171 50000 +17592267928199 50000 +17592267928201 50000 +17592268499506 51200 +17592268013618 50000 +17592268013620 50000 +17592269106403 51200 +17592268576733 50000 +17592269119770 51200 +17592268654626 50000 +17592268744122 50000 +17592268882541 50000 +17592269637095 51200 +17592269202098 50000 +17592270311591 51200 +17592269693261 50000 +17592270311719 51200 +17592270031627 50000 +17592270306368 50000 +17592270290448 50000 +17592270290446 50000 +17592270405412 50000 +17592270855658 51200 +17592270647105 50000 +17592270647103 50000 +17592270855702 51200 +17592271502775 51200 +17592270924652 50000 +17592271077832 50000 +17592271502845 51200 +17592271184615 50000 +17592272048080 51200 +17592271569138 50000 +17592271751801 50000 +17592271873607 50000 +17592271873605 50000 +17592272691104 51200 +17592272107170 50000 +17592272691178 51200 +17592272405166 50000 +17592273464278 51200 +17592272765685 50000 +17592272914802 50000 +17592273171922 50000 +17592273464341 51200 +17592274169522 51200 +17592273548953 50000 +17592273551566 50000 +17592273622633 50000 +17592273873203 50000 +17592274176375 51200 +17592274852104 51200 +17592274266642 50000 +17592274852165 51200 +17592274494213 50000 +17592274879458 51200 +17592275340538 51200 +17592274901966 50000 +17592275340552 51200 +17592275166253 50000 +17592275233721 50000 +17592275904291 51200 +17592275373347 50000 +17592275475002 50000 +17592275575125 50000 +17592275948900 50000 +17592275951483 51200 +17592275985716 50000 +17592276552444 51200 +17592276211493 50000 +17592276211491 50000 +17592276552514 51200 +17592277210344 50000 +17592277210180 51200 +17592276633777 50000 +17592276633779 50000 +17592277210202 51200 +17592276930400 50000 +17592277979163 51200 +17592277283588 50000 +17592277283590 50000 +17592277283592 50000 +17592277283572 50000 +17592277283574 50000 +17592277283576 50000 +17592277283578 50000 +17592277283580 50000 +17592277283582 50000 +17592277283584 50000 +17592277283586 50000 +17592277283556 50000 +17592277283558 50000 +17592277283560 50000 +17592277283562 50000 +17592277283564 50000 +17592277283566 50000 +17592277283568 50000 +17592277283570 50000 +17592277283554 50000 +17592277979286 51200 +17592277568115 50000 +17592277568117 50000 +17592278568370 51200 +17592278064870 50000 +17592278336676 50000 +17592278568420 51200 +17592278751322 50000 +17592279257741 51200 +17592278911747 50000 +17592279013032 50000 +17592279257753 51200 +17592279324348 50000 +17592279324346 50000 +17592279788316 51200 +17592279555494 50000 +17592279788336 51200 +17592279633393 50000 +17592280673746 51200 +17592279859932 50000 +17592280223579 50000 +17592280673764 51200 +17592280675473 51200 +17592280362745 50000 +17592280751368 50000 +17592281680621 51200 +17592281333963 50000 +17592281680631 51200 +17592281765659 50000 +17592282560564 51200 +17592281878727 50000 +17592282576088 51200 +17592282125838 50000 +17592283202633 51200 +17592282669235 50000 +17592283748103 51200 +17592283249598 50000 +17592284321509 51200 +17592283783335 50000 +17592284376779 51200 +17592284104309 50000 +17592285095343 51200 +17592284453722 50000 +17592285095394 51200 +17592284822259 50000 +17592285783199 51200 +17592285153330 50000 +17592285783207 51200 +17592285535282 50000 +17592286354770 51200 +17592285931234 50000 +17592286354776 51200 +17592286126458 50000 +17592286126462 50000 +17592286126460 50000 +17592287075710 51200 +17592287213057 50000 +17592287075714 51200 +17592286574912 50000 +17592286838258 50000 +17592287075728 51200 +17592286969792 50000 +17592287131921 50000 +17592287131923 50000 +17592287402939 50000 +17592252846238 50000 +17592252846236 50000 +17592252395329 50000 +17592252485942 50000 +17592252635284 50000 +17592252635280 50000 +17592252635282 50000 +17592253306465 50000 +17592253306463 50000 +17592253306467 50000 +17592252870510 50000 +17592252870512 50000 +17592253201389 25200 +17592253201407 25200 +17592253209600 25200 +17592253201426 25200 +17592253209618 25200 +17592253201444 25200 +17592253201489 25200 +17592253184060 25200 +17592253184085 25200 +17592253184130 25200 +17592253175946 25200 +17592253184148 25200 +17592253184173 25200 +17592253175995 25200 +17592253192385 25200 +17592253184200 25200 +17592253192403 25200 +17592253184219 25200 +17592253192421 25200 +17592253192439 25200 +17592253184250 25200 +17592253192458 25200 +17592253192476 25200 +17592253201353 25200 +17592253201371 25200 +17592253275046 50000 +17592253732492 25200 +17592254019753 25200 +17592254020308 50000 +17592254020325 25200 +17592254020341 25200 +17592254020358 25200 +17592254020374 25200 +17592254020390 25200 +17592254020406 25200 +17592254020423 25200 +17592254020440 25200 +17592254020456 25200 +17592254020472 25200 +17592254020489 25200 +17592254020505 25200 +17592254020521 25200 +17592254020543 25200 +17592254074387 50000 +17592254168567 25200 +17592254237620 50000 +17592254612797 50000 +17592255089051 50000 +17592254869077 50000 +17592254932528 25200 +17592254932878 25200 +17592254932997 25200 +17592254933154 25200 +17592254933138 25200 +17592254933171 25200 +17592254933203 25200 +17592254933187 25200 +17592254933235 25200 +17592254933219 25200 +17592254933267 25200 +17592254933251 25200 +17592254933302 25200 +17592254933285 25200 +17592254933356 25200 +17592254933394 25200 +17592254933436 25200 +17592254933419 25200 +17592255032415 50000 +17592255596857 50000 +17592255984019 50000 +17592256056905 25200 +17592256056922 25200 +17592256056938 25200 +17592256056954 74800 +17592256057031 25200 +17592256057047 25200 +17592256057015 25200 +17592256057072 25200 +17592256057088 69900 +17592256709146 50000 +17592256709144 50000 +17592256680129 50000 +17592256986739 50000 +17592256986737 50000 +17592257086997 25200 +17592257087137 25200 +17592257087121 25200 +17592257087105 25200 +17592257087078 25200 +17592257087202 25200 +17592257087186 25200 +17592257087170 25200 +17592257087153 25200 +17592257787070 50000 +17592257787068 50000 +17592258184622 50000 +17592258447111 50000 +17592258765780 50000 +17592259234028 50000 +17592259739155 50000 +17592259973196 50000 +17592260190597 50000 +17592260190595 50000 +17592260190593 50000 +17592260304904 50000 +17592260664503 50000 +17592260898159 50000 +17592260898157 50000 +17592261044051 50000 +17592261208190 50000 +17592261321128 25200 +17592261321112 25200 +17592261321078 25200 +17592261321094 25200 +17592261408932 50000 +17592261408928 50000 +17592261408930 50000 +17592261531915 50000 +17592261976617 50000 +17592262874859 50000 +17592263237742 50000 +17592263622857 50000 +17592263838209 50000 +17592264050040 50000 +17592264286201 25200 +17592264286795 25200 +17592264379916 50000 +17592264456592 25200 +17592264456575 25200 +17592264456466 25200 +17592264456448 25200 +17592264546399 25200 +17592264613869 50000 +17592264789845 69900 +17592264789862 25200 +17592264910362 50000 +17592265178535 50000 +17592265336474 51200 +17592265336490 51200 +17592265336403 25200 +17592265336387 25200 +17592265341398 25200 +17592265470718 50000 +17592265619313 51200 +17592265619297 51200 +17592265838050 50000 +17592266186940 50000 +17592266259149 50000 +17592266474541 50000 +17592266474539 50000 +17592266474545 50000 +17592266474543 50000 +17592266474533 50000 +17592266474531 50000 +17592266474537 50000 +17592266474535 50000 +17592266474557 50000 +17592266474555 50000 +17592266474561 50000 +17592266474559 50000 +17592266474549 50000 +17592266474547 50000 +17592266474553 50000 +17592266474551 50000 +17592266474573 50000 +17592266474571 50000 +17592266474577 50000 +17592266474575 50000 +17592266474565 50000 +17592266474563 50000 +17592266474569 50000 +17592266474567 50000 +17592266474579 50000 +17592266688114 25200 +17592266688130 25200 +17592266688146 25200 +17592266688162 25200 +17592266688098 25200 +17592266687992 25200 +17592266688009 25200 +17592266687208 50000 +17592266687206 50000 +17592266737478 74800 +17592266737495 25200 +17592266774677 50000 +17592267036707 50000 +17592267235092 50000 +17592267235434 51200 +17592267442139 25200 +17592267442156 25200 +17592267518381 50000 +17592267630042 50000 +17592267752500 50000 +17592267754918 25200 +17592267755126 25200 +17592267755100 25200 +17592267830322 50000 +17592267927779 50000 +17592267927781 50000 +17592267927783 50000 +17592267927785 50000 +17592267927787 50000 +17592267927789 50000 +17592267927791 50000 +17592267927793 50000 +17592267927795 50000 +17592267927797 50000 +17592267927799 50000 +17592268105290 50000 +17592268236773 50000 +17592268362512 51200 +17592268362494 51200 +17592268486500 50000 +17592268576735 50000 +17592268745148 50000 +17592268745150 50000 +17592268908246 74800 +17592268908167 51200 +17592268908076 51200 +17592268904886 25200 +17592269000324 51200 +17592268988605 25200 +17592268988585 25200 +17592268988568 25200 +17592268988392 25200 +17592268988837 25200 +17592268988821 25200 +17592268988805 25200 +17592268988787 25200 +17592268988768 25200 +17592269011679 25200 +17592269106808 50000 +17592269190621 25200 +17592269190711 51200 +17592269335680 50000 +17592269436537 50000 +17592269555345 25200 +17592269543509 51200 +17592269634629 50000 +17592269827484 74800 +17592269832983 50000 +17592269946267 25200 +17592269932442 50000 +17592269943189 51200 +17592270132983 25200 +17592270132950 25200 +17592270031517 25200 +17592270031579 51200 +17592270150922 25200 +17592270150942 25200 +17592270150958 25200 +17592270150974 25200 +17592270151067 25200 +17592270151085 25200 +17592270151103 25200 +17592270151119 25200 +17592270151136 25200 +17592270150829 25200 +17592270151408 25200 +17592270151228 25200 +17592270151244 25200 +17592270151260 25200 +17592270151276 69900 +17592270162066 25200 +17592270293532 25200 +17592270218816 25200 +17592270292358 50000 +17592270854778 16300 +17592270573294 51200 +17592270560786 50000 +17592270652738 50000 +17592270652736 50000 +17592270851709 50000 +17592270854252 51200 +17592271011609 50000 +17592271078419 50000 +17592271078417 50000 +17592271514724 25200 +17592271515183 25200 +17592271538841 74800 +17592271396637 25200 +17592271396621 25200 +17592271396654 69900 +17592271396757 25200 +17592271396741 25200 +17592271396791 74800 +17592271396774 74800 +17592271396824 25200 +17592271396807 74800 +17592271515598 25200 +17592271396520 25200 +17592271514060 25200 +17592271396987 25200 +17592271456066 50000 +17592271576592 51200 +17592271655920 51200 +17592271655976 25200 +17592271656090 74800 +17592271644169 50000 +17592271759218 50000 +17592271655936 51200 +17592271986297 50000 +17592272307094 50000 +17592272413691 50000 +17592272220922 51200 +17592272514849 25200 +17592272514561 25200 +17592272514652 25200 +17592272514707 25200 +17592272515332 25200 +17592272515348 25200 +17592272515299 25200 +17592272515316 25200 +17592272515398 25200 +17592272515415 25200 +17592272515366 25200 +17592272515382 25200 +17592272515461 25200 +17592272515483 25200 +17592272515439 25200 +17592272515059 25200 +17592272515151 25200 +17592272515167 25200 +17592272515118 25200 +17592272515135 25200 +17592272515184 25200 +17592272717218 25200 +17592272717318 25200 +17592272651894 50000 +17592272514367 51200 +17592272783030 74800 +17592273050650 50000 +17592273463261 50000 +17592273066967 51200 +17592273773715 51200 +17592273773707 51200 +17592273748266 50000 +17592273945752 50000 +17592273946589 25200 +17592273946967 25200 +17592273946949 25200 +17592273946933 25200 +17592273946917 25200 +17592273947031 25200 +17592273947015 25200 +17592273946999 25200 +17592273946983 25200 +17592273946718 25200 +17592273946702 25200 +17592273946686 25200 +17592273946782 25200 +17592273946750 25200 +17592273946734 25200 +17592273946830 25200 +17592273946814 25200 +17592273946798 25200 +17592274379320 25200 +17592274496127 25200 +17592273946766 25200 +17592274012024 50000 +17592274221702 25200 +17592274221721 25200 +17592274294520 25200 +17592274294414 25200 +17592274221568 51200 +17592274405910 50000 +17592274221686 51200 +17592274550681 51200 +17592274848186 50000 +17592274971113 50000 +17592275080279 50000 +17592275169774 50000 +17592275240753 25200 +17592275240703 25200 +17592275240687 25200 +17592275240737 25200 +17592275240721 25200 +17592275296111 25200 +17592275281798 74800 +17592275240511 25200 +17592275240495 25200 +17592275240543 25200 +17592275240527 25200 +17592275240639 25200 +17592275240623 25200 +17592275240671 25200 +17592275240655 25200 +17592275240575 25200 +17592275240559 25200 +17592275240607 25200 +17592275240591 25200 +17592275233622 51200 +17592275326355 50000 +17592275369700 25200 +17592275369747 51200 +17592275423594 25200 +17592275576114 50000 +17592275669639 51200 +17592275900290 25200 +17592275899565 50000 +17592276037081 25200 +17592276112558 51200 +17592276111752 50000 +17592276368722 25200 +17592276368738 25200 +17592276368690 25200 +17592276368658 25200 +17592276368674 25200 +17592276368626 25200 +17592276368642 25200 +17592276368754 25200 +17592276385147 74800 +17592276368770 25200 +17592276368586 25200 +17592276368610 25200 +17592276384918 74800 +17592276369018 25200 +17592276370400 25200 +17592276450058 25200 +17592276450025 25200 +17592276450042 25200 +17592276450009 25200 +17592276551361 51200 +17592276545167 50000 +17592276669799 25200 +17592276639412 25200 +17592276732938 51200 +17592277036060 51200 +17592277370313 50000 +17592277369963 74800 +17592277476820 51200 +17592277476792 51200 +17592277464450 50000 +17592277036099 51200 +17592277747770 50000 +17592277855301 25200 +17592277859547 25200 +17592277860022 25200 +17592277860006 25200 +17592277859990 25200 +17592277860681 25200 +17592277860821 25200 +17592277860805 25200 +17592277860747 25200 +17592277860869 25200 +17592277860853 25200 +17592277860837 25200 +17592277921628 25200 +17592277930217 25200 +17592277971618 50000 +17592278259333 50000 +17592278342413 51200 +17592278342449 51200 +17592277860897 25200 +17592278573874 50000 +17592278342377 51200 +17592278920389 50000 +17592279185155 25200 +17592279185171 25200 +17592279185205 25200 +17592279180903 25200 +17592279180987 25200 +17592279180871 25200 +17592279180887 25200 +17592279181584 25200 +17592279184192 25200 +17592279255954 25200 +17592279255871 25200 +17592279555500 50000 +17592279633848 25200 +17592279633929 25200 +17592279755213 50000 +17592280367004 25200 +17592280366988 25200 +17592280367020 25200 +17592280366848 25200 +17592280366880 25200 +17592280366864 25200 +17592280366816 25200 +17592280366832 25200 +17592280714253 25200 +17592280750161 25200 +17592281342358 50000 +17592281680365 50000 +17592281771398 50000 +17592281979941 50000 +17592281979939 50000 +17592281680009 74800 +17592282231488 50000 +17592282312666 25200 +17592282312845 25200 +17592282312829 25200 +17592282312731 25200 +17592282312715 25200 +17592282312699 25200 +17592282312682 25200 +17592282312747 25200 +17592282615560 25200 +17592282615510 25200 +17592282558541 50000 +17592282907580 50000 +17592283105215 74800 +17592283195453 50000 +17592283439377 50000 +17592283643299 69900 +17592283643251 25200 +17592283643235 25200 +17592283643283 25200 +17592283643267 25200 +17592283643183 25200 +17592283643219 25200 +17592283643167 25200 +17592283748157 25200 +17592284205466 50000 +17592284221633 51200 +17592284276309 25200 +17592284322837 50000 +17592284322839 50000 +17592284454571 50000 +17592284454573 50000 +17592284454569 50000 +17592284749602 51200 +17592284822263 50000 +17592284941763 25200 +17592285000072 25200 +17592285000088 25200 +17592285000056 25200 +17592285000021 25200 +17592284999906 25200 +17592285000207 25200 +17592285000226 69900 +17592285085141 50000 +17592285492231 25200 +17592285566218 51200 +17592285566234 51200 +17592285571634 25200 +17592285633092 25200 +17592285633076 51200 +17592285724243 25200 +17592285782873 50000 +17592285843914 51200 +17592286014921 50000 +17592286220594 51200 +17592286307318 25200 +17592286307302 25200 +17592286307224 25200 +17592286307208 25200 +17592286307192 25200 +17592286355529 50000 +17592286307285 25200 +17592286655831 25200 +17592286220610 51200 +17592286748799 51200 +17592286726573 50000 +17592286969108 50000 +17592287025673 25200 +17592287047225 50000 +17592287076016 51200 +17592287212539 25200 +17592287313978 50000 +17592287413396 50000 +17592277568646 50000 +17592277568280 50000 +17592277568451 50000 +17592277568359 50000 +17592266395585 50000 +17592259778995 51200 +17592258967623 50000 +17592259779017 51200 +17592259234066 50000 +17592259778978 51200 +17592259464767 50000 +17592259778968 51200 +17592259739195 50000 +17592259778958 51200 +17592259973232 50000 +17592266396853 51200 +17592260151178 50000 +17592260920425 51200 +17592260190641 50000 +17592260475352 50000 +17592260920448 51200 +17592260500881 50000 +17592266396786 51200 +17592260920506 51200 +17592260898203 50000 +17592261123443 50000 +17592261465972 51200 +17592261208234 50000 +17592261466153 51200 +17592261408974 50000 +17592262398364 51200 +17592262398420 51200 +17592261745341 50000 +17592261976671 50000 +17592261976669 50000 +17592263252741 51200 +17592262754359 50000 +17592263257144 51200 +17592262874891 50000 +17592263237788 50000 +17592263862576 51200 +17592263866545 51200 +17592263504218 50000 +17592263719316 50000 +17592263838247 50000 +17592264401874 51200 +17592264401990 51200 +17592264050070 50000 +17592267671695 51200 +17592267671687 51200 +17592264162754 50000 +17592264402235 51200 +17592264379954 50000 +17592264613905 50000 +17592264934044 51200 +17592264910406 50000 +17592264933932 51200 +17592265108347 50000 +17592265186290 50000 +17592265178567 50000 +17592267671703 51200 +17592265450784 50000 +17592266199204 51200 +17592265470756 50000 +17592265532389 50000 +17592266199335 51200 +17592265728611 50000 +17592265838074 50000 +17592266385955 50000 +17592266209627 51200 +17592266186984 50000 +17592266259195 50000 +17592266475885 50000 +17592266475883 50000 +17592266475889 50000 +17592266475887 50000 +17592266475877 50000 +17592266475875 50000 +17592266475881 50000 +17592266475879 50000 +17592266475893 50000 +17592266475891 50000 +17592266475895 50000 +17592266475853 50000 +17592266475851 50000 +17592266475857 50000 +17592266475855 50000 +17592266475849 50000 +17592266475847 50000 +17592266475869 50000 +17592266475867 50000 +17592266475873 50000 +17592266475871 50000 +17592266475861 50000 +17592266475859 50000 +17592266475865 50000 +17592266475863 50000 +17592266830507 51200 +17592266615232 50000 +17592267243709 51200 +17592266774717 50000 +17592266918652 50000 +17592266982738 50000 +17592266983213 50000 +17592267243760 51200 +17592267851390 51200 +17592267235132 50000 +17592267405440 50000 +17592267851430 51200 +17592267518413 50000 +17592267830364 50000 +17592267936063 50000 +17592268499785 51200 +17592268105328 50000 +17592268499911 51200 +17592268499988 51200 +17592268486540 50000 +17592268508935 50000 +17592268576817 50000 +17592268654648 50000 +17592269123277 51200 +17592268745440 50000 +17592268745442 50000 +17592268745436 50000 +17592268745438 50000 +17592268745456 50000 +17592268745458 50000 +17592268745452 50000 +17592268745454 50000 +17592268745448 50000 +17592268745450 50000 +17592268745444 50000 +17592268745446 50000 +17592268745464 50000 +17592268745466 50000 +17592268745460 50000 +17592268745462 50000 +17592269106854 50000 +17592269106852 50000 +17592269637216 51200 +17592269256618 50000 +17592269107813 50000 +17592269637327 51200 +17592269436567 50000 +17592269634669 50000 +17592270311795 51200 +17592269714393 50000 +17592270312004 51200 +17592269833031 50000 +17592269932484 50000 +17592270312085 51200 +17592270312792 50000 +17592270312761 50000 +17592270292404 50000 +17592270292406 50000 +17592270855778 51200 +17592270472168 50000 +17592270855966 51200 +17592270560822 50000 +17592270652846 50000 +17592270652844 50000 +17592270652842 50000 +17592270652840 50000 +17592270866132 50000 +17592270851745 50000 +17592271503048 51200 +17592270866480 50000 +17592271503174 51200 +17592271078449 50000 +17592271503300 51200 +17592273769988 50000 +17592271186642 50000 +17592271456114 50000 +17592271456112 50000 +17592272048210 51200 +17592271887749 50000 +17592271644191 50000 +17592271759248 50000 +17592272048879 51200 +17592271986353 50000 +17592271986351 50000 +17592272691318 51200 +17592272691348 51200 +17592272691389 51200 +17592272307140 50000 +17592272413731 50000 +17592272407671 50000 +17592272692197 51200 +17592272651936 50000 +17592273254550 50000 +17592273050708 50000 +17592273464490 51200 +17592274196374 51200 +17592273463305 50000 +17592273683160 50000 +17592273683138 50000 +17592273748300 50000 +17592274211495 51200 +17592274012070 50000 +17592274852244 51200 +17592274408639 50000 +17592274408625 50000 +17592274405950 50000 +17592274852324 51200 +17592275342387 51200 +17592274848230 50000 +17592275193305 50000 +17592275193364 50000 +17592274971229 50000 +17592275342452 51200 +17592275080315 50000 +17592275326405 50000 +17592275941537 51200 +17592275476966 50000 +17592275576146 50000 +17592275942860 51200 +17592275899613 50000 +17592276552562 51200 +17592276639495 74610 +17592276038840 50000 +17592276552828 51200 +17592276111794 50000 +17592277210392 51200 +17592276545217 50000 +17592276838112 50000 +17592277210549 51200 +17592276837475 50000 +17592277169320 50000 +17592277750408 51200 +17592277464482 50000 +17592277978870 51200 +17592277978860 51200 +17592277747806 50000 +17592278568443 51200 +17592277971662 50000 +17592278568523 51200 +17592278568593 51200 +17592278259367 50000 +17592279267756 51200 +17592278573918 50000 +17592278920427 50000 +17592279267932 51200 +17592279017732 50000 +17592279256224 50000 +17592279268022 51200 +17592279324390 50000 +17592279555548 50000 +17592279788551 51200 +17592282940938 50000 +17592280675296 51200 +17592279755259 50000 +17592279875382 86200 +17592280675393 51200 +17592280131814 50000 +17592281702305 51200 +17592280652327 50000 +17592281210318 50000 +17592281702333 51200 +17592285167433 51200 +17592282691621 50000 +17592282575433 51200 +17592281771287 50000 +17592282691631 50000 +17592282691061 51200 +17592282691641 50000 +17592282691611 50000 +17592285167169 50000 +17592283211348 51200 +17592282669321 81110 +17592284037273 74610 +17592283703125 51200 +17592282907614 50000 +17592283703129 51200 +17592283195489 50000 +17592283703133 51200 +17592283439409 50000 +17592283733059 50000 +17592284038843 51200 +17592283907679 50000 +17592284012346 50000 +17592284038839 51200 +17592284322881 50000 +17592284454385 50000 +17592284945237 51200 +17592285252285 51200 +17592284454831 50000 +17592284454827 50000 +17592284454829 50000 +17592284454823 50000 +17592284454825 50000 +17592284454821 50000 +17592284945233 51200 +17592284725489 50000 +17592284725310 50000 +17592284945229 51200 +17592284824076 74610 +17592285166906 50000 +17592285167219 51200 +17592285085185 50000 +17592285778258 51200 +17592285301381 50000 +17592285535312 50000 +17592285535310 50000 +17592285632580 50000 +17592285797848 50000 +17592286351131 51200 +17592285782919 50000 +17592286351127 51200 +17592286014957 50000 +17592287016624 51200 +17592286355581 50000 +17592286726208 50000 +17592286726306 83800 +17592286863216 74600 +17592286863332 74600 +17592286863434 74600 +17592287016630 51200 +17592286726619 50000 +17592286969146 50000 +17592287047271 50000 +17592287148109 50000 +17592287047848 50000 +17592287212494 50000 +17592287314020 50000 +17592287314022 50000 +17592287413444 50000 +17592286223812 51200 +17592258561113 51200 +17592286223792 81160 +17592252303913 74150 +17592258563927 51200 +17592252276583 74800 +17592258564363 51200 +17592258562709 51200 +17592252437206 51200 +17592252846210 50000 +17592252846206 50000 +17592252846204 50000 +17592252846208 50000 +17592252845933 51200 +17592252845929 51200 +17592253042306 58000 +17592253307362 50000 +17592253307364 50000 +17592253316698 51200 +17592253044933 25200 +17592252958346 58000 +17592253307366 50000 +17592253316694 51200 +17592253751048 50000 +17592253751050 50000 +17592253751052 50000 +17592253751054 50000 +17592253750515 51200 +17592253751056 50000 +17592253751058 50000 +17592253751060 50000 +17592258564968 51200 +17592253750491 51200 +17592253750511 51200 +17592254099212 51200 +17592254101463 50000 +17592254099222 51200 +17592254101465 50000 +17592254101467 50000 +17592254099232 51200 +17592254101469 50000 +17592254099242 51200 +17592254620614 50000 +17592254168522 74150 +17592254621715 51200 +17592254620616 50000 +17592254439010 58000 +17592254438993 74610 +17592254612825 50000 +17592254621711 51200 +17592254837972 25200 +17592254832042 50000 +17592255089385 51200 +17592255089381 51200 +17592254929242 50000 +17592255032447 50000 +17592255032449 50000 +17592255089377 51200 +17592255123238 50000 +17592255211794 50000 +17592255663202 51200 +17592255313057 50000 +17592255448216 25200 +17592255663198 51200 +17592255596887 50000 +17592255876398 15300 +17592255876727 34000 +17592255924172 50000 +17592256193191 51200 +17592256050358 50000 +17592256206211 74800 +17592256157027 50000 +17592256193187 51200 +17592256379956 25200 +17592256379940 25200 +17592256354414 50000 +17592256354416 50000 +17592256686788 51200 +17592256686798 51200 +17592256709475 51200 +17592256657578 25200 +17592256680171 50000 +17592256709471 51200 +17592257221860 51200 +17592256888782 50000 +17592256888784 50000 +17592256888786 50000 +17592256986755 50000 +17592257067692 50000 +17592257773687 51200 +17592257225045 74610 +17592257225062 58000 +17592257225167 25200 +17592257225148 25200 +17592257211272 50000 +17592257386115 50000 +17592257773717 51200 +17592257483528 50000 +17592257751360 50000 +17592257773911 51200 +17592257951962 50000 +17592258225110 51200 +17592258184660 50000 +17592258225106 51200 +17592258792432 51200 +17592258792442 51200 +17592258447131 50000 +17592258638371 74800 +17592258663463 50000 +17592258682841 58000 +17592258675645 74610 +17592258765810 50000 +17592258792452 51200 +17592259265672 51200 +17592258967615 50000 +17592259063669 50000 +17592259265682 51200 +17592259234056 50000 +17592259348246 55000 +17592259348230 48000 +17592259362848 71500 +17592259362828 48000 +17592259464759 50000 +17592259754035 51200 +17592259739185 50000 +17592259754045 51200 +17592259973220 50000 +17592260239708 51200 +17592260163079 25200 +17592260163095 25200 +17592260190629 50000 +17592260239718 51200 +17592260500873 50000 +17592260920215 51200 +17592260898187 50000 +17592260941362 74450 +17592260920969 74800 +17592260920226 51200 +17592261123435 50000 +17592261465982 51200 +17592261208226 50000 +17592261466143 51200 +17592261408964 50000 +17592261646112 50000 +17592262398402 51200 +17592261745331 50000 +17592263257023 51200 +17592262398906 51200 +17592261976655 50000 +17592261976653 50000 +17592263256967 51200 +17592263257093 51200 +17592262874881 50000 +17592263237772 50000 +17592263862601 51200 +17592263310506 50000 +17592264401910 51200 +17592263866525 51200 +17592263504210 50000 +17592263719308 50000 +17592263838237 50000 +17592264401844 51200 +17592264062079 50000 +17592264076413 74800 +17592264076463 82100 +17592264401940 51200 +17592264076371 74700 +17592264050062 50000 +17592266199256 51200 +17592264402215 51200 +17592264379944 50000 +17592264933822 51200 +17592266199258 51200 +17592264613893 50000 +17592264934004 51200 +17592264801000 74800 +17592264910394 50000 +17592264933922 51200 +17592265094795 50000 +17592265178559 50000 +17592266199262 51200 +17592266199260 51200 +17592265280156 50000 +17592265280158 50000 +17592265280154 50000 +17592266199214 51200 +17592265470746 50000 +17592265554563 74610 +17592286360418 50000 +17592266199305 51200 +17592265728603 50000 +17592266223375 25200 +17592266223383 25200 +17592266186972 50000 +17592266209617 51200 +17592286360398 50000 +17592266259179 50000 +17592266475557 50000 +17592266475555 50000 +17592266475517 50000 +17592266475515 50000 +17592266475521 50000 +17592266475519 50000 +17592266475513 50000 +17592266475511 50000 +17592266475533 50000 +17592266475531 50000 +17592266475537 50000 +17592266475535 50000 +17592266475525 50000 +17592266475523 50000 +17592266475529 50000 +17592266475527 50000 +17592266475549 50000 +17592266475547 50000 +17592266475553 50000 +17592266475551 50000 +17592266475541 50000 +17592266475539 50000 +17592266475545 50000 +17592266475543 50000 +17592266830517 51200 +17592266687234 50000 +17592266779832 74800 +17592266779848 82100 +17592267243699 51200 +17592266774707 50000 +17592266982730 50000 +17592267243750 51200 +17592286360412 50000 +17592267235122 50000 +17592268499825 51200 +17592267331942 50000 +17592286360407 50000 +17592267518405 50000 +17592268499827 51200 +17592267752504 50000 +17592267830354 50000 +17592268499775 51200 +17592286360408 50000 +17592268105318 50000 +17592268499851 51200 +17592268499998 51200 +17592268486530 50000 +17592268576797 50000 +17592268576795 50000 +17592268576799 50000 +17592286360405 50000 +17592269123139 51200 +17592268745260 50000 +17592268745262 50000 +17592268745256 50000 +17592268745258 50000 +17592268745252 50000 +17592268745254 50000 +17592268745232 50000 +17592268745234 50000 +17592268745230 50000 +17592268745248 50000 +17592268745250 50000 +17592268745244 50000 +17592268745246 50000 +17592268745240 50000 +17592268745242 50000 +17592268745236 50000 +17592268745238 50000 +17592268800772 82100 +17592269106653 74800 +17592269106838 50000 +17592269637196 51200 +17592269335714 50000 +17592286360416 50000 +17592269637287 51200 +17592269436559 50000 +17592269433197 71200 +17592269542919 50000 +17592286360413 50000 +17592269634659 50000 +17592270311783 51200 +17592269833017 50000 +17592269932474 50000 +17592269932476 50000 +17592270312055 51200 +17592270292388 50000 +17592270855766 51200 +17592270490357 73300 +17592270472162 50000 +17592270855919 51200 +17592270560814 50000 +17592270652822 50000 +17592270652824 50000 +17592286360400 50000 +17592270851737 50000 +17592271503045 51200 +17592271011619 50000 +17592286360414 50000 +17592286360397 50000 +17592271078439 50000 +17592271503230 51200 +17592271186634 50000 +17592271315567 50000 +17592271456102 50000 +17592271456100 50000 +17592272048200 51200 +17592271644181 50000 +17592271644179 50000 +17592271759238 50000 +17592271776137 25200 +17592272048293 51200 +17592271807095 82100 +17592271986333 50000 +17592272691288 51200 +17592286360409 50000 +17592272216955 50000 +17592272276063 74610 +17592272691368 51200 +17592272307128 50000 +17592272307126 50000 +17592272413721 50000 +17592272692247 51200 +17592272651924 50000 +17592273050692 50000 +17592273464480 51200 +17592273464460 51200 +17592274197592 51200 +17592273463295 50000 +17592274198659 51200 +17592273748286 50000 +17592274211455 51200 +17592273996310 25200 +17592274012056 50000 +17592274852224 51200 +17592274852274 51200 +17592274405934 50000 +17592286360406 50000 +17592274783384 74800 +17592275342347 51200 +17592274848216 50000 +17592275941792 51200 +17592274979178 82600 +17592275004303 82300 +17592274971189 50000 +17592275342422 51200 +17592275080303 50000 +17592275326387 50000 +17592275941527 51200 +17592286360419 50000 +17592286360402 50000 +17592275576132 50000 +17592275942616 51200 +17592275899599 50000 +17592276552605 51200 +17592286360399 50000 +17592276552788 51200 +17592276111780 50000 +17592277210402 51200 +17592276545203 50000 +17592277210501 51200 +17592276837463 50000 +17592276936528 50000 +17592277978583 51200 +17592277169302 50000 +17592277304775 74150 +17592277305127 74610 +17592286360415 50000 +17592277304938 82300 +17592277370329 50000 +17592277390917 82300 +17592277464470 50000 +17592277978820 51200 +17592277747796 50000 +17592278568473 51200 +17592277971648 50000 +17592278568553 51200 +17592278259353 50000 +17592279267744 51200 +17592278573904 50000 +17592278689449 50000 +17592278825975 50000 +17592278920415 50000 +17592279267884 51200 +17592279126770 50000 +17592279256210 50000 +17592279788414 51200 +17592279324378 50000 +17592279449419 50000 +17592279449421 50000 +17592279555526 50000 +17592279555528 50000 +17592279788531 51200 +17592286360404 50000 +17592286360401 50000 +17592280675323 51200 +17592279755243 50000 +17592279859944 50000 +17592280079729 82600 +17592280079334 82300 +17592279950206 50000 +17592280099802 74150 +17592280675353 51200 +17592280131802 50000 +17592280583398 82100 +17592281699182 51200 +17592280652307 50000 +17592281698828 51200 +17592280751382 50000 +17592281699542 51200 +17592282691051 51200 +17592280850168 50000 +17592280850166 50000 +17592281120882 74150 +17592281210306 50000 +17592281699575 51200 +17592281699555 51200 +17592286360417 50000 +17592281441603 50000 +17592282575479 51200 +17592281680397 50000 +17592281680399 50000 +17592281771444 50000 +17592281771442 50000 +17592281979977 50000 +17592281979979 50000 +17592282575489 51200 +17592286360410 50000 +17592282231502 50000 +17592282312634 58000 +17592283211090 51200 +17592282558571 50000 +17592282669239 50000 +17592282798252 50000 +17592283703153 51200 +17592282907602 50000 +17592283703149 51200 +17592283195477 50000 +17592286360411 50000 +17592283703157 51200 +17592283439397 50000 +17592283733045 50000 +17592284321755 51200 +17592284321759 51200 +17592284012334 50000 +17592284321763 51200 +17592284322867 50000 +17592284945257 51200 +17592284454743 50000 +17592284454745 50000 +17592284454739 50000 +17592284454741 50000 +17592284454735 50000 +17592284454737 50000 +17592284586127 82100 +17592284625564 25200 +17592284656213 50000 +17592284656215 50000 +17592284749018 25200 +17592284725296 50000 +17592284746597 25200 +17592284945253 51200 +17592284822279 50000 +17592285085169 50000 +17592285778268 51200 +17592286360403 50000 +17592285778272 51200 +17592285301367 50000 +17592285535302 50000 +17592285822280 25200 +17592286351144 51200 +17592285782903 50000 +17592285821550 25200 +17592285842550 50000 +17592285842552 50000 +17592285909899 25200 +17592286014941 50000 +17592286351148 51200 +17592286355561 50000 +17592287017079 51200 +17592287017088 51200 +17592286748822 74800 +17592287017329 51200 +17592286726601 50000 +17592286969136 50000 +17592287047255 50000 +17592287232521 50000 +17592287314002 50000 +17592287314004 50000 +17592287413432 50000 +17592285986220 50000 +17592252277637 50000 +17592252437138 51200 +17592252832050 82100 +17592251790403 82100 +17592252395349 50000 +17592252845897 51200 +17592252567257 50000 +17592252635324 50000 +17592252635326 50000 +17592252635328 50000 +17592252635322 50000 +17592252764758 50000 +17592252764756 50000 +17592252764760 50000 +17592252845893 51200 +17592252830861 50000 +17592253316670 51200 +17592253042472 50000 +17592253042474 50000 +17592253316666 51200 +17592253169953 50000 +17592257543258 74800 +17592253275094 50000 +17592253275096 50000 +17592253750379 51200 +17592253409325 50000 +17592253471311 50000 +17592253471313 50000 +17592253750359 51200 +17592253627804 50000 +17592253704994 50000 +17592254102623 51200 +17592253904007 50000 +17592254102619 51200 +17592254074409 50000 +17592252832052 82100 +17592254621675 51200 +17592254313977 50000 +17592254621671 51200 +17592254612823 50000 +17592254738034 34010 +17592255089337 51200 +17592254832040 50000 +17592255089333 51200 +17592255032445 50000 +17592255661796 51200 +17592255313055 50000 +17592255510115 74800 +17592255510124 74800 +17592255661792 51200 +17592255596885 50000 +17592256193209 51200 +17592255924170 50000 +17592256193205 51200 +17592256157025 50000 +17592252832054 82100 +17592256687019 51200 +17592256354410 50000 +17592256354412 50000 +17592256687009 51200 +17592256680169 50000 +17592257221829 51200 +17592256888780 50000 +17592257222015 51200 +17592257067690 50000 +17592257211270 50000 +17592257386113 50000 +17592257773311 51200 +17592257543239 74800 +17592257543276 74800 +17592257483526 50000 +17592257543082 74800 +17592257543100 74800 +17592257543117 74800 +17592257773303 51200 +17592257751358 50000 +17592258186192 51200 +17592257951960 50000 +17592258064073 72100 +17592258097402 50000 +17592258186170 51200 +17592258184658 50000 +17592258791019 51200 +17592258447129 50000 +17592252832056 82100 +17592258663461 50000 +17592258791015 51200 +17592258765808 50000 +17592259233827 51200 +17592258967613 50000 +17592259233823 51200 +17592259234054 50000 +17592259741764 51200 +17592259464757 50000 +17592259741697 51200 +17592259739183 50000 +17592260190474 51200 +17592259973218 50000 +17592260190470 51200 +17592260190627 50000 +17592260912791 51200 +17592260500871 50000 +17592260912664 51200 +17592252832058 82100 +17592260898185 50000 +17592261424124 51200 +17592261123433 50000 +17592261208224 50000 +17592261424053 51200 +17592261408962 50000 +17592261977723 51200 +17592263239639 51200 +17592261745329 50000 +17592261977719 51200 +17592261977715 51200 +17592261976651 50000 +17592263239635 51200 +17592262874879 50000 +17592263239631 51200 +17592263237770 50000 +17592263310504 50000 +17592263838131 51200 +17592263504208 50000 +17592263838127 51200 +17592263838235 50000 +17592252832060 82100 +17592264378641 51200 +17592264050060 50000 +17592264378646 51200 +17592264379942 50000 +17592264933974 51200 +17592264613891 50000 +17592264933962 51200 +17592264910111 51200 +17592264910101 51200 +17592264910392 50000 +17592265421147 51200 +17592265178557 50000 +17592265421143 51200 +17592265470744 50000 +17592265619397 50000 +17592266181201 51200 +17592265728601 50000 +17592265838068 50000 +17592266181197 51200 +17592266186970 50000 +17592266259177 50000 +17592266775095 51200 +17592266475437 50000 +17592266475435 50000 +17592266475441 50000 +17592266475439 50000 +17592266475429 50000 +17592266475427 50000 +17592266475433 50000 +17592266475431 50000 +17592266475453 50000 +17592266475451 50000 +17592266475457 50000 +17592266475455 50000 +17592266475445 50000 +17592266475443 50000 +17592266475449 50000 +17592266475447 50000 +17592266475469 50000 +17592266475467 50000 +17592266475473 50000 +17592266475471 50000 +17592266475461 50000 +17592266475459 50000 +17592266475465 50000 +17592266475463 50000 +17592266475485 50000 +17592266475483 50000 +17592266475489 50000 +17592266475487 50000 +17592266475477 50000 +17592266475475 50000 +17592266475481 50000 +17592266475479 50000 +17592266475501 50000 +17592266475499 50000 +17592266475505 50000 +17592266475503 50000 +17592266475493 50000 +17592266475491 50000 +17592266475497 50000 +17592266475495 50000 +17592266475509 50000 +17592266475507 50000 +17592252832062 82100 +17592266775090 51200 +17592266687232 50000 +17592266774705 50000 +17592267234761 51200 +17592266982728 50000 +17592267234757 51200 +17592267235120 50000 +17592267818023 51200 +17592267518403 50000 +17592267818019 51200 +17592267830352 50000 +17592268460339 51200 +17592268105316 50000 +17592268105314 50000 +17592268460335 51200 +17592268486528 50000 +17592268576789 50000 +17592268576793 50000 +17592268576791 50000 +17592269100357 51200 +17592268745228 50000 +17592268745224 50000 +17592268745226 50000 +17592268745220 50000 +17592268745222 50000 +17592268745200 50000 +17592268745202 50000 +17592268745198 50000 +17592268745216 50000 +17592268745218 50000 +17592268745212 50000 +17592268745214 50000 +17592268745208 50000 +17592268745210 50000 +17592268745204 50000 +17592268745206 50000 +17592269100353 51200 +17592269106836 50000 +17592252832064 82100 +17592269335712 50000 +17592269633640 51200 +17592269436557 50000 +17592269633631 51200 +17592269634657 50000 +17592270288071 51200 +17592269833015 50000 +17592269932470 50000 +17592269932472 50000 +17592270288067 51200 +17592270292386 50000 +17592270851287 51200 +17592270560812 50000 +17592270652814 50000 +17592270652818 50000 +17592270652816 50000 +17592270652820 50000 +17592270696384 74800 +17592270682346 25200 +17592270682253 74800 +17592270851283 51200 +17592270851735 50000 +17592271455321 51200 +17592271078437 50000 +17592271186632 50000 +17592271456098 50000 +17592271518455 51200 +17592271983524 51200 +17592252832066 82100 +17592271759236 50000 +17592271887585 74800 +17592271887569 74800 +17592271904805 82100 +17592271983521 51200 +17592271986331 50000 +17592272648878 51200 +17592272307124 50000 +17592272413719 50000 +17592272648874 51200 +17592272651922 50000 +17592273050690 50000 +17592273050688 50000 +17592273459887 51200 +17592273188495 50000 +17592273188497 50000 +17592273459883 51200 +17592273463293 50000 +17592273628394 50000 +17592274009074 51200 +17592273748284 50000 +17592274009070 51200 +17592274012054 50000 +17592274847031 51200 +17592274405932 50000 +17592274847027 51200 +17592252832068 82100 +17592274848214 50000 +17592274901984 50000 +17592275322401 51200 +17592274971187 50000 +17592275080301 50000 +17592275080299 50000 +17592275169798 50000 +17592275322397 51200 +17592275326385 50000 +17592275895283 51200 +17592275895334 51200 +17592275895238 51200 +17592275576130 50000 +17592275699984 50000 +17592275895218 51200 +17592275899597 50000 +17592276546804 51200 +17592276111778 50000 +17592276546797 51200 +17592276545201 50000 +17592277164429 51200 +17592276837461 50000 +17592277210883 51200 +17592277169300 50000 +17592252832070 82100 +17592278259269 83100 +17592277971113 51200 +17592277464468 50000 +17592277971109 51200 +17592277971646 50000 +17592278565533 51200 +17592278259351 50000 +17592278565529 51200 +17592278573902 50000 +17592279252078 51200 +17592278920413 50000 +17592279252074 51200 +17592279256208 50000 +17592279324376 50000 +17592279747895 51200 +17592279555524 50000 +17592279747891 51200 +17592279755241 50000 +17592280651006 51200 +17592279950204 50000 +17592252832072 82100 +17592280131800 50000 +17592280651002 51200 +17592280652305 50000 +17592281675451 51200 +17592281210304 50000 +17592281675447 51200 +17592281675470 51200 +17592281680395 50000 +17592281771440 50000 +17592282373146 51200 +17592281979975 50000 +17592281979973 50000 +17592282373142 51200 +17592282231500 50000 +17592282558567 50000 +17592282558569 50000 +17592282798250 50000 +17592283187949 51200 +17592282907600 50000 +17592283187945 51200 +17592283195475 50000 +17592283733826 51200 +17592283439395 50000 +17592283733822 51200 +17592287427658 81160 +17592283733043 50000 +17592284317813 51200 +17592284012332 50000 +17592284317809 51200 +17592284322865 50000 +17592284454731 50000 +17592284454733 50000 +17592284454727 50000 +17592284454729 50000 +17592284454723 50000 +17592284454725 50000 +17592285086792 51200 +17592284656211 50000 +17592284725292 50000 +17592284725294 50000 +17592285086788 51200 +17592285085167 50000 +17592285778437 51200 +17592285301365 50000 +17592285778433 51200 +17592285782901 50000 +17592286352471 51200 +17592285933618 50000 +17592286014939 50000 +17592286352467 51200 +17592286355559 50000 +17592287042788 51200 +17592286726599 50000 +17592286969134 50000 +17592287047253 50000 +17592287314000 50000 +17592287413430 50000 +17592287413428 50000 +17592280673529 51200 +17592285467479 50000 +17592285467483 50000 +17592285467524 50000 +17592280673531 51200 +17592285467520 50000 +17592285467516 50000 +17592280673436 51200 +17592285467512 50000 +17592285467508 50000 +17592280673525 51200 +17592285467504 50000 +17592285467500 50000 +17592280673535 51200 +17592280673560 51200 +17592285467496 50000 +17592280673580 51200 +17592285467450 50000 +17592285467446 50000 +17592280673564 51200 +17592280673568 51200 +17592280673572 51200 +17592285467419 50000 +17592280673576 51200 +17592283162926 51200 +17592281680541 50000 +17592281680041 51200 +17592280751386 50000 +17592281680045 51200 +17592281441621 50000 +17592281680049 51200 +17592282554430 51200 +17592281771472 50000 +17592281771474 50000 +17592281878759 50000 +17592282554434 51200 +17592282554438 51200 +17592282231516 50000 +17592283162918 51200 +17592282669247 50000 +17592283162922 51200 +17592283014594 50000 +17592283696908 51200 +17592283696912 51200 +17592283254387 50000 +17592283341714 50000 +17592283696916 51200 +17592284321336 51200 +17592283623905 50000 +17592287427758 16100 +17592284321332 51200 +17592284321340 51200 +17592284205470 50000 +17592284945137 51200 +17592284454895 50000 +17592284454897 50000 +17592284454891 50000 +17592284454893 50000 +17592284454889 50000 +17592284945141 51200 +17592284917468 50000 +17592284945145 51200 +17592285087323 51200 +17592285153368 50000 +17592285153370 50000 +17592285242061 50000 +17592285467711 51200 +17592285492141 25200 +17592285492123 25200 +17592285777718 51200 +17592285632584 50000 +17592286350420 51200 +17592285842566 50000 +17592286350422 51200 +17592286350416 51200 +17592286215683 50000 +17592286352651 51200 +17592286576463 50000 +17592287012022 51200 +17592287012026 51200 +17592286726629 50000 +17592286749768 25200 +17592287012030 51200 +17592286969152 50000 +17592287133471 50000 +17592287212500 50000 +17592287314034 50000 +17592275992290 15300 +17592287427790 16100 +17592286848266 51200 +17592286847756 50000 +17592286848268 51200 +17592286847758 50000 +17592286848270 51200 +17592286848272 51200 +17592286848274 51200 +17592287042761 51200 +17592286848276 51200 +17592286847760 50000 +17592286847991 51200 +17592287042757 51200 +17592287042747 51200 +17592286969154 50000 +17592287047283 50000 +17592287078222 51200 +17592287413460 50000 +17592252277631 50000 +17592286033253 51200 +17592235654022 82100 +17592252395339 50000 +17592252426175 25200 +17592252845648 51200 +17592252426345 25200 +17592252426329 25200 +17592252426312 25200 +17592252426296 25200 +17592252426259 25200 +17592252426241 25200 +17592252426225 25200 +17592252426208 25200 +17592252426192 25200 +17592252426156 25200 +17592252635298 50000 +17592252694200 50000 +17592252845644 51200 +17592252830851 50000 +17592253308374 51200 +17592252957245 50000 +17592253308371 51200 +17592253085963 50000 +17592253307587 74100 +17592253275066 50000 +17592253275068 50000 +17592253275070 50000 +17592253731997 51200 +17592253410914 25200 +17592253409307 50000 +17592253732007 51200 +17592253550027 50000 +17592253627796 50000 +17592253704982 50000 +17592254098692 51200 +17592254098702 51200 +17592254098712 51200 +17592254098722 51200 +17592253961662 50000 +17592254074399 50000 +17592254616756 51200 +17592235654024 82100 +17592254248205 25200 +17592254248228 25200 +17592254616823 51200 +17592254496094 25200 +17592254379503 50000 +17592254617982 74100 +17592254612807 50000 +17592255054337 51200 +17592254737972 34010 +17592254737988 34010 +17592254869083 50000 +17592255054347 51200 +17592255032429 50000 +17592255638158 51200 +17592255211784 50000 +17592255277433 72181 +17592255407586 50000 +17592255638168 51200 +17592255596867 50000 +17592255596869 50000 +17592256181066 51200 +17592255984025 50000 +17592256181076 51200 +17592256157009 50000 +17592235654026 82100 +17592256684361 51200 +17592256434233 50000 +17592256684371 51200 +17592256680149 50000 +17592257221809 51200 +17592256808140 50000 +17592257243774 74100 +17592257221980 51200 +17592256986747 50000 +17592257067684 50000 +17592257211254 50000 +17592257773315 51200 +17592257584841 50000 +17592257773307 51200 +17592257751336 50000 +17592258186178 51200 +17592257878512 50000 +17592257878514 50000 +17592258009866 50000 +17592258186174 51200 +17592258184636 50000 +17592258184638 50000 +17592258790941 51200 +17592235654028 82100 +17592258790937 51200 +17592258578927 50000 +17592258684327 25200 +17592258765792 50000 +17592260036239 25200 +17592259234007 51200 +17592259063657 50000 +17592259234003 51200 +17592259234038 50000 +17592259741691 51200 +17592259384463 50000 +17592259464739 50000 +17592259532736 50000 +17592259532738 50000 +17592259741693 51200 +17592259739167 50000 +17592260190488 51200 +17592260068990 50000 +17592260068992 50000 +17592260190492 51200 +17592260190609 50000 +17592260912658 51200 +17592260664511 50000 +17592260912660 51200 +17592235654030 82100 +17592260898169 50000 +17592261424057 51200 +17592261592192 25200 +17592261977693 51200 +17592261208202 50000 +17592261208200 50000 +17592261424061 51200 +17592261408944 50000 +17592261977695 51200 +17592261601972 72710 +17592261646100 50000 +17592261873020 50000 +17592261977697 51200 +17592261976629 50000 +17592263239756 51200 +17592262875842 25200 +17592263239760 51200 +17592262994498 50000 +17592263237754 50000 +17592263838538 51200 +17592263568938 25200 +17592263622863 50000 +17592263838542 51200 +17592263838219 50000 +17592264378622 51200 +17592263986355 50000 +17592235654032 82100 +17592264162746 50000 +17592264216956 25200 +17592264378626 51200 +17592264379926 50000 +17592264910077 51200 +17592264707081 50000 +17592264910073 51200 +17592264910374 50000 +17592264910376 50000 +17592265421165 51200 +17592265421169 51200 +17592265280146 50000 +17592265421161 51200 +17592265232830 25200 +17592265470728 50000 +17592266181216 51200 +17592265838058 50000 +17592266181220 51200 +17592266186954 50000 +17592266186952 50000 +17592266259157 50000 +17592266775076 51200 +17592266474861 50000 +17592266474859 50000 +17592266474865 50000 +17592266474863 50000 +17592266474853 50000 +17592266474851 50000 +17592266474857 50000 +17592266474855 50000 +17592266474877 50000 +17592266474875 50000 +17592266474881 50000 +17592266474879 50000 +17592266474869 50000 +17592266474867 50000 +17592266474873 50000 +17592266474871 50000 +17592266474797 50000 +17592266474795 50000 +17592266474801 50000 +17592266474799 50000 +17592266474789 50000 +17592266474787 50000 +17592266474793 50000 +17592266474791 50000 +17592266474813 50000 +17592266474811 50000 +17592266474817 50000 +17592266474815 50000 +17592266474805 50000 +17592266474803 50000 +17592266474809 50000 +17592266474807 50000 +17592266474829 50000 +17592266474827 50000 +17592266474833 50000 +17592266474831 50000 +17592266474821 50000 +17592266474819 50000 +17592266474825 50000 +17592266474823 50000 +17592266474845 50000 +17592266474843 50000 +17592266474849 50000 +17592266474847 50000 +17592266474837 50000 +17592266474835 50000 +17592266474841 50000 +17592266474839 50000 +17592266474781 50000 +17592266474779 50000 +17592266474785 50000 +17592266474783 50000 +17592266474777 50000 +17592235654034 82100 +17592266775085 51200 +17592266597121 50000 +17592266597123 50000 +17592266687214 50000 +17592266687212 50000 +17592266687210 50000 +17592266774689 50000 +17592267234753 51200 +17592267234749 51200 +17592267036717 50000 +17592267036719 50000 +17592267235104 50000 +17592267818015 51200 +17592267818011 51200 +17592267630048 50000 +17592267830332 50000 +17592267927907 50000 +17592267927909 50000 +17592267927911 50000 +17592267927913 50000 +17592267927915 50000 +17592267927917 50000 +17592267927919 50000 +17592267927921 50000 +17592267927923 50000 +17592267927925 50000 +17592267927927 50000 +17592267927929 50000 +17592267927931 50000 +17592267927933 50000 +17592267927903 50000 +17592267927905 50000 +17592268460331 51200 +17592268236779 50000 +17592268460327 51200 +17592268486512 50000 +17592269100339 51200 +17592268576749 50000 +17592268576751 50000 +17592268654636 50000 +17592268745166 50000 +17592269100335 51200 +17592268892314 50000 +17592235654036 82100 +17592269106818 50000 +17592269633595 51200 +17592269335688 50000 +17592270288057 51200 +17592269498884 50000 +17592269634641 50000 +17592270288059 51200 +17592269832991 50000 +17592270288063 51200 +17592270031609 50000 +17592270150294 50000 +17592270292368 50000 +17592270851265 51200 +17592270652764 50000 +17592270652762 50000 +17592270652760 50000 +17592270851269 51200 +17592270681866 74800 +17592270682068 74800 +17592271095477 74800 +17592270851719 50000 +17592271455313 51200 +17592271455317 51200 +17592271186624 50000 +17592271456076 50000 +17592271983514 51200 +17592271983512 51200 +17592271644173 50000 +17592235654038 82100 +17592271875367 50000 +17592271887348 74800 +17592271887429 74800 +17592271887148 74800 +17592271983517 51200 +17592271986311 50000 +17592272648856 51200 +17592272413701 50000 +17592272648860 51200 +17592272651904 50000 +17592272651906 50000 +17592273459865 51200 +17592272922705 50000 +17592273050666 50000 +17592273067634 72181 +17592273188479 50000 +17592273459869 51200 +17592273463273 50000 +17592274009042 51200 +17592274009044 51200 +17592274009048 51200 +17592273875447 50000 +17592274012036 50000 +17592274847019 51200 +17592274847021 51200 +17592274847023 51200 +17592275340747 50000 +17592274494983 50000 +17592235654040 82100 +17592274848198 50000 +17592275322389 51200 +17592274901980 50000 +17592274901978 50000 +17592274971135 50000 +17592274971137 50000 +17592274971139 50000 +17592275322393 51200 +17592275169784 50000 +17592278282856 50000 +17592275326365 50000 +17592275373355 50000 +17592275895165 51200 +17592275475010 50000 +17592275699974 50000 +17592275699976 50000 +17592275895167 51200 +17592275899577 50000 +17592276546496 51200 +17592276142237 25200 +17592276142221 25200 +17592276546500 51200 +17592276220844 50000 +17592276545181 50000 +17592276638761 50000 +17592277164456 51200 +17592276669404 41001 +17592276936524 50000 +17592277164460 51200 +17592277169284 50000 +17592235654042 82100 +17592277970832 51200 +17592277283596 50000 +17592277970827 51200 +17592277747778 50000 +17592277971628 50000 +17592278565521 51200 +17592278347110 50000 +17592278565525 51200 +17592278573884 50000 +17592279252027 51200 +17592279252031 51200 +17592279017849 50000 +17592279256188 50000 +17592279367249 91100 +17592279747931 51200 +17592279324360 50000 +17592279449401 50000 +17592279747933 51200 +17592279555508 50000 +17592279755223 50000 +17592280650985 51200 +17592235654044 82100 +17592280650989 51200 +17592280247504 50000 +17592280357963 50000 +17592280652289 50000 +17592281675439 51200 +17592281675443 51200 +17592281342366 50000 +17592281680377 50000 +17592281680379 50000 +17592281771410 50000 +17592282373118 51200 +17592281979951 50000 +17592282373126 51200 +17592282373122 51200 +17592282125846 50000 +17592282558551 50000 +17592282830146 72100 +17592283187928 51200 +17592283014584 50000 +17592283187932 51200 +17592283195461 50000 +17592283202332 25200 +17592283733805 51200 +17592283341700 50000 +17592283733809 51200 +17592283532176 50000 +17592235654046 82100 +17592287427642 81160 +17592283733027 50000 +17592284317792 51200 +17592284131679 25200 +17592284317796 51200 +17592284105281 50000 +17592284322849 50000 +17592285086816 51200 +17592284454627 50000 +17592284454623 50000 +17592284454625 50000 +17592284454619 50000 +17592284454621 50000 +17592284454615 50000 +17592284454617 50000 +17592284656175 50000 +17592284656177 50000 +17592285086824 51200 +17592285086820 51200 +17592284822273 50000 +17592285085151 50000 +17592285153342 50000 +17592285778409 51200 +17592285535292 50000 +17592285493398 25200 +17592286617655 25200 +17592285778413 51200 +17592285778417 51200 +17592285782883 50000 +17592285782885 50000 +17592286352459 51200 +17592286352463 51200 +17592286126474 50000 +17592286355541 50000 +17592286576449 50000 +17592287042765 51200 +17592235654048 82100 +17592286726579 50000 +17592286844471 50000 +17592287042769 51200 +17592286969118 50000 +17592287047233 50000 +17592287413410 50000 +17592287413408 50000 +17592235654050 82100 +17592235654052 82100 +17592235654054 82100 +17592252437236 51200 +17592284824616 51200 +17592252437232 51200 +17592252846217 50000 +17592252846219 50000 +17592252845955 51200 +17592252846221 50000 +17592252846215 50000 +17592252846213 50000 +17592252845951 51200 +17592252845947 51200 +17592253307370 50000 +17592253307374 50000 +17592253307372 50000 +17592253307376 50000 +17592253307378 50000 +17592253307380 50000 +17592253316720 51200 +17592253307382 50000 +17592253316716 51200 +17592253316712 51200 +17592253751068 50000 +17592253751064 50000 +17592253751066 50000 +17592253750557 51200 +17592253751070 50000 +17592253750549 51200 +17592253750553 51200 +17592253751072 50000 +17592253605663 54400 +17592253751074 50000 +17592253750545 51200 +17592253751076 50000 +17592253751078 50000 +17592253751080 50000 +17592253750541 51200 +17592254102827 51200 +17592254101457 50000 +17592254102815 51200 +17592254102811 51200 +17592254102823 51200 +17592254102819 51200 +17592254102807 51200 +17592254101459 50000 +17592254102803 51200 +17592254102799 51200 +17592254620620 50000 +17592254622055 51200 +17592255984238 51200 +17592255984230 51200 +17592254621733 51200 +17592254621878 51200 +17592254622050 51200 +17592254620624 50000 +17592254620622 50000 +17592254612831 50000 +17592254621729 51200 +17592254869091 50000 +17592255089408 51200 +17592255032455 50000 +17592255089404 51200 +17592255663220 51200 +17592255407600 50000 +17592255663216 51200 +17592255596893 50000 +17592255924178 50000 +17592255984035 50000 +17592256185042 51200 +17592256157035 50000 +17592256193106 51200 +17592256434245 50000 +17592256686815 51200 +17592256680177 50000 +17592256686810 51200 +17592257221960 51200 +17592256986757 50000 +17592257067696 50000 +17592257221924 51200 +17592257211278 50000 +17592257386117 50000 +17592257542977 74800 +17592257542993 74800 +17592257543009 25200 +17592257543026 74800 +17592257584847 50000 +17592257763340 51200 +17592257542887 74800 +17592257763336 51200 +17592257751366 50000 +17592257878528 50000 +17592258184934 51200 +17592258009882 50000 +17592258225280 51200 +17592258184668 50000 +17592258766262 51200 +17592258316974 25200 +17592258766258 51200 +17592258578933 50000 +17592258663465 50000 +17592258765816 50000 +17592259234237 51200 +17592259741613 51200 +17592259063673 50000 +17592259063671 50000 +17592259234062 50000 +17592259234233 51200 +17592259532748 50000 +17592259532750 50000 +17592259741615 51200 +17592259739191 50000 +17592259741619 51200 +17592259973226 50000 +17592260190456 51200 +17592260151174 50000 +17592260190452 51200 +17592260190635 50000 +17592260664521 50000 +17592260895219 51200 +17592260898197 50000 +17592260895215 51200 +17592261208232 50000 +17592261423931 51200 +17592261408970 50000 +17592261423927 51200 +17592261745337 50000 +17592261873028 50000 +17592261977679 51200 +17592261977675 51200 +17592261976663 50000 +17592262874887 50000 +17592263239778 51200 +17592262994506 50000 +17592263237784 50000 +17592263239774 51200 +17592263310508 50000 +17592263622869 50000 +17592263838109 51200 +17592263838113 51200 +17592264378554 51200 +17592263838243 50000 +17592264162752 50000 +17592264378558 51200 +17592264402187 51200 +17592264379950 50000 +17592264707087 50000 +17592264910091 51200 +17592264910400 50000 +17592265421191 51200 +17592265233217 25200 +17592265421195 51200 +17592265280160 50000 +17592265421187 51200 +17592265506261 74800 +17592266181234 51200 +17592266181238 51200 +17592266181236 51200 +17592265470752 50000 +17592265838070 50000 +17592266181242 51200 +17592266186978 50000 +17592266774990 51200 +17592266774988 51200 +17592266259187 50000 +17592266475693 50000 +17592266475691 50000 +17592266475697 50000 +17592266475695 50000 +17592266475685 50000 +17592266475683 50000 +17592266475689 50000 +17592266475687 50000 +17592266475709 50000 +17592266475707 50000 +17592266475713 50000 +17592266475711 50000 +17592266475701 50000 +17592266475699 50000 +17592266475705 50000 +17592266475703 50000 +17592266475725 50000 +17592266475723 50000 +17592266475729 50000 +17592266475727 50000 +17592266475717 50000 +17592266475715 50000 +17592266475721 50000 +17592266475719 50000 +17592266475741 50000 +17592266475739 50000 +17592266475743 50000 +17592266475733 50000 +17592266475731 50000 +17592266475737 50000 +17592266475735 50000 +17592266475661 50000 +17592266475659 50000 +17592266475665 50000 +17592266475663 50000 +17592266475653 50000 +17592266475657 50000 +17592266475655 50000 +17592266475677 50000 +17592266475675 50000 +17592266475681 50000 +17592266475679 50000 +17592266475669 50000 +17592266475667 50000 +17592266475673 50000 +17592266475671 50000 +17592266775069 51200 +17592266597129 50000 +17592266687244 50000 +17592266687242 50000 +17592266774713 50000 +17592266776880 51200 +17592267234745 51200 +17592267036729 50000 +17592267234741 51200 +17592267235128 50000 +17592267818007 51200 +17592267630056 50000 +17592267830360 50000 +17592268460323 51200 +17592268236785 50000 +17592268460319 51200 +17592269100321 51200 +17592268486536 50000 +17592268576809 50000 +17592268576807 50000 +17592268745360 50000 +17592268745362 50000 +17592268745356 50000 +17592268745358 50000 +17592268745352 50000 +17592268745354 50000 +17592268745348 50000 +17592268745350 50000 +17592268745368 50000 +17592268745370 50000 +17592268745364 50000 +17592268745366 50000 +17592268745344 50000 +17592268745346 50000 +17592268745340 50000 +17592268745342 50000 +17592268745338 50000 +17592269100317 51200 +17592268892326 50000 +17592269106848 50000 +17592269633573 51200 +17592269209777 50000 +17592269633575 51200 +17592269335720 50000 +17592269633583 51200 +17592269498890 50000 +17592269634665 50000 +17592270288049 51200 +17592269833023 50000 +17592270288053 51200 +17592270031623 50000 +17592270292396 50000 +17592270292398 50000 +17592270851247 51200 +17592270851245 51200 +17592270652830 50000 +17592270652834 50000 +17592270652832 50000 +17592270851241 51200 +17592270682527 74800 +17592270682141 74800 +17592271455287 51200 +17592271011623 50000 +17592271455291 51200 +17592271186638 50000 +17592271455295 51200 +17592271456108 50000 +17592271570257 50000 +17592271644185 50000 +17592271875375 50000 +17592271887537 74800 +17592271983508 51200 +17592271887446 74800 +17592271983002 82100 +17592271986341 50000 +17592272648838 51200 +17592272413727 50000 +17592272648842 51200 +17592272651930 50000 +17592273459838 51200 +17592272922717 50000 +17592273188499 50000 +17592273459842 51200 +17592273459846 51200 +17592273748292 50000 +17592274009038 51200 +17592273945762 50000 +17592274847001 51200 +17592274012064 50000 +17592274348807 50000 +17592274847003 51200 +17592274494995 50000 +17592274601883 82100 +17592274846997 51200 +17592274848222 50000 +17592274971201 50000 +17592274971207 50000 +17592274971203 50000 +17592274971205 50000 +17592275322385 51200 +17592275169802 50000 +17592275326397 50000 +17592275322381 51200 +17592275699992 50000 +17592275895110 51200 +17592275899605 50000 +17592275895152 51200 +17592276142255 25200 +17592276545895 51200 +17592276220860 50000 +17592276545209 50000 +17592276545891 51200 +17592276732407 50000 +17592276936530 50000 +17592277164443 51200 +17592277169312 50000 +17592277164439 51200 +17592276819052 82100 +17592277283612 50000 +17592277970823 51200 +17592277747800 50000 +17592277970819 51200 +17592277971654 50000 +17592278565501 51200 +17592278347118 50000 +17592278565505 51200 +17592278573910 50000 +17592278565497 51200 +17592278825977 50000 +17592279252086 51200 +17592279017863 50000 +17592279252082 51200 +17592279256216 50000 +17592279555536 50000 +17592279747874 51200 +17592279747878 51200 +17592279755249 50000 +17592280135390 82100 +17592280135382 82100 +17592280650969 51200 +17592280247512 50000 +17592280650965 51200 +17592280650961 51200 +17592280652317 50000 +17592281675423 51200 +17592281342380 50000 +17592281675415 51200 +17592281675419 51200 +17592281680407 50000 +17592281771452 50000 +17592281771454 50000 +17592282373105 51200 +17592282125854 50000 +17592282373101 51200 +17592282558577 50000 +17592283014590 50000 +17592283187915 51200 +17592283195483 50000 +17592283187911 51200 +17592283733795 51200 +17592283532186 50000 +17592284790015 82100 +17592287427227 50000 +17592284805323 82100 +17592283733051 50000 +17592284317772 51200 +17592283909005 50000 +17592284317776 51200 +17592284105287 50000 +17592284322873 50000 +17592284317768 51200 +17592284454775 50000 +17592284454777 50000 +17592284454771 50000 +17592284454773 50000 +17592284454767 50000 +17592284454769 50000 +17592284656227 50000 +17592284656225 50000 +17592285086784 51200 +17592284822281 50000 +17592285085177 50000 +17592285778396 51200 +17592285783225 51200 +17592285535304 50000 +17592285778392 51200 +17592285782909 50000 +17592285842554 50000 +17592286352455 51200 +17592286126484 50000 +17592286352451 51200 +17592286355573 50000 +17592286844479 50000 +17592287078226 51200 +17592287047263 50000 +17592287212490 50000 +17592287413438 50000 +17592252277625 50000 +17592252277629 50000 +17592252277627 50000 +17592252295015 25200 +17592258549927 51200 +17592258549976 51200 +17592258549911 51200 +17592258549919 51200 +17592286840878 50000 +17592286840990 50000 +17592286841230 50000 +17592233418801 12400 +17592233418802 93400 +17592252461595 51200 +17592252395335 50000 +17592252567253 50000 +17592252635292 50000 +17592252635294 50000 +17592258549697 51200 +17592255230015 50000 +17592252845787 51200 +17592255230052 50000 +17592252764754 50000 +17592252845779 51200 +17592252845783 51200 +17592252830847 50000 +17592252870520 50000 +17592252876597 82100 +17592255230089 50000 +17592252957239 50000 +17592252957241 50000 +17592253307346 50000 +17592253307348 50000 +17592252957243 50000 +17592253316545 51200 +17592258549883 51200 +17592253085961 50000 +17592253316541 51200 +17592253169945 50000 +17592253316537 51200 +17592253275056 50000 +17592253275058 50000 +17592253275060 50000 +17592253409303 50000 +17592253732148 51200 +17592255230182 50000 +17592253471295 50000 +17592253627794 50000 +17592286847170 50000 +17592253732158 51200 +17592253704974 50000 +17592253704976 50000 +17592253704978 50000 +17592253684561 82100 +17592258550028 51200 +17592253903997 50000 +17592254099068 51200 +17592255230280 50000 +17592254099078 51200 +17592253684914 82100 +17592254074395 50000 +17592254074393 50000 +17592254099088 51200 +17592254139477 50000 +17592254617820 51200 +17592233418804 12400 +17592233418805 93400 +17592254237624 50000 +17592254313965 50000 +17592254617830 51200 +17592256464452 50000 +17592254612803 50000 +17592254617840 51200 +17592254620275 12400 +17592255089056 50000 +17592255089058 50000 +17592255054514 51200 +17592255054524 51200 +17592255032423 50000 +17592255032425 50000 +17592255032421 50000 +17592255054534 51200 +17592255133638 82100 +17592258550036 51200 +17592255313035 50000 +17592255638818 51200 +17592255505530 50000 +17592255505532 50000 +17592255638828 51200 +17592255638838 51200 +17592255596863 50000 +17592255924154 50000 +17592256181217 51200 +17592256013885 25200 +17592256013959 25200 +17592255994384 25200 +17592256181227 51200 +17592256050344 50000 +17592256050346 50000 +17592256157005 50000 +17592256684179 51200 +17592256292154 50000 +17592256322975 82100 +17592256323064 25200 +17592233418807 12400 +17592233418808 93400 +17592256323035 25200 +17592256354392 50000 +17592256684217 51200 +17592256684227 51200 +17592256680143 50000 +17592256680145 50000 +17592256680139 50000 +17592256680141 50000 +17592256684237 51200 +17592257221910 51200 +17592256888752 50000 +17592257222053 51200 +17592277743919 51200 +17592257773677 51200 +17592257211248 50000 +17592257211250 50000 +17592257773758 51200 +17592257483506 50000 +17592257483504 50000 +17592257773861 51200 +17592257751332 50000 +17592257773901 51200 +17592257751330 50000 +17592258225262 51200 +17592257951946 50000 +17592277744471 51200 +17592258064089 25200 +17592258225258 51200 +17592258105672 82100 +17592258097398 50000 +17592258225254 51200 +17592258184632 50000 +17592277745828 51200 +17592277744499 51200 +17592258286649 50000 +17592258447113 50000 +17592258531421 25200 +17592258792332 51200 +17592261797353 50000 +17592261797361 50000 +17592261797369 50000 +17592261797451 50000 +17592261797459 50000 +17592261797473 50000 +17592258550057 51200 +17592233418810 12400 +17592233418811 93400 +17592258792342 51200 +17592258765786 50000 +17592258765788 50000 +17592258792352 51200 +17592277745871 51200 +17592277746352 51200 +17592259265580 51200 +17592259265590 51200 +17592258967599 50000 +17592259265600 51200 +17592259113278 50000 +17592259265610 51200 +17592277747115 51200 +17592259234034 50000 +17592277746578 51200 +17592259329328 82100 +17592259329256 82100 +17592259329501 25200 +17592259329436 25200 +17592259464731 50000 +17592259464733 50000 +17592259753984 51200 +17592260920144 51200 +17592260920142 51200 +17592260920140 51200 +17592259753994 51200 +17592259639668 50000 +17592259725411 12400 +17592259739161 50000 +17592259739163 50000 +17592259754005 51200 +17592277747139 51200 +17592277747174 51200 +17592259973202 50000 +17592260239668 51200 +17592260151168 50000 +17592261797565 50000 +17592261797573 50000 +17592261797581 50000 +17592260239678 51200 +17592260190603 50000 +17592260500853 50000 +17592277747274 51200 +17592277747222 51200 +17592260920162 51200 +17592260920172 51200 +17592260898165 50000 +17592233418813 12400 +17592233418814 93400 +17592260920182 51200 +17592277747351 51200 +17592277747314 51200 +17592261123419 50000 +17592261466022 51200 +17592261278717 25200 +17592261266958 25200 +17592261299958 50000 +17592261466073 51200 +17592261332052 25200 +17592261331986 25200 +17592261331970 25200 +17592261331953 25200 +17592261332173 25200 +17592261332157 25200 +17592261332139 25200 +17592261332068 25200 +17592261332294 25200 +17592261342461 25200 +17592261331782 25200 +17592261331937 25200 +17592261331921 25200 +17592261331904 25200 +17592261466123 51200 +17592261408940 50000 +17592261408938 50000 +17592261613431 25200 +17592261694710 25200 +17592261719947 25200 +17592261745309 50000 +17592262398496 51200 +17592263257013 51200 +17592261928690 50000 +17592262398941 51200 +17592261976625 50000 +17592263252751 51200 +17592261659534 82100 +17592261659490 82100 +17592263257174 51200 +17592262874863 50000 +17592262874861 50000 +17592286727219 25200 +17592286727423 25200 +17592286727099 25200 +17592263077803 25200 +17592286727781 25200 +17592286727391 25200 +17592286727580 25200 +17592263077875 25200 +17592286727608 25200 +17592263077908 25200 +17592263077892 25200 +17592263077940 25200 +17592263078124 25200 +17592263049875 25200 +17592263070578 25200 +17592263070562 25200 +17592263070546 25200 +17592263257314 51200 +17592286727180 25200 +17592286727171 25200 +17592263237748 50000 +17592263237750 50000 +17592263862566 51200 +17592263420439 50000 +17592263420441 50000 +17592263866555 51200 +17592263504190 50000 +17592263838215 50000 +17592264401834 51200 +17592264402047 51200 +17592264050044 50000 +17592233418816 12400 +17592233418817 93400 +17592264187026 25200 +17592286727593 25200 +17592286727216 25200 +17592264187291 25200 +17592264162744 50000 +17592264187389 25200 +17592264185630 25200 +17592264187695 25200 +17592264188061 25200 +17592264185965 25200 +17592286727402 25200 +17592286727576 25200 +17592286727090 25200 +17592264188325 25200 +17592264188178 25200 +17592264186513 25200 +17592286727386 25200 +17592286727596 25200 +17592264278083 12400 +17592264402177 51200 +17592264402167 51200 +17592264379922 50000 +17592268154047 50000 +17592264613873 50000 +17592264613871 50000 +17592264934084 51200 +17592264934094 51200 +17592264910370 50000 +17592264910368 50000 +17592264933912 51200 +17592265505932 51200 +17592265178537 50000 +17592277741425 51200 +17592277741877 51200 +17592265291161 25200 +17592265291117 25200 +17592265291219 25200 +17592286727217 25200 +17592286727098 25200 +17592265291002 25200 +17592265291072 25200 +17592286727422 25200 +17592286727406 25200 +17592265291267 25200 +17592265291235 25200 +17592265291357 25200 +17592286727622 25200 +17592286727086 25200 +17592286727206 25200 +17592265290693 25200 +17592265290677 25200 +17592265335469 50000 +17592266199194 51200 +17592265470724 50000 +17592277743040 51200 +17592277741393 51200 +17592266199315 51200 +17592265728583 50000 +17592265728581 50000 +17592265866566 50000 +17592266199413 51200 +17592277743340 51200 +17592266186948 50000 +17592277741985 51200 +17592265023528 82100 +17592266209589 51200 +17592265023545 82100 +17592266259153 50000 +17592266411320 25200 +17592266474669 50000 +17592266474667 50000 +17592266474673 50000 +17592266474671 50000 +17592266474661 50000 +17592266474659 50000 +17592266474665 50000 +17592266474663 50000 +17592266474685 50000 +17592266474683 50000 +17592266474689 50000 +17592266474687 50000 +17592266474677 50000 +17592266474675 50000 +17592266474681 50000 +17592266474679 50000 +17592266474701 50000 +17592266474699 50000 +17592266474705 50000 +17592266474703 50000 +17592266474693 50000 +17592266474691 50000 +17592266474697 50000 +17592266474695 50000 +17592266474717 50000 +17592266474715 50000 +17592266474709 50000 +17592266474707 50000 +17592266474713 50000 +17592266474711 50000 +17592266474653 50000 +17592266474657 50000 +17592266474655 50000 +17592277743367 51200 +17592277742005 51200 +17592266830527 51200 +17592286727213 25200 +17592266843777 25200 +17592266614518 25200 +17592286727210 25200 +17592286727197 25200 +17592286727381 25200 +17592286727621 25200 +17592286727404 25200 +17592286727088 25200 +17592266615518 25200 +17592286727620 25200 +17592266615378 25200 +17592266615394 25200 +17592286727417 25200 +17592286727095 25200 +17592266615598 25200 +17592266615534 25200 +17592266615566 25200 +17592233418819 12400 +17592233418820 93400 +17592266830647 51200 +17592267243689 51200 +17592266774685 50000 +17592266774683 50000 +17592266830238 12400 +17592266919237 25200 +17592266918635 50000 +17592266982710 50000 +17592267243790 51200 +17592268499841 51200 +17592267243947 51200 +17592267125236 50000 +17592277743006 51200 +17592267851380 51200 +17592267235100 50000 +17592277743667 51200 +17592267452577 82100 +17592267405306 50000 +17592267851460 51200 +17592277741357 51200 +17592277743893 51200 +17592267518385 50000 +17592267518383 50000 +17592267695280 25200 +17592267674840 25200 +17592267680921 25200 +17592267695549 25200 +17592267681207 25200 +17592267695397 25200 +17592267674878 25200 +17592267697983 25200 +17592286727092 25200 +17592286727091 25200 +17592267673694 25200 +17592267694477 25200 +17592286727082 25200 +17592267708713 25200 +17592267708697 25200 +17592267708681 25200 +17592267680298 25200 +17592267680487 25200 +17592267830328 50000 +17592268499747 51200 +17592268499765 51200 +17592267927843 50000 +17592267927845 50000 +17592267927847 50000 +17592267927849 50000 +17592267927851 50000 +17592267927853 50000 +17592267927855 50000 +17592267927857 50000 +17592267927859 50000 +17592267927861 50000 +17592267927863 50000 +17592267927865 50000 +17592267927867 50000 +17592267927869 50000 +17592267927833 50000 +17592267927835 50000 +17592267927837 50000 +17592267927839 50000 +17592267927841 50000 +17592269866100 50000 +17592269866060 50000 +17592268190809 25200 +17592277741333 51200 +17592268105292 50000 +17592277742035 51200 +17592268499881 51200 +17592268263023 25200 +17592268499931 51200 +17592268499967 51200 +17592268486508 50000 +17592268486506 50000 +17592270681165 50000 +17592270681173 50000 +17592270681199 50000 +17592268576741 50000 +17592268576743 50000 +17592268618642 25200 +17592268654632 50000 +17592268618659 25200 +17592269123173 51200 +17592268745156 50000 +17592268745158 50000 +17592268942520 25200 +17592268942480 25200 +17592268942431 25200 +17592268942415 25200 +17592268942399 25200 +17592268942804 25200 +17592268942787 25200 +17592268942771 25200 +17592268942738 25200 +17592268942717 25200 +17592268942701 25200 +17592268942685 25200 +17592268942669 25200 +17592268942652 25200 +17592268942632 25200 +17592268942615 25200 +17592268942896 25200 +17592269123531 51200 +17592286727089 25200 +17592268987639 50000 +17592269106814 50000 +17592269637176 51200 +17592270311872 51200 +17592233418822 12400 +17592233418823 93400 +17592268800683 82100 +17592268800577 82100 +17592269335684 50000 +17592269866237 50000 +17592269637277 51200 +17592269637297 51200 +17592269436539 50000 +17592269542917 50000 +17592269637377 51200 +17592269634637 50000 +17592269634635 50000 +17592269655721 12400 +17592269637397 51200 +17592269832987 50000 +17592269932444 50000 +17592270312075 51200 +17592286727399 25200 +17592286727196 25200 +17592286727209 25200 +17592270072890 25200 +17592286727380 25200 +17592286727084 25200 +17592286727385 25200 +17592286727186 25200 +17592270074324 25200 +17592270905816 25200 +17592286727383 25200 +17592270076045 25200 +17592286727609 25200 +17592286727405 25200 +17592270074816 25200 +17592270074423 25200 +17592286727408 25200 +17592270312224 51200 +17592270292364 50000 +17592270855755 51200 +17592270855816 51200 +17592270472152 50000 +17592270855956 51200 +17592270560790 50000 +17592270560792 50000 +17592270652750 50000 +17592270652754 50000 +17592270652752 50000 +17592270751127 50000 +17592270751125 50000 +17592270856060 51200 +17592270851715 50000 +17592271503012 51200 +17592270925465 50000 +17592270925463 50000 +17592271011611 50000 +17592271078421 50000 +17592271503260 51200 +17592270623580 82100 +17592286727395 25200 +17592286727093 25200 +17592286727377 25200 +17592286727398 25200 +17592271221739 25200 +17592286727575 25200 +17592271221771 25200 +17592271224558 25200 +17592286727185 25200 +17592286727780 25200 +17592286727096 25200 +17592286727215 25200 +17592271614197 25200 +17592271222807 25200 +17592286727374 25200 +17592271224880 25200 +17592271224912 25200 +17592286727183 25200 +17592286727193 25200 +17592271222990 25200 +17592286727586 25200 +17592271209327 25200 +17592271186622 50000 +17592271222049 25200 +17592271225172 25200 +17592271503356 51200 +17592271315559 50000 +17592271315561 50000 +17592271456072 50000 +17592272048190 51200 +17592271656375 82100 +17592271644171 50000 +17592272960102 50000 +17592271759220 50000 +17592272048398 51200 +17592233418825 12400 +17592233418826 93400 +17592271986305 50000 +17592271986303 50000 +17592272060798 51200 +17592271986307 50000 +17592272691308 51200 +17592272691358 51200 +17592272307098 50000 +17592272413699 50000 +17592272413697 50000 +17592272453401 25200 +17592286727616 25200 +17592272453353 25200 +17592286727421 25200 +17592286727194 25200 +17592286727207 25200 +17592272453417 25200 +17592286727085 25200 +17592286727623 25200 +17592272453434 25200 +17592272453590 25200 +17592286727603 25200 +17592286727204 25200 +17592286727174 25200 +17592273576002 25200 +17592286727583 25200 +17592286727378 25200 +17592272692167 51200 +17592272692217 51200 +17592272651900 50000 +17592272922703 50000 +17592273050658 50000 +17592273050656 50000 +17592273050662 50000 +17592273050660 50000 +17592273464510 51200 +17592277630893 50000 +17592286727582 25200 +17592273123872 82100 +17592273188475 50000 +17592273188477 50000 +17592273464875 51200 +17592274194854 51200 +17592273463269 50000 +17592286846793 50000 +17592273628390 50000 +17592273748268 50000 +17592274211465 51200 +17592273915362 25200 +17592273915330 25200 +17592273914917 25200 +17592286727577 25200 +17592273913679 25200 +17592286727782 25200 +17592286727619 25200 +17592286727101 25200 +17592273913711 25200 +17592286727599 25200 +17592286727601 25200 +17592286727211 25200 +17592286727199 25200 +17592286727191 25200 +17592273887289 12400 +17592286727179 25200 +17592273914773 25200 +17592286727214 25200 +17592273945756 50000 +17592286727208 25200 +17592286727397 25200 +17592286727382 25200 +17592274012032 50000 +17592274852204 51200 +17592286727175 25200 +17592274266648 50000 +17592274852284 51200 +17592274852294 51200 +17592274405914 50000 +17592286846769 50000 +17592274494981 50000 +17592277630721 50000 +17592274852374 51200 +17592274549354 50000 +17592233418828 12400 +17592233418829 93400 +17592275342337 51200 +17592277630729 50000 +17592274848194 50000 +17592274901970 50000 +17592274901974 50000 +17592274901972 50000 +17592274901976 50000 +17592275342412 51200 +17592286727584 25200 +17592274971121 50000 +17592274971127 50000 +17592274971123 50000 +17592274971125 50000 +17592275080283 50000 +17592286727188 25200 +17592286727087 25200 +17592286727195 25200 +17592286727607 25200 +17592286727201 25200 +17592286727173 25200 +17592275192930 25200 +17592275192914 25200 +17592286727182 25200 +17592286727410 25200 +17592275192946 25200 +17592275192994 25200 +17592275192970 25200 +17592275169782 50000 +17592275342621 51200 +17592275326361 50000 +17592275941517 51200 +17592275373353 50000 +17592275576116 50000 +17592275942682 51200 +17592275943697 51200 +17592275788339 50000 +17592275788341 50000 +17592275899573 50000 +17592275899571 50000 +17592286727409 25200 +17592276552552 51200 +17592275986722 50000 +17592276552798 51200 +17592276111756 50000 +17592276111754 50000 +17592276553018 51200 +17592277210472 51200 +17592286727220 25200 +17592286727598 25200 +17592286727416 25200 +17592276312038 25200 +17592277211282 25200 +17592276407086 25200 +17592276388411 25200 +17592276553038 51200 +17592276362645 50000 +17592286727178 25200 +17592286727097 25200 +17592286727594 25200 +17592286727420 25200 +17592286727612 25200 +17592277210372 51200 +17592276545175 50000 +17592276545177 50000 +17592276732393 50000 +17592277210511 51200 +17592276837445 50000 +17592277978657 51200 +17592277210619 51200 +17592277978573 51200 +17592277169280 50000 +17592277169278 50000 +17592277229511 25200 +17592277283594 50000 +17592233418831 12400 +17592233418832 93400 +17592277464452 50000 +17592277978830 51200 +17592286727388 25200 +17592277767781 25200 +17592286727094 25200 +17592286727393 25200 +17592277766587 25200 +17592277766547 25200 +17592286727613 25200 +17592286727617 25200 +17592286727587 25200 +17592277766745 25200 +17592286727777 25200 +17592277766695 25200 +17592286727190 25200 +17592277766648 25200 +17592286727590 25200 +17592277845046 50000 +17592277978922 51200 +17592278568453 51200 +17592277971624 50000 +17592278184671 50000 +17592278568563 51200 +17592278259335 50000 +17592278347108 50000 +17592278347104 50000 +17592278347106 50000 +17592278439356 50000 +17592278568673 51200 +17592279267740 51200 +17592278573880 50000 +17592278920395 50000 +17592278920393 50000 +17592279267894 51200 +17592286727083 25200 +17592286727592 25200 +17592278477453 25200 +17592286727176 25200 +17592279069074 25200 +17592286727384 25200 +17592286727394 25200 +17592279069102 25200 +17592286727418 25200 +17592286727187 25200 +17592286727198 25200 +17592279126766 50000 +17592279268002 51200 +17592279069162 25200 +17592286727589 25200 +17592286727606 25200 +17592279069226 25200 +17592286727615 25200 +17592286727184 25200 +17592279256184 50000 +17592279788374 51200 +17592286727419 25200 +17592279324354 50000 +17592279324352 50000 +17592279324356 50000 +17592279449397 50000 +17592279555506 50000 +17592279788462 51200 +17592279755219 50000 +17592280675286 51200 +17592279950194 50000 +17592280675363 51200 +17592280131780 50000 +17592280247502 50000 +17592286727177 25200 +17592286727203 25200 +17592280272656 25200 +17592280272648 25200 +17592233418834 12400 +17592233418835 93400 +17592286727581 25200 +17592286727605 25200 +17592286727588 25200 +17592286727597 25200 +17592286727205 25200 +17592280297476 25200 +17592286727415 25200 +17592280675463 51200 +17592286727100 25200 +17592286727376 25200 +17592286727389 25200 +17592286727574 25200 +17592286727403 25200 +17592280297227 25200 +17592286727407 25200 +17592280297517 34010 +17592281698838 51200 +17592280652285 50000 +17592280751372 50000 +17592280850158 50000 +17592281210288 50000 +17592281699565 51200 +17592281342364 50000 +17592281441597 50000 +17592281441595 50000 +17592283703096 51200 +17592281143152 86200 +17592281143612 25800 +17592282575459 51200 +17592281680373 50000 +17592281771402 50000 +17592281771404 50000 +17592281878733 50000 +17592281878731 50000 +17592281979945 50000 +17592282575499 51200 +17592282148088 25200 +17592282147960 25200 +17592282149999 34010 +17592282147944 25200 +17592286727411 25200 +17592286727578 25200 +17592286727611 25200 +17592282147912 25200 +17592286727618 25200 +17592286727778 25200 +17592286727604 25200 +17592286727189 25200 +17592286727396 25200 +17592286727600 25200 +17592282691081 51200 +17592282231494 50000 +17592282231492 50000 +17592282231490 50000 +17592283210807 51200 +17592282558547 50000 +17592283703098 51200 +17592282907584 50000 +17592283202765 12400 +17592283202781 12400 +17592284321676 51200 +17592283195459 50000 +17592283254039 82100 +17592283703102 51200 +17592283439379 50000 +17592286727614 25200 +17592286727414 25200 +17592286727602 25200 +17592286727202 25200 +17592286727192 25200 +17592286727595 25200 +17592286727181 25200 +17592286727172 25200 +17592283537716 25200 +17592283537569 25200 +17592283534298 25200 +17592286727375 25200 +17592283703106 51200 +17592283537732 74800 +17592283733023 50000 +17592233418837 12400 +17592233418838 93400 +17592284945336 51200 +17592283908993 50000 +17592284321680 51200 +17592284105279 50000 +17592284321684 51200 +17592284322845 50000 +17592284321688 51200 +17592284454591 50000 +17592284454593 50000 +17592284454603 50000 +17592284454599 50000 +17592284454601 50000 +17592284454595 50000 +17592284454597 50000 +17592284656167 50000 +17592284656169 50000 +17592284725274 50000 +17592284725276 50000 +17592284945332 51200 +17592284779536 25200 +17592284779504 25200 +17592286727401 25200 +17592286727218 25200 +17592286727379 25200 +17592286727579 25200 +17592286727387 25200 +17592286727591 25200 +17592286727413 25200 +17592286727610 25200 +17592284822269 50000 +17592286727585 25200 +17592284822271 50000 +17592286727779 25200 +17592284917460 50000 +17592284945328 51200 +17592285085147 50000 +17592285087313 51200 +17592285167293 82100 +17592285153338 50000 +17592285548305 51200 +17592285301349 50000 +17592285535290 50000 +17592285778227 51200 +17592286727390 25200 +17592285783043 82100 +17592285783027 82100 +17592285782879 50000 +17592285782839 51200 +17592285782849 51200 +17592286014923 50000 +17592286351100 51200 +17592286727400 25200 +17592286727412 25200 +17592286150091 25200 +17592286150366 25200 +17592286126472 50000 +17592286177932 25200 +17592286727392 25200 +17592286727200 25200 +17592286727212 25200 +17592286351104 51200 +17592286355698 51200 +17592286355537 50000 +17592286576447 50000 +17592286576443 50000 +17592286576445 50000 +17592233418840 12400 +17592233418841 93400 +17592287014129 51200 +17592286726575 50000 +17592287014139 51200 +17592286969114 50000 +17592286969112 50000 +17592286969116 50000 +17592287014326 51200 +17592287014340 51200 +17592287047229 50000 +17592287133453 50000 +17592287313980 50000 +17592287313982 50000 +17592287313984 50000 +17592287413404 50000 +17592287413402 50000 +17592287413400 50000 +17592233418843 12400 +17592233418844 93400 +17592233418846 12400 +17592233418847 93400 +17592233418849 12400 +17592233418850 93400 +17592233418852 12400 +17592233418853 93400 +17592233418855 12400 +17592233418856 93400 +17592233418858 12400 +17592233418859 93400 +17592252437030 51200 +17592252437026 51200 +17592252485952 50000 +17592252635310 50000 +17592252845849 51200 +17592252648793 74150 +17592252694202 50000 +17592252845845 51200 +17592252845841 51200 +17592252870534 50000 +17592252957247 50000 +17592252957249 50000 +17592253316607 51200 +17592253085967 50000 +17592253103223 74600 +17592253316603 51200 +17592253316599 51200 +17592253275084 50000 +17592253339699 50000 +17592253454220 28010 +17592253409313 50000 +17592253409315 50000 +17592253750291 51200 +17592253454444 28030 +17592253471305 50000 +17592253471307 50000 +17592253550033 50000 +17592253550035 50000 +17592253750287 51200 +17592253627802 50000 +17592253685098 74600 +17592253750283 51200 +17592253769723 50000 +17592253788878 25200 +17592253788886 25200 +17592253788900 25200 +17592253927162 81150 +17592254102498 51200 +17592253969774 82100 +17592253961666 50000 +17592253979570 25200 +17592253979586 25200 +17592254102494 51200 +17592254075185 28030 +17592254075177 28010 +17592254102486 51200 +17592254139483 50000 +17592254239162 74150 +17592254621342 51200 +17592254379505 50000 +17592254621338 51200 +17592254621092 51200 +17592254654561 50000 +17592254654563 50000 +17592254832036 50000 +17592255089277 51200 +17592254869087 50000 +17592255089273 51200 +17592255089269 51200 +17592255089265 51200 +17592255123236 50000 +17592255211788 50000 +17592255313051 50000 +17592255661740 51200 +17592255448398 28010 +17592255448406 28030 +17592255407594 50000 +17592255661736 51200 +17592255661732 51200 +17592255712786 50000 +17592255834953 50000 +17592255970876 82100 +17592256193124 51200 +17592255984029 50000 +17592255984031 50000 +17592256050356 50000 +17592256193120 51200 +17592256181567 28030 +17592256181559 28010 +17592256193116 51200 +17592256680790 50000 +17592256216412 50000 +17592256379693 74150 +17592256709397 51200 +17592256680795 50000 +17592256680786 50000 +17592256379701 74600 +17592256434237 50000 +17592256709393 51200 +17592256709389 51200 +17592257221766 51200 +17592256680163 50000 +17592256709385 51200 +17592256731052 50000 +17592257221839 51200 +17592256986749 50000 +17592257222019 51200 +17592257243830 51200 +17592257267784 50000 +17592257787174 51200 +17592257484705 25200 +17592257631835 28010 +17592257584843 50000 +17592257631844 28030 +17592257787170 51200 +17592257787166 51200 +17592257751350 50000 +17592257834370 74600 +17592257812344 50000 +17592257878522 50000 +17592258225298 51200 +17592258009878 50000 +17592258225294 51200 +17592258136874 82100 +17592258225290 51200 +17592258184650 50000 +17592258286655 50000 +17592258793233 51200 +17592258473749 28030 +17592258473741 28010 +17592258793229 51200 +17592258578929 50000 +17592258793225 51200 +17592258793221 51200 +17592258838563 50000 +17592258903145 74150 +17592259267145 51200 +17592259063663 50000 +17592259267141 51200 +17592259267137 51200 +17592259302600 50000 +17592259384467 50000 +17592259464751 50000 +17592259464753 50000 +17592259794989 51200 +17592259532742 50000 +17592259794993 51200 +17592259646278 28030 +17592259646270 28010 +17592259794985 51200 +17592259826896 50000 +17592260239248 51200 +17592260068994 50000 +17592260941220 51200 +17592266792856 51200 +17592260239252 51200 +17592260239244 51200 +17592260304912 50000 +17592260304914 50000 +17592260304910 50000 +17592260390580 74600 +17592260390740 82100 +17592260388797 50000 +17592260941222 51200 +17592260664515 50000 +17592260820423 28010 +17592260820434 28030 +17592260941224 51200 +17592260941228 51200 +17592260966864 50000 +17592261502051 51200 +17592261126420 74150 +17592262376311 51200 +17592261208220 50000 +17592262376313 51200 +17592261502047 51200 +17592261502043 51200 +17592261408956 50000 +17592261531921 50000 +17592261646106 50000 +17592261646108 50000 +17592262376315 51200 +17592261873022 50000 +17592262376317 51200 +17592264402016 51200 +17592262376320 51200 +17592262646159 50000 +17592263256993 51200 +17592263257194 51200 +17592262891162 28010 +17592262891178 28030 +17592262994500 50000 +17592263257304 51200 +17592263267038 51200 +17592263310502 50000 +17592266792872 51200 +17592263862471 51200 +17592263862475 51200 +17592263528655 82100 +17592263862467 51200 +17592263622865 50000 +17592263862463 51200 +17592263862459 51200 +17592263895717 28010 +17592263895725 28030 +17592263885316 50000 +17592264402067 51200 +17592264162748 50000 +17592264402117 51200 +17592264262723 81120 +17592264262740 74600 +17592264402255 51200 +17592264441976 50000 +17592264454330 74150 +17592264945456 51200 +17592264707083 50000 +17592264945452 51200 +17592264933882 51200 +17592264976280 74700 +17592264978294 50000 +17592264976297 74700 +17592265505858 51200 +17592265280150 50000 +17592265290476 97200 +17592265290577 97200 +17592265290550 97200 +17592265505854 51200 +17592265335477 50000 +17592265505850 51200 +17592265532385 50000 +17592266210916 51200 +17592265838064 50000 +17592266210912 51200 +17592266027828 81140 +17592266027751 74600 +17592266210315 25200 +17592266210908 51200 +17592266259169 50000 +17592266259171 50000 +17592266279699 82100 +17592266796147 51200 +17592266475197 50000 +17592266475195 50000 +17592266475201 50000 +17592266475199 50000 +17592266475189 50000 +17592266475193 50000 +17592266475191 50000 +17592266475213 50000 +17592266475211 50000 +17592266475217 50000 +17592266475215 50000 +17592266475205 50000 +17592266475203 50000 +17592266475209 50000 +17592266475207 50000 +17592266475229 50000 +17592266475227 50000 +17592266475233 50000 +17592266475231 50000 +17592266475221 50000 +17592266475219 50000 +17592266475225 50000 +17592266475223 50000 +17592266475245 50000 +17592266475243 50000 +17592266475249 50000 +17592266475247 50000 +17592266475237 50000 +17592266475235 50000 +17592266475241 50000 +17592266475239 50000 +17592266475253 50000 +17592266475251 50000 +17592266474268 28030 +17592266474260 28010 +17592266597127 50000 +17592266597125 50000 +17592266796151 51200 +17592266687224 50000 +17592266687222 50000 +17592266796143 51200 +17592266792765 97200 +17592266820464 50000 +17592266988945 74150 +17592267240408 51200 +17592267036725 50000 +17592267036723 50000 +17592267240401 51200 +17592267243059 25200 +17592267243036 97200 +17592267240396 51200 +17592267331940 50000 +17592267852428 51200 +17592267630052 50000 +17592267852436 51200 +17592267889857 51200 +17592267830346 50000 +17592267928099 50000 +17592267928101 50000 +17592267928103 50000 +17592267928105 50000 +17592267928107 50000 +17592267928109 50000 +17592267928111 50000 +17592267928113 50000 +17592267928115 50000 +17592267928117 50000 +17592267928119 50000 +17592267928121 50000 +17592267928123 50000 +17592267928125 50000 +17592267928093 50000 +17592267928095 50000 +17592267928097 50000 +17592270758475 50000 +17592268129269 86200 +17592268138963 74600 +17592268529904 51200 +17592268236781 50000 +17592268359840 50000 +17592268529900 51200 +17592268529896 51200 +17592268618545 82100 +17592268454642 25200 +17592268576779 50000 +17592268576777 50000 +17592268654642 50000 +17592269123267 51200 +17592268745188 50000 +17592268892320 50000 +17592268987643 50000 +17592269123700 51200 +17592269123725 51200 +17592269209775 50000 +17592269335704 50000 +17592269335702 50000 +17592269644923 51200 +17592269644347 51200 +17592269498886 50000 +17592269644343 51200 +17592269644339 51200 +17592269693273 50000 +17592269833169 74150 +17592269833007 50000 +17592269833005 50000 +17592269832960 25200 +17592270353783 51200 +17592269957899 74700 +17592270031617 50000 +17592270697244 51200 +17592270353779 51200 +17592270150298 50000 +17592270353775 51200 +17592270697345 51200 +17592270405416 50000 +17592270405414 50000 +17592270896063 51200 +17592270697851 28010 +17592270652802 50000 +17592270697445 74600 +17592271899184 51200 +17592270697895 34020 +17592270896059 51200 +17592270865725 25200 +17592270896055 51200 +17592270925467 50000 +17592271503290 51200 +17592271114995 82100 +17592271186628 50000 +17592271518563 51200 +17592271518560 51200 +17592271570253 50000 +17592272074946 51200 +17592271875371 50000 +17592271899231 74150 +17592272074942 51200 +17592272074938 51200 +17592272061093 25200 +17592272107176 50000 +17592272705063 51200 +17592272307118 50000 +17592272413711 50000 +17592272424941 28010 +17592272424957 34020 +17592272705059 51200 +17592272705022 51200 +17592272780193 50000 +17592272780191 50000 +17592272922711 50000 +17592273050682 50000 +17592273464540 51200 +17592273188489 50000 +17592273486817 51200 +17592273463285 50000 +17592273465510 25200 +17592273486813 51200 +17592273554702 34020 +17592273554687 28010 +17592273551572 50000 +17592274211445 51200 +17592273875453 50000 +17592273945760 50000 +17592273946846 74600 +17592274211575 51200 +17592274211605 51200 +17592274270645 82100 +17592274266652 50000 +17592274348801 50000 +17592274494991 50000 +17592274494987 50000 +17592274494989 50000 +17592274878986 51200 +17592274549358 50000 +17592275904134 51200 +17592274878950 25200 +17592274878974 51200 +17592274901982 50000 +17592274976977 74150 +17592274971171 50000 +17592274971169 50000 +17592275904136 51200 +17592275169794 50000 +17592275904138 51200 +17592275295957 28010 +17592275326215 34020 +17592275904140 51200 +17592275373361 50000 +17592275904142 51200 +17592275475014 50000 +17592275590955 81120 +17592275904144 51200 +17592275699980 50000 +17592275904146 51200 +17592277978722 51200 +17592275904130 51200 +17592275986724 50000 +17592275986726 50000 +17592276037113 25200 +17592276035736 50000 +17592276111774 50000 +17592276545916 51200 +17592277978724 51200 +17592276220852 50000 +17592274851630 51200 +17592274851644 51200 +17592276545912 51200 +17592276545908 51200 +17592276638769 50000 +17592277210271 51200 +17592276838347 82100 +17592276936526 50000 +17592277210267 51200 +17592277978726 51200 +17592277187969 28010 +17592277210263 51200 +17592277188412 34020 +17592277188258 34000 +17592277186770 25200 +17592277283604 50000 +17592277370323 50000 +17592277370325 50000 +17592277370319 50000 +17592277370321 50000 +17592277991331 51200 +17592277748861 74150 +17592277747790 50000 +17592277991247 51200 +17592277991327 51200 +17592277971640 50000 +17592278070758 50000 +17592278070953 74600 +17592278587598 51200 +17592278347114 50000 +17592278587594 51200 +17592278587205 25200 +17592278587590 51200 +17592278689447 50000 +17592278689443 50000 +17592278689445 50000 +17592278919606 74150 +17592279257592 51200 +17592279017855 50000 +17592279032191 34020 +17592279032300 34000 +17592279257588 51200 +17592279257817 74600 +17592279257584 51200 +17592279324370 50000 +17592279795158 51200 +17592279555520 50000 +17592279795154 51200 +17592279705673 82100 +17592279795150 51200 +17592279859942 50000 +17592280673720 51200 +17592280247506 50000 +17592280673716 51200 +17592280673712 51200 +17592280751378 50000 +17592282560761 51200 +17592281212881 34020 +17592281212873 34000 +17592281680700 51200 +17592281342368 50000 +17592281680696 51200 +17592281680692 51200 +17592281771428 50000 +17592281771430 50000 +17592281878737 50000 +17592282560763 51200 +17592282125850 50000 +17592282560757 51200 +17592282560753 51200 +17592282669353 34000 +17592282669361 34020 +17592282669237 50000 +17592282796076 74150 +17592283202525 51200 +17592283014586 50000 +17592283202521 51200 +17592283202517 51200 +17592283254385 50000 +17592283355893 82100 +17592283748001 51200 +17592283532182 50000 +17592283747997 51200 +17592283623895 50000 +17592283908779 74600 +17592286847281 50000 +17592283747993 51200 +17592283787715 50000 +17592284376681 51200 +17592284105283 50000 +17592284376677 51200 +17592284376673 51200 +17592285094607 51200 +17592284454695 50000 +17592284454691 50000 +17592284454693 50000 +17592284454687 50000 +17592284454689 50000 +17592284454683 50000 +17592284454685 50000 +17592284454681 50000 +17592284656197 50000 +17592284656199 50000 +17592285094609 51200 +17592284822275 50000 +17592284921803 72710 +17592285094611 51200 +17592285094615 51200 +17592285798232 51200 +17592285153350 50000 +17592285798212 51200 +17592285535298 50000 +17592285798208 51200 +17592285798204 51200 +17592285842548 50000 +17592286361177 51200 +17592286126478 50000 +17592286133050 82100 +17592286132892 74600 +17592286361173 51200 +17592286215673 50000 +17592287075883 51200 +17592286361169 51200 +17592286592937 35200 +17592286576453 50000 +17592286593195 34020 +17592287075879 51200 +17592286726595 50000 +17592287075875 51200 +17592286844473 50000 +17592286840974 74150 +17592287075871 51200 +17592286969130 50000 +17592286969128 50000 +17592287075867 51200 +17592287133463 50000 +17592287133461 50000 +17592287133459 50000 +17592287413420 50000 +17592252277645 50000 +17592255411814 51200 +17592252831760 51200 +17592252831776 51200 +17592252395355 50000 +17592252395357 50000 +17592255410617 51200 +17592252831800 51200 +17592255240189 50000 +17592252693511 50000 +17592253307605 51200 +17592252830869 50000 +17592253307619 51200 +17592253086270 50000 +17592253307629 51200 +17592253732309 51200 +17592253274780 50000 +17592253732333 51200 +17592253549741 50000 +17592253732341 51200 +17592253732378 51200 +17592253732386 51200 +17592253628270 50000 +17592254099514 51200 +17592253705000 50000 +17592253705002 50000 +17592253961672 50000 +17592254099522 51200 +17592254074415 50000 +17592254618087 51200 +17592254379515 50000 +17592254618096 51200 +17592254607839 50000 +17592255054723 51200 +17592254869095 50000 +17592255054773 51200 +17592254929248 50000 +17592255641016 51200 +17592254996509 50000 +17592255642544 51200 +17592255407604 50000 +17592255642564 51200 +17592256181262 51200 +17592255596901 50000 +17592255984043 50000 +17592256193044 51200 +17592256157039 50000 +17592256684615 51200 +17592256684521 51200 +17592256684690 51200 +17592256434251 50000 +17592256684728 51200 +17592257222066 51200 +17592256545194 50000 +17592256545192 50000 +17592256545196 50000 +17592257222080 51200 +17592256680185 50000 +17592257222138 51200 +17592257222162 51200 +17592256986765 50000 +17592257243792 51200 +17592257210593 50000 +17592257773921 51200 +17592257580857 50000 +17592257774005 51200 +17592258203780 51200 +17592258203784 51200 +17592257751376 50000 +17592258203810 51200 +17592258009888 50000 +17592258792465 51200 +17592258183957 50000 +17592258286769 50000 +17592258286767 50000 +17592258286765 50000 +17592258286763 50000 +17592258286761 50000 +17592258286759 50000 +17592258286757 50000 +17592258286755 50000 +17592258286777 50000 +17592258286775 50000 +17592258286773 50000 +17592258286771 50000 +17592258286753 50000 +17592258286751 50000 +17592258286749 50000 +17592258286747 50000 +17592258286745 50000 +17592258286743 50000 +17592258286741 50000 +17592258793128 51200 +17592258792545 51200 +17592258576719 50000 +17592259266462 51200 +17592258765296 50000 +17592258979193 50000 +17592259266534 51200 +17592259064489 50000 +17592259113286 50000 +17592259754226 51200 +17592259754228 51200 +17592259267117 51200 +17592259754284 51200 +17592259234070 50000 +17592259302610 50000 +17592259532754 50000 +17592259754393 51200 +17592260239144 51200 +17592259738078 50000 +17592260069002 50000 +17592260239162 51200 +17592260190647 50000 +17592260920268 51200 +17592260387576 50000 +17592260920348 51200 +17592260664527 50000 +17592261466205 51200 +17592260894794 50000 +17592261201408 50000 +17592261466332 51200 +17592261408038 50000 +17592262376213 51200 +17592261530655 50000 +17592261626060 50000 +17592262376235 51200 +17592261871515 50000 +17592261871517 50000 +17592262376241 51200 +17592262376237 51200 +17592261975244 50000 +17592263257355 51200 +17592262753555 50000 +17592263257365 51200 +17592263257439 51200 +17592262994510 50000 +17592263234953 50000 +17592263862304 51200 +17592263862344 51200 +17592263862322 51200 +17592263862334 51200 +17592263862332 51200 +17592263862346 51200 +17592263622873 50000 +17592263862358 51200 +17592263720231 50000 +17592263838253 50000 +17592264401643 51200 +17592264401641 51200 +17592272977472 51200 +17592264401679 51200 +17592264401673 51200 +17592264162756 50000 +17592264401745 51200 +17592264257188 50000 +17592264933657 51200 +17592264933627 51200 +17592264379303 50000 +17592264707091 50000 +17592264945444 51200 +17592265506008 51200 +17592264909830 50000 +17592264909832 50000 +17592264975793 50000 +17592265506040 51200 +17592265274016 50000 +17592266199078 51200 +17592266199076 51200 +17592265421449 50000 +17592265530016 50000 +17592265530018 50000 +17592265530012 50000 +17592265530014 50000 +17592265530008 50000 +17592265530010 50000 +17592265530004 50000 +17592265530006 50000 +17592265530000 50000 +17592265530002 50000 +17592265529996 50000 +17592265529998 50000 +17592265529992 50000 +17592265529994 50000 +17592265529988 50000 +17592265529990 50000 +17592265529984 50000 +17592265529986 50000 +17592265529980 50000 +17592265529982 50000 +17592265529976 50000 +17592265529978 50000 +17592265529972 50000 +17592265529974 50000 +17592265529968 50000 +17592265529970 50000 +17592265529964 50000 +17592265529966 50000 +17592265529960 50000 +17592265529962 50000 +17592265529956 50000 +17592265529958 50000 +17592265530032 50000 +17592265530034 50000 +17592265530028 50000 +17592265530030 50000 +17592265530024 50000 +17592265530026 50000 +17592265530020 50000 +17592265530022 50000 +17592265529952 50000 +17592265529954 50000 +17592265529948 50000 +17592265529950 50000 +17592265529944 50000 +17592265529946 50000 +17592265529940 50000 +17592265529942 50000 +17592265529938 50000 +17592267679360 50000 +17592267679372 50000 +17592266199160 51200 +17592265836933 50000 +17592267677051 50000 +17592266796043 51200 +17592266186992 50000 +17592266796063 51200 +17592270346010 50000 +17592266588477 50000 +17592267240572 51200 +17592270346408 50000 +17592267240586 51200 +17592267240584 51200 +17592267240588 51200 +17592267240596 51200 +17592267240592 51200 +17592267240610 51200 +17592267240608 51200 +17592270346767 50000 +17592267850986 51200 +17592270347110 50000 +17592267851043 51200 +17592267851061 51200 +17592270347274 50000 +17592268499494 51200 +17592268499639 51200 +17592268499508 51200 +17592268499518 51200 +17592268232230 50000 +17592269106389 51200 +17592269106391 51200 +17592269106393 51200 +17592268486492 50000 +17592268561820 50000 +17592268561818 50000 +17592268654624 50000 +17592268882539 50000 +17592269122277 51200 +17592269122275 51200 +17592269122279 51200 +17592270333985 50000 +17592270348455 50000 +17592269637085 51200 +17592269105702 50000 +17592269287216 50000 +17592269637149 51200 +17592269492803 50000 +17592269634623 50000 +17592270311545 51200 +17592270311547 51200 +17592270311549 51200 +17592269693259 50000 +17592270311721 51200 +17592270031599 50000 +17592270855617 51200 +17592270290444 50000 +17592270468424 50000 +17592270647101 50000 +17592270855710 51200 +17592271502726 51200 +17592271502764 51200 +17592270850481 50000 +17592271502785 51200 +17592271502849 51200 +17592271184613 50000 +17592271454858 50000 +17592272048084 51200 +17592272048102 51200 +17592272048106 51200 +17592271873603 50000 +17592272048152 51200 +17592272048154 51200 +17592272691112 51200 +17592272107168 50000 +17592272691158 51200 +17592272405164 50000 +17592272651890 50000 +17592273464254 51200 +17592272914800 50000 +17592272914798 50000 +17592273171920 50000 +17592273464339 51200 +17592273460479 50000 +17592274166871 51200 +17592274171656 51200 +17592273873201 50000 +17592274176373 51200 +17592274852094 51200 +17592274008610 50000 +17592276661692 51200 +17592274852163 51200 +17592274852169 51200 +17592274494211 50000 +17592275340526 51200 +17592275340524 51200 +17592274848182 50000 +17592275340558 51200 +17592274971111 50000 +17592275340546 51200 +17592275166251 50000 +17592275233719 50000 +17592275322276 50000 +17592275904281 51200 +17592275904297 51200 +17592275904305 51200 +17592275575123 50000 +17592275669073 50000 +17592276552419 51200 +17592276552421 51200 +17592275894811 50000 +17592276552473 51200 +17592276211489 50000 +17592276552512 51200 +17592277210172 51200 +17592276544534 50000 +17592277210196 51200 +17592276930398 50000 +17592277979136 51200 +17592277164323 50000 +17592277979134 51200 +17592277283540 50000 +17592277283542 50000 +17592277283544 50000 +17592277283546 50000 +17592277283548 50000 +17592277283550 50000 +17592277283552 50000 +17592277283524 50000 +17592277283526 50000 +17592277283528 50000 +17592277283530 50000 +17592277283532 50000 +17592277283534 50000 +17592277283536 50000 +17592277283538 50000 +17592277283508 50000 +17592277283510 50000 +17592277283512 50000 +17592277283514 50000 +17592277283516 50000 +17592277283518 50000 +17592277283520 50000 +17592277283522 50000 +17592277979220 51200 +17592277979284 51200 +17592277568113 50000 +17592278568328 51200 +17592278568338 51200 +17592277960102 50000 +17592277960100 50000 +17592278173564 50000 +17592278568418 51200 +17592278336674 50000 +17592278439348 50000 +17592278565620 50000 +17592279257729 51200 +17592279257737 51200 +17592278911743 50000 +17592278911745 50000 +17592279257749 51200 +17592279013030 50000 +17592279254573 50000 +17592279788284 51200 +17592279324344 50000 +17592279555492 50000 +17592279788342 51200 +17592279633391 50000 +17592280673744 51200 +17592279748102 50000 +17592279944172 50000 +17592279944174 50000 +17592280673762 51200 +17592280223577 50000 +17592280650506 50000 +17592281680609 51200 +17592281680607 51200 +17592281333961 50000 +17592281680635 51200 +17592281675600 50000 +17592282560091 51200 +17592282576092 51200 +17592282125836 50000 +17592282558533 50000 +17592282558535 50000 +17592283163128 51200 +17592283163077 51200 +17592283014574 50000 +17592283187394 50000 +17592283329689 50000 +17592283698164 51200 +17592283532166 50000 +17592283734500 51200 +17592283733015 50000 +17592284131777 51200 +17592284321519 51200 +17592284376785 51200 +17592284104307 50000 +17592284318082 50000 +17592284945179 51200 +17592285095353 51200 +17592284822257 50000 +17592285085137 50000 +17592285777748 51200 +17592285783213 51200 +17592285535280 50000 +17592286350452 51200 +17592285778671 50000 +17592286126456 50000 +17592286354167 51200 +17592287041476 51200 +17592286349101 50000 +17592287041840 51200 +17592287042081 51200 +17592286838256 50000 +17592287047219 50000 +17592287402937 50000 +17592253480871 16300 +17592255444907 16300 +17592256356230 74700 +17592258801967 16300 +17592257443838 15300 +17592257778159 16300 +17592257899647 15300 +17592258483628 16300 +17592259899754 16300 +17592262420285 15450 +17592265621110 15300 +17592263663259 15300 +17592263663274 15300 +17592264203254 15300 +17592264910995 15300 +17592268203808 16300 +17592264750368 16300 +17592265621393 15300 +17592265621471 15400 +17592273500965 16300 +17592267269414 15450 +17592266853767 15300 +17592268203816 16300 +17592273501424 16300 +17592270972962 16300 +17592279324948 15300 +17592273501433 16300 +17592273501880 16300 +17592275949590 75100 +17592271790218 16300 +17592271790255 16300 +17592273501980 82100 +17592273501988 82100 +17592273501888 82100 +17592275949598 75100 +17592271776236 16300 +17592278184618 81140 +17592277210085 74200 +17592278184562 81140 +17592272360178 15300 +17592277211077 15410 +17592278569513 73300 +17592281836513 50100 +17592273906778 16300 +17592277211085 15410 +17592277211101 50000 +17592277211093 50000 +17592284743978 84100 +17592277209981 15410 +17592277211053 50000 +17592277211013 50000 +17592281840182 50200 +17592277523902 50000 +17592273292756 15300 +17592277211069 50000 +17592277211061 15400 +17592277211037 74100 +17592277211029 74500 +17592281836519 50100 +17592277629796 84100 +17592273200549 81160 +17592277523657 74500 +17592277211045 74600 +17592277211021 74500 +17592277211005 50000 +17592277210997 50000 +17592273254823 84200 +17592277209989 15410 +17592273486427 83000 +17592277523994 50000 +17592277523796 50000 +17592277523524 50000 +17592281840176 50200 +17592281840188 50200 +17592274850844 15410 +17592277523642 50000 +17592277524276 50000 +17592281840193 50200 +17592277524083 50000 +17592281836545 50100 +17592278184570 81140 +17592273906968 74100 +17592281836547 50100 +17592281836544 50100 +17592281840168 50200 +17592281840164 50200 +17592275420280 50000 +17592275420296 50000 +17592281836515 50100 +17592275420256 50000 +17592275420288 15410 +17592275420264 74500 +17592275420272 74500 +17592273947532 25200 +17592273947276 25200 +17592275420304 50000 +17592281840172 50200 +17592274221918 25200 +17592281836523 50100 +17592274349479 74100 +17592275949452 50000 +17592274269029 25200 +17592275949302 15410 +17592275949325 15410 +17592275949498 50000 +17592275949420 50000 +17592274358644 25200 +17592275909382 15410 +17592275949479 50000 +17592281836543 50100 +17592281840173 50200 +17592281840170 50200 +17592277630864 84100 +17592275731319 84100 +17592277629820 84100 +17592274214662 72100 +17592274214661 82100 +17592274214663 82200 +17592275949235 50000 +17592275241036 81160 +17592275241076 75300 +17592275949541 50000 +17592275948593 74500 +17592281840180 50200 +17592281836537 50100 +17592278184578 81140 +17592275948699 50000 +17592275947997 74600 +17592275952515 74100 +17592281836546 50100 +17592275948624 50000 +17592274975737 74500 +17592281836525 50100 +17592281840179 50200 +17592275948616 50000 +17592275948714 50000 +17592281840178 50200 +17592277411900 50000 +17592277411808 50000 +17592275952565 74100 +17592281836528 50100 +17592277411508 50000 +17592281840175 50200 +17592277411687 50000 +17592281836532 50100 +17592281836524 50100 +17592273554074 83500 +17592284743976 84100 +17592277411336 50000 +17592277412117 50000 +17592281836541 50100 +17592277411670 50000 +17592281840183 50200 +17592281836520 50100 +17592278184586 81140 +17592276733144 74100 +17592281840195 50200 +17592281840177 50200 +17592276644062 83000 +17592281141230 75100 +17592281141214 50000 +17592281141206 50000 +17592281141222 50000 +17592277210062 74200 +17592281836514 50100 +17592281840192 50200 +17592281840194 50200 +17592281840187 50200 +17592281836518 50100 +17592281141198 50000 +17592279771293 74610 +17592281836530 50100 +17592281840189 50200 +17592281836540 50100 +17592276570848 25200 +17592276733152 74100 +17592281141190 50000 +17592281836531 50100 +17592281836529 50100 +17592281840167 50200 +17592281840163 50200 +17592278574152 84100 +17592281836527 50100 +17592277629830 84100 +17592278184610 81140 +17592277370305 74100 +17592281210161 50000 +17592281142244 50000 +17592276936294 82200 +17592276936292 82100 +17592276936293 72100 +17592276962208 83500 +17592281840174 50200 +17592281836535 50100 +17592281210169 50000 +17592281142252 50000 +17592279771308 74610 +17592281836507 50100 +17592281840171 50200 +17592281836516 50100 +17592278225880 74100 +17592281836536 50100 +17592281142030 50000 +17592281836542 50100 +17592281840191 50200 +17592281142161 50000 +17592281142236 50000 +17592278587264 25200 +17592278587189 84200 +17592281836548 50100 +17592281840190 50200 +17592284743977 84100 +17592281836509 50100 +17592281142022 50000 +17592281142006 50000 +17592281141787 50000 +17592281840185 50200 +17592278920734 83000 +17592281836504 50100 +17592281836502 50100 +17592281210177 50000 +17592281836521 50100 +17592281836517 50100 +17592281142014 75100 +17592279497855 74500 +17592281836511 50100 +17592281840186 50200 +17592279788673 74100 +17592284118802 50000 +17592281836506 50100 +17592281836505 50100 +17592281836549 50100 +17592281836534 50100 +17592281836533 50100 +17592281840162 50200 +17592284118811 50000 +17592279789804 74100 +17592281840165 50200 +17592284118794 50000 +17592281836510 50100 +17592285952089 93400 +17592285952088 28020 +17592284119477 50000 +17592281836522 50100 +17592279771438 83500 +17592284744238 50200 +17592279464616 82200 +17592279464615 72100 +17592279464614 82100 +17592281836538 50100 +17592284119378 50000 +17592281836526 50100 +17592284744245 50200 +17592280849738 74100 +17592284119370 50000 +17592281119267 84100 +17592282668824 74600 +17592284744244 50200 +17592281836503 50100 +17592282600057 50000 +17592282600489 74500 +17592281836508 50100 +17592281836539 50100 +17592284744242 50200 +17592281836512 50100 +17592282600719 50000 +17592281910415 74100 +17592284119485 50000 +17592281784739 74700 +17592284119338 50000 +17592284743979 84100 +17592281979999 50100 +17592284744239 50200 +17592282560973 83000 +17592284119362 50000 +17592284119354 50000 +17592284119346 50000 +17592284119330 50000 +17592284119322 50000 +17592284744212 50100 +17592284744240 50200 +17592284119431 50000 +17592282731729 25200 +17592284119409 50000 +17592282790095 74100 +17592284744211 50100 +17592284744215 50100 +17592284744213 50100 +17592283254246 74610 +17592284744243 50200 +17592284119401 50000 +17592284744214 50100 +17592284744241 50200 +17592284744246 50200 +17592284119447 50000 +17592284119386 50000 +17592283465364 74100 +17592284744247 50200 +17592284119469 50000 +17592284744216 50100 +17592285171051 84100 +17592285171043 84100 +17592284119455 50000 +17592284119439 50000 +17592285952099 93400 +17592285952098 28020 +17592283440420 83500 +17592285952185 28020 +17592285952184 93400 +17592283458372 82100 +17592283733061 50000 +17592283733965 51200 +17592284012348 50000 +17592284317868 51200 +17592284322883 50000 +17592284317864 51200 +17592284454839 50000 +17592284454841 50000 +17592284454835 50000 +17592284454837 50000 +17592284454833 50000 +17592284656245 50000 +17592284656247 50000 +17592285086961 51200 +17592284725312 50000 +17592285086957 51200 +17592285085187 50000 +17592285153358 50000 +17592285301383 50000 +17592285778569 51200 +17592285778565 51200 +17592285782921 50000 +17592287043888 51200 +17592285842562 50000 +17592286352669 51200 +17592286352661 51200 +17592286352638 51200 +17592286352634 51200 +17592286014959 50000 +17592286352615 51200 +17592286355583 50000 +17592287042910 51200 +17592286726621 50000 +17592287047273 50000 +17592287042906 51200 +17592287042902 51200 +17592287314024 50000 +17592287413446 50000 +17592287413448 50000 +17592258193775 15300 +17592258193919 15300 +17592258540530 74800 +17592258791254 82100 +17592258978644 16300 +17592258978724 16300 +17592261649467 74700 +17592261648440 81110 +17592264402197 15300 +17592264811929 15300 +17592264809958 15300 +17592264810067 15300 +17592264866763 97200 +17592266919575 15300 +17592267125244 50000 +17592267179858 74800 +17592267179744 15300 +17592267179841 15300 +17592268563564 15300 +17592269761201 15300 +17592270334168 15300 +17592271501509 15300 +17592278068519 81140 +17592278069017 81140 +17592273549067 15300 +17592274432380 15300 +17592274437039 81150 +17592274431894 82100 +17592278068538 81140 +17592274848226 50000 +17592274971223 50000 +17592275080311 50000 +17592274452658 15300 +17592275326401 50000 +17592275373369 50000 +17592275576142 50000 +17592275699996 50000 +17592278068562 81140 +17592275899609 50000 +17592277978784 51200 +17592276553008 51200 +17592276111790 50000 +17592276553048 51200 +17592286128793 51200 +17592277210412 51200 +17592276545213 50000 +17592276732411 50000 +17592277210559 51200 +17592276837471 50000 +17592277210599 51200 +17592276861009 15300 +17592276860935 15300 +17592277169316 50000 +17592278068826 81140 +17592277978620 51200 +17592276861158 15450 +17592276861141 15300 +17592277210655 82100 +17592277464478 50000 +17592277978890 51200 +17592286128725 51200 +17592277747804 50000 +17592278568503 51200 +17592276861200 15300 +17592276861184 74800 +17592277971658 50000 +17592278184683 50000 +17592278568623 51200 +17592278259363 50000 +17592278347122 50000 +17592278573914 50000 +17592279267818 51200 +17592278825981 50000 +17592278920423 50000 +17592279267952 51200 +17592279256220 50000 +17592279788404 51200 +17592279555542 50000 +17592279788472 51200 +17592280675300 51200 +17592279755253 50000 +17592280077566 82100 +17592280675413 51200 +17592280131810 50000 +17592280675443 51200 +17592281698915 51200 +17592280652323 50000 +17592281150434 15300 +17592281150402 15300 +17592281210314 50000 +17592281699927 51200 +17592282575543 51200 +17592282575545 51200 +17592282575547 51200 +17592281441613 50000 +17592285196358 51200 +17592282575469 51200 +17592281680413 50000 +17592281771458 50000 +17592281878753 50000 +17592281878751 50000 +17592281979993 50000 +17592282575533 51200 +17592283210817 51200 +17592282558581 50000 +17592282669243 50000 +17592282704723 72180 +17592282694149 15300 +17592282798258 50000 +17592282798260 50000 +17592285196182 51200 +17592283703174 51200 +17592282907610 50000 +17592283703178 51200 +17592283341712 50000 +17592283703182 51200 +17592283439405 50000 +17592284321819 51200 +17592283831576 82100 +17592283733055 50000 +17592283832112 82100 +17592283832621 82100 +17592284321815 51200 +17592286128658 51200 +17592284012342 50000 +17592284321823 51200 +17592286128631 51200 +17592284322877 50000 +17592284945199 51200 +17592284945195 51200 +17592284454807 50000 +17592284454803 50000 +17592284454805 50000 +17592284454799 50000 +17592284454801 50000 +17592284656235 50000 +17592284656237 50000 +17592284656239 50000 +17592284725306 50000 +17592284945203 51200 +17592285085181 50000 +17592287017523 51200 +17592285778285 51200 +17592285121504 74600 +17592285778289 51200 +17592285778293 51200 +17592285301377 50000 +17592285535308 50000 +17592286133650 51200 +17592285782915 50000 +17592286133646 51200 +17592286014953 50000 +17592286351161 51200 +17592287017508 51200 +17592286355577 50000 +17592287017519 51200 +17592286869816 82100 +17592287017928 51200 +17592286726613 50000 +17592287047267 50000 +17592287314016 50000 +17592276038179 15300 +17592282961550 15450 +17592279771453 83100 +17592281247330 74500 +17592282150453 15450 +17592283458718 83100 +17592252386062 25200 +17592252846035 51200 +17592253307649 51200 +17592252386094 25200 +17592252386078 25200 +17592252846226 50000 +17592252846230 50000 +17592252846232 50000 +17592252846047 51200 +17592252846033 51200 +17592252846228 50000 +17592259394121 51200 +17592253307601 51200 +17592253307603 51200 +17592253307352 50000 +17592253307607 51200 +17592253307354 50000 +17592253307356 50000 +17592253307625 51200 +17592253307358 50000 +17592253307633 51200 +17592253751084 50000 +17592253750015 51200 +17592253750021 51200 +17592253469731 25200 +17592253469755 25200 +17592253469966 25200 +17592253751086 50000 +17592253750023 51200 +17592254099592 51200 +17592254099590 51200 +17592254101473 50000 +17592254099600 51200 +17592253836642 82100 +17592254101475 50000 +17592254099606 51200 +17592254099604 51200 +17592254072205 25200 +17592254072221 25200 +17592254072237 25200 +17592254618036 51200 +17592254620628 50000 +17592254620630 50000 +17592254618044 51200 +17592254620742 51200 +17592254618054 51200 +17592254620634 50000 +17592254620632 50000 +17592254620636 50000 +17592254618062 51200 +17592255089042 50000 +17592255054832 51200 +17592255089044 50000 +17592255089046 50000 +17592255054840 51200 +17592254803156 51200 +17592255089048 50000 +17592255054848 51200 +17592255019829 25200 +17592255658385 50000 +17592255019864 86100 +17592255019846 25200 +17592255642516 51200 +17592255364640 25200 +17592255363061 25200 +17592255363397 25200 +17592255363381 25200 +17592255658387 50000 +17592255642542 51200 +17592256181247 51200 +17592256193007 50000 +17592256181294 51200 +17592255845241 82100 +17592256181316 51200 +17592254099582 51200 +17592256193009 50000 +17592256709138 50000 +17592256684672 51200 +17592256350446 25200 +17592256388627 25200 +17592256350462 25200 +17592256709140 50000 +17592256684708 51200 +17592257222064 51200 +17592257244026 50000 +17592257222110 51200 +17592257222136 51200 +17592257244028 50000 +17592257222172 51200 +17592257243794 51200 +17592257773923 51200 +17592257485516 50000 +17592257480007 25200 +17592257773977 51200 +17592257480023 25200 +17592257773989 51200 +17592257485518 50000 +17592257580859 50000 +17592257593333 74500 +17592257754472 25200 +17592258203782 51200 +17592257751380 50000 +17592257937460 82100 +17592257937492 82100 +17592257942485 82100 +17592257951507 50000 +17592258203802 51200 +17592258792463 51200 +17592258183961 50000 +17592258286817 50000 +17592258286815 50000 +17592258286833 50000 +17592258286831 50000 +17592258286829 50000 +17592258286827 50000 +17592258286825 50000 +17592258286823 50000 +17592258286821 50000 +17592258286819 50000 +17592258286839 50000 +17592258286837 50000 +17592258286835 50000 +17592258792513 51200 +17592258792531 51200 +17592258447141 50000 +17592258792549 51200 +17592258875866 25200 +17592258875850 25200 +17592259266452 51200 +17592263063705 50000 +17592258765300 50000 +17592258979195 50000 +17592259266520 51200 +17592259064491 50000 +17592259754274 51200 +17592259234076 50000 +17592259234074 50000 +17592259464275 50000 +17592259518185 25200 +17592259754372 51200 +17592259518267 25200 +17592259518222 25200 +17592259518204 25200 +17592260239142 51200 +17592259738082 50000 +17592260239160 51200 +17592259973238 50000 +17592260114281 25200 +17592260212462 12400 +17592260212693 82100 +17592260212623 28010 +17592260190651 50000 +17592260920266 51200 +17592260387578 50000 +17592260920332 51200 +17592260652221 25200 +17592260652270 25200 +17592260499481 50000 +17592260920310 51200 +17592260652254 25200 +17592260652237 25200 +17592260652287 25200 +17592261466195 51200 +17592260894798 50000 +17592261121672 50000 +17592261466316 51200 +17592261466294 51200 +17592261408042 50000 +17592262376211 51200 +17592261553624 25200 +17592261553641 25200 +17592261709487 25200 +17592261709319 25200 +17592261709572 25200 +17592261709588 25200 +17592261743088 50000 +17592262376231 51200 +17592262376233 51200 +17592261871519 50000 +17592261929523 50000 +17592261975248 50000 +17592263257334 51200 +17592263257401 51200 +17592262753557 50000 +17592263257421 51200 +17592262851319 25200 +17592263257437 51200 +17592262874451 50000 +17592263234957 50000 +17592263862306 51200 +17592263862318 51200 +17592263862338 51200 +17592263504889 25200 +17592263504871 25200 +17592263504226 50000 +17592263504825 25200 +17592263504851 25200 +17592263504721 82100 +17592263862354 51200 +17592264401621 51200 +17592263838257 50000 +17592263900305 74500 +17592266293186 50000 +17592264048668 50000 +17592264401715 51200 +17592264162760 50000 +17592264185507 25200 +17592264933617 51200 +17592264379307 50000 +17592264582613 25200 +17592264582737 69920 +17592264534514 50000 +17592264582755 72180 +17592264582661 25200 +17592264582629 25200 +17592264582645 25200 +17592264599497 50000 +17592264933673 51200 +17592264933647 51200 +17592265506016 51200 +17592264909836 50000 +17592265506030 51200 +17592265172871 50000 +17592265274020 50000 +17592265336561 50000 +17592266199066 51200 +17592265517439 25200 +17592265421453 50000 +17592266199046 51200 +17592265517474 25200 +17592265517458 25200 +17592265517508 25200 +17592265517491 73500 +17592265530228 50000 +17592265530230 50000 +17592265530224 50000 +17592265530226 50000 +17592265530220 50000 +17592265530222 50000 +17592265530216 50000 +17592265530218 50000 +17592265530212 50000 +17592265530214 50000 +17592265530144 50000 +17592265530146 50000 +17592265530140 50000 +17592265530142 50000 +17592265530136 50000 +17592265530138 50000 +17592265530132 50000 +17592265530134 50000 +17592265530128 50000 +17592265530130 50000 +17592265530124 50000 +17592265530126 50000 +17592265530120 50000 +17592265530122 50000 +17592265530116 50000 +17592265530118 50000 +17592265530112 50000 +17592265530114 50000 +17592265530108 50000 +17592265530110 50000 +17592265530104 50000 +17592265530106 50000 +17592265530100 50000 +17592265530102 50000 +17592265530208 50000 +17592265530210 50000 +17592265530204 50000 +17592265530206 50000 +17592265530200 50000 +17592265530202 50000 +17592265530196 50000 +17592265530198 50000 +17592265530192 50000 +17592265530194 50000 +17592265530188 50000 +17592265530190 50000 +17592265530184 50000 +17592265530186 50000 +17592265530180 50000 +17592265530182 50000 +17592265530176 50000 +17592265530178 50000 +17592265530172 50000 +17592265530174 50000 +17592265530168 50000 +17592265530170 50000 +17592265530164 50000 +17592265530166 50000 +17592265530160 50000 +17592265530162 50000 +17592265530156 50000 +17592265530158 50000 +17592265530152 50000 +17592265530154 50000 +17592265530148 50000 +17592265530150 50000 +17592266293875 50000 +17592265703525 50000 +17592266199142 51200 +17592266796041 51200 +17592265936783 82100 +17592266796053 51200 +17592266255971 25200 +17592266186996 50000 +17592266796061 51200 +17592266468776 50000 +17592267931240 50000 +17592266795778 25200 +17592267240590 51200 +17592266977467 82100 +17592267240600 51200 +17592267931238 50000 +17592266977595 25200 +17592266977579 25200 +17592266977628 25200 +17592266977612 25200 +17592266977563 25200 +17592267851000 51200 +17592267931236 50000 +17592267931234 50000 +17592267461361 25200 +17592267851059 51200 +17592267931230 50000 +17592268499492 51200 +17592267931232 50000 +17592268499502 51200 +17592268082683 82100 +17592268105284 50000 +17592268499514 51200 +17592268234443 25200 +17592268234461 25200 +17592268234410 25200 +17592268234426 25200 +17592268234378 25200 +17592268234394 25200 +17592268234362 25200 +17592269106399 51200 +17592268478406 25200 +17592268478389 25200 +17592268486486 50000 +17592268508919 25200 +17592268511577 25200 +17592268561826 50000 +17592268561824 50000 +17592268654614 50000 +17592268744118 50000 +17592269106411 51200 +17592268839569 74600 +17592269094225 25200 +17592269637065 51200 +17592269095032 25200 +17592269105696 50000 +17592269276427 25200 +17592270709650 50000 +17592269276475 25200 +17592269276459 25200 +17592269276443 25200 +17592269419933 50000 +17592269637131 51200 +17592269492797 50000 +17592269542915 50000 +17592269542913 50000 +17592269542911 50000 +17592269634617 50000 +17592270311595 51200 +17592269932432 50000 +17592269932434 50000 +17592270311647 51200 +17592270855593 51200 +17592270290438 50000 +17592270405410 50000 +17592270405408 50000 +17592270417850 25200 +17592270417874 25200 +17592270417890 25200 +17592270417590 25200 +17592270417907 25200 +17592270468420 50000 +17592270549528 50000 +17592270855704 51200 +17592271502781 51200 +17592270850475 50000 +17592271502841 51200 +17592270924650 50000 +17592271502827 51200 +17592271106402 82100 +17592271077826 50000 +17592271077828 50000 +17592272048054 51200 +17592271454852 50000 +17592271574260 25200 +17592271574244 25200 +17592271574276 25200 +17592271574347 25200 +17592271574384 25200 +17592271574195 25200 +17592271574212 25200 +17592272048132 51200 +17592271751795 50000 +17592271986287 50000 +17592272691108 51200 +17592273066932 51200 +17592272198181 25200 +17592272198198 74600 +17592272214743 50000 +17592272691156 51200 +17592272304563 50000 +17592272453638 25200 +17592273464244 51200 +17592272651884 50000 +17592272689575 25200 +17592273464280 51200 +17592273067275 51200 +17592273464325 51200 +17592273124331 25200 +17592273124569 25200 +17592273124869 25200 +17592273123993 25200 +17592273044140 50000 +17592273460473 50000 +17592274165011 51200 +17592273747204 50000 +17592273747202 50000 +17592274175145 51200 +17592273945750 50000 +17592274263387 82100 +17592274852084 51200 +17592274012220 25200 +17592274008604 50000 +17592274008602 50000 +17592274263403 25200 +17592274263419 25200 +17592274263435 25200 +17592274263451 25200 +17592274405342 50000 +17592274852146 51200 +17592275340522 51200 +17592274550128 50000 +17592275340534 51200 +17592274848176 50000 +17592274901962 50000 +17592275340544 51200 +17592275066403 50000 +17592275904279 51200 +17592275233713 50000 +17592275322270 50000 +17592275904289 51200 +17592275326522 25200 +17592275326506 25200 +17592275326554 25200 +17592275326538 25200 +17592275326570 25200 +17592275904303 51200 +17592275575117 50000 +17592275575115 50000 +17592275894805 50000 +17592276552409 51200 +17592276552448 51200 +17592276552469 51200 +17592276111277 50000 +17592276552491 51200 +17592277210168 51200 +17592276514110 82100 +17592277210170 51200 +17592276544528 50000 +17592276544526 50000 +17592276554184 25200 +17592276554165 25200 +17592276554216 25200 +17592276554232 25200 +17592276633771 50000 +17592277210188 51200 +17592277210192 51200 +17592276832707 50000 +17592276832705 50000 +17592276937588 25200 +17592277978973 51200 +17592277978971 51200 +17592277164317 50000 +17592277979149 51200 +17592277351253 25200 +17592277283412 50000 +17592277283414 50000 +17592277283416 50000 +17592277283418 50000 +17592277283420 50000 +17592277283422 50000 +17592277283424 50000 +17592277283426 50000 +17592277283396 50000 +17592277283398 50000 +17592277283400 50000 +17592277283402 50000 +17592277283404 50000 +17592277283406 50000 +17592277283408 50000 +17592277283410 50000 +17592277283394 50000 +17592277283428 50000 +17592277283430 50000 +17592277283432 50000 +17592277283434 50000 +17592277979205 51200 +17592277369498 25200 +17592277464444 50000 +17592277979288 51200 +17592277568107 50000 +17592278568330 51200 +17592277960092 50000 +17592277971351 25200 +17592277971319 25200 +17592285188033 25200 +17592278568385 51200 +17592278256494 50000 +17592285188025 25200 +17592279257725 51200 +17592278565614 50000 +17592279257727 51200 +17592278870523 25200 +17592278911733 50000 +17592278911735 50000 +17592279257747 51200 +17592279013024 50000 +17592279131437 50000 +17592279788264 51200 +17592279241999 25200 +17592279242031 25200 +17592285188024 25200 +17592285188031 25200 +17592279254567 50000 +17592279788294 51200 +17592279324338 50000 +17592279324340 50000 +17592279555486 50000 +17592279788346 51200 +17592279633387 50000 +17592280673736 51200 +17592279748094 50000 +17592285188030 25200 +17592280673754 51200 +17592280131772 50000 +17592285188026 25200 +17592280650500 50000 +17592281680611 51200 +17592280714981 25200 +17592280714965 25200 +17592281680629 51200 +17592281199085 50000 +17592282560019 51200 +17592281624822 74600 +17592281624918 74600 +17592281624887 74600 +17592281675594 50000 +17592281675592 50000 +17592285188032 25200 +17592282560554 51200 +17592282560568 51200 +17592281979935 50000 +17592281979933 50000 +17592282348070 25200 +17592283202623 51200 +17592285188029 25200 +17592282558525 50000 +17592282348086 25200 +17592282669233 50000 +17592283202635 51200 +17592282798244 50000 +17592282798242 50000 +17592282918064 50000 +17592285188027 25200 +17592283202643 51200 +17592283187388 50000 +17592283748101 51200 +17592283748109 51200 +17592283439371 50000 +17592283748117 51200 +17592283643151 25200 +17592286127978 50000 +17592284131771 51200 +17592283623891 50000 +17592283623893 50000 +17592283623887 50000 +17592283623889 50000 +17592286127052 50000 +17592286127012 51200 +17592286127020 51200 +17592283755970 25200 +17592285188023 25200 +17592283733009 50000 +17592283762985 25200 +17592284321511 51200 +17592284321517 51200 +17592284012310 50000 +17592284012308 50000 +17592284390873 51200 +17592284390865 51200 +17592284206299 50000 +17592284206301 50000 +17592284215655 74600 +17592285188022 25200 +17592284318076 50000 +17592284945175 51200 +17592285095351 51200 +17592284724399 50000 +17592285777746 51200 +17592285085131 50000 +17592285777758 51200 +17592285188028 25200 +17592285215526 25200 +17592285215510 25200 +17592285777770 51200 +17592285777774 51200 +17592285301343 50000 +17592286350448 51200 +17592286350450 51200 +17592285778665 50000 +17592286350472 51200 +17592285986734 25200 +17592286014913 50000 +17592287044010 51200 +17592287044018 51200 +17592287044012 51200 +17592286352766 25200 +17592286352750 25200 +17592286349093 50000 +17592286349091 50000 +17592286352870 25200 +17592287429169 51200 +17592287044000 51200 +17592286721080 50000 +17592287075722 51200 +17592287043050 25200 +17592287047213 50000 +17592287047681 25200 +17592287197737 74600 +17592287313966 50000 +17592287313968 50000 +17592252873589 50000 +17592252873578 50000 +17592252461782 51200 +17592252852627 25200 +17592252436751 50000 +17592252461778 51200 +17592252831579 50000 +17592252831589 50000 +17592252831581 50000 +17592252845809 51200 +17592257330369 51200 +17592252831583 50000 +17592252845805 51200 +17592253307307 50000 +17592253307315 50000 +17592253316567 51200 +17592253307317 50000 +17592255221523 50000 +17592253152982 25200 +17592253307319 50000 +17592253192550 83300 +17592253192566 83400 +17592253192612 54100 +17592253318529 83000 +17592253732238 50000 +17592253732240 50000 +17592253316563 51200 +17592253732242 50000 +17592253399362 74600 +17592253732244 50000 +17592253732246 50000 +17592253732196 51200 +17592253732248 50000 +17592253732250 50000 +17592255221554 50000 +17592254099132 51200 +17592254101439 50000 +17592254099152 51200 +17592254099142 51200 +17592254101441 50000 +17592255221596 50000 +17592253978914 85100 +17592253978930 83800 +17592253978946 74610 +17592254101443 50000 +17592257330484 51200 +17592254099162 51200 +17592254620608 50000 +17592254131682 82100 +17592254620610 50000 +17592254524787 85100 +17592254524771 83100 +17592254524803 83300 +17592254492567 50000 +17592254612817 50000 +17592254650053 25200 +17592254832034 50000 +17592255032439 50000 +17592255221349 74700 +17592255230036 54100 +17592255313049 50000 +17592257330493 51200 +17592255407592 50000 +17592255596879 50000 +17592256014175 74610 +17592255924166 50000 +17592255943256 54100 +17592255984027 50000 +17592256014211 83000 +17592256014191 83400 +17592256014244 85100 +17592256157019 50000 +17592256245080 82100 +17592256354406 50000 +17592256650764 83100 +17592256680159 50000 +17592256680161 50000 +17592256888772 50000 +17592256888774 50000 +17592257039361 85100 +17592257067688 50000 +17592257253703 25200 +17592257211264 50000 +17592257327118 83300 +17592257327408 83000 +17592257327627 83400 +17592257483524 50000 +17592257751348 50000 +17592257951958 50000 +17592258026235 85100 +17592258184648 50000 +17592258447125 50000 +17592258612339 74610 +17592258612323 74610 +17592258611384 83100 +17592258612004 85100 +17592258663457 50000 +17592258711382 82100 +17592258765802 50000 +17592258979170 54100 +17592258967611 50000 +17592259248189 83400 +17592259248205 83300 +17592259234048 50000 +17592259464749 50000 +17592259739177 50000 +17592259973216 50000 +17592260105223 85100 +17592260105207 85100 +17592260114265 83000 +17592260114195 74600 +17592260190619 50000 +17592260304908 50000 +17592260500869 50000 +17592260695029 54100 +17592260898179 50000 +17592260977803 82100 +17592261123431 50000 +17592261208218 50000 +17592261208216 50000 +17592261278628 86200 +17592261278612 74610 +17592261278595 83100 +17592261408954 50000 +17592261646104 50000 +17592261745325 50000 +17592261970136 83400 +17592261970152 83300 +17592261970168 54000 +17592261976643 50000 +17592262874877 50000 +17592263237764 50000 +17592263504204 50000 +17592263838229 50000 +17592264050056 50000 +17592264117820 82100 +17592264272913 74610 +17592264272929 83000 +17592264272897 83100 +17592264379936 50000 +17592264613887 50000 +17592264910386 50000 +17592265094789 50000 +17592265178553 50000 +17592265217327 83400 +17592265185994 54100 +17592266410636 74610 +17592265216521 83300 +17592265470738 50000 +17592265728597 50000 +17592265838062 50000 +17592266186964 50000 +17592266259167 50000 +17592266410788 82100 +17592266410735 83100 +17592266410762 83000 +17592268420212 50000 +17592268420428 50000 +17592266475181 50000 +17592266475179 50000 +17592266475185 50000 +17592266475183 50000 +17592266475173 50000 +17592266475171 50000 +17592266475177 50000 +17592266475175 50000 +17592266475187 50000 +17592266475117 50000 +17592266475121 50000 +17592266475119 50000 +17592266475133 50000 +17592266475131 50000 +17592266475137 50000 +17592266475135 50000 +17592266475125 50000 +17592266475123 50000 +17592266475129 50000 +17592266475127 50000 +17592266475149 50000 +17592266475147 50000 +17592266475153 50000 +17592266475151 50000 +17592266475141 50000 +17592266475139 50000 +17592266475145 50000 +17592266475143 50000 +17592266475165 50000 +17592266475163 50000 +17592266475169 50000 +17592266475167 50000 +17592266475157 50000 +17592266475155 50000 +17592266475161 50000 +17592266475159 50000 +17592266774699 50000 +17592266982722 50000 +17592267000420 54100 +17592267181495 25200 +17592267243637 83300 +17592267235114 50000 +17592270729469 50000 +17592267243673 83400 +17592267331938 50000 +17592267518399 50000 +17592267830344 50000 +17592267830342 50000 +17592267928067 50000 +17592267928069 50000 +17592267928071 50000 +17592267928073 50000 +17592267928075 50000 +17592267928077 50000 +17592267928079 50000 +17592267928081 50000 +17592267928083 50000 +17592267928085 50000 +17592267928087 50000 +17592267928089 50000 +17592267928091 50000 +17592267928061 50000 +17592267928063 50000 +17592267928065 50000 +17592268015361 50000 +17592268105308 50000 +17592268486522 50000 +17592268576773 50000 +17592268576775 50000 +17592268745184 50000 +17592268745186 50000 +17592268910187 83100 +17592268910428 82100 +17592268910412 83000 +17592268910396 74600 +17592268910309 85100 +17592269106830 50000 +17592269335700 50000 +17592269436553 50000 +17592269634651 50000 +17592269833003 50000 +17592269932464 50000 +17592269932466 50000 +17592270031615 50000 +17592270125985 74610 +17592270126677 83300 +17592270126776 83400 +17592270292378 50000 +17592270560806 50000 +17592270560808 50000 +17592270652798 50000 +17592270652796 50000 +17592270652800 50000 +17592270652794 50000 +17592270851729 50000 +17592271011615 50000 +17592271078433 50000 +17592271456092 50000 +17592271592980 83000 +17592271595628 82100 +17592271591526 85100 +17592271592340 85100 +17592271759232 50000 +17592271851881 25200 +17592271986325 50000 +17592272061000 74610 +17592272060983 83100 +17592272307116 50000 +17592272413709 50000 +17592272651916 50000 +17592272749422 25200 +17592273050680 50000 +17592273109396 85100 +17592273053706 74600 +17592273109533 83300 +17592273109517 83400 +17592273188487 50000 +17592274199575 51200 +17592273522923 81140 +17592273463283 50000 +17592273748280 50000 +17592274211525 51200 +17592274012048 50000 +17592274852254 51200 +17592274401199 25200 +17592274432035 54100 +17592274405928 50000 +17592274852344 51200 +17592275342367 51200 +17592274832583 82100 +17592274848208 50000 +17592274971167 50000 +17592274971163 50000 +17592274971165 50000 +17592275342500 51200 +17592275080295 50000 +17592275106609 74610 +17592275106555 85100 +17592275106593 83000 +17592275106571 83100 +17592275326379 50000 +17592275941557 51200 +17592275373359 50000 +17592275576126 50000 +17592275943071 51200 +17592275747442 54100 +17592275943755 51200 +17592275899591 50000 +17592276552595 51200 +17592276001582 83400 +17592276001614 83300 +17592276001654 83000 +17592277978759 51200 +17592276062551 97200 +17592276552868 51200 +17592276111772 50000 +17592276220850 50000 +17592277210448 51200 +17592276545195 50000 +17592276545707 74600 +17592276638767 50000 +17592277210579 51200 +17592276837457 50000 +17592277130665 83100 +17592277130630 85100 +17592277131185 73100 +17592277130646 74600 +17592277169296 50000 +17592277978630 51200 +17592277369945 82100 +17592277283602 50000 +17592277464464 50000 +17592277978900 51200 +17592277747788 50000 +17592277797661 74610 +17592277797639 85100 +17592278568493 51200 +17592277971638 50000 +17592278070756 50000 +17592278568613 51200 +17592278259347 50000 +17592278568643 51200 +17592278439362 50000 +17592279267798 51200 +17592278573896 50000 +17592278920407 50000 +17592279267972 51200 +17592279256202 50000 +17592279788424 51200 +17592279324368 50000 +17592279788444 51200 +17592279479808 73100 +17592279478623 83300 +17592279479250 83000 +17592279555518 50000 +17592279788541 51200 +17592279755233 50000 +17592279814496 85100 +17592281703232 51200 +17592280675423 51200 +17592280131796 50000 +17592280296822 83100 +17592280296759 85100 +17592280294168 82100 +17592281696504 51200 +17592280652299 50000 +17592281210300 50000 +17592281696508 51200 +17592281391373 83300 +17592281391639 83400 +17592281391655 74610 +17592281696512 51200 +17592281680389 50000 +17592281771424 50000 +17592281771426 50000 +17592282560289 51200 +17592281979967 50000 +17592281979965 50000 +17592282560294 51200 +17592281986878 54100 +17592282558561 50000 +17592283163298 51200 +17592282907596 50000 +17592283163317 51200 +17592283195471 50000 +17592283699761 51200 +17592283254383 50000 +17592283465332 83000 +17592283465348 85100 +17592283465284 73100 +17592283465300 83100 +17592283439391 50000 +17592283699768 51200 +17592283532180 50000 +17592283733037 50000 +17592284321581 51200 +17592284321577 51200 +17592283806861 82100 +17592284012328 50000 +17592284321585 51200 +17592284322859 50000 +17592285087343 51200 +17592284454679 50000 +17592284454675 50000 +17592284454677 50000 +17592284454671 50000 +17592284454673 50000 +17592285087345 51200 +17592284656195 50000 +17592284656193 50000 +17592284744714 91100 +17592285087347 51200 +17592284745302 91100 +17592284725288 50000 +17592284750648 83300 +17592284750546 83400 +17592284750530 74610 +17592285085161 50000 +17592285777964 51200 +17592285258531 25200 +17592285153348 50000 +17592285777968 51200 +17592285301361 50000 +17592285782895 50000 +17592286354211 51200 +17592285933240 74600 +17592286014935 50000 +17592286354215 51200 +17592286363026 74600 +17592287012129 51200 +17592286384424 82100 +17592286384401 83100 +17592286384315 85100 +17592286361703 73100 +17592286355553 50000 +17592286362211 83000 +17592286691440 54100 +17592287012133 51200 +17592286726593 50000 +17592286969126 50000 +17592287047247 50000 +17592287313996 50000 +17592287413418 50000 +17592287413416 50000 +17592252872345 54300 +17592251616895 83100 +17592252024441 82100 +17592252487493 50000 +17592252926191 74200 +17592252436294 74100 +17592252925658 74200 +17592252925650 74200 +17592281835623 50100 +17592281840323 50200 +17592281835630 50100 +17592281835629 50100 +17592281835627 50100 +17592281836026 50100 +17592281836043 50100 +17592252641052 83500 +17592281840510 50200 +17592252925642 74200 +17592252905282 75100 +17592252905298 50000 +17592253369969 50000 +17592281840519 50200 +17592281836054 50100 +17592252871676 74100 +17592252876820 74100 +17592281835417 50100 +17592255622270 73300 +17592253379791 74200 +17592281840314 50200 +17592281835635 50100 +17592253369961 50000 +17592253348791 54300 +17592253369928 50000 +17592253369937 50000 +17592281840311 50200 +17592281836415 50100 +17592281836420 50100 +17592281836419 50100 +17592281836418 50100 +17592253797252 50000 +17592253348775 74100 +17592253797317 50000 +17592253797260 50000 +17592281835423 50100 +17592281840725 50200 +17592254803411 83500 +17592281835438 50100 +17592281835441 50100 +17592253797236 50000 +17592281836426 50100 +17592281836422 50100 +17592253789016 50000 +17592281836251 50100 +17592281836249 50100 +17592253789033 50000 +17592281840305 50200 +17592281836028 50100 +17592281836025 50100 +17592253732443 74100 +17592254159154 74600 +17592281835416 50100 +17592281835415 50100 +17592281835408 50100 +17592281835628 50100 +17592281840697 50200 +17592253913282 54300 +17592253921799 82100 +17592253988813 54300 +17592281836408 50100 +17592254156900 74100 +17592254159137 50000 +17592254079534 74610 +17592254680690 50000 +17592281840310 50200 +17592254075294 74100 +17592281835428 50100 +17592254201241 86100 +17592253927241 82100 +17592254074730 83100 +17592254238675 54300 +17592281840312 50200 +17592281835450 50100 +17592281835601 50100 +17592281835404 50100 +17592281835401 50100 +17592281840307 50200 +17592281840331 50200 +17592281840536 50200 +17592281836223 50100 +17592281840337 50200 +17592254671500 74100 +17592255240909 74200 +17592255240932 74200 +17592281836239 50100 +17592281840343 50200 +17592281840341 50200 +17592281840521 50200 +17592281840345 50200 +17592281836211 50100 +17592255240330 50000 +17592281835618 50100 +17592281840520 50200 +17592255054649 74100 +17592255239576 54300 +17592257970274 83500 +17592255721589 74600 +17592259407093 74700 +17592281840720 50200 +17592281835615 50100 +17592255458476 85100 +17592281835636 50100 +17592281835634 50100 +17592281835606 50100 +17592255599647 25200 +17592281836046 50100 +17592255713027 74610 +17592255676415 75100 +17592281840704 50200 +17592255721555 74100 +17592256369060 50000 +17592256300920 74200 +17592255876378 25200 +17592255876699 84200 +17592281836048 50100 +17592281840696 50200 +17592281836428 50100 +17592267967254 74700 +17592281835818 50100 +17592281836052 50100 +17592281840527 50200 +17592256225622 82100 +17592256496532 54300 +17592256302247 11000 +17592281840542 50200 +17592281835427 50100 +17592256852934 50000 +17592256852976 74200 +17592256853046 74200 +17592256852968 50000 +17592256852952 50000 +17592281840533 50200 +17592256731158 74100 +17592281835638 50100 +17592259907892 83100 +17592281836416 50100 +17592256913494 73600 +17592281840321 50200 +17592281840348 50200 +17592281840545 50200 +17592257542355 74100 +17592281840326 50200 +17592258040193 50000 +17592281836241 50100 +17592257396435 54300 +17592257970282 83500 +17592281836055 50100 +17592281840723 50200 +17592258375846 74200 +17592281835806 50100 +17592258040176 75100 +17592281835837 50100 +17592257778036 74100 +17592281840308 50200 +17592258375818 50000 +17592281835626 50100 +17592281840333 50200 +17592281836218 50100 +17592258227236 74100 +17592258978981 50000 +17592281836246 50100 +17592281840336 50200 +17592258375800 74200 +17592258978989 50000 +17592281836221 50100 +17592281840330 50200 +17592258504893 74610 +17592258325870 82100 +17592258978212 54300 +17592259428941 74100 +17592260024323 50000 +17592259908342 74100 +17592281835429 50100 +17592258793120 74100 +17592258977983 74200 +17592281840721 50200 +17592281835817 50100 +17592281840526 50200 +17592281835409 50100 +17592259908033 83100 +17592259419302 50000 +17592281840523 50200 +17592281836047 50100 +17592259338569 54300 +17592259428916 83500 +17592259267261 74100 +17592259304103 25200 +17592281835826 50100 +17592281840544 50200 +17592281835419 50100 +17592260021746 74600 +17592260018291 50000 +17592281836227 50100 +17592259908381 54300 +17592258394355 86200 +17592281840350 50200 +17592281840509 50200 +17592281840699 50200 +17592281835420 50100 +17592259908479 74100 +17592281835610 50100 +17592281840517 50200 +17592281835411 50100 +17592261591707 50000 +17592281836410 50100 +17592260410582 74100 +17592281840502 50200 +17592260239905 25200 +17592260410226 74610 +17592261649109 74200 +17592281840522 50200 +17592281836421 50100 +17592263088423 74200 +17592261877431 83100 +17592260941571 74700 +17592261124212 54300 +17592260434323 82100 +17592261649459 74200 +17592261693536 74100 +17592281836424 50100 +17592281840503 50200 +17592261649124 74200 +17592263465906 74100 +17592261563542 75100 +17592281840706 50200 +17592281835835 50100 +17592281835808 50100 +17592281836212 50100 +17592261420083 25200 +17592261563559 84200 +17592261563417 74100 +17592261563444 74100 +17592261498831 82100 +17592281840511 50200 +17592281835631 50100 +17592262670621 50000 +17592260081817 83500 +17592261548754 74200 +17592281840709 50200 +17592281835424 50100 +17592262670608 50000 +17592262828384 54300 +17592262418806 74500 +17592281840524 50200 +17592281835649 50100 +17592263088880 74100 +17592269499962 74600 +17592262769244 25200 +17592263349630 50000 +17592281840710 50200 +17592281836226 50100 +17592263089037 85100 +17592263349646 50000 +17592263349638 50000 +17592281835406 50100 +17592281840513 50200 +17592263263031 74100 +17592264442637 50000 +17592281835432 50100 +17592281835418 50100 +17592264442645 50000 +17592281836429 50100 +17592281840507 50200 +17592264442653 50000 +17592281840504 50200 +17592281840309 50200 +17592264076683 74610 +17592264442661 50000 +17592281840718 50200 +17592281835613 50100 +17592281840716 50200 +17592281840316 50200 +17592264076666 74100 +17592265291440 84200 +17592264442774 74200 +17592281840535 50200 +17592264941151 54300 +17592263944223 82100 +17592281840532 50200 +17592281835836 50100 +17592281840539 50200 +17592264396418 74100 +17592281835619 50100 +17592281835805 50100 +17592281835633 50100 +17592281840302 50200 +17592265505429 50000 +17592265505413 50000 +17592265505405 75100 +17592265505421 50000 +17592281840515 50200 +17592281835829 50100 +17592264942002 74100 +17592281835850 50100 +17592265301873 54300 +17592281840340 50200 +17592281836208 50100 +17592281835448 50100 +17592281835443 50100 +17592266538551 50000 +17592265502656 25200 +17592281840324 50200 +17592281836235 50100 +17592265505709 74100 +17592267992336 85100 +17592265557290 11000 +17592281836045 50100 +17592281835650 50100 +17592281840319 50200 +17592281836244 50100 +17592281840528 50200 +17592281835421 50100 +17592267851983 74100 +17592267982234 74100 +17592281835422 50100 +17592281836245 50100 +17592271594390 50000 +17592268263006 74200 +17592281840342 50200 +17592281836036 50100 +17592281836039 50100 +17592281835643 50100 +17592281836041 50100 +17592281835645 50100 +17592281836042 50100 +17592281835646 50100 +17592281836023 50100 +17592281835648 50100 +17592281836030 50100 +17592281835637 50100 +17592281836031 50100 +17592281835639 50100 +17592281836034 50100 +17592281836009 50100 +17592281836012 50100 +17592281836016 50100 +17592281835849 50100 +17592281836021 50100 +17592281835846 50100 +17592281835853 50100 +17592281835851 50100 +17592281835804 50100 +17592281835641 50100 +17592281835642 50100 +17592281835810 50100 +17592281835811 50100 +17592281835814 50100 +17592281835816 50100 +17592266411218 82100 +17592267992203 54300 +17592271807255 50000 +17592274275631 50000 +17592281836412 50100 +17592271599054 72600 +17592274274834 72600 +17592281840722 50200 +17592281835410 50100 +17592271599075 75100 +17592268204272 74100 +17592274274826 75100 +17592274275250 50000 +17592281840724 50200 +17592281836231 50100 +17592270429431 74200 +17592267992134 74100 +17592281840719 50200 +17592281836237 50100 +17592274294544 50000 +17592271599189 74200 +17592274295758 74200 +17592270429505 74200 +17592270429541 74200 +17592271599038 74200 +17592281835840 50100 +17592281840347 50200 +17592281835813 50100 +17592268019014 54300 +17592271806954 50000 +17592281835612 50100 +17592274275485 50000 +17592271806933 50000 +17592271806917 50000 +17592281835603 50100 +17592267891256 74100 +17592281840303 50200 +17592281836007 50100 +17592281836010 50100 +17592281836011 50100 +17592281836015 50100 +17592281835852 50100 +17592281836053 50100 +17592281836035 50100 +17592281836037 50100 +17592281836038 50100 +17592281836040 50100 +17592281836018 50100 +17592281836024 50100 +17592281836029 50100 +17592281836032 50100 +17592281835847 50100 +17592281835848 50100 +17592281836050 50100 +17592271599064 74700 +17592274274802 74700 +17592268140869 97200 +17592281835620 50100 +17592281840301 50200 +17592268262900 74610 +17592268671385 54300 +17592271806901 50000 +17592271807193 50000 +17592281836220 50100 +17592281840346 50200 +17592268671367 74100 +17592271599120 74200 +17592281840334 50200 +17592281835827 50100 +17592281835830 50100 +17592281835831 50100 +17592274274944 75100 +17592271599130 50000 +17592281840318 50200 +17592274275052 50000 +17592271599018 74200 +17592281835845 50100 +17592281835844 50100 +17592281840344 50200 +17592276767129 81110 +17592269141159 86300 +17592269141167 73600 +17592270079101 54300 +17592274294751 50000 +17592269310136 84200 +17592269310120 74100 +17592281835430 50100 +17592271609983 50000 +17592269158709 84200 +17592268909527 82100 +17592281840320 50200 +17592269834472 73300 +17592281840317 50200 +17592281835435 50100 +17592281835433 50100 +17592281835440 50100 +17592281840514 50200 +17592269499871 74100 +17592274295073 50000 +17592274294876 50000 +17592271609966 50000 +17592271609994 50000 +17592269659131 74100 +17592281835609 50100 +17592281840322 50200 +17592269834555 74610 +17592281836233 50100 +17592281836254 50100 +17592281835640 50100 +17592281840328 50200 +17592270118019 82100 +17592281835414 50100 +17592281835632 50100 +17592271109802 74200 +17592270479652 54300 +17592270432697 74100 +17592281840349 50200 +17592273255200 74100 +17592271598625 50000 +17592271598648 50000 +17592271598633 50000 +17592281836033 50100 +17592281840498 50200 +17592271598659 50000 +17592281835607 50100 +17592281835602 50100 +17592281835608 50100 +17592270945740 74100 +17592281840499 50200 +17592281836243 50100 +17592281840546 50200 +17592281836008 50100 +17592271107073 85100 +17592281840541 50200 +17592274297075 50000 +17592274297058 75100 +17592281836238 50100 +17592274296958 50000 +17592281840702 50200 +17592271523599 74100 +17592281835442 50100 +17592281835439 50100 +17592274296502 50000 +17592274296510 50000 +17592281835447 50100 +17592281835605 50100 +17592281840705 50200 +17592271486914 82100 +17592272255295 54300 +17592281835434 50100 +17592274296518 50000 +17592274296526 50000 +17592281840329 50200 +17592281836253 50100 +17592281836250 50100 +17592272255320 74100 +17592281836414 50100 +17592281836417 50100 +17592275604695 74100 +17592274270637 75100 +17592281840325 50200 +17592281835820 50100 +17592281835821 50100 +17592281835624 50100 +17592281835833 50100 +17592281836255 50100 +17592274270391 50000 +17592272698621 74100 +17592281840338 50200 +17592281836232 50100 +17592274223953 74200 +17592281840335 50200 +17592281836051 50100 +17592272925446 74610 +17592273225031 54300 +17592281836056 50100 +17592281836222 50100 +17592281840339 50200 +17592281836236 50100 +17592281836248 50100 +17592281836234 50100 +17592274270375 50000 +17592281840327 50200 +17592281836044 50100 +17592273504588 74100 +17592275420083 50000 +17592281840332 50200 +17592281835444 50100 +17592281840501 50200 +17592275418800 74200 +17592281836013 50100 +17592275420091 50000 +17592275420107 50000 +17592281840506 50200 +17592274223929 74100 +17592281835622 50100 +17592281836219 50100 +17592275420123 50000 +17592281835431 50100 +17592275604356 50000 +17592281836217 50100 +17592281835834 50100 +17592274424839 25200 +17592274876022 54300 +17592274409446 25200 +17592281840717 50200 +17592281840708 50200 +17592281840306 50200 +17592281840707 50200 +17592274269044 82200 +17592274929443 54300 +17592274214953 82100 +17592275241044 81160 +17592275241084 75300 +17592281835625 50100 +17592274929341 74100 +17592275604340 74200 +17592281840712 50200 +17592275603233 74200 +17592281836213 50100 +17592281836207 50100 +17592281836210 50100 +17592275079967 74610 +17592273504930 85100 +17592281836027 50100 +17592281840703 50200 +17592281836049 50100 +17592275604316 74200 +17592281840713 50200 +17592275604224 50000 +17592275403302 74100 +17592275401956 74100 +17592281835614 50100 +17592281835617 50100 +17592281835824 50100 +17592281840711 50200 +17592276577734 50000 +17592281835413 50100 +17592275524672 25200 +17592281840547 50200 +17592281840700 50200 +17592275510781 25200 +17592281840698 50200 +17592281840543 50200 +17592281835403 50100 +17592276577586 74200 +17592281835446 50100 +17592281835838 50100 +17592281835839 50100 +17592276001500 54300 +17592276577718 50000 +17592277999066 74200 +17592275987445 74100 +17592281840525 50200 +17592281836229 50100 +17592281836228 50100 +17592281836225 50100 +17592281836427 50100 +17592281836425 50100 +17592278281792 50000 +17592278281784 50000 +17592278281776 50000 +17592281835825 50100 +17592281835823 50100 +17592281835822 50100 +17592281840505 50200 +17592281835616 50100 +17592281835809 50100 +17592281835807 50100 +17592278281752 50000 +17592281836411 50100 +17592281836242 50100 +17592281836240 50100 +17592281840715 50200 +17592276643842 74100 +17592276639197 25200 +17592276639149 25200 +17592276639168 25200 +17592281836017 50100 +17592281836022 50100 +17592276767145 81110 +17592281835832 50100 +17592281840516 50200 +17592276935917 84200 +17592278018334 74200 +17592281836413 50100 +17592281836423 50100 +17592280295521 50000 +17592280295513 50000 +17592277185953 25200 +17592281836256 50100 +17592281836407 50100 +17592277283134 74100 +17592281840531 50200 +17592278070558 54300 +17592276860874 82100 +17592281835436 50100 +17592280295529 50000 +17592281835812 50100 +17592281840529 50200 +17592281835647 50100 +17592280137286 74200 +17592280295537 50000 +17592280295561 74700 +17592277991402 74600 +17592281835843 50100 +17592281835842 50100 +17592280295553 50000 +17592281836020 50100 +17592280295545 50000 +17592278070542 74100 +17592281840538 50200 +17592277999229 25200 +17592280295569 74500 +17592281836252 50100 +17592278094532 74610 +17592280075743 75100 +17592280295577 50000 +17592281835604 50100 +17592278197300 85100 +17592281840714 50200 +17592276640388 85100 +17592281840508 50200 +17592281836409 50100 +17592281840701 50200 +17592281840695 50200 +17592281835407 50100 +17592280295585 50000 +17592281835437 50100 +17592281840540 50200 +17592278569465 74100 +17592280295613 50000 +17592280295593 50000 +17592278689248 74100 +17592278611598 54300 +17592281835815 50100 +17592281835819 50100 +17592281840537 50200 +17592281872525 25200 +17592281836230 50100 +17592278860853 85100 +17592282575158 50000 +17592281840512 50200 +17592281836209 50100 +17592281835412 50100 +17592282575166 50000 +17592282575174 50000 +17592281840518 50200 +17592281836014 50100 +17592281836019 50100 +17592281835841 50100 +17592279324932 74100 +17592280295633 50000 +17592280295641 50000 +17592281835644 50100 +17592281835425 50100 +17592281840304 50200 +17592281835426 50100 +17592281835445 50100 +17592279854906 74100 +17592281840313 50200 +17592280159065 50000 +17592281835621 50100 +17592280159295 50000 +17592280159273 50000 +17592284749999 50100 +17592284750003 50100 +17592284750001 50100 +17592280135426 82100 +17592281246578 54300 +17592284750099 50200 +17592284749979 50100 +17592280750872 74100 +17592284750107 50200 +17592284749983 50100 +17592284750104 50200 +17592284750004 50100 +17592282668919 74100 +17592284750000 50100 +17592284750100 50200 +17592284749997 50100 +17592281702424 74100 +17592284749981 50100 +17592284749980 50100 +17592284749991 50100 +17592284750098 50200 +17592284749994 50100 +17592282560680 74610 +17592282560696 54300 +17592284750006 50100 +17592284750102 50200 +17592282668903 74100 +17592282554398 25200 +17592282822920 84200 +17592284749993 50100 +17592284750109 50200 +17592284750108 50200 +17592284749996 50100 +17592283262079 25200 +17592283281182 74100 +17592283440221 84200 +17592284749995 50100 +17592284041538 74700 +17592284750106 50200 +17592284750005 50100 +17592284750007 50100 +17592283458404 82100 +17592284750103 50200 +17592284749989 50100 +17592284749998 50100 +17592284750105 50200 +17592284749988 50100 +17592284750101 50200 +17592284749990 50100 +17592285086874 51200 +17592285086870 51200 +17592284749985 50100 +17592284749986 50100 +17592284749987 50100 +17592284749982 50100 +17592284749984 50100 +17592284750002 50100 +17592285086866 51200 +17592284749992 50100 +17592284917462 50000 +17592285086862 51200 +17592285085155 50000 +17592285153346 50000 +17592285301355 50000 +17592285778515 51200 +17592285782889 50000 +17592285778511 51200 +17592285933614 50000 +17592286014929 50000 +17592286352552 51200 +17592286126476 50000 +17592286352548 51200 +17592286355547 50000 +17592286355545 50000 +17592286576451 50000 +17592287042832 51200 +17592286726583 50000 +17592286726585 50000 +17592286969122 50000 +17592287047239 50000 +17592287047241 50000 +17592287047237 50000 +17592287042828 51200 +17592287133457 50000 +17592287133455 50000 +17592287212484 50000 +17592287313990 50000 +17592252277641 50000 +17592252277639 50000 +17592252437274 51200 +17592252845977 51200 +17592252567259 50000 +17592252635336 50000 +17592252764764 50000 +17592252845973 51200 +17592252830865 50000 +17592252870540 50000 +17592253042480 50000 +17592253042478 50000 +17592253317244 51200 +17592253169955 50000 +17592253275108 50000 +17592253275110 50000 +17592253409329 50000 +17592253409331 50000 +17592253750583 51200 +17592253627808 50000 +17592253627806 50000 +17592253836275 50000 +17592254019126 50000 +17592254237632 50000 +17592254492571 50000 +17592254737384 50000 +17592254929246 50000 +17592255211796 50000 +17592255505546 50000 +17592255596895 50000 +17592255834959 50000 +17592256216414 50000 +17592256292162 50000 +17592256434247 50000 +17592256545798 50000 +17592256545800 50000 +17592256731054 50000 +17592257244038 50000 +17592257067700 50000 +17592257067698 50000 +17592257211280 50000 +17592257267790 50000 +17592257267788 50000 +17592257267786 50000 +17592257386119 50000 +17592257386121 50000 +17592257483534 50000 +17592257483536 50000 +17592257668724 50000 +17592257751368 50000 +17592257878530 50000 +17592257878532 50000 +17592258009884 50000 +17592258097406 50000 +17592258097404 50000 +17592258097408 50000 +17592258184670 50000 +17592258286661 50000 +17592258286659 50000 +17592258358368 50000 +17592258663467 50000 +17592258765818 50000 +17592258838565 50000 +17592258901104 50000 +17592259113282 50000 +17592259113280 50000 +17592259113284 50000 +17592259639674 50000 +17592259639672 50000 +17592259639676 50000 +17592259888221 50000 +17592260151176 50000 +17592260388803 50000 +17592260806763 50000 +17592260898201 50000 +17592260898199 50000 +17592261299962 50000 +17592261408972 50000 +17592261531925 50000 +17592261646116 50000 +17592261928692 50000 +17592261928694 50000 +17592261976665 50000 +17592262646161 50000 +17592262753551 50000 +17592263420447 50000 +17592263719312 50000 +17592263986363 50000 +17592264257182 50000 +17592264257184 50000 +17592264257186 50000 +17592264535142 50000 +17592264795332 50000 +17592264910402 50000 +17592265335483 50000 +17592265619399 50000 +17592265866570 50000 +17592266259189 50000 +17592266385732 50000 +17592266475745 50000 +17592266475757 50000 +17592266475755 50000 +17592266475761 50000 +17592266475759 50000 +17592266475749 50000 +17592266475747 50000 +17592266475753 50000 +17592266475751 50000 +17592266475773 50000 +17592266475771 50000 +17592266475777 50000 +17592266475775 50000 +17592266475765 50000 +17592266475763 50000 +17592266475769 50000 +17592266475767 50000 +17592266475781 50000 +17592266475779 50000 +17592266475783 50000 +17592266687246 50000 +17592266820466 50000 +17592267125242 50000 +17592267331944 50000 +17592267752506 50000 +17592268015367 50000 +17592268359844 50000 +17592268576811 50000 +17592268745392 50000 +17592268745394 50000 +17592268745388 50000 +17592268745390 50000 +17592268745384 50000 +17592268745386 50000 +17592268745380 50000 +17592268745382 50000 +17592268745396 50000 +17592268745398 50000 +17592268745376 50000 +17592268745378 50000 +17592268745372 50000 +17592268745374 50000 +17592268987647 50000 +17592269335722 50000 +17592269335724 50000 +17592269498892 50000 +17592269542923 50000 +17592269833027 50000 +17592269833025 50000 +17592270150302 50000 +17592270472166 50000 +17592270925471 50000 +17592271011625 50000 +17592271011627 50000 +17592271315571 50000 +17592271315569 50000 +17592271644187 50000 +17592271986343 50000 +17592272216957 50000 +17592272513225 50000 +17592272780195 50000 +17592272922719 50000 +17592273050702 50000 +17592273188501 50000 +17592273344224 50000 +17592273628398 50000 +17592273875457 50000 +17592273945764 50000 +17592274348809 50000 +17592274549360 50000 +17592274901990 50000 +17592274971211 50000 +17592274971209 50000 +17592275169804 50000 +17592275232878 50000 +17592275475022 50000 +17592275699994 50000 +17592275788349 50000 +17592275986730 50000 +17592276362657 50000 +17592276732409 50000 +17592277032151 50000 +17592277370335 50000 +17592277845052 50000 +17592278184681 50000 +17592278439364 50000 +17592278825979 50000 +17592279017867 50000 +17592279017865 50000 +17592279126772 50000 +17592279555538 50000 +17592279950208 50000 +17592280357965 50000 +17592280652319 50000 +17592280850172 50000 +17592281342382 50000 +17592281680409 50000 +17592281878749 50000 +17592281979987 50000 +17592282231508 50000 +17592282798254 50000 +17592283341710 50000 +17592283532188 50000 +17592283623897 50000 +17592283787717 50000 +17592283909007 50000 +17592284454783 50000 +17592284454779 50000 +17592284454781 50000 +17592284656229 50000 +17592285242059 50000 +17592285535306 50000 +17592285782911 50000 +17592286014949 50000 +17592286215677 50000 +17592286656928 50000 +17592286969142 50000 +17592287212492 50000 +17592287314012 50000 +17592254559213 51200 +17592254559338 50000 +17592254559221 51200 +17592254559229 85100 +17592254559340 50000 +17592254559342 50000 +17592254559344 50000 +17592254559237 51200 +17592254559346 50000 +17592254559178 51200 +17592254559186 51200 +17592254559182 51200 +17592254559245 51200 +17592254559348 50000 +17592254559254 51200 +17592254101449 50000 +17592254101453 50000 +17592254559270 51200 +17592254559350 50000 +17592254559352 50000 +17592254559354 50000 +17592254559356 50000 +17592257593426 51200 +17592254880597 74610 +17592255094050 51200 +17592254559262 51200 +17592255094032 51200 +17592254612829 50000 +17592254737382 50000 +17592255094028 51200 +17592254832048 50000 +17592254929244 50000 +17592255032453 50000 +17592255094024 51200 +17592258849426 86100 +17592255663238 51200 +17592255313061 50000 +17592255505544 50000 +17592255663234 51200 +17592255596891 50000 +17592255985925 50000 +17592255924176 50000 +17592256193226 51200 +17592256050360 50000 +17592256157033 50000 +17592256193223 51200 +17592256225866 82100 +17592256354420 50000 +17592256709493 51200 +17592256685410 50000 +17592256680175 50000 +17592256709489 51200 +17592257221900 51200 +17592256888790 50000 +17592256888792 50000 +17592257244018 50000 +17592257243865 51200 +17592257211276 50000 +17592257787214 51200 +17592257483532 50000 +17592257787210 51200 +17592257751364 50000 +17592257812346 50000 +17592257812348 50000 +17592257878526 50000 +17592258225372 51200 +17592257951966 50000 +17592258225368 51200 +17592258184666 50000 +17592258793406 51200 +17592258447135 50000 +17592258793402 51200 +17592258793398 51200 +17592258765814 50000 +17592258793394 51200 +17592258840553 83400 +17592259265702 51200 +17592258967619 50000 +17592258988245 56000 +17592259795155 51200 +17592259234060 50000 +17592259302602 50000 +17592259464763 50000 +17592259795151 51200 +17592259532746 50000 +17592259739189 50000 +17592259795147 51200 +17592260239296 51200 +17592260069000 50000 +17592260239292 51200 +17592260239288 51200 +17592260190633 50000 +17592260400487 50000 +17592260941282 51200 +17592260500877 50000 +17592261123955 74610 +17592261136951 50000 +17592260941278 51200 +17592260898195 50000 +17592261123439 50000 +17592261502503 51200 +17592261208230 50000 +17592261502499 51200 +17592261408968 50000 +17592261646114 50000 +17592261745335 50000 +17592262376350 51200 +17592261976661 50000 +17592261976659 50000 +17592262376347 51200 +17592264641654 74610 +17592263257053 51200 +17592263257043 51200 +17592263257164 51200 +17592262874885 50000 +17592263237782 50000 +17592263267058 51200 +17592263862539 51200 +17592263504214 50000 +17592263862535 51200 +17592263838241 50000 +17592266796207 51200 +17592266796209 51200 +17592264402037 51200 +17592264050066 50000 +17592264402205 51200 +17592264379948 50000 +17592264613897 50000 +17592264934054 51200 +17592264910398 50000 +17592264933902 51200 +17592264978298 50000 +17592265108331 50000 +17592265505918 51200 +17592265178563 50000 +17592265505966 51200 +17592265505974 51200 +17592265444871 50000 +17592265470750 50000 +17592266199360 51200 +17592265728607 50000 +17592266186976 50000 +17592266209599 51200 +17592266259185 50000 +17592266796211 51200 +17592267670752 74610 +17592266475629 50000 +17592266475627 50000 +17592266475633 50000 +17592266475631 50000 +17592266475621 50000 +17592266475619 50000 +17592266475625 50000 +17592266475623 50000 +17592266475645 50000 +17592266475643 50000 +17592266475649 50000 +17592266475647 50000 +17592266475637 50000 +17592266475635 50000 +17592266475641 50000 +17592266475639 50000 +17592266475651 50000 +17592266475613 50000 +17592266475611 50000 +17592266475617 50000 +17592266475615 50000 +17592266475609 50000 +17592266475607 50000 +17592266614761 50000 +17592266796203 51200 +17592266774711 50000 +17592266918741 50000 +17592267240486 51200 +17592266982734 50000 +17592267240479 51200 +17592267235126 50000 +17592267405424 50000 +17592267405312 50000 +17592267889906 51200 +17592267518409 50000 +17592267830358 50000 +17592267889902 51200 +17592267936431 50000 +17592269498463 74610 +17592268105322 50000 +17592268530261 51200 +17592268486534 50000 +17592268508902 50000 +17592268530257 51200 +17592268576805 50000 +17592268654646 50000 +17592269123384 51200 +17592268745328 50000 +17592268745330 50000 +17592268745324 50000 +17592268745326 50000 +17592268745320 50000 +17592268745322 50000 +17592268745316 50000 +17592268745318 50000 +17592268745336 50000 +17592268745332 50000 +17592268745334 50000 +17592268745312 50000 +17592268745314 50000 +17592268745308 50000 +17592268745310 50000 +17592268745304 50000 +17592268745306 50000 +17592269106846 50000 +17592269106844 50000 +17592269637206 51200 +17592269256573 50000 +17592269107728 50000 +17592269335384 74500 +17592269335718 50000 +17592269436563 50000 +17592269637347 51200 +17592269644980 51200 +17592269634663 50000 +17592269713797 50000 +17592270353843 51200 +17592269833021 50000 +17592270353838 51200 +17592269932480 50000 +17592270031621 50000 +17592270312692 50000 +17592270292394 50000 +17592270353835 51200 +17592270472164 50000 +17592271902004 74610 +17592270560818 50000 +17592270896096 51200 +17592270652828 50000 +17592270851741 50000 +17592270866570 50000 +17592270896092 51200 +17592271503169 51200 +17592271078443 50000 +17592271503280 51200 +17592271456106 50000 +17592271518596 51200 +17592271518600 51200 +17592272049253 51200 +17592271887733 50000 +17592271644183 50000 +17592275477016 51200 +17592271759242 50000 +17592272074988 51200 +17592274910585 74150 +17592273225424 73300 +17592271986339 50000 +17592272074984 51200 +17592272691994 51200 +17592272307132 50000 +17592272413725 50000 +17592272407654 25200 +17592272692207 51200 +17592272651928 50000 +17592273254377 50000 +17592273486937 51200 +17592273050700 50000 +17592273486933 51200 +17592273463299 50000 +17592273628396 50000 +17592273683013 50000 +17592273748290 50000 +17592274211515 51200 +17592274910494 74610 +17592274012062 50000 +17592274221881 51200 +17592274408653 50000 +17592274405942 50000 +17592274879027 51200 +17592275403635 86100 +17592274848220 50000 +17592274879023 51200 +17592275193269 50000 +17592274971199 50000 +17592274971197 50000 +17592275080307 50000 +17592277749522 51200 +17592277749530 51200 +17592277749514 51200 +17592275326395 50000 +17592275904238 51200 +17592275476950 50000 +17592275576138 50000 +17592275904234 51200 +17592275904223 51200 +17592275899603 50000 +17592275904219 51200 +17592276038163 50000 +17592276577573 51200 +17592276111786 50000 +17592276362655 50000 +17592276577569 51200 +17592276545207 50000 +17592276838088 50000 +17592276837467 50000 +17592277210326 51200 +17592277210322 51200 +17592277210318 51200 +17592277169310 50000 +17592277464474 50000 +17592277991434 51200 +17592277747798 50000 +17592277991430 51200 +17592277971652 50000 +17592278070762 50000 +17592278259357 50000 +17592278587656 51200 +17592278587652 51200 +17592278573908 50000 +17592278920419 50000 +17592279257636 51200 +17592279017861 50000 +17592279017859 50000 +17592279256214 50000 +17592279257632 51200 +17592279324384 50000 +17592279555534 50000 +17592279795234 51200 +17592279795230 51200 +17592279755247 50000 +17592279875550 74610 +17592279862765 86200 +17592279975590 50000 +17592280673675 51200 +17592280131806 50000 +17592280673671 51200 +17592280652315 50000 +17592280850170 50000 +17592281210310 50000 +17592281680747 51200 +17592281441609 50000 +17592281680743 51200 +17592281680405 50000 +17592281771448 50000 +17592281771450 50000 +17592281979985 50000 +17592283748048 51200 +17592282231506 50000 +17592282560821 51200 +17592282558575 50000 +17592282669305 81110 +17592283202562 51200 +17592282907606 50000 +17592283202558 51200 +17592283195481 50000 +17592283748050 51200 +17592283439401 50000 +17592283733049 50000 +17592283748054 51200 +17592283907663 50000 +17592284118994 74610 +17592284012338 50000 +17592284376725 51200 +17592284131178 86200 +17592284454369 50000 +17592284322871 50000 +17592284376721 51200 +17592284454763 50000 +17592284454765 50000 +17592284454759 50000 +17592284454761 50000 +17592284454757 50000 +17592284656221 50000 +17592284656223 50000 +17592284725302 50000 +17592284945219 51200 +17592285166930 50000 +17592285087363 51200 +17592285085175 50000 +17592285166798 50000 +17592285467415 51200 +17592285301373 50000 +17592285798302 51200 +17592285797801 50000 +17592285798298 51200 +17592285782907 50000 +17592286361125 51200 +17592286014947 50000 +17592286361121 51200 +17592286355571 50000 +17592286726416 50000 +17592287075837 51200 +17592286726609 50000 +17592286969140 50000 +17592287075833 51200 +17592287047261 50000 +17592287047671 50000 +17592287047707 50000 +17592287314008 50000 +17592287314010 50000 +17592282575663 51200 +17592282575615 50000 +17592282575613 50000 +17592282575611 50000 +17592282575665 51200 +17592282575609 50000 +17592282575667 51200 +17592282575607 50000 +17592282575669 51200 +17592282575605 50000 +17592282575603 50000 +17592282575599 50000 +17592282575601 50000 +17592282575648 50000 +17592282575671 51200 +17592282575650 50000 +17592282668272 50000 +17592282575661 51200 +17592283748246 51200 +17592283248957 50000 +17592283748254 51200 +17592283748262 51200 +17592283619197 50000 +17592287427674 81160 +17592284378153 51200 +17592283778475 50000 +17592284378177 51200 +17592284378245 51200 +17592284378131 51200 +17592284205462 50000 +17592285095448 51200 +17592284453720 50000 +17592284654707 50000 +17592285095456 51200 +17592284917450 50000 +17592285095464 51200 +17592285152418 50000 +17592285095440 51200 +17592285798378 51200 +17592285631645 50000 +17592285798386 51200 +17592285778659 50000 +17592285778661 50000 +17592285778663 50000 +17592285778643 50000 +17592285778645 50000 +17592285778647 50000 +17592285778649 50000 +17592285778651 50000 +17592285778653 50000 +17592285778655 50000 +17592285778657 50000 +17592286361226 51200 +17592285841510 50000 +17592285841508 50000 +17592285930296 50000 +17592286361234 51200 +17592286215671 50000 +17592287075921 51200 +17592286573715 50000 +17592286573713 50000 +17592287075929 51200 +17592286836871 50000 +17592287075937 51200 +17592286967902 50000 +17592286967900 50000 +17592287047211 50000 +17592287130585 50000 +17592287309434 50000 +17592252436742 50000 +17592252461716 51200 +17592252831635 50000 +17592252831629 50000 +17592252831631 50000 +17592252845666 51200 +17592252831633 50000 +17592252838357 50000 +17592252845662 51200 +17592253307324 50000 +17592253308393 51200 +17592253307326 50000 +17592254880581 74700 +17592253307328 50000 +17592253732209 50000 +17592253732211 50000 +17592253308389 51200 +17592254614312 51200 +17592253732017 51200 +17592253732213 50000 +17592253559314 51200 +17592253732027 51200 +17592253732215 50000 +17592253732037 51200 +17592254101447 50000 +17592253861526 50000 +17592253859710 50000 +17592254098790 51200 +17592254101451 50000 +17592254239540 74100 +17592254098800 51200 +17592254880519 74610 +17592254620602 50000 +17592254616895 51200 +17592254620604 50000 +17592254622347 51200 +17592254559191 51200 +17592254612813 50000 +17592254616992 51200 +17592254622343 51200 +17592254737378 50000 +17592254832028 50000 +17592255054357 51200 +17592255089426 51200 +17592254869085 50000 +17592254929238 50000 +17592255032435 50000 +17592255054367 51200 +17592255089422 51200 +17592255322830 74100 +17592255313045 50000 +17592255638178 51200 +17592255407590 50000 +17592255596875 50000 +17592255638188 51200 +17592255712784 50000 +17592255834951 50000 +17592255924162 50000 +17592257585639 74610 +17592256181096 51200 +17592255986021 50000 +17592256157015 50000 +17592256181106 51200 +17592256683756 51200 +17592256354400 50000 +17592256683766 51200 +17592256683776 51200 +17592256680155 50000 +17592256684983 50000 +17592257221890 51200 +17592256892318 74600 +17592256888768 50000 +17592257773637 51200 +17592257211260 50000 +17592257294089 74600 +17592257773748 51200 +17592257483520 50000 +17592258840630 74610 +17592257773871 51200 +17592257751342 50000 +17592257816771 50000 +17592257878516 50000 +17592257951954 50000 +17592258224969 51200 +17592258184644 50000 +17592258224965 51200 +17592258791404 51200 +17592259247971 74610 +17592258988392 74100 +17592258447121 50000 +17592258791414 51200 +17592258988146 74600 +17592259248036 50000 +17592258765798 50000 +17592258791428 51200 +17592258967607 50000 +17592258988229 56000 +17592259264995 51200 +17592259467070 74610 +17592259063659 50000 +17592259753874 51200 +17592259234044 50000 +17592259464745 50000 +17592259753884 51200 +17592259545854 74700 +17592259739173 50000 +17592259753894 51200 +17592259973212 50000 +17592260239568 51200 +17592260520151 74100 +17592260239578 51200 +17592260190615 50000 +17592260400455 50000 +17592260500863 50000 +17592260500865 50000 +17592260920026 51200 +17592260898175 50000 +17592260920030 51200 +17592261538213 74500 +17592261123427 50000 +17592261466032 51200 +17592261208212 50000 +17592261208210 50000 +17592261208208 50000 +17592261563425 50000 +17592261466113 51200 +17592261408950 50000 +17592261531919 50000 +17592261745319 50000 +17592262398530 51200 +17592266270507 50000 +17592262398973 51200 +17592261976637 50000 +17592261976635 50000 +17592264641586 74610 +17592263257184 51200 +17592262874873 50000 +17592263348396 74150 +17592266270539 50000 +17592263237760 50000 +17592263862556 51200 +17592263348856 58000 +17592263866575 51200 +17592263866595 51200 +17592263504200 50000 +17592266270434 50000 +17592266270426 50000 +17592263866667 51200 +17592264641495 74100 +17592263719304 50000 +17592263719306 50000 +17592263838225 50000 +17592264401824 51200 +17592266270466 50000 +17592266279229 50000 +17592264402057 51200 +17592264641527 74700 +17592264050052 50000 +17592266830579 51200 +17592266830577 51200 +17592264402157 51200 +17592264379932 50000 +17592264535138 50000 +17592264613883 50000 +17592264934068 51200 +17592264795330 50000 +17592264910382 50000 +17592264933892 51200 +17592264978292 50000 +17592265108315 50000 +17592265108363 50000 +17592265186223 50000 +17592265505940 51200 +17592265178549 50000 +17592265440516 50000 +17592266199184 51200 +17592265470734 50000 +17592266199355 51200 +17592265728593 50000 +17592266385939 50000 +17592266186960 50000 +17592266209569 51200 +17592266259163 50000 +17592267670736 74610 +17592266475053 50000 +17592266475051 50000 +17592266475055 50000 +17592266475045 50000 +17592266475043 50000 +17592266475049 50000 +17592266475047 50000 +17592266475005 50000 +17592266475009 50000 +17592266475007 50000 +17592266475021 50000 +17592266475019 50000 +17592266475025 50000 +17592266475023 50000 +17592266475013 50000 +17592266475011 50000 +17592266475017 50000 +17592266475015 50000 +17592266475037 50000 +17592266475035 50000 +17592266475041 50000 +17592266475039 50000 +17592266475029 50000 +17592266475027 50000 +17592266475033 50000 +17592266475031 50000 +17592266830557 51200 +17592266614736 50000 +17592266774695 50000 +17592269499105 51200 +17592266918757 50000 +17592266982718 50000 +17592266983187 50000 +17592267243800 51200 +17592267235110 50000 +17592267243957 51200 +17592267405344 50000 +17592267851470 51200 +17592267518393 50000 +17592267851502 51200 +17592267830338 50000 +17592267936047 50000 +17592268499737 51200 +17592267928003 50000 +17592267928005 50000 +17592267928007 50000 +17592267928009 50000 +17592267928011 50000 +17592267928013 50000 +17592267928015 50000 +17592267928017 50000 +17592267928019 50000 +17592267928021 50000 +17592267928023 50000 +17592267928025 50000 +17592267928027 50000 +17592267928029 50000 +17592267928001 50000 +17592269498557 74610 +17592268105300 50000 +17592268499891 51200 +17592268499659 83250 +17592268499942 51200 +17592268508810 50000 +17592268486518 50000 +17592268576765 50000 +17592268694889 74100 +17592269123369 51200 +17592268745176 50000 +17592268745178 50000 +17592269106826 50000 +17592269106824 50000 +17592269637186 51200 +17592269256602 50000 +17592269107712 50000 +17592269209771 50000 +17592269335696 50000 +17592269637337 51200 +17592269436547 50000 +17592270865615 74610 +17592269714564 50000 +17592269714546 50000 +17592269634647 50000 +17592269637387 51200 +17592270312014 51200 +17592269827779 50000 +17592269832997 50000 +17592269932454 50000 +17592269932456 50000 +17592270312065 51200 +17592270292374 50000 +17592270312638 50000 +17592270312257 51200 +17592270312267 51200 +17592272048954 51200 +17592272048956 51200 +17592270479423 50000 +17592272048958 51200 +17592270472156 50000 +17592270855976 51200 +17592270560800 50000 +17592270560802 50000 +17592270652786 50000 +17592270652784 50000 +17592270865772 74100 +17592270865936 50000 +17592270856080 51200 +17592270851725 50000 +17592270866445 50000 +17592272048960 51200 +17592271078429 50000 +17592271503270 51200 +17592271456088 50000 +17592271456086 50000 +17592271503373 51200 +17592272048260 51200 +17592271887716 50000 +17592271644175 50000 +17592271759228 50000 +17592272048835 51200 +17592271986321 50000 +17592272060818 51200 +17592272407609 50000 +17592272691984 51200 +17592272307112 50000 +17592272307110 50000 +17592275342397 51200 +17592272413707 50000 +17592272692157 51200 +17592272651912 50000 +17592272692187 51200 +17592273254571 50000 +17592273050676 50000 +17592273464520 51200 +17592273464906 51200 +17592273463279 50000 +17592275342399 51200 +17592273682345 50000 +17592274211435 51200 +17592274927856 74100 +17592273748276 50000 +17592274211505 51200 +17592274910421 74610 +17592274012042 50000 +17592274852194 51200 +17592274348799 50000 +17592274408747 50000 +17592274405924 50000 +17592274852334 51200 +17592274494985 50000 +17592275403279 86100 +17592275342357 51200 +17592275476918 50000 +17592274848204 50000 +17592275193237 50000 +17592274971151 50000 +17592274971153 50000 +17592275342462 51200 +17592275080291 50000 +17592275326375 50000 +17592275941507 51200 +17592275476982 74600 +17592275476934 50000 +17592275475012 50000 +17592275576122 50000 +17592275942940 51200 +17592275899587 50000 +17592276552542 51200 +17592278197153 74700 +17592276038131 74700 +17592276038115 74700 +17592276038147 50000 +17592276552838 51200 +17592276552848 51200 +17592276111768 50000 +17592276553068 51200 +17592276545191 50000 +17592276639384 50000 +17592276838072 50000 +17592277210569 51200 +17592276837453 50000 +17592278195230 74100 +17592277978681 51200 +17592277750308 51200 +17592277750294 51200 +17592277210629 51200 +17592277169292 50000 +17592277750328 51200 +17592277464460 50000 +17592277978880 51200 +17592277845050 50000 +17592277978940 51200 +17592277971634 50000 +17592278568603 51200 +17592278259343 50000 +17592278568633 51200 +17592279267736 51200 +17592278573892 50000 +17592278920403 50000 +17592279267942 51200 +17592279017853 50000 +17592279256198 50000 +17592279268012 51200 +17592279324364 50000 +17592279555514 50000 +17592279788510 51200 +17592279755229 50000 +17592282939954 51200 +17592279875362 86200 +17592279875566 74610 +17592279859940 50000 +17592279950200 50000 +17592280675403 51200 +17592280131792 50000 +17592284038104 74610 +17592280652295 50000 +17592281698818 51200 +17592280751376 50000 +17592281699740 51200 +17592281210296 50000 +17592282575423 51200 +17592281680385 50000 +17592281771418 50000 +17592281979961 50000 +17592281979959 50000 +17592282691071 51200 +17592282125848 50000 +17592282691091 51200 +17592282558557 50000 +17592282669382 74100 +17592282669289 81110 +17592283703045 51200 +17592282907592 50000 +17592283014234 50000 +17592283703049 51200 +17592283195467 50000 +17592284038796 74100 +17592283703053 51200 +17592283439387 50000 +17592283703057 51200 +17592283733033 50000 +17592284321707 51200 +17592283907647 50000 +17592284321723 51200 +17592284321719 51200 +17592287015887 51200 +17592287015889 51200 +17592283909001 50000 +17592284321727 51200 +17592284012324 50000 +17592284322855 50000 +17592284321731 51200 +17592284454401 50000 +17592284454655 50000 +17592284454657 50000 +17592284454651 50000 +17592284454653 50000 +17592284454659 50000 +17592284656183 50000 +17592284656185 50000 +17592284725284 50000 +17592284945161 51200 +17592285166874 50000 +17592285087303 51200 +17592285085157 50000 +17592285778237 51200 +17592285301357 50000 +17592285778245 51200 +17592285778241 51200 +17592285797690 50000 +17592285782891 50000 +17592285782859 51200 +17592285842544 50000 +17592286014931 50000 +17592286053498 50000 +17592286351117 51200 +17592286352677 51200 +17592286355549 50000 +17592286726346 50000 +17592287015407 51200 +17592287015878 51200 +17592286726587 50000 +17592286969124 50000 +17592287047243 50000 +17592287047655 50000 +17592287313992 50000 +17592264560553 50000 +17592264601120 15300 +17592264560531 50000 +17592252831703 51200 +17592252831656 50000 +17592252831880 51200 +17592252831652 50000 +17592252831711 51200 +17592252831654 50000 +17592252831888 51200 +17592253307340 50000 +17592253307609 51200 +17592253307342 50000 +17592253042484 50000 +17592253307623 51200 +17592255240426 50000 +17592253732285 51200 +17592253732293 51200 +17592253274778 50000 +17592253732301 51200 +17592253471319 50000 +17592253471321 50000 +17592253471323 50000 +17592254099253 51200 +17592255240460 50000 +17592253704998 50000 +17592253904015 50000 +17592254074413 50000 +17592254618071 51200 +17592254313985 50000 +17592254618079 51200 +17592254607837 50000 +17592255054674 51200 +17592254737386 50000 +17592254802406 50000 +17592255054682 51200 +17592255641018 51200 +17592254996507 50000 +17592254996503 50000 +17592254996505 50000 +17592255213089 50000 +17592255311403 50000 +17592255642540 51200 +17592255642008 51200 +17592256181258 51200 +17592255596899 50000 +17592255858148 72710 +17592256181314 51200 +17592255922274 50000 +17592254099261 51200 +17592256157037 50000 +17592256684617 51200 +17592256215848 50000 +17592256353992 50000 +17592256684710 51200 +17592257222082 51200 +17592256680183 50000 +17592256888282 50000 +17592257222192 51200 +17592257210591 50000 +17592257773925 51200 +17592257267233 50000 +17592257482967 50000 +17592257773987 51200 +17592258203788 51200 +17592257751374 50000 +17592257951505 50000 +17592258203800 51200 +17592258225124 51200 +17592258792467 51200 +17592258183955 50000 +17592258286673 50000 +17592258286671 50000 +17592258286669 50000 +17592258286667 50000 +17592258286665 50000 +17592258286689 50000 +17592258286687 50000 +17592258286685 50000 +17592258286683 50000 +17592258286681 50000 +17592258286679 50000 +17592258286677 50000 +17592258286675 50000 +17592258286699 50000 +17592258286697 50000 +17592258286695 50000 +17592258286693 50000 +17592258286691 50000 +17592258792529 51200 +17592258447139 50000 +17592259266442 51200 +17592258765294 50000 +17592258837591 50000 +17592258979189 50000 +17592259266518 51200 +17592259754264 51200 +17592259234068 50000 +17592259302606 50000 +17592259464273 50000 +17592259754370 51200 +17592260239148 51200 +17592259738076 50000 +17592260239158 51200 +17592259973236 50000 +17592260177702 25200 +17592260177718 25200 +17592260190645 50000 +17592260920256 51200 +17592260920330 51200 +17592260499479 50000 +17592260806166 50000 +17592260894792 50000 +17592261466185 51200 +17592261121670 50000 +17592261466314 51200 +17592261408036 50000 +17592262376215 51200 +17592261530651 50000 +17592261626058 50000 +17592261743086 50000 +17592262376229 51200 +17592261959593 25200 +17592261959673 25200 +17592261975242 50000 +17592263257345 51200 +17592262646165 50000 +17592262753553 50000 +17592263257435 51200 +17592262874449 50000 +17592263234951 50000 +17592263862308 51200 +17592263862316 51200 +17592263862336 51200 +17592263862350 51200 +17592263504224 50000 +17592263681557 25200 +17592264401631 51200 +17592263838251 50000 +17592264048666 50000 +17592264401713 51200 +17592264183921 25200 +17592264933637 51200 +17592264379301 50000 +17592264441497 50000 +17592264534512 50000 +17592264599495 50000 +17592264933669 51200 +17592264737993 25200 +17592265506004 51200 +17592264909828 50000 +17592265506028 51200 +17592265172869 50000 +17592266199056 51200 +17592265421447 50000 +17592265529760 50000 +17592265529762 50000 +17592265529756 50000 +17592265529758 50000 +17592265529752 50000 +17592265529754 50000 +17592265529748 50000 +17592265529750 50000 +17592265529744 50000 +17592265529746 50000 +17592265529742 50000 +17592265529824 50000 +17592265529826 50000 +17592265529820 50000 +17592265529822 50000 +17592265529816 50000 +17592265529818 50000 +17592265529812 50000 +17592265529814 50000 +17592265529808 50000 +17592265529810 50000 +17592265529804 50000 +17592265529806 50000 +17592265529800 50000 +17592265529802 50000 +17592265529796 50000 +17592265529798 50000 +17592265529792 50000 +17592265529794 50000 +17592265529788 50000 +17592265529790 50000 +17592265529784 50000 +17592265529786 50000 +17592265529780 50000 +17592265529782 50000 +17592265529776 50000 +17592265529778 50000 +17592265529772 50000 +17592265529774 50000 +17592265529768 50000 +17592265529770 50000 +17592265529764 50000 +17592265529766 50000 +17592265529852 50000 +17592265529848 50000 +17592265529850 50000 +17592265529844 50000 +17592265529846 50000 +17592265529840 50000 +17592265529842 50000 +17592265529836 50000 +17592265529838 50000 +17592265529832 50000 +17592265529834 50000 +17592265529828 50000 +17592265529830 50000 +17592265618796 50000 +17592265703523 50000 +17592266199140 51200 +17592268163954 50000 +17592266796045 51200 +17592266186990 50000 +17592266796059 51200 +17592266468774 50000 +17592268164245 50000 +17592267240576 51200 +17592267240598 51200 +17592267850972 51200 +17592267851057 51200 +17592270694144 50000 +17592268499496 51200 +17592270694314 50000 +17592270693971 50000 +17592268013616 50000 +17592268105286 50000 +17592270694331 50000 +17592270693956 50000 +17592268499512 51200 +17592269106397 51200 +17592268486488 50000 +17592268654620 50000 +17592268654616 50000 +17592268654618 50000 +17592268744120 50000 +17592269106409 51200 +17592270683266 50000 +17592269637075 51200 +17592269105698 50000 +17592269419935 50000 +17592269637133 51200 +17592269492799 50000 +17592269634619 50000 +17592270311534 51200 +17592269932436 50000 +17592269932438 50000 +17592270311645 51200 +17592270173242 50000 +17592270173240 50000 +17592270855605 51200 +17592270290440 50000 +17592270468422 50000 +17592270855688 51200 +17592270549530 50000 +17592270647097 50000 +17592271502754 51200 +17592270850477 50000 +17592271502825 51200 +17592271077830 50000 +17592272048032 51200 +17592272048042 51200 +17592271454854 50000 +17592272048134 51200 +17592271751797 50000 +17592271986289 50000 +17592272691106 51200 +17592272691154 51200 +17592272304565 50000 +17592272651886 50000 +17592273464264 51200 +17592273464323 51200 +17592273044144 50000 +17592273044142 50000 +17592273171916 50000 +17592273460475 50000 +17592274166238 51200 +17592273747206 50000 +17592274175143 51200 +17592274852074 51200 +17592274008606 50000 +17592274405344 50000 +17592274852144 51200 +17592275340528 51200 +17592274848178 50000 +17592274901964 50000 +17592275340542 51200 +17592275066405 50000 +17592275233715 50000 +17592275322272 50000 +17592275904285 51200 +17592275474996 50000 +17592275474998 50000 +17592275904301 51200 +17592275575121 50000 +17592275575119 50000 +17592275786815 50000 +17592275786817 50000 +17592275894807 50000 +17592276552399 51200 +17592276035724 50000 +17592276111279 50000 +17592276552489 51200 +17592277210174 51200 +17592276544530 50000 +17592276633773 50000 +17592277210190 51200 +17592276832709 50000 +17592277748877 50000 +17592277164319 50000 +17592277979117 51200 +17592277283476 50000 +17592277283478 50000 +17592277283480 50000 +17592277283460 50000 +17592277283462 50000 +17592277283464 50000 +17592277283466 50000 +17592277283468 50000 +17592277283470 50000 +17592277283472 50000 +17592277283474 50000 +17592277283444 50000 +17592277283446 50000 +17592277283448 50000 +17592277283450 50000 +17592277283452 50000 +17592277283454 50000 +17592277283456 50000 +17592277283458 50000 +17592277283436 50000 +17592277283438 50000 +17592277283440 50000 +17592277283442 50000 +17592277364680 50000 +17592277464446 50000 +17592277979218 51200 +17592277568109 50000 +17592278568332 51200 +17592278568340 51200 +17592277960094 50000 +17592277960096 50000 +17592278568398 51200 +17592278256496 50000 +17592278565616 50000 +17592279257731 51200 +17592278911737 50000 +17592279257745 51200 +17592279013026 50000 +17592279254569 50000 +17592279788274 51200 +17592279324342 50000 +17592279555488 50000 +17592279788334 51200 +17592279633389 50000 +17592280673738 51200 +17592279748096 50000 +17592279748098 50000 +17592279944170 50000 +17592280673752 51200 +17592280131774 50000 +17592280650502 50000 +17592281680613 51200 +17592281680625 51200 +17592281199087 50000 +17592281675596 50000 +17592282560560 51200 +17592282576084 51200 +17592281979937 50000 +17592282231484 50000 +17592283163065 51200 +17592282558527 50000 +17592282918066 50000 +17592283163075 51200 +17592283187390 50000 +17592283697969 51200 +17592283698347 51200 +17592283439373 50000 +17592283733011 50000 +17592284131779 51200 +17592284321513 51200 +17592284012314 50000 +17592284012312 50000 +17592284318078 50000 +17592284945171 51200 +17592285095349 51200 +17592284724401 50000 +17592285085133 50000 +17592285777752 51200 +17592285777938 51200 +17592285777772 51200 +17592285301345 50000 +17592286350456 51200 +17592285778667 50000 +17592285842542 50000 +17592286014915 50000 +17592286350474 51200 +17592287041470 51200 +17592286349095 50000 +17592287041753 51200 +17592286721082 50000 +17592287042139 51200 +17592287047215 50000 +17592287313970 50000 +17592252873022 50000 +17592252872658 50000 +17592252461676 51200 +17592252395341 50000 +17592252446285 84300 +17592252515907 50000 +17592257330201 51200 +17592252635300 50000 +17592252635302 50000 +17592252845743 51200 +17592252845739 51200 +17592252845735 51200 +17592252830853 50000 +17592252870526 50000 +17592252870530 50000 +17592252870528 50000 +17592253042462 50000 +17592252914769 25200 +17592253316491 51200 +17592253042464 50000 +17592253085965 50000 +17592253152482 74800 +17592255230725 50000 +17592253169949 50000 +17592253169951 50000 +17592253201247 73100 +17592253201275 74800 +17592253316487 51200 +17592253275072 50000 +17592253275074 50000 +17592257330233 51200 +17592253409309 50000 +17592253559333 51200 +17592253559343 51200 +17592253732108 51200 +17592253471299 50000 +17592253629889 72180 +17592253732118 51200 +17592253704984 50000 +17592253845963 85100 +17592253904001 50000 +17592254098988 51200 +17592255230665 50000 +17592254074401 50000 +17592254098998 51200 +17592254239804 25200 +17592254313969 50000 +17592254617706 51200 +17592254551196 54100 +17592254612809 50000 +17592254617716 51200 +17592254680447 25200 +17592254680483 25200 +17592254680674 58000 +17592254832024 50000 +17592255054474 51200 +17592255032431 50000 +17592255040842 73300 +17592255054484 51200 +17592255638481 51200 +17592255372303 25200 +17592255313039 50000 +17592255313041 50000 +17592255356389 54100 +17592255638491 51200 +17592255407588 50000 +17592255638501 51200 +17592255596871 50000 +17592255834947 50000 +17592255924158 50000 +17592256181177 51200 +17592256157011 50000 +17592256181187 51200 +17592256409353 25200 +17592256397282 51500 +17592256397300 54100 +17592256354396 50000 +17592256684158 51200 +17592256434235 50000 +17592256496448 74500 +17592256684169 51200 +17592256680151 50000 +17592257221920 51200 +17592256888764 50000 +17592256888762 50000 +17592257164832 54100 +17592257773667 51200 +17592257211256 50000 +17592257431873 97200 +17592257773768 51200 +17592257483516 50000 +17592257751338 50000 +17592257773891 51200 +17592257951950 50000 +17592258225066 51200 +17592258010696 54100 +17592258009870 50000 +17592258009868 50000 +17592258009872 50000 +17592258104072 74700 +17592258184640 50000 +17592259064426 51200 +17592258225062 51200 +17592258286653 50000 +17592258447117 50000 +17592258792301 51200 +17592258792312 51200 +17592258765794 50000 +17592258792322 51200 +17592258935385 74800 +17592259265570 51200 +17592259032708 25200 +17592258967603 50000 +17592264165547 50000 +17592259753954 51200 +17592259234040 50000 +17592259464741 50000 +17592259753964 51200 +17592259468158 54100 +17592259739169 50000 +17592259753974 51200 +17592260239638 51200 +17592260920110 51200 +17592259973208 50000 +17592260239648 51200 +17592260239658 51200 +17592260190611 50000 +17592260605089 54100 +17592260500859 50000 +17592260920120 51200 +17592260898171 50000 +17592260920130 51200 +17592261123423 50000 +17592261164376 74600 +17592261465992 51200 +17592261208204 50000 +17592261466133 51200 +17592261408946 50000 +17592263257083 51200 +17592261789567 54100 +17592261745315 50000 +17592262398508 51200 +17592261976631 50000 +17592263256957 51200 +17592263257134 51200 +17592262874869 50000 +17592263149139 54100 +17592263237756 50000 +17592263862596 51200 +17592263310494 50000 +17592263420443 50000 +17592263866535 51200 +17592263504196 50000 +17592263638057 54100 +17592263866677 51200 +17592263719302 50000 +17592263838221 50000 +17592264401864 51200 +17592264401950 51200 +17592264401960 51200 +17592264050048 50000 +17592264075760 50000 +17592264402097 51200 +17592264933984 51200 +17592264329227 25200 +17592264329244 25200 +17592264402225 51200 +17592264379928 50000 +17592264380460 25200 +17592264752653 54100 +17592264613879 50000 +17592264934014 51200 +17592264802123 97200 +17592264910378 50000 +17592264933942 51200 +17592265178545 50000 +17592266199295 51200 +17592265280148 50000 +17592265335471 50000 +17592265408332 54100 +17592265419238 74600 +17592265502675 81120 +17592266199224 51200 +17592265470730 50000 +17592265532381 50000 +17592266199340 51200 +17592265728589 50000 +17592266214809 54100 +17592266186956 50000 +17592266259159 50000 +17592266474925 50000 +17592266474923 50000 +17592266474929 50000 +17592266474927 50000 +17592266474917 50000 +17592266474915 50000 +17592266474921 50000 +17592266474919 50000 +17592266474941 50000 +17592266474939 50000 +17592266474945 50000 +17592266474943 50000 +17592266474933 50000 +17592266474931 50000 +17592266474937 50000 +17592266474935 50000 +17592266474893 50000 +17592266474891 50000 +17592266474897 50000 +17592266474895 50000 +17592266474885 50000 +17592266474883 50000 +17592266474889 50000 +17592266474887 50000 +17592266474909 50000 +17592266474907 50000 +17592266474913 50000 +17592266474911 50000 +17592266474901 50000 +17592266474899 50000 +17592266474905 50000 +17592266474903 50000 +17592266830537 51200 +17592266653920 54100 +17592266687216 50000 +17592266774691 50000 +17592267243719 51200 +17592266982714 50000 +17592267243780 51200 +17592268163588 50000 +17592267851400 51200 +17592267235106 50000 +17592267851450 51200 +17592267518389 50000 +17592267765206 54100 +17592267765299 54100 +17592267765346 54100 +17592267765322 54100 +17592267830334 50000 +17592268499795 51200 +17592267927939 50000 +17592267927941 50000 +17592267927943 50000 +17592267927945 50000 +17592267927947 50000 +17592267927949 50000 +17592267927951 50000 +17592267927953 50000 +17592267927955 50000 +17592267927957 50000 +17592267927959 50000 +17592267927961 50000 +17592267927963 50000 +17592267927965 50000 +17592267927935 50000 +17592267927937 50000 +17592268033064 74800 +17592268105296 50000 +17592268499871 51200 +17592268400614 74800 +17592268499978 51200 +17592268486514 50000 +17592268576753 50000 +17592268576757 50000 +17592268576755 50000 +17592268577391 74600 +17592268654638 50000 +17592269123188 51200 +17592268745168 50000 +17592268745170 50000 +17592268892316 50000 +17592268892318 50000 +17592269106820 50000 +17592269637236 51200 +17592269107885 91100 +17592269335690 50000 +17592269637267 51200 +17592269289221 54100 +17592269637317 51200 +17592269436543 50000 +17592269634643 50000 +17592270311807 51200 +17592269679226 74600 +17592269832993 50000 +17592270855907 51200 +17592269932448 50000 +17592269932450 50000 +17592270682269 50000 +17592270682285 50000 +17592270682277 50000 +17592270312045 51200 +17592270031611 50000 +17592270312115 51200 +17592270222266 54200 +17592270292370 50000 +17592270855793 51200 +17592270472154 50000 +17592270855941 51200 +17592270560796 50000 +17592270652766 50000 +17592270652770 50000 +17592270652768 50000 +17592270652774 50000 +17592270652772 50000 +17592270652776 50000 +17592271503095 51200 +17592270851721 50000 +17592272977038 50000 +17592272977052 50000 +17592271011613 50000 +17592271078425 50000 +17592271503250 51200 +17592271186626 50000 +17592271317590 54200 +17592271456080 50000 +17592271456078 50000 +17592272048220 51200 +17592271759224 50000 +17592272048614 51200 +17592271974070 74800 +17592271913144 74800 +17592271913477 74800 +17592271983043 25500 +17592271986315 50000 +17592271986313 50000 +17592272048124 97200 +17592272691278 51200 +17592272276099 74800 +17592272691399 51200 +17592272307100 50000 +17592272307102 50000 +17592272413703 50000 +17592272475227 25200 +17592272475630 74800 +17592272454287 54100 +17592272615832 25200 +17592272692227 51200 +17592272651908 50000 +17592272961614 25200 +17592273050670 50000 +17592273050668 50000 +17592273464500 51200 +17592273270683 97200 +17592273225432 97200 +17592273287768 74800 +17592273287895 25200 +17592273446836 74800 +17592273463275 50000 +17592274186991 51200 +17592273773986 25200 +17592273748272 50000 +17592273773526 54100 +17592274211485 51200 +17592273927065 25200 +17592274012038 50000 +17592274852234 51200 +17592274348795 50000 +17592274852314 51200 +17592274405918 50000 +17592274789691 58000 +17592275342377 51200 +17592274848200 50000 +17592274976754 25200 +17592274975680 74800 +17592274975696 25200 +17592274971143 50000 +17592274971141 50000 +17592275080287 50000 +17592275342442 51200 +17592275106012 25200 +17592275080149 25200 +17592275193253 74600 +17592275193289 74600 +17592275193321 74600 +17592275169786 50000 +17592275326367 50000 +17592275941547 51200 +17592275506293 74800 +17592275508883 25200 +17592275576118 50000 +17592275942786 51200 +17592275899579 50000 +17592276552582 51200 +17592276001092 54100 +17592276112639 25200 +17592276552818 51200 +17592276111760 50000 +17592277210438 51200 +17592276545183 50000 +17592276732397 50000 +17592277210531 51200 +17592276837449 50000 +17592277068408 54100 +17592277169286 50000 +17592277978603 51200 +17592277283598 50000 +17592277464456 50000 +17592277978850 51200 +17592277475901 25200 +17592277747780 50000 +17592278568483 51200 +17592277975895 50000 +17592277971630 50000 +17592278184673 50000 +17592278568573 51200 +17592278259339 50000 +17592278439358 50000 +17592278568683 51200 +17592279267808 51200 +17592278573886 50000 +17592278689441 50000 +17592278825967 50000 +17592278869982 15450 +17592278870090 74700 +17592278920399 50000 +17592279267904 51200 +17592279099253 74800 +17592279256190 50000 +17592279267716 54100 +17592279267772 25700 +17592279788394 51200 +17592279324362 50000 +17592279448868 75050 +17592279449403 50000 +17592279555510 50000 +17592279599065 74800 +17592279788482 51200 +17592279601715 86100 +17592280675313 51200 +17592279755225 50000 +17592279950198 50000 +17592280675373 51200 +17592280131784 50000 +17592280675433 51200 +17592281696293 51200 +17592280296278 54000 +17592280454068 50000 +17592281696289 51200 +17592280652291 50000 +17592281210292 50000 +17592281210986 74800 +17592281696297 51200 +17592281696301 51200 +17592281211593 74800 +17592281369729 58000 +17592281696305 51200 +17592268262091 50000 +17592281680381 50000 +17592281771412 50000 +17592281783994 74800 +17592281979955 50000 +17592282006574 54100 +17592281979953 50000 +17592282560336 51200 +17592282063596 54100 +17592282147896 74800 +17592282560340 51200 +17592282616073 54200 +17592282554406 74500 +17592282558553 50000 +17592282907588 50000 +17592283163425 51200 +17592283700936 51200 +17592283195463 50000 +17592283343361 54100 +17592283700944 51200 +17592283439383 50000 +17592283733029 50000 +17592284321356 51200 +17592283908997 50000 +17592284012320 50000 +17592284321360 51200 +17592284322851 50000 +17592284945298 51200 +17592284454639 50000 +17592284454635 50000 +17592284454637 50000 +17592284454631 50000 +17592284454633 50000 +17592284454629 50000 +17592284656179 50000 +17592284725280 50000 +17592284945294 51200 +17592284843852 25200 +17592284922996 74500 +17592285085153 50000 +17592285798115 51200 +17592285153344 50000 +17592285492196 85200 +17592285777728 51200 +17592285472853 75050 +17592285492160 85200 +17592285301353 50000 +17592285535296 50000 +17592285535294 50000 +17592285632578 50000 +17592286350612 51200 +17592285782887 50000 +17592286014927 50000 +17592286350438 51200 +17592287012050 51200 +17592287012046 51200 +17592286355543 50000 +17592286355471 54100 +17592285492077 75050 +17592287012054 51200 +17592286726581 50000 +17592286969120 50000 +17592287047235 50000 +17592287313988 50000 +17592287413412 50000 +17592275953121 50000 +17592275953119 50000 +17592278067223 81140 +17592275953117 50000 +17592278066654 81140 +17592275953115 50000 +17592275953113 50000 +17592275953111 50000 +17592275953109 50000 +17592275953107 50000 +17592275953105 50000 +17592275953103 50000 +17592275953101 50000 +17592275953099 50000 +17592278067188 81140 +17592275953097 50000 +17592275953095 50000 +17592275953059 51200 +17592275953093 50000 +17592275953091 50000 +17592275953089 50000 +17592275953061 51200 +17592275953039 50000 +17592277998792 51200 +17592275953087 50000 +17592275953063 51200 +17592275953035 50000 +17592275953065 51200 +17592275953031 50000 +17592275953055 51200 +17592277998016 51200 +17592278067199 81140 +17592276579092 51200 +17592276111804 50000 +17592276111802 50000 +17592276111800 50000 +17592276579087 51200 +17592276362659 50000 +17592276545223 50000 +17592276578954 51200 +17592277210905 51200 +17592276732419 50000 +17592276837485 50000 +17592277210901 51200 +17592277210897 51200 +17592277032153 50000 +17592277169330 50000 +17592277210893 51200 +17592279976382 51200 +17592279976402 51200 +17592278067215 81140 +17592279976422 51200 +17592277370339 50000 +17592277992253 51200 +17592277747812 50000 +17592277992243 51200 +17592277845056 50000 +17592278587677 51200 +17592277971668 50000 +17592278587673 51200 +17592278259373 50000 +17592278587669 51200 +17592278439368 50000 +17592278573926 50000 +17592279257657 51200 +17592279257653 51200 +17592278920437 50000 +17592279257649 51200 +17592279126778 50000 +17592279256230 50000 +17592279795271 51200 +17592279324402 50000 +17592279324400 50000 +17592279324398 50000 +17592279449427 50000 +17592279449429 50000 +17592279795263 51200 +17592279795267 51200 +17592281207892 51200 +17592279555558 50000 +17592279555562 50000 +17592279555560 50000 +17592279555564 50000 +17592279795259 51200 +17592284016633 51200 +17592279628733 50000 +17592279628737 50000 +17592279628735 50000 +17592279795247 51200 +17592279755267 50000 +17592279859946 50000 +17592279859948 50000 +17592280246858 51200 +17592280131822 50000 +17592280673658 51200 +17592280357969 50000 +17592280673654 51200 +17592281354355 16300 +17592280652335 50000 +17592280751384 50000 +17592281680764 51200 +17592281210324 50000 +17592281680760 51200 +17592281441617 50000 +17592282560853 51200 +17592282560855 51200 +17592281680425 50000 +17592281771468 50000 +17592282560857 51200 +17592281980007 50000 +17592281980005 50000 +17592282560847 51200 +17592282231514 50000 +17592282231512 50000 +17592283202587 51200 +17592282558591 50000 +17592282669245 50000 +17592283202583 51200 +17592284027085 51200 +17592282907626 50000 +17592282907624 50000 +17592282907622 50000 +17592282907620 50000 +17592283202579 51200 +17592283202575 51200 +17592283195499 50000 +17592283195497 50000 +17592283195495 50000 +17592283755390 51200 +17592283439417 50000 +17592283439415 50000 +17592283755386 51200 +17592284027401 51200 +17592283623903 50000 +17592283733067 50000 +17592283755382 51200 +17592283787721 50000 +17592283787719 50000 +17592284376746 51200 +17592284376742 51200 +17592284012352 50000 +17592286877406 51200 +17592284376738 51200 +17592284105291 50000 +17592284205468 50000 +17592286877419 51200 +17592284322889 50000 +17592285094660 51200 +17592284454875 50000 +17592284454877 50000 +17592284454871 50000 +17592284454873 50000 +17592284454867 50000 +17592284454869 50000 +17592284454865 50000 +17592285094662 51200 +17592284656259 50000 +17592284656257 50000 +17592284725318 50000 +17592285094664 51200 +17592284822285 50000 +17592284822287 50000 +17592284917466 50000 +17592285085193 50000 +17592285094656 51200 +17592285153362 50000 +17592285153364 50000 +17592285153366 50000 +17592285798339 51200 +17592285301387 50000 +17592285535316 50000 +17592285798335 51200 +17592285632582 50000 +17592285798331 51200 +17592285782927 50000 +17592286361105 51200 +17592286014963 50000 +17592286361101 51200 +17592286126490 50000 +17592286215681 50000 +17592286361097 51200 +17592287075807 51200 +17592286355589 50000 +17592287075811 51200 +17592287075803 51200 +17592286726625 50000 +17592287075799 51200 +17592286969148 50000 +17592287047279 50000 +17592287075795 51200 +17592287133469 50000 +17592287314028 50000 +17592287314030 50000 +17592287413454 50000 +17592287413456 50000 +17592252634990 15300 +17592252634985 25200 +17592252640981 74800 +17592255467430 50000 +17592253578498 15300 +17592255467428 50000 +17592255467603 50000 +17592253606267 82100 +17592255467422 50000 +17592255467426 50000 +17592255467424 50000 +17592255467418 50000 +17592255467420 50000 +17592255467414 50000 +17592255467416 50000 +17592255467611 50000 +17592254090350 25200 +17592255467412 50000 +17592254080949 25200 +17592254080976 25200 +17592255467619 50000 +17592254139382 25200 +17592254139398 25200 +17592254159165 72650 +17592254159182 72650 +17592254159198 72650 +17592254159241 25200 +17592254223212 25200 +17592254281461 25200 +17592254303957 16300 +17592255467410 50000 +17592255467627 50000 +17592255467635 50000 +17592255811452 50000 +17592254607835 50000 +17592254641688 25200 +17592254654185 50000 +17592254802400 50000 +17592254802402 50000 +17592254802404 50000 +17592255811460 50000 +17592255811468 50000 +17592255054564 15300 +17592255069291 25200 +17592255122824 50000 +17592255122822 50000 +17592255071708 25200 +17592255122970 25200 +17592255122954 25200 +17592255072030 25200 +17592255072038 25200 +17592255088483 25200 +17592255072322 25200 +17592255072340 25200 +17592255072332 25200 +17592255101784 25200 +17592255101825 25200 +17592255311399 50000 +17592255311401 50000 +17592255282748 25200 +17592255283016 25200 +17592255811476 50000 +17592255283102 25200 +17592255283119 25200 +17592256193667 50000 +17592255406888 50000 +17592255503906 50000 +17592255503904 50000 +17592255503910 50000 +17592255503908 50000 +17592256193659 50000 +17592255622342 82100 +17592255596396 50000 +17592255834427 50000 +17592255834425 50000 +17592255836775 25200 +17592255923224 50000 +17592256193581 50000 +17592256193589 50000 +17592256193651 50000 +17592255961539 25200 +17592256698265 50000 +17592256698273 50000 +17592256172380 50000 +17592257211037 50000 +17592256216463 25200 +17592256216455 25200 +17592256216480 25200 +17592256216447 25200 +17592256216526 25200 +17592256216518 25200 +17592256216542 25200 +17592256216534 25200 +17592256216488 25200 +17592256216509 25200 +17592256216501 25200 +17592256216590 25200 +17592256216582 25200 +17592256216607 25200 +17592256216598 25200 +17592256216558 25200 +17592256216550 25200 +17592256216574 25200 +17592256216566 25200 +17592256216984 25200 +17592256292166 50000 +17592256292164 50000 +17592256341409 16666 +17592258418190 50000 +17592256354424 50000 +17592256354426 50000 +17592256354428 50000 +17592257211021 50000 +17592256680181 50000 +17592257211013 50000 +17592256698184 50000 +17592256698192 50000 +17592258765983 50000 +17592256888280 50000 +17592256986761 50000 +17592256986759 50000 +17592257067211 50000 +17592257067209 50000 +17592257210583 50000 +17592257754462 50000 +17592257267227 50000 +17592257754453 50000 +17592257482965 50000 +17592257580849 50000 +17592257668726 50000 +17592260190394 50000 +17592257751370 50000 +17592257751372 50000 +17592257871402 50000 +17592257871406 50000 +17592257871404 50000 +17592257871950 15300 +17592258184289 50000 +17592258184297 50000 +17592257951501 50000 +17592257951503 50000 +17592258009454 50000 +17592258009452 50000 +17592258095965 50000 +17592258766066 50000 +17592258184672 50000 +17592258184674 50000 +17592258357846 50000 +17592258765975 50000 +17592258765967 50000 +17592258446026 50000 +17592258446028 50000 +17592258576235 50000 +17592258661858 50000 +17592258661860 50000 +17592258661862 50000 +17592259233703 50000 +17592258765292 50000 +17592258967227 50000 +17592259233711 50000 +17592258967572 15300 +17592259062914 50000 +17592259114356 25200 +17592259114348 74800 +17592259112860 50000 +17592259739008 50000 +17592259233479 50000 +17592259464269 50000 +17592259464271 50000 +17592259739000 50000 +17592259532224 50000 +17592259738603 50000 +17592259738605 50000 +17592259827208 50000 +17592259826311 50000 +17592259972774 50000 +17592260211063 50000 +17592260151180 50000 +17592260190643 50000 +17592260919792 50000 +17592260249937 50000 +17592260388369 50000 +17592260919784 50000 +17592260498320 50000 +17592260664525 50000 +17592260806164 50000 +17592260894790 50000 +17592260894788 50000 +17592261423908 50000 +17592261122717 50000 +17592261122719 50000 +17592261423852 50000 +17592261299572 50000 +17592261299570 50000 +17592261977278 50000 +17592261408424 50000 +17592261531032 50000 +17592261531030 50000 +17592261977270 50000 +17592261743082 50000 +17592261743084 50000 +17592261872055 50000 +17592261872057 50000 +17592261975238 50000 +17592261975236 50000 +17592263235070 50000 +17592262644673 50000 +17592262753214 50000 +17592262753212 50000 +17592262753218 50000 +17592262753216 50000 +17592262753220 50000 +17592262874447 50000 +17592263235061 50000 +17592262994508 50000 +17592263137283 50000 +17592263234947 50000 +17592263234949 50000 +17592266186391 50000 +17592263235045 74800 +17592263235078 25200 +17592263325294 82100 +17592263309969 50000 +17592263309967 50000 +17592263503703 50000 +17592264378520 50000 +17592263837654 50000 +17592264378511 50000 +17592264378502 50000 +17592264048664 50000 +17592264048662 50000 +17592264256611 50000 +17592264256613 50000 +17592264256615 50000 +17592264378802 50000 +17592264378806 50000 +17592264378804 50000 +17592264378808 50000 +17592264911157 50000 +17592264441495 50000 +17592264441493 50000 +17592264522944 50000 +17592264522942 50000 +17592266186399 50000 +17592264599493 50000 +17592264599491 50000 +17592264599489 50000 +17592264769197 74500 +17592264706314 50000 +17592264794024 50000 +17592264794026 50000 +17592264794028 50000 +17592265421213 50000 +17592264909317 50000 +17592264909321 50000 +17592264909319 50000 +17592264986742 74800 +17592265094805 50000 +17592265172867 50000 +17592265421221 50000 +17592265273571 50000 +17592267930924 50000 +17592265421445 50000 +17592265421443 50000 +17592265529345 50000 +17592265703521 50000 +17592266180993 50000 +17592265836320 50000 +17592265865589 50000 +17592266186988 50000 +17592266775305 50000 +17592266775318 50000 +17592266775290 50000 +17592266453012 50000 +17592266775274 50000 +17592267234950 50000 +17592266774055 50000 +17592266774053 50000 +17592267818162 50000 +17592267234941 50000 +17592266820470 50000 +17592266982744 50000 +17592267234932 50000 +17592267818178 50000 +17592267035972 50000 +17592267113346 50000 +17592267113348 50000 +17592267113350 50000 +17592267818170 50000 +17592267818154 50000 +17592267233674 50000 +17592267233672 50000 +17592267233670 50000 +17592267329648 50000 +17592267329650 50000 +17592267397388 50000 +17592267397390 50000 +17592267818146 50000 +17592267514173 50000 +17592267514171 50000 +17592267628636 50000 +17592267751138 50000 +17592267751136 50000 +17592267751134 50000 +17592267751132 50000 +17592267751130 50000 +17592267751128 50000 +17592267751126 50000 +17592267751124 50000 +17592267751122 50000 +17592267751120 50000 +17592267751118 50000 +17592267751206 50000 +17592267751204 50000 +17592267751170 50000 +17592267751168 50000 +17592267751166 50000 +17592267751164 50000 +17592267751162 50000 +17592267751160 50000 +17592267751158 50000 +17592267751156 50000 +17592267751154 50000 +17592267751152 50000 +17592267751150 50000 +17592267751148 50000 +17592267751146 50000 +17592267751144 50000 +17592267751142 50000 +17592267751140 50000 +17592267751202 50000 +17592267751200 50000 +17592267751198 50000 +17592267751196 50000 +17592267751194 50000 +17592267751192 50000 +17592267751190 50000 +17592267751188 50000 +17592267751186 50000 +17592267751184 50000 +17592267751182 50000 +17592267751180 50000 +17592267751178 50000 +17592267751176 50000 +17592267751174 50000 +17592267751172 50000 +17592267818187 50000 +17592268463003 50000 +17592267864057 25200 +17592268012892 50000 +17592268462925 50000 +17592268462933 50000 +17592268104815 50000 +17592268104817 50000 +17592268462917 50000 +17592268232234 50000 +17592268232232 50000 +17592269100551 50000 +17592268358196 50000 +17592268358198 50000 +17592268471675 50000 +17592268471673 50000 +17592269100543 50000 +17592269100526 50000 +17592268653617 50000 +17592268694873 74800 +17592269100535 50000 +17592268744124 50000 +17592268744126 50000 +17592269100518 50000 +17592268866367 50000 +17592268986741 50000 +17592271455818 50000 +17592269105706 50000 +17592269105704 50000 +17592269286328 50000 +17592269286326 50000 +17592269632861 50000 +17592269429530 50000 +17592269492805 50000 +17592269492807 50000 +17592271455810 50000 +17592269634677 50000 +17592269634675 50000 +17592269634679 50000 +17592270288278 50000 +17592270288286 50000 +17592269693279 50000 +17592269693281 50000 +17592269826633 50000 +17592270288270 50000 +17592269932494 50000 +17592269932496 50000 +17592269932498 50000 +17592270027394 50000 +17592270151349 50000 +17592270151353 50000 +17592270151351 50000 +17592270851618 50000 +17592270292416 50000 +17592270292418 50000 +17592270292420 50000 +17592270851602 50000 +17592270851610 50000 +17592270405422 50000 +17592270405420 50000 +17592270467002 50000 +17592270550859 50000 +17592270550855 50000 +17592270550857 50000 +17592271455755 50000 +17592270748987 50000 +17592271455764 50000 +17592270850487 50000 +17592270850485 50000 +17592270850483 50000 +17592271010090 50000 +17592271455739 50000 +17592271455747 50000 +17592271077834 50000 +17592271184617 50000 +17592271312063 50000 +17592271312061 50000 +17592271983630 50000 +17592271983627 50000 +17592271454866 50000 +17592271454864 50000 +17592271454862 50000 +17592271454860 50000 +17592271643289 50000 +17592272650661 50000 +17592271751803 50000 +17592271873609 50000 +17592271982954 50000 +17592271986367 50000 +17592271986365 50000 +17592271986363 50000 +17592271986361 50000 +17592271986359 50000 +17592272100735 50000 +17592272650669 50000 +17592272650677 50000 +17592272303399 50000 +17592272303395 50000 +17592272303397 50000 +17592272510352 50000 +17592274847338 50000 +17592272648662 50000 +17592272648664 50000 +17592272765689 50000 +17592272765687 50000 +17592272913075 50000 +17592273050720 50000 +17592273460380 50000 +17592274009242 50000 +17592273459128 50000 +17592273459130 50000 +17592273459124 50000 +17592273459126 50000 +17592273459122 50000 +17592273548951 50000 +17592273548949 50000 +17592273621654 50000 +17592273621656 50000 +17592273747210 50000 +17592273747208 50000 +17592274009234 50000 +17592274847283 50000 +17592274847299 50000 +17592273873205 50000 +17592273940527 50000 +17592273940529 50000 +17592273940523 50000 +17592273940525 50000 +17592274847291 50000 +17592274008620 50000 +17592274008618 50000 +17592274008616 50000 +17592274008614 50000 +17592274008612 50000 +17592274847275 50000 +17592274847267 50000 +17592274847259 50000 +17592274266658 50000 +17592274348821 50000 +17592274348819 50000 +17592274348823 50000 +17592274405346 50000 +17592274847251 50000 +17592274405348 50000 +17592274405350 50000 +17592275322666 50000 +17592274549362 50000 +17592275322626 50000 +17592275322658 50000 +17592274848238 50000 +17592274848242 50000 +17592274848240 50000 +17592274901992 50000 +17592275322618 50000 +17592275066409 50000 +17592275066407 50000 +17592275232070 50000 +17592275322278 50000 +17592275322280 50000 +17592277748763 50000 +17592275897014 50000 +17592275474274 50000 +17592275474276 50000 +17592275474278 50000 +17592275585346 50000 +17592275585348 50000 +17592275897006 50000 +17592275896998 50000 +17592276577698 50000 +17592276577609 50000 +17592276577690 50000 +17592275899621 50000 +17592275899619 50000 +17592275899623 50000 +17592275986736 50000 +17592275986734 50000 +17592276577601 50000 +17592276111810 50000 +17592276111808 50000 +17592276362661 50000 +17592276362663 50000 +17592278574124 50000 +17592276545225 50000 +17592276545227 50000 +17592276545229 50000 +17592276727370 50000 +17592276832715 50000 +17592276832711 50000 +17592276832713 50000 +17592277164585 50000 +17592277026759 50000 +17592277026757 50000 +17592277960084 50000 +17592277960076 50000 +17592277164329 50000 +17592277164327 50000 +17592277164325 50000 +17592277273203 50000 +17592277960068 50000 +17592277463557 50000 +17592277463555 50000 +17592277463559 50000 +17592277845060 50000 +17592278574108 50000 +17592278574116 50000 +17592277959385 50000 +17592277959383 50000 +17592278064872 50000 +17592278173568 50000 +17592278173570 50000 +17592278173566 50000 +17592278574339 50000 +17592278256498 50000 +17592278433335 50000 +17592278433337 50000 +17592278433339 50000 +17592279256701 50000 +17592279256717 50000 +17592278565622 50000 +17592278565626 50000 +17592278565624 50000 +17592278714499 50000 +17592279256693 50000 +17592279256589 50000 +17592279256597 50000 +17592278911749 50000 +17592278911751 50000 +17592279012168 50000 +17592279755194 50000 +17592279249198 50000 +17592279249196 50000 +17592279249194 50000 +17592279319204 50000 +17592279444378 50000 +17592281696224 50000 +17592279555572 50000 +17592279555570 50000 +17592279614489 50000 +17592280673913 50000 +17592279755271 50000 +17592279755273 50000 +17592279755275 50000 +17592279755277 50000 +17592280673905 50000 +17592280131830 50000 +17592280131828 50000 +17592280131832 50000 +17592280223581 50000 +17592281696265 50000 +17592281696273 50000 +17592280650510 50000 +17592280650508 50000 +17592280650514 50000 +17592280650512 50000 +17592280749738 50000 +17592281696281 50000 +17592281199089 50000 +17592281199091 50000 +17592281333965 50000 +17592283195293 50000 +17592281435051 50000 +17592282373426 50000 +17592281675606 50000 +17592281675604 50000 +17592281675602 50000 +17592281765663 50000 +17592281765661 50000 +17592281860304 50000 +17592282373444 50000 +17592281958773 50000 +17592281958771 50000 +17592281958769 50000 +17592282615532 50000 +17592282215922 50000 +17592282215920 50000 +17592282373280 50000 +17592282373282 50000 +17592283195285 50000 +17592282668274 50000 +17592282668276 50000 +17592283195301 50000 +17592282774471 50000 +17592282907634 50000 +17592282907632 50000 +17592282907638 50000 +17592282907636 50000 +17592283195309 50000 +17592283014596 50000 +17592283195505 50000 +17592283249602 50000 +17592283249600 50000 +17592283249604 50000 +17592283328957 50000 +17592283734139 50000 +17592283734154 50000 +17592283439425 50000 +17592283439433 50000 +17592283439431 50000 +17592283439429 50000 +17592283439427 50000 +17592283532194 50000 +17592283532192 50000 +17592283614111 50000 +17592283614113 50000 +17592284323074 50000 +17592283783337 50000 +17592283783339 50000 +17592283892311 50000 +17592283892313 50000 +17592283892307 50000 +17592283892309 50000 +17592284323007 50000 +17592284012362 50000 +17592284012360 50000 +17592284012358 50000 +17592285087246 50000 +17592284105293 50000 +17592284105295 50000 +17592284200860 50000 +17592284200862 50000 +17592285087238 50000 +17592284318086 50000 +17592284318084 50000 +17592284318090 50000 +17592284318088 50000 +17592284453724 50000 +17592284724405 50000 +17592284724407 50000 +17592284724409 50000 +17592285087230 50000 +17592284822289 50000 +17592284822293 50000 +17592284822291 50000 +17592284822297 50000 +17592284822295 50000 +17592285085201 50000 +17592285085199 50000 +17592285085205 50000 +17592285085203 50000 +17592285778582 50000 +17592285778610 50000 +17592285301393 50000 +17592285301397 50000 +17592285301395 50000 +17592285301399 50000 +17592285631649 50000 +17592285631647 50000 +17592286360796 50000 +17592285778675 50000 +17592285778677 50000 +17592285778673 50000 +17592285931236 50000 +17592285931238 50000 +17592286360788 50000 +17592286014969 50000 +17592286126500 50000 +17592286126498 50000 +17592286126496 50000 +17592286126494 50000 +17592286214708 50000 +17592287078271 50000 +17592286321494 50000 +17592286574916 50000 +17592286574914 50000 +17592286653858 50000 +17592286653856 50000 +17592287078263 50000 +17592286721084 50000 +17592286721086 50000 +17592286721088 50000 +17592286838260 50000 +17592286838262 50000 +17592286838264 50000 +17592286838266 50000 +17592286965372 50000 +17592287047287 50000 +17592287047289 50000 +17592287047285 50000 +17592287047295 50000 +17592287047291 50000 +17592287047293 50000 +17592287131929 50000 +17592287131927 50000 +17592287131925 50000 +17592287204687 50000 +17592287204685 50000 +17592287309436 50000 +17592287402941 50000 +17592287402943 50000 +17592284923267 51200 +17592287427694 16100 +17592242878059 82100 +17592252846196 50000 +17592252845827 51200 +17592252846198 50000 +17592252846194 50000 +17592252846192 50000 +17592252590564 25200 +17592252590532 25200 +17592252590516 25200 +17592252590489 25200 +17592252590465 25200 +17592252845823 51200 +17592252677283 25200 +17592252677237 25200 +17592252677220 25200 +17592253307288 50000 +17592253316585 51200 +17592253307290 50000 +17592253307292 50000 +17592253316581 51200 +17592253085969 50000 +17592253307583 74100 +17592253275086 50000 +17592253275088 50000 +17592253750254 51200 +17592253409317 50000 +17592253471309 50000 +17592253750250 51200 +17592253704990 50000 +17592254102385 51200 +17592253904005 50000 +17592254102381 51200 +17592254074405 50000 +17592254621078 51200 +17592242878061 82100 +17592254313975 50000 +17592254621074 51200 +17592254612819 50000 +17592255089251 51200 +17592254832038 50000 +17592255089093 74100 +17592255089247 51200 +17592255032441 50000 +17592255661718 51200 +17592255211790 50000 +17592255313053 50000 +17592255661714 51200 +17592255596881 50000 +17592256193025 74100 +17592256193091 51200 +17592255924168 50000 +17592256193088 51200 +17592256157021 50000 +17592258603956 25200 +17592258603948 81110 +17592256706056 51200 +17592242878063 82100 +17592258215831 51200 +17592256354408 50000 +17592256706040 51200 +17592256434239 50000 +17592256680165 50000 +17592257221799 51200 +17592256888776 50000 +17592257211266 50000 +17592257773355 51200 +17592257751352 50000 +17592258186207 51200 +17592258184652 50000 +17592258791116 51200 +17592258447127 50000 +17592258791112 51200 +17592242878065 82100 +17592258765804 50000 +17592259234383 51200 +17592259234050 50000 +17592259747961 51200 +17592259739179 50000 +17592260190506 51200 +17592260190621 50000 +17592260916705 51200 +17592242878067 82100 +17592260898181 50000 +17592261424156 51200 +17592261408958 50000 +17592261977759 51200 +17592261976645 50000 +17592263239746 51200 +17592263237766 50000 +17592263838696 51200 +17592263504206 50000 +17592263838692 51200 +17592263838231 50000 +17592264379110 51200 +17592263986357 50000 +17592242878069 82100 +17592264050058 50000 +17592264379106 51200 +17592264379938 50000 +17592264910123 51200 +17592264613889 50000 +17592264910119 51200 +17592264910388 50000 +17592265421125 51200 +17592265178555 50000 +17592265421121 51200 +17592265421117 51200 +17592265341706 81160 +17592265470740 50000 +17592266181183 51200 +17592265728599 50000 +17592266181179 51200 +17592266186966 50000 +17592266775104 51200 +17592266259173 50000 +17592266475309 50000 +17592266475307 50000 +17592266475313 50000 +17592266475311 50000 +17592266475301 50000 +17592266475299 50000 +17592266475305 50000 +17592266475303 50000 +17592266475325 50000 +17592266475323 50000 +17592266475327 50000 +17592266475317 50000 +17592266475315 50000 +17592266475321 50000 +17592266475319 50000 +17592266475261 50000 +17592266475259 50000 +17592266475265 50000 +17592266475263 50000 +17592266475257 50000 +17592266475255 50000 +17592266475277 50000 +17592266475275 50000 +17592266475281 50000 +17592266475279 50000 +17592266475269 50000 +17592266475267 50000 +17592266475273 50000 +17592266475271 50000 +17592266475293 50000 +17592266475291 50000 +17592266475297 50000 +17592266475295 50000 +17592266475285 50000 +17592266475283 50000 +17592266475289 50000 +17592266475287 50000 +17592242878071 82100 +17592266775110 51200 +17592266687226 50000 +17592266774701 50000 +17592267234770 51200 +17592266982724 50000 +17592267234766 51200 +17592267235116 50000 +17592267818049 51200 +17592267518401 50000 +17592267818051 51200 +17592267830348 50000 +17592268460347 51200 +17592267928131 50000 +17592267928133 50000 +17592267928135 50000 +17592267928137 50000 +17592267928139 50000 +17592267928141 50000 +17592267928143 50000 +17592267928145 50000 +17592267928147 50000 +17592267928149 50000 +17592267928151 50000 +17592267928127 50000 +17592267928129 50000 +17592268105310 50000 +17592268460343 51200 +17592268486524 50000 +17592269100375 51200 +17592268576781 50000 +17592268745192 50000 +17592268745190 50000 +17592269100371 51200 +17592268892322 50000 +17592269106832 50000 +17592242878073 82100 +17592268450552 82100 +17592269633648 51200 +17592269335706 50000 +17592269436555 50000 +17592269633644 51200 +17592269634653 50000 +17592270288109 51200 +17592269833009 50000 +17592269932468 50000 +17592270288105 51200 +17592270292380 50000 +17592270292382 50000 +17592270851305 51200 +17592270560810 50000 +17592270851301 51200 +17592270652806 50000 +17592270652804 50000 +17592270652810 50000 +17592270652808 50000 +17592270851731 50000 +17592271455343 51200 +17592271078435 50000 +17592271455339 51200 +17592271456094 50000 +17592271983531 51200 +17592271759234 50000 +17592242878075 82100 +17592271983528 51200 +17592271986327 50000 +17592272648896 51200 +17592272307120 50000 +17592272413713 50000 +17592272648892 51200 +17592272651918 50000 +17592273459895 51200 +17592273050684 50000 +17592273459891 51200 +17592273463287 50000 +17592274009082 51200 +17592273748282 50000 +17592274009078 51200 +17592274012050 50000 +17592274847053 51200 +17592274405930 50000 +17592274847055 51200 +17592242878077 82100 +17592274848210 50000 +17592275322430 51200 +17592274971175 50000 +17592274971177 50000 +17592274971173 50000 +17592275080297 50000 +17592275322426 51200 +17592275326381 50000 +17592275895382 51200 +17592275576128 50000 +17592275895384 51200 +17592275899593 50000 +17592276545862 51200 +17592276552858 51200 +17592276111776 50000 +17592276545858 51200 +17592276545197 50000 +17592277210832 51200 +17592277210836 51200 +17592276837459 50000 +17592277164473 51200 +17592277169298 50000 +17592277971121 51200 +17592242878079 82100 +17592280138550 82100 +17592277464466 50000 +17592277747792 50000 +17592277971117 51200 +17592277971642 50000 +17592278565556 51200 +17592278259349 50000 +17592278565552 51200 +17592278573898 50000 +17592279252062 51200 +17592278920409 50000 +17592279252058 51200 +17592279256204 50000 +17592279747915 51200 +17592279324372 50000 +17592279449411 50000 +17592279449413 50000 +17592279555522 50000 +17592279747911 51200 +17592279755235 50000 +17592279755237 50000 +17592280651023 51200 +17592280131798 50000 +17592242878081 82100 +17592280651019 51200 +17592280652301 50000 +17592281675482 51200 +17592281210302 50000 +17592281675478 51200 +17592281680391 50000 +17592281771432 50000 +17592282373154 51200 +17592281878739 50000 +17592281979969 50000 +17592282373150 51200 +17592282231498 50000 +17592282558563 50000 +17592283187966 51200 +17592282907598 50000 +17592283187962 51200 +17592283195473 50000 +17592283739639 51200 +17592283439393 50000 +17592283739633 51200 +17592284157800 82100 +17592283733039 50000 +17592284317817 51200 +17592284012330 50000 +17592284317821 51200 +17592284322861 50000 +17592285086808 51200 +17592284454703 50000 +17592284454699 50000 +17592284454701 50000 +17592284454697 50000 +17592284656201 50000 +17592284656203 50000 +17592284725290 50000 +17592285086812 51200 +17592285085163 50000 +17592285778450 51200 +17592285301363 50000 +17592285778454 51200 +17592285782897 50000 +17592286352496 51200 +17592286014937 50000 +17592286352500 51200 +17592286355555 50000 +17592287042792 51200 +17592286726597 50000 +17592287042796 51200 +17592286969132 50000 +17592287047249 50000 +17592287313998 50000 +17592287413422 50000 +17592287413424 50000 +17592236166999 82100 +17592252829084 86500 +17592252461830 51200 +17592252395331 50000 +17592252867926 25200 +17592252485944 50000 +17592252635286 50000 +17592252635288 50000 +17592252635290 50000 +17592252581833 25200 +17592252581841 25200 +17592252581817 25200 +17592252581825 25200 +17592252581801 25200 +17592252581809 25200 +17592252581784 25200 +17592252581792 25200 +17592252581768 25200 +17592252581776 25200 +17592252581760 25200 +17592252845765 51200 +17592252581556 25200 +17592252581566 25200 +17592252694194 50000 +17592252753549 74800 +17592252829075 86100 +17592252845761 51200 +17592252830843 50000 +17592252870514 50000 +17592253042456 50000 +17592253316453 51200 +17592253316523 51200 +17592253085957 50000 +17592253316505 51200 +17592253275048 50000 +17592253275050 50000 +17592253275052 50000 +17592253409297 50000 +17592253409299 50000 +17592253732128 51200 +17592253550021 50000 +17592253550019 50000 +17592253732138 51200 +17592253704970 50000 +17592253961658 50000 +17592254099008 51200 +17592253961892 82100 +17592253961930 74600 +17592254074389 50000 +17592254099018 51200 +17592254131755 82100 +17592254313963 50000 +17592254379497 50000 +17592254379499 50000 +17592254617800 51200 +17592254612799 50000 +17592254617810 51200 +17592255640214 74600 +17592254737372 50000 +17592254737374 50000 +17592254869079 50000 +17592255054494 51200 +17592255032417 50000 +17592255054504 51200 +17592255638787 51200 +17592255638797 51200 +17592255407582 50000 +17592255638808 51200 +17592255596859 50000 +17592255984021 50000 +17592256181197 51200 +17592256157001 50000 +17592256181207 51200 +17592254267241 82100 +17592254267347 82100 +17592256683682 51200 +17592256434229 50000 +17592256687480 51200 +17592256680131 50000 +17592256680133 50000 +17592256808138 50000 +17592256986741 50000 +17592257212375 51200 +17592257067680 50000 +17592257212357 51200 +17592257211244 50000 +17592257267782 50000 +17592257386107 50000 +17592257584835 50000 +17592257773370 51200 +17592257773366 51200 +17592257751326 50000 +17592258203993 74100 +17592258184366 51200 +17592258009862 50000 +17592258184624 50000 +17592258184626 50000 +17592258224955 51200 +17592258359130 74500 +17592258791038 51200 +17592254267243 82100 +17592254267349 82100 +17592258578923 50000 +17592258628453 74150 +17592258791034 51200 +17592258765782 50000 +17592259234312 51200 +17592259063653 50000 +17592259234308 51200 +17592259234030 50000 +17592259234304 51200 +17592259532728 50000 +17592259744591 51200 +17592259739157 50000 +17592259744723 51200 +17592260068980 50000 +17592260068982 50000 +17592260190520 51200 +17592260190516 51200 +17592260190599 50000 +17592260390514 34000 +17592260664505 50000 +17592260916709 51200 +17592254267245 82100 +17592254267351 82100 +17592260898161 50000 +17592260916713 51200 +17592261424142 51200 +17592261208192 50000 +17592261424138 51200 +17592261408934 50000 +17592261646096 50000 +17592261720460 12400 +17592261873016 50000 +17592261977770 51200 +17592261977774 51200 +17592261976619 50000 +17592262646157 50000 +17592263239732 51200 +17592262994494 50000 +17592263237744 50000 +17592263239728 51200 +17592263420437 50000 +17592263622859 50000 +17592263838616 51200 +17592263838211 50000 +17592263838612 51200 +17592263986349 50000 +17592254267247 82100 +17592254267353 82100 +17592264162740 50000 +17592264379124 51200 +17592264402147 51200 +17592264379918 50000 +17592264707077 50000 +17592264910156 51200 +17592264894746 34000 +17592264910152 51200 +17592264910364 50000 +17592265421103 51200 +17592265280142 50000 +17592265421099 51200 +17592265341636 81160 +17592266181165 51200 +17592265470720 50000 +17592265838052 50000 +17592266181161 51200 +17592266186942 50000 +17592266775118 51200 +17592266259151 50000 +17592266525894 74150 +17592266474605 50000 +17592266474603 50000 +17592266474609 50000 +17592266474607 50000 +17592266474597 50000 +17592266474595 50000 +17592266474601 50000 +17592266474599 50000 +17592266474621 50000 +17592266474619 50000 +17592266474625 50000 +17592266474623 50000 +17592266474613 50000 +17592266474611 50000 +17592266474617 50000 +17592266474615 50000 +17592266474637 50000 +17592266474635 50000 +17592266474641 50000 +17592266474639 50000 +17592266474629 50000 +17592266474627 50000 +17592266474633 50000 +17592266474631 50000 +17592266474651 50000 +17592266474645 50000 +17592266474643 50000 +17592266474649 50000 +17592266474647 50000 +17592266474589 50000 +17592266474587 50000 +17592266474593 50000 +17592266474591 50000 +17592266474581 50000 +17592266474585 50000 +17592266474583 50000 +17592254267249 82100 +17592254267355 82100 +17592266775123 51200 +17592266597117 50000 +17592267234812 51200 +17592266774679 50000 +17592267234808 51200 +17592267036709 50000 +17592267818079 51200 +17592267235096 50000 +17592267235094 50000 +17592267818081 51200 +17592267630044 50000 +17592267830324 50000 +17592268460355 51200 +17592267927811 50000 +17592267927813 50000 +17592267927815 50000 +17592267927817 50000 +17592267927819 50000 +17592267927821 50000 +17592267927823 50000 +17592267927825 50000 +17592267927827 50000 +17592267927829 50000 +17592267927831 50000 +17592267927801 50000 +17592267927803 50000 +17592267927805 50000 +17592267927807 50000 +17592267927809 50000 +17592268236775 50000 +17592268460351 51200 +17592269100393 51200 +17592268449385 74150 +17592268486502 50000 +17592268576737 50000 +17592268576739 50000 +17592268654630 50000 +17592268745152 50000 +17592269100389 51200 +17592268892310 50000 +17592269106810 50000 +17592254267251 82100 +17592254267357 82100 +17592269633665 51200 +17592269335682 50000 +17592269633659 51200 +17592269633654 51200 +17592269498880 50000 +17592269634631 50000 +17592270290423 51200 +17592269832985 50000 +17592270288113 51200 +17592270031605 50000 +17592270851327 51200 +17592270292360 50000 +17592270472148 50000 +17592270472150 50000 +17592270851323 51200 +17592270652742 50000 +17592270652740 50000 +17592270652746 50000 +17592270652744 50000 +17592270751123 50000 +17592271255381 25200 +17592270851319 51200 +17592270851711 50000 +17592270925461 50000 +17592271455348 51200 +17592271186618 50000 +17592271456068 50000 +17592271983535 51200 +17592254267253 82100 +17592254267359 82100 +17592271875363 50000 +17592271983538 51200 +17592271986299 50000 +17592272648908 51200 +17592272413693 50000 +17592272648904 51200 +17592272651896 50000 +17592272648900 51200 +17592272922701 50000 +17592273050654 50000 +17592273050652 50000 +17592273188471 50000 +17592273459903 51200 +17592273388212 50000 +17592273463263 50000 +17592273459899 51200 +17592274009108 51200 +17592273875443 50000 +17592273945754 50000 +17592274009104 51200 +17592274012026 50000 +17592274266644 50000 +17592274348793 50000 +17592274847059 51200 +17592274494977 50000 +17592254267255 82100 +17592254267361 82100 +17592274549352 50000 +17592275322438 51200 +17592274848188 50000 +17592274971119 50000 +17592274971115 50000 +17592274971117 50000 +17592275322434 51200 +17592275169639 34000 +17592275169778 50000 +17592275169776 50000 +17592275326357 50000 +17592275895397 51200 +17592275373351 50000 +17592275895399 51200 +17592275699968 50000 +17592275899567 50000 +17592276545818 51200 +17592276545750 51200 +17592276220840 50000 +17592276545169 50000 +17592276545171 50000 +17592277973322 51200 +17592276545723 51200 +17592276936518 50000 +17592277164483 51200 +17592277169274 50000 +17592277973312 51200 +17592277971133 51200 +17592254267257 82100 +17592254267363 82100 +17592277973302 51200 +17592277747772 50000 +17592277971129 51200 +17592277845040 50000 +17592277973289 51200 +17592277971125 51200 +17592277971620 50000 +17592278347098 50000 +17592278565560 51200 +17592278573876 50000 +17592279251668 51200 +17592278689439 50000 +17592278825961 50000 +17592278825963 50000 +17592278920391 50000 +17592279017845 50000 +17592279251558 51200 +17592279126764 50000 +17592279747949 51200 +17592279256180 50000 +17592279324350 50000 +17592279747945 51200 +17592279747941 51200 +17592279555502 50000 +17592279747937 51200 +17592279755215 50000 +17592279859936 50000 +17592280134720 82100 +17592254267259 82100 +17592254267365 82100 +17592280651031 51200 +17592280247498 50000 +17592280651027 51200 +17592280652281 50000 +17592281210286 50000 +17592281675486 51200 +17592281342360 50000 +17592282373173 51200 +17592281680369 50000 +17592281680367 50000 +17592281771400 50000 +17592281979943 50000 +17592282373177 51200 +17592282125842 50000 +17592282558543 50000 +17592283187979 51200 +17592283014578 50000 +17592283187983 51200 +17592283733843 51200 +17592283195455 50000 +17592283254377 50000 +17592283733847 51200 +17592283532172 50000 +17592284944244 83100 +17592287427710 16100 +17592254267261 82100 +17592254267367 82100 +17592283733019 50000 +17592283733839 51200 +17592283908991 50000 +17592284317844 51200 +17592284105275 50000 +17592284322841 50000 +17592284317840 51200 +17592284454587 50000 +17592284454583 50000 +17592284454585 50000 +17592284454579 50000 +17592284454581 50000 +17592284454575 50000 +17592284454577 50000 +17592284656163 50000 +17592284656165 50000 +17592284656161 50000 +17592285086850 51200 +17592284822265 50000 +17592284917458 50000 +17592285085143 50000 +17592285086846 51200 +17592285153334 50000 +17592285153336 50000 +17592285535286 50000 +17592285778467 51200 +17592286352508 51200 +17592285782875 50000 +17592286352512 51200 +17592286126468 50000 +17592286352504 51200 +17592286355531 50000 +17592286576441 50000 +17592286128048 82100 +17592286844469 50000 +17592287042816 51200 +17592286969110 50000 +17592287047227 50000 +17592287042812 51200 +17592287413398 50000 +17592252717132 75100 +17592252717123 75100 +17592255867471 15300 +17592254424160 15300 +17592255058153 15300 +17592255529492 15300 +17592256301061 15300 +17592256731182 15300 +17592258978543 84100 +17592257647329 15450 +17592258549437 16300 +17592258978559 84100 +17592258978551 84100 +17592258978535 84100 +17592281834697 50100 +17592281834706 50100 +17592258394215 83500 +17592281840000 50200 +17592281834887 50100 +17592263088863 74800 +17592264619271 75100 +17592281839802 50200 +17592281834930 50100 +17592263089074 74100 +17592281839820 50200 +17592281835294 50100 +17592281835313 50100 +17592281839823 50200 +17592271243900 50000 +17592281834895 50100 +17592281839812 50200 +17592263089082 74100 +17592260352979 25200 +17592260352942 25200 +17592281834894 50100 +17592281839796 50200 +17592260510019 16300 +17592260510011 96600 +17592260509940 15300 +17592281840025 50200 +17592264443213 84100 +17592264443221 84100 +17592264619591 50000 +17592264619582 50000 +17592260941555 82100 +17592281834890 50100 +17592281840013 50200 +17592264666557 74200 +17592264619573 50000 +17592263089108 74100 +17592263089098 74600 +17592281839783 50200 +17592281834700 50100 +17592264619263 50000 +17592264619523 50000 +17592264619599 50000 +17592281834713 50100 +17592264619480 50000 +17592264629734 75050 +17592264629747 75100 +17592261234539 25200 +17592261288140 25200 +17592261009838 25200 +17592261009909 25200 +17592281840019 50200 +17592265674272 83500 +17592281840016 50200 +17592281834721 50100 +17592264629875 50000 +17592284809684 74200 +17592263089116 74100 +17592264619255 50000 +17592264629867 50000 +17592264629784 50000 +17592261634114 25200 +17592281839985 50200 +17592281834904 50100 +17592264630550 75050 +17592281839804 50200 +17592286674303 34030 +17592286674320 34020 +17592286674340 34000 +17592286677396 34010 +17592264666549 74800 +17592264619247 50000 +17592264629884 50000 +17592264629844 50000 +17592281834709 50100 +17592281839807 50200 +17592264629856 50000 +17592262415331 15450 +17592264629763 50000 +17592281839814 50200 +17592281835316 50100 +17592281839793 50200 +17592264619464 50000 +17592269437817 74100 +17592264619396 50000 +17592264629557 50000 +17592264666758 74200 +17592264619380 50000 +17592264629755 50000 +17592281839818 50200 +17592281835114 50100 +17592263089029 84100 +17592262957803 15450 +17592264619388 50000 +17592264629726 50000 +17592263078024 25200 +17592263078140 25200 +17592264629771 50000 +17592281834710 50100 +17592281839788 50200 +17592264546308 50000 +17592264546383 50000 +17592269437833 74100 +17592281834901 50100 +17592264546300 50000 +17592264546618 50000 +17592281839800 50200 +17592263538101 25200 +17592264546316 50000 +17592281835298 50100 +17592264546288 50000 +17592264546626 50000 +17592281839806 50200 +17592281839809 50200 +17592264556625 50000 +17592264546634 50000 +17592264170363 74600 +17592281834691 50100 +17592264546415 75100 +17592264546391 50000 +17592281835135 50100 +17592281839805 50200 +17592264164800 84100 +17592264443205 84100 +17592271537738 74200 +17592263899220 25200 +17592263899423 25200 +17592269437865 74100 +17592263885784 25200 +17592271537632 50000 +17592271537649 50000 +17592271537641 50000 +17592264641439 50000 +17592263959502 82100 +17592264641455 50000 +17592264641447 50000 +17592286677395 34010 +17592281839993 50200 +17592281834694 50100 +17592281839825 50200 +17592264641554 50000 +17592271537946 50000 +17592264641546 74200 +17592264641562 50000 +17592264641519 50000 +17592271537936 74200 +17592271537927 50000 +17592271537959 50000 +17592264641511 50000 +17592281839990 50200 +17592281835295 50100 +17592263049512 83500 +17592264641487 50000 +17592265674144 83500 +17592269448456 74100 +17592264652347 84100 +17592281834722 50100 +17592271254649 50000 +17592271254626 50000 +17592281834922 50100 +17592281840024 50200 +17592264641463 74200 +17592281839986 50200 +17592281839997 50200 +17592271254527 50000 +17592271255287 74200 +17592265291465 84200 +17592281839995 50200 +17592281835129 50100 +17592269448535 74100 +17592264979803 25200 +17592271198119 74200 +17592271255240 50000 +17592281839816 50200 +17592281834902 50100 +17592281834919 50100 +17592271255159 50000 +17592271255310 50000 +17592271254900 50000 +17592271255264 50000 +17592271254720 50000 +17592281835309 50100 +17592271254766 50000 +17592271254790 50000 +17592269674396 74100 +17592281839822 50200 +17592271254743 50000 +17592271254813 50000 +17592281835119 50100 +17592281839815 50200 +17592266222709 74610 +17592271254821 50000 +17592281835131 50100 +17592271255357 50000 +17592271255334 50000 +17592281835121 50100 +17592281839996 50200 +17592281835128 50100 +17592269674761 74100 +17592266537488 74200 +17592281835090 50100 +17592281835091 50100 +17592281835093 50100 +17592281835095 50100 +17592281835107 50100 +17592281835108 50100 +17592281835299 50100 +17592281835291 50100 +17592281835292 50100 +17592281835293 50100 +17592281835296 50100 +17592281834925 50100 +17592281834923 50100 +17592281835096 50100 +17592281835097 50100 +17592281835099 50100 +17592281835103 50100 +17592281835306 50100 +17592281835307 50100 +17592281835311 50100 +17592281834926 50100 +17592281834929 50100 +17592281835314 50100 +17592281834931 50100 +17592281835300 50100 +17592281835301 50100 +17592281835302 50100 +17592281834921 50100 +17592281835304 50100 +17592281834920 50100 +17592281835087 50100 +17592281839824 50200 +17592269437757 84100 +17592266397012 82100 +17592286677394 34010 +17592281835290 50100 +17592271254672 50000 +17592271254695 50000 +17592271243639 75100 +17592271243425 50000 +17592271243788 50000 +17592281839999 50200 +17592281834696 50100 +17592269674784 74100 +17592271243825 50000 +17592271243854 50000 +17592271243877 50000 +17592268203666 74200 +17592281835133 50100 +17592281840002 50200 +17592271595303 50000 +17592267991771 83500 +17592281835117 50100 +17592268203682 84100 +17592271243737 50000 +17592271243448 50000 +17592271243509 50000 +17592271243663 50000 +17592271243472 50000 +17592281834932 50100 +17592271578766 50000 +17592271578800 50000 +17592271578792 50000 +17592281839982 50200 +17592271578600 50000 +17592269674880 74100 +17592271578693 50000 +17592271578809 50000 +17592271578553 50000 +17592268687039 83100 +17592281834724 50100 +17592271578670 74500 +17592281839988 50200 +17592271578407 50000 +17592271578720 50000 +17592271578743 50000 +17592269678669 74200 +17592271578430 50000 +17592271578623 50000 +17592267839350 25200 +17592267839596 25200 +17592281839791 50200 +17592281835106 50100 +17592271578646 50000 +17592269675124 74100 +17592281834916 50100 +17592281834913 50100 +17592281839801 50200 +17592271578576 50000 +17592271578453 50000 +17592271578924 50000 +17592271589629 50000 +17592271578953 50000 +17592281834893 50100 +17592271589667 50000 +17592281839798 50200 +17592271589615 50000 +17592269675229 74100 +17592281835104 50100 +17592281835105 50100 +17592268954061 84100 +17592281839808 50200 +17592281834702 50100 +17592281834695 50100 +17592281834708 50100 +17592281834699 50100 +17592281834687 50100 +17592281834683 50100 +17592281834690 50100 +17592281834686 50100 +17592281834682 50100 +17592281834705 50100 +17592281834685 50100 +17592281834681 50100 +17592281834723 50100 +17592281834726 50100 +17592281834688 50100 +17592281834884 50100 +17592281834728 50100 +17592281834886 50100 +17592269437389 84100 +17592269324773 83100 +17592268909550 82100 +17592281839826 50200 +17592281834725 50100 +17592269152762 83500 +17592269210650 25200 +17592281834717 50100 +17592281834716 50100 +17592271578217 50000 +17592271578269 50000 +17592281840021 50200 +17592269677228 74100 +17592271762780 12100 +17592281834885 50100 +17592271578383 50000 +17592281839813 50200 +17592271578308 50000 +17592281834897 50100 +17592272804514 74610 +17592272803110 50000 +17592271578332 50000 +17592272804073 50000 +17592270433389 83500 +17592272802980 50000 +17592272796211 50000 +17592281834917 50100 +17592269659099 84200 +17592281839780 50200 +17592272815407 74100 +17592272796260 75100 +17592281835102 50100 +17592269834203 82100 +17592281835136 50100 +17592281839821 50200 +17592272803083 50000 +17592281835125 50100 +17592281835130 50100 +17592281840017 50200 +17592276860951 74100 +17592272796281 50000 +17592281834906 50100 +17592281840026 50200 +17592281840022 50200 +17592270965417 74150 +17592272796098 50000 +17592281839781 50200 +17592272796273 50000 +17592281835124 50100 +17592281835127 50100 +17592272796106 50000 +17592272796115 75100 +17592272802217 50000 +17592281840001 50200 +17592281835115 50100 +17592272802682 50000 +17592272815431 74100 +17592271762788 12100 +17592281839792 50200 +17592272802456 50000 +17592286674301 34030 +17592286674339 34000 +17592286674341 34000 +17592286674302 34030 +17592286674321 34020 +17592286674322 34020 +17592281834905 50100 +17592272802279 50000 +17592281834908 50100 +17592281834903 50100 +17592281840005 50200 +17592272802294 50000 +17592281835312 50100 +17592271188390 81160 +17592271270021 74610 +17592272803102 50000 +17592271463695 25200 +17592281840008 50200 +17592281835098 50100 +17592276860898 74600 +17592276860912 74100 +17592270433112 83100 +17592272796165 50000 +17592271791033 84100 +17592281834712 50100 +17592281835113 50100 +17592275952679 50000 +17592271908579 83100 +17592281840023 50200 +17592271487022 82100 +17592272796174 50000 +17592281834898 50100 +17592281834900 50100 +17592272796182 50000 +17592275423263 50000 +17592275423752 50000 +17592281839799 50200 +17592281835132 50100 +17592272686900 74100 +17592275423279 50000 +17592270955329 83500 +17592281839794 50200 +17592281835308 50100 +17592281835305 50100 +17592274850867 74200 +17592281834701 50100 +17592281835126 50100 +17592275952687 50000 +17592281835092 50100 +17592281839779 50200 +17592272953127 74100 +17592281835109 50100 +17592281835110 50100 +17592281834899 50100 +17592281834892 50100 +17592281839782 50200 +17592275731164 84100 +17592273254624 25200 +17592281834727 50100 +17592275952671 50000 +17592275952647 50000 +17592273511583 25200 +17592281834698 50100 +17592281839795 50200 +17592273486447 84200 +17592275952655 50000 +17592274119630 74100 +17592281834720 50100 +17592281834729 50100 +17592281834719 50100 +17592281834907 50100 +17592281834909 50100 +17592281839991 50200 +17592281834707 50100 +17592281834704 50100 +17592275952663 50000 +17592273947172 25200 +17592275952639 50000 +17592275952631 50000 +17592281839787 50200 +17592281835315 50100 +17592274349458 74100 +17592274358919 74610 +17592281834915 50100 +17592275952575 50000 +17592275952599 50000 +17592275952591 50000 +17592275952583 50000 +17592274350796 84200 +17592281839817 50200 +17592281834703 50100 +17592281834692 50100 +17592275952607 75050 +17592281839811 50200 +17592281839803 50200 +17592275731177 84100 +17592275952623 50000 +17592275952615 50000 +17592274221382 83300 +17592274221381 86400 +17592274221384 83300 +17592274221383 83400 +17592274221380 82200 +17592274221379 82100 +17592275241060 81160 +17592274929463 83100 +17592281835116 50100 +17592281839989 50200 +17592281840011 50200 +17592274852058 25200 +17592277394692 50000 +17592275080171 74100 +17592277394684 75050 +17592281834711 50100 +17592281834714 50100 +17592281834889 50100 +17592281834891 50100 +17592281834718 50100 +17592281835134 50100 +17592281839827 50200 +17592281839983 50200 +17592277394700 50000 +17592275169578 25200 +17592275169597 25200 +17592281839790 50200 +17592281834911 50100 +17592273504920 83500 +17592277394792 50000 +17592275241100 75300 +17592281839984 50200 +17592276767051 74610 +17592281835088 50100 +17592275475626 74100 +17592281834684 50100 +17592277394776 50000 +17592277394784 50000 +17592277394744 50000 +17592277188274 74250 +17592281839994 50200 +17592281839992 50200 +17592281834888 50100 +17592286674300 34030 +17592286674319 34020 +17592277394752 50000 +17592277394768 50000 +17592286677393 34010 +17592276001538 84100 +17592277394760 50000 +17592281840015 50200 +17592281839998 50200 +17592281835111 50100 +17592280296027 50000 +17592280296012 50000 +17592276139862 74100 +17592281839786 50200 +17592281835297 50100 +17592280296059 50000 +17592280296051 50000 +17592280296043 50000 +17592280296035 50000 +17592281835094 50100 +17592281840006 50200 +17592280295918 50000 +17592281835118 50100 +17592281840009 50200 +17592281840020 50200 +17592276733097 74100 +17592276693315 81110 +17592278949732 50000 +17592281834693 50100 +17592281840007 50200 +17592277370289 84100 +17592281839784 50200 +17592278574179 84100 +17592281835112 50100 +17592278949724 50000 +17592276640396 82100 +17592277370297 74100 +17592281834933 50100 +17592277394123 83100 +17592281839810 50200 +17592281835123 50100 +17592278002885 74610 +17592277987019 84200 +17592281834689 50100 +17592279497899 75100 +17592281834715 50100 +17592281839819 50200 +17592276640140 83500 +17592281835101 50100 +17592278225913 74100 +17592281840018 50200 +17592281834918 50100 +17592281835120 50100 +17592281840012 50200 +17592281839785 50200 +17592281835303 50100 +17592278920562 84100 +17592278920538 74100 +17592279497875 50000 +17592281839789 50200 +17592281872482 25200 +17592281872481 25200 +17592281834927 50100 +17592281872480 25200 +17592279497883 50000 +17592279497891 50000 +17592284131202 50000 +17592284131162 75100 +17592279266738 25200 +17592281840010 50200 +17592281834730 50100 +17592279324878 74100 +17592284131170 50000 +17592281835089 50100 +17592281835310 50100 +17592281834910 50100 +17592281840014 50200 +17592284131186 50000 +17592281839828 50200 +17592281839987 50200 +17592281834924 50100 +17592279465616 82100 +17592284131154 50000 +17592280272415 74100 +17592284131138 50000 +17592284131146 50000 +17592279256359 83500 +17592279795475 82100 +17592284807384 50100 +17592284119707 50000 +17592284807489 50200 +17592280295399 74600 +17592280774645 83100 +17592284119699 50000 +17592282596953 50000 +17592284807382 50100 +17592282597850 50000 +17592284807486 50200 +17592280849730 74100 +17592281120585 84100 +17592284807377 50100 +17592284807491 50200 +17592282598230 50000 +17592284809683 74200 +17592284807374 50100 +17592284119715 50000 +17592284807378 50100 +17592284807494 50200 +17592281702477 25200 +17592281910447 74100 +17592284807387 50100 +17592284119723 75100 +17592284809685 74200 +17592284119731 50000 +17592284807484 50200 +17592284807373 50100 +17592284807371 50100 +17592284809682 74200 +17592282576280 83500 +17592284119755 50000 +17592284119747 50000 +17592284807380 50100 +17592284807488 50200 +17592284119739 50000 +17592284807381 50100 +17592282791851 74100 +17592284807379 50100 +17592282822703 25200 +17592284119765 50000 +17592283254288 74610 +17592284807492 50200 +17592284807388 50100 +17592284119803 50000 +17592284807389 50100 +17592284120039 50000 +17592284119819 50000 +17592283458846 74100 +17592283256613 25200 +17592284119939 50000 +17592284120054 50000 +17592284119978 50000 +17592284119922 50000 +17592284807375 50100 +17592284807485 50200 +17592284120008 50000 +17592281121501 83100 +17592284807386 50100 +17592282561650 86400 +17592282561649 83400 +17592282561648 82200 +17592282561647 82100 +17592284807376 50100 +17592284807493 50200 +17592284807490 50200 +17592284807372 50100 +17592286033094 51200 +17592284119990 50000 +17592284807487 50200 +17592284393897 25200 +17592284807370 50100 +17592284807391 50100 +17592284807394 50100 +17592284807390 50100 +17592284807396 50100 +17592284807393 50100 +17592284807369 50100 +17592284807395 50100 +17592284807383 50100 +17592284807385 50100 +17592285086929 51200 +17592284807392 50100 +17592285086925 51200 +17592285085179 50000 +17592285301375 50000 +17592285778528 51200 +17592286354816 51200 +17592285782913 50000 +17592285842556 50000 +17592286352560 51200 +17592286014951 50000 +17592286352556 51200 +17592286355575 50000 +17592286656930 50000 +17592287042861 51200 +17592286726611 50000 +17592286844481 50000 +17592287047265 50000 +17592287042857 51200 +17592287314014 50000 +17592287413440 50000 +17592285980195 50000 +17592252024463 82100 +17592281837498 50100 +17592252905225 50000 +17592252905201 50000 +17592281839233 50200 +17592281837507 50100 +17592281837496 50100 +17592281837493 50100 +17592252659983 74100 +17592252905217 50000 +17592252905209 50000 +17592252905233 50000 +17592281839232 50200 +17592281837502 50100 +17592252873362 83100 +17592281836691 50100 +17592254680132 50000 +17592252873309 83500 +17592281839427 50200 +17592281836698 50100 +17592281836699 50100 +17592281836695 50100 +17592281836696 50100 +17592281836692 50100 +17592281836694 50100 +17592281836701 50100 +17592281839424 50200 +17592281836703 50100 +17592281836700 50100 +17592254680124 50000 +17592253566145 75100 +17592253566153 75100 +17592254680544 50000 +17592253042339 74100 +17592281836702 50100 +17592281839422 50200 +17592253304966 74610 +17592281839423 50200 +17592254680116 50000 +17592281836704 50100 +17592254680140 50000 +17592253566447 75100 +17592254680555 75100 +17592281837517 50100 +17592281837508 50100 +17592253383671 25200 +17592254680108 50000 +17592253361681 25200 +17592253361725 25200 +17592281839599 50200 +17592253380799 25200 +17592253380894 25200 +17592253383691 25200 +17592253431470 25200 +17592281837518 50100 +17592254680100 50000 +17592253532143 74100 +17592253540340 74100 +17592281837519 50100 +17592281839596 50200 +17592281837512 50100 +17592254680092 50000 +17592254680535 50000 +17592254680563 50000 +17592281837503 50100 +17592281839442 50200 +17592281837501 50100 +17592254680157 50000 +17592281837497 50100 +17592281839411 50200 +17592253922014 82100 +17592253988315 74700 +17592253988379 74600 +17592254895316 74100 +17592254680148 50000 +17592257786036 83800 +17592254680165 50000 +17592254680173 50000 +17592281839415 50200 +17592281836690 50100 +17592281837514 50100 +17592254680741 84100 +17592254157290 74100 +17592286721039 34010 +17592286721021 34030 +17592255266528 35200 +17592255266544 35200 +17592255266560 35200 +17592253927257 82100 +17592255239585 50000 +17592255239611 50000 +17592281836689 50100 +17592254348090 74100 +17592281839434 50200 +17592255239594 50000 +17592255239603 50000 +17592255239774 50000 +17592255239750 50000 +17592255239951 50000 +17592281837312 50100 +17592254618198 25200 +17592254618181 25200 +17592281839632 50200 +17592254803500 83500 +17592256681531 50000 +17592255239782 50000 +17592254778246 83000 +17592281839428 50200 +17592281837483 50100 +17592281837482 50100 +17592254871429 74100 +17592255040980 74610 +17592256912875 85100 +17592281837306 50100 +17592255239798 50000 +17592281836876 50100 +17592255239476 83000 +17592281839419 50200 +17592256681523 50000 +17592257970107 83100 +17592255133585 75100 +17592256681687 74250 +17592281837290 50100 +17592255426208 74100 +17592281839447 50200 +17592281839597 50200 +17592281836887 50100 +17592256681547 50000 +17592255721605 74600 +17592256681539 50000 +17592281836730 50100 +17592281837294 50100 +17592281839218 50200 +17592256681506 50000 +17592256681514 74500 +17592256681498 50000 +17592255985494 74100 +17592281837494 50100 +17592281839416 50200 +17592256681490 50000 +17592281837099 50100 +17592281837118 50100 +17592257018342 50000 +17592257018423 50000 +17592257018671 75100 +17592281837297 50100 +17592256464551 84100 +17592257018359 50000 +17592281839251 50200 +17592286721069 34040 +17592286721041 34010 +17592256235990 82100 +17592258675255 35200 +17592258675271 35200 +17592257018780 74500 +17592257018487 75100 +17592256314260 25200 +17592258376902 74100 +17592281839400 50200 +17592281836916 50100 +17592281836914 50100 +17592257018608 50000 +17592256365485 74600 +17592257018537 50000 +17592263465781 74100 +17592257018512 50000 +17592281836687 50100 +17592281839413 50200 +17592281837089 50100 +17592257970082 83500 +17592257909552 50000 +17592257909574 50000 +17592256844201 84100 +17592257909590 50000 +17592281837509 50100 +17592256913472 85100 +17592256999865 74100 +17592281839606 50200 +17592257909606 50000 +17592257909664 50000 +17592257909688 50000 +17592281837120 50100 +17592257909704 50000 +17592257909728 50000 +17592257909720 50000 +17592258042977 50000 +17592281839636 50200 +17592281837326 50100 +17592258042961 50000 +17592258042969 50000 +17592258042985 50000 +17592281837094 50100 +17592257970158 83100 +17592258375989 84100 +17592281839629 50200 +17592257778107 83000 +17592258042993 50000 +17592258043001 50000 +17592281839404 50200 +17592281837301 50100 +17592257630746 74100 +17592258043009 50000 +17592258026093 74610 +17592258043025 50000 +17592258043017 50000 +17592281837280 50100 +17592281837282 50100 +17592281839409 50200 +17592281836725 50100 +17592281836723 50100 +17592258988082 50000 +17592258988114 50000 +17592258376910 74100 +17592281837077 50100 +17592281839227 50200 +17592258043232 97200 +17592258039788 97200 +17592281837307 50100 +17592258988162 50000 +17592281837298 50100 +17592258988130 50000 +17592258988178 50000 +17592281837485 50100 +17592281839228 50200 +17592258988285 50000 +17592281839608 50200 +17592258988277 50000 +17592281837300 50100 +17592258988269 50000 +17592258988261 50000 +17592281839231 50200 +17592258603939 74100 +17592258325809 82100 +17592281839602 50200 +17592281839247 50200 +17592258988066 50000 +17592286721020 34030 +17592258675263 35200 +17592259078024 83500 +17592281836719 50100 +17592260013908 50000 +17592281839250 50200 +17592260013924 50000 +17592260013932 50000 +17592258978046 85100 +17592259077462 84100 +17592259077615 74100 +17592260013916 50000 +17592281839625 50200 +17592281836686 50100 +17592259017772 25200 +17592260013833 50000 +17592259019059 25200 +17592259234509 73300 +17592281837505 50100 +17592264453275 84100 +17592260013841 50000 +17592260013900 50000 +17592260013940 50000 +17592281839209 50200 +17592259276695 25200 +17592281837292 50100 +17592261591823 50000 +17592261128779 50000 +17592259579087 74100 +17592259587528 84100 +17592281836697 50100 +17592261591688 50000 +17592281839249 50200 +17592261591843 50000 +17592261128795 50000 +17592261128787 50000 +17592264488753 50000 +17592281836693 50100 +17592281839237 50200 +17592260015401 83100 +17592281839635 50200 +17592281839638 50200 +17592281836688 50100 +17592260080438 74100 +17592261591923 50000 +17592281839640 50200 +17592281837511 50100 +17592260191726 25200 +17592261592005 50000 +17592261591881 50000 +17592281836711 50100 +17592261789991 25200 +17592261591861 50000 +17592261591901 75100 +17592281839604 50200 +17592261553667 74200 +17592261553684 74200 +17592281837506 50100 +17592261582238 50000 +17592281836912 50100 +17592261591984 50000 +17592264453267 84100 +17592261582221 50000 +17592264557286 50000 +17592260434370 82100 +17592281839615 50200 +17592281837515 50100 +17592260081742 83500 +17592264557294 50000 +17592264619456 50000 +17592264557302 50000 +17592281837521 50100 +17592281839441 50200 +17592281839438 50200 +17592261224992 74100 +17592261266562 98800 +17592281837091 50100 +17592281839202 50200 +17592281839217 50200 +17592261225168 25200 +17592261225148 25200 +17592261498717 98800 +17592281836910 50100 +17592261409331 25200 +17592281839420 50200 +17592264557254 75100 +17592264557190 50000 +17592264557262 50000 +17592281837487 50100 +17592261695877 85100 +17592264557278 50000 +17592261626436 25200 +17592286721068 34040 +17592286721038 34010 +17592261807121 35200 +17592261807129 35200 +17592261807153 35200 +17592286721022 34030 +17592261873193 74100 +17592281839432 50200 +17592259907661 83000 +17592281836716 50100 +17592281836710 50100 +17592281839401 50200 +17592281839223 50200 +17592281839611 50200 +17592281839414 50200 +17592261875988 98800 +17592281839204 50200 +17592264557270 50000 +17592264750587 83000 +17592281839406 50200 +17592281837095 50100 +17592281837092 50100 +17592281839208 50200 +17592281839435 50200 +17592264629630 50000 +17592264629565 50000 +17592264666732 74200 +17592264666748 15410 +17592263068667 74100 +17592264619472 50000 +17592264629705 50000 +17592264619356 50000 +17592281839439 50200 +17592281839241 50200 +17592281837320 50100 +17592264629713 50000 +17592264629697 50000 +17592264619279 50000 +17592281839405 50200 +17592281836706 50100 +17592264557198 50000 +17592265291557 84200 +17592281836720 50100 +17592264557206 50000 +17592264402811 74100 +17592281837520 50100 +17592281839206 50200 +17592264557214 50000 +17592264557222 50000 +17592264076571 74610 +17592264557230 50000 +17592264557246 75100 +17592264557238 50000 +17592263720299 25200 +17592261683257 74100 +17592281836880 50100 +17592271255815 50000 +17592281839229 50200 +17592264487529 50000 +17592264164771 84100 +17592271255695 50000 +17592264487538 50000 +17592264487546 50000 +17592263895952 82100 +17592264164647 74100 +17592281839214 50200 +17592281837124 50100 +17592281839242 50200 +17592271255712 50000 +17592264487617 50000 +17592264487609 50000 +17592271255720 50000 +17592264487625 50000 +17592264443044 84100 +17592281839211 50200 +17592271255542 50000 +17592281836889 50100 +17592271592862 50000 +17592271255397 50000 +17592271255672 74700 +17592264536756 82100 +17592264750330 74100 +17592271255420 50000 +17592271255518 50000 +17592281836920 50100 +17592281839240 50200 +17592265059193 25200 +17592271270286 50000 +17592271255577 50000 +17592281839430 50200 +17592281837119 50100 +17592271255891 50000 +17592271269813 74250 +17592271255902 50000 +17592268203723 83000 +17592281839614 50200 +17592281839433 50200 +17592265291097 74100 +17592281837302 50100 +17592271255948 50000 +17592271270619 50000 +17592271256078 50000 +17592281839623 50200 +17592281837324 50100 +17592281839613 50200 +17592265674071 74600 +17592271256087 50000 +17592271270294 50000 +17592265839720 74100 +17592281837088 50100 +17592281839617 50200 +17592271256095 50000 +17592266222717 74610 +17592281837085 50100 +17592271256104 50000 +17592271270529 50000 +17592271268121 50000 +17592271270606 50000 +17592266820840 84100 +17592266223092 25200 +17592281836705 50100 +17592281839403 50200 +17592271255647 50000 +17592266395858 74700 +17592281836707 50100 +17592266395896 74700 +17592271255608 50000 +17592267992318 74100 +17592281836877 50100 +17592281836882 50100 +17592281836884 50100 +17592281836888 50100 +17592281836908 50100 +17592281836909 50100 +17592281836911 50100 +17592281836913 50100 +17592281836873 50100 +17592281836890 50100 +17592281836894 50100 +17592281836897 50100 +17592281839408 50200 +17592281836899 50100 +17592281836915 50100 +17592281837080 50100 +17592281836715 50100 +17592281837078 50100 +17592281836917 50100 +17592281836919 50100 +17592281836718 50100 +17592281836921 50100 +17592281836713 50100 +17592281836717 50100 +17592281836709 50100 +17592281836901 50100 +17592281836903 50100 +17592281836904 50100 +17592281836905 50100 +17592281836922 50100 +17592281837076 50100 +17592266411338 82100 +17592271524176 75100 +17592271255600 50000 +17592281837510 50100 +17592271524159 50000 +17592271524167 50000 +17592281839239 50200 +17592281836683 50100 +17592270488761 86300 +17592271524082 74500 +17592271524121 74500 +17592271524113 74500 +17592271524017 50000 +17592281839245 50200 +17592281839444 50200 +17592271524025 50000 +17592281837321 50100 +17592267992023 74100 +17592281836895 50100 +17592271524009 50000 +17592267113196 25200 +17592271523847 50000 +17592281837322 50100 +17592281839417 50200 +17592271523823 50000 +17592271523856 50000 +17592281837081 50100 +17592281837125 50100 +17592281837121 50100 +17592271523864 50000 +17592267852104 74100 +17592281839230 50200 +17592271523800 50000 +17592268203800 83000 +17592271523872 50000 +17592281839624 50200 +17592281837079 50100 +17592281837102 50100 +17592281837104 50100 +17592281837105 50100 +17592281837106 50100 +17592281837097 50100 +17592281837284 50100 +17592281837098 50100 +17592281837285 50100 +17592281837100 50100 +17592281837115 50100 +17592281837117 50100 +17592281837108 50100 +17592281837109 50100 +17592281837111 50100 +17592281837113 50100 +17592267982331 81110 +17592271524318 50000 +17592268262517 74100 +17592268262869 74100 +17592281836878 50100 +17592281836896 50100 +17592281836883 50100 +17592281839620 50200 +17592281839628 50200 +17592271523707 50000 +17592271524666 50000 +17592271523683 50000 +17592281837315 50100 +17592271523715 50000 +17592281839220 50200 +17592268671186 85100 +17592281837084 50100 +17592281837116 50100 +17592281837114 50100 +17592281836902 50100 +17592271524343 50000 +17592281839205 50200 +17592281839216 50200 +17592281837283 50100 +17592281837281 50100 +17592268954078 74100 +17592281837513 50100 +17592271523723 50000 +17592271523731 50000 +17592269437367 84100 +17592281836721 50100 +17592281839431 50200 +17592268909511 82100 +17592281836708 50100 +17592281839429 50200 +17592269299183 25200 +17592281836712 50100 +17592281839618 50200 +17592274296396 50000 +17592274296404 50000 +17592281836724 50100 +17592281836722 50100 +17592269492929 74100 +17592274296412 50000 +17592274296388 50000 +17592274296420 50000 +17592274296380 50000 +17592274296428 50000 +17592281839425 50200 +17592281836875 50100 +17592281837319 50100 +17592281837491 50100 +17592281837490 50100 +17592270059006 84100 +17592274296332 50000 +17592281837083 50100 +17592281837087 50100 +17592281837082 50100 +17592281839426 50200 +17592270058990 74100 +17592270118109 82100 +17592281837488 50100 +17592274296324 50000 +17592274296316 50000 +17592274296244 50000 +17592274296340 75100 +17592281836918 50100 +17592272413557 84200 +17592281839601 50200 +17592270973401 83000 +17592270488861 25200 +17592274296260 50000 +17592281837112 50100 +17592281837293 50100 +17592270959379 74100 +17592281839609 50200 +17592281839607 50200 +17592274296236 50000 +17592274296276 50000 +17592281839626 50200 +17592281836892 50100 +17592281836900 50100 +17592281836898 50100 +17592274296140 50000 +17592274296156 50000 +17592281839610 50200 +17592271790868 84100 +17592281837328 50100 +17592281839600 50200 +17592281839622 50200 +17592274296148 50000 +17592274296164 50000 +17592281837289 50100 +17592281839605 50200 +17592271187639 74100 +17592271106384 25200 +17592271574758 74610 +17592274296172 50000 +17592274296180 50000 +17592274295924 50000 +17592274295940 74500 +17592274295948 75100 +17592281839630 50200 +17592271487279 25200 +17592281836728 50100 +17592272413660 74700 +17592274295932 50000 +17592271790880 84100 +17592281836874 50100 +17592271875114 74100 +17592281839633 50200 +17592271487180 82100 +17592275423860 50000 +17592275423844 50000 +17592272256051 74700 +17592275423828 74500 +17592275423852 50000 +17592281839207 50200 +17592281837486 50100 +17592275423812 50000 +17592275423820 50000 +17592272256059 74700 +17592281839203 50200 +17592281837107 50100 +17592272408631 74100 +17592275423876 50000 +17592275423804 50000 +17592275423836 50000 +17592275423868 50000 +17592272651508 25200 +17592281837317 50100 +17592281839238 50200 +17592281837299 50100 +17592277396444 50000 +17592281837310 50100 +17592281839244 50200 +17592273486419 83000 +17592274432735 74100 +17592277396583 50000 +17592281837495 50100 +17592277396429 50000 +17592281837291 50100 +17592281839440 50200 +17592281839407 50200 +17592273552977 81110 +17592281836727 50100 +17592273907485 74100 +17592281837287 50100 +17592277397519 50000 +17592277397322 50000 +17592277397305 50000 +17592273947137 25200 +17592281839436 50200 +17592281839634 50200 +17592277398072 50000 +17592281836885 50100 +17592281836881 50100 +17592281839445 50200 +17592277409865 50000 +17592281839631 50200 +17592274358905 74610 +17592274357986 74600 +17592277397979 50000 +17592277398343 50000 +17592281837123 50100 +17592274495758 74100 +17592277398331 50000 +17592281839639 50200 +17592281839637 50200 +17592275908859 84100 +17592281837499 50100 +17592275241052 81160 +17592280295415 50000 +17592280295407 50000 +17592274215115 82100 +17592274296948 82100 +17592274296939 82200 +17592280295423 50000 +17592280295431 50000 +17592281836906 50100 +17592281839437 50200 +17592279479266 50000 +17592279478988 50000 +17592279478647 50000 +17592281837314 50100 +17592281837316 50100 +17592281837308 50100 +17592281837311 50100 +17592275170344 74100 +17592281837500 50100 +17592281839448 50200 +17592281839598 50200 +17592281839446 50200 +17592275079877 85100 +17592281837296 50100 +17592281837295 50100 +17592279478461 50000 +17592275241092 75300 +17592281839210 50200 +17592279477944 50000 +17592276767059 74610 +17592281836886 50100 +17592279477338 50000 +17592275900514 83000 +17592279476831 50000 +17592275706862 74100 +17592281839402 50200 +17592281836684 50100 +17592281839248 50200 +17592279476823 50000 +17592276644054 83000 +17592281837122 50100 +17592281141129 50000 +17592276001519 84100 +17592279476815 50000 +17592281839222 50200 +17592281839603 50200 +17592281839410 50200 +17592281837489 50100 +17592281839224 50200 +17592281839616 50200 +17592281839235 50200 +17592281837516 50100 +17592279476759 50000 +17592279476767 50000 +17592279476751 50000 +17592279476775 50000 +17592276278718 74100 +17592281837101 50100 +17592281839215 50200 +17592281839219 50200 +17592281839612 50200 +17592281839234 50200 +17592281836879 50100 +17592281837093 50100 +17592281837327 50100 +17592281839213 50200 +17592276570895 25200 +17592279476783 50000 +17592276733105 84100 +17592276681182 81110 +17592279476791 50000 +17592281837304 50100 +17592281210245 50000 +17592276935863 74100 +17592281837279 50100 +17592281839412 50200 +17592279476799 50000 +17592279476807 15410 +17592281839221 50200 +17592281837492 50100 +17592277628785 84100 +17592276935949 82100 +17592284117626 50000 +17592284117618 50000 +17592277394593 74600 +17592281836893 50100 +17592281836891 50100 +17592281839226 50200 +17592281837096 50100 +17592277628800 74100 +17592277767293 25200 +17592277987120 74610 +17592284117340 50000 +17592281837286 50100 +17592284117610 50000 +17592281839225 50200 +17592277987759 25200 +17592281837484 50100 +17592281839627 50200 +17592281837313 50100 +17592279476044 50000 +17592281837504 50100 +17592279476052 50000 +17592281839621 50200 +17592278569573 74100 +17592279476060 50000 +17592281839619 50200 +17592281837103 50100 +17592281839418 50200 +17592278920546 84100 +17592279476068 50000 +17592278920742 83000 +17592281837325 50100 +17592279476084 50000 +17592279476076 50000 +17592281839443 50200 +17592281837309 50100 +17592279042828 74100 +17592279476102 50000 +17592281836731 50100 +17592279266755 25200 +17592281837288 50100 +17592281839399 50200 +17592279476110 50000 +17592284117308 50000 +17592281837303 50100 +17592279788828 74100 +17592281837086 50100 +17592281837090 50100 +17592281836714 50100 +17592284117348 50000 +17592284117332 50000 +17592281839212 50200 +17592284117316 50000 +17592279795451 25200 +17592281839246 50200 +17592284117324 50000 +17592281836726 50100 +17592284783221 50200 +17592280272385 74100 +17592284783113 50100 +17592279464707 82100 +17592284117687 50000 +17592284783219 50200 +17592284783102 50100 +17592280750918 85100 +17592284118441 50000 +17592284783111 50100 +17592281120800 84100 +17592284118425 50000 +17592281341824 74100 +17592284783213 50200 +17592284783118 50100 +17592284118433 50000 +17592284783116 50100 +17592284783106 50100 +17592284783217 50200 +17592284783220 50200 +17592284783223 50200 +17592284118490 50000 +17592284783103 50100 +17592284783104 50100 +17592281875602 84100 +17592284118401 50000 +17592284118417 50000 +17592282560656 83000 +17592282560633 74100 +17592282560664 84100 +17592284783115 50100 +17592284783225 50200 +17592284118280 50000 +17592284118272 50000 +17592284118409 50000 +17592284118264 50000 +17592284783214 50200 +17592284783126 50100 +17592284117679 50000 +17592284118482 50000 +17592283254127 74100 +17592283254156 74610 +17592284783212 50200 +17592284783114 50100 +17592284118473 50000 +17592284118465 50000 +17592284783218 50200 +17592284783109 50100 +17592284118457 50000 +17592284783101 50100 +17592284783112 50100 +17592284118449 50000 +17592284783119 50100 +17592283803368 74100 +17592284783216 50200 +17592284117671 50000 +17592283458430 82100 +17592284783107 50100 +17592284783226 50200 +17592284783224 50200 +17592284783222 50200 +17592284783105 50100 +17592284783215 50200 +17592284783108 50100 +17592285086921 51200 +17592284391942 25200 +17592284783117 50100 +17592284783120 50100 +17592284783121 50100 +17592284783123 50100 +17592284783127 50100 +17592284783122 50100 +17592284783124 50100 +17592284783125 50100 +17592285086917 51200 +17592284783110 50100 +17592285086913 51200 +17592285085159 50000 +17592285301359 50000 +17592285778555 51200 +17592286352601 51200 +17592285782893 50000 +17592285842546 50000 +17592286014933 50000 +17592286352597 51200 +17592286352593 51200 +17592286355551 50000 +17592287042877 51200 +17592286726589 50000 +17592286726591 50000 +17592287047245 50000 +17592287042873 51200 +17592287313994 50000 +17592287413414 50000 +17592252394416 83100 +17592285958056 83100 +17592254148452 16666 +17592252024480 82100 +17592281838723 50200 +17592281838480 50100 +17592252531130 83400 +17592252490143 73300 +17592252534985 25200 +17592281838490 50100 +17592252640943 74100 +17592252656077 25200 +17592252641023 83500 +17592281838915 50200 +17592281838495 50100 +17592281838482 50100 +17592281838476 50100 +17592252716583 82100 +17592281838478 50100 +17592281837648 50100 +17592281838918 50200 +17592281837651 50100 +17592253031221 74100 +17592281838733 50200 +17592281838060 50100 +17592281838081 50100 +17592281838746 50200 +17592281837643 50100 +17592281838665 50100 +17592281838664 50100 +17592281838662 50100 +17592281838666 50100 +17592281837676 50100 +17592281837670 50100 +17592253480798 74100 +17592255045429 83500 +17592281837688 50100 +17592281839117 50200 +17592253522515 25200 +17592253724016 73300 +17592281838274 50100 +17592253870293 74700 +17592281839108 50200 +17592253816156 74100 +17592253788189 74610 +17592253788380 54100 +17592281837647 50100 +17592254159009 74100 +17592281838933 50200 +17592281838051 50100 +17592281837890 50100 +17592253988290 25200 +17592281838914 50200 +17592281837667 50100 +17592254356432 54300 +17592253932858 82100 +17592258928403 16300 +17592254148461 16666 +17592254074743 83100 +17592254356424 54300 +17592281838488 50100 +17592281838485 50100 +17592256707682 83400 +17592254315409 74100 +17592281837645 50100 +17592281838707 50200 +17592281838461 50100 +17592281838287 50100 +17592281838710 50200 +17592256292129 74100 +17592254803516 83100 +17592281838493 50100 +17592281838491 50100 +17592281839123 50200 +17592281839121 50200 +17592281839125 50200 +17592281838070 50100 +17592255810171 54100 +17592256355935 74100 +17592255323807 74100 +17592255229901 25200 +17592281838727 50200 +17592281838086 50100 +17592281837655 50100 +17592255444964 74610 +17592255721678 74600 +17592257969912 83500 +17592281837857 50100 +17592281838725 50200 +17592281838279 50100 +17592255853618 74500 +17592255942621 74100 +17592281838269 50100 +17592281838927 50200 +17592281838484 50100 +17592256014227 25200 +17592281838465 50100 +17592281838463 50100 +17592281838913 50200 +17592256236007 82100 +17592256815706 54300 +17592256236431 82100 +17592256236445 16300 +17592256236388 82100 +17592258390616 83400 +17592281838288 50100 +17592256355082 74100 +17592281838739 50200 +17592281837888 50100 +17592281837674 50100 +17592281838740 50200 +17592281838266 50100 +17592257396064 54100 +17592257292498 50000 +17592256889682 74100 +17592281838487 50100 +17592281838748 50200 +17592257291194 50000 +17592281838095 50100 +17592257291448 50000 +17592281839109 50200 +17592257970053 83100 +17592281838300 50100 +17592257965816 74200 +17592257630729 74100 +17592281838717 50200 +17592281838285 50100 +17592257969920 83500 +17592257718114 16100 +17592257965832 50000 +17592281838262 50100 +17592281838712 50200 +17592257965800 72400 +17592258808058 74600 +17592258802088 54100 +17592258026125 74100 +17592281838056 50100 +17592281838937 50200 +17592258026109 74610 +17592258043462 97200 +17592258808149 50000 +17592258808158 50000 +17592258808133 74700 +17592258978410 50000 +17592258978444 50000 +17592258808166 50000 +17592258978461 50000 +17592281838472 50100 +17592281838475 50100 +17592281838942 50200 +17592281837646 50100 +17592281838702 50200 +17592258603931 74100 +17592281838286 50100 +17592281838716 50200 +17592258325842 82100 +17592258325850 16300 +17592259338601 54300 +17592281838718 50200 +17592259077742 50000 +17592259077733 50000 +17592281838714 50200 +17592281837666 50100 +17592281838083 50100 +17592258978855 74100 +17592259077487 74610 +17592281838719 50200 +17592281837644 50100 +17592261126307 74610 +17592258978652 16666 +17592259077831 83400 +17592259428896 75050 +17592259267668 25200 +17592281838722 50200 +17592259267709 25200 +17592259267689 25200 +17592260015418 50000 +17592281838291 50100 +17592259466688 74100 +17592281837662 50100 +17592281838950 50200 +17592259587399 83100 +17592257969928 83500 +17592260015651 50000 +17592281838661 50100 +17592281837659 50100 +17592281838703 50200 +17592281837875 50100 +17592260003221 74100 +17592281838935 50200 +17592281838092 50100 +17592281838091 50100 +17592261498848 54100 +17592261582301 50000 +17592281838939 50200 +17592281838464 50100 +17592261692929 74100 +17592281838466 50100 +17592281838924 50200 +17592281838497 50100 +17592263362486 81110 +17592261672450 54300 +17592258926854 16300 +17592260434378 82100 +17592281838929 50200 +17592281838501 50100 +17592281838500 50100 +17592281838498 50100 +17592261649539 50000 +17592261128659 74100 +17592281838660 50100 +17592281838734 50200 +17592281838064 50100 +17592264942785 74100 +17592281837880 50100 +17592281838736 50200 +17592262670271 54100 +17592281838278 50100 +17592265291640 84200 +17592262670457 74200 +17592262670441 74200 +17592262670449 74200 +17592262670433 74500 +17592261755323 74100 +17592281838934 50200 +17592281837672 50100 +17592281838701 50200 +17592281838728 50200 +17592281838261 50100 +17592281838729 50200 +17592260081809 83500 +17592262670466 50000 +17592263361861 83100 +17592281838088 50100 +17592281838720 50200 +17592263350458 50000 +17592281860765 73100 +17592263350466 50000 +17592263049450 74100 +17592281838706 50200 +17592263350474 50000 +17592281838469 50100 +17592281838093 50100 +17592263006431 98800 +17592281838090 50100 +17592263472752 83400 +17592281837661 50100 +17592281837660 50100 +17592281837654 50100 +17592281837653 50100 +17592281838928 50200 +17592263361843 83100 +17592263528846 74100 +17592263465873 74610 +17592281838910 50200 +17592281838659 50100 +17592271711705 50000 +17592281838252 50100 +17592281838908 50200 +17592281838905 50200 +17592281837886 50100 +17592281839122 50200 +17592264076563 74100 +17592281837687 50100 +17592264068642 54300 +17592258927008 16300 +17592271115022 50000 +17592268497835 54100 +17592263895936 82100 +17592264379782 83400 +17592281838726 50200 +17592281838097 50100 +17592264942793 54300 +17592281838721 50200 +17592281838087 50100 +17592264652264 74100 +17592281837866 50100 +17592281838912 50200 +17592281838943 50200 +17592281838949 50200 +17592264942376 74100 +17592281838089 50100 +17592281838948 50200 +17592268497917 54100 +17592281838260 50100 +17592270433233 74700 +17592265291405 74100 +17592271712111 50000 +17592281837650 50100 +17592281838944 50200 +17592265301689 84200 +17592281838282 50100 +17592271712308 50000 +17592281838931 50200 +17592281838940 50200 +17592281837686 50100 +17592267992293 74200 +17592281839104 50200 +17592281838295 50100 +17592265839825 74100 +17592281838078 50100 +17592281839105 50200 +17592271712087 50000 +17592271712095 50000 +17592271712079 50000 +17592281837663 50100 +17592281838737 50200 +17592281838489 50100 +17592281838486 50100 +17592271712103 50000 +17592266494364 74100 +17592267970130 81110 +17592271712135 74500 +17592281838738 50200 +17592268204296 83300 +17592281837856 50100 +17592281837846 50100 +17592281837851 50100 +17592281837877 50100 +17592281837881 50100 +17592281837883 50100 +17592281837873 50100 +17592281837885 50100 +17592281837867 50100 +17592281837849 50100 +17592281837869 50100 +17592281838052 50100 +17592281837894 50100 +17592281837889 50100 +17592281838054 50100 +17592281837893 50100 +17592281838063 50100 +17592281838066 50100 +17592281837876 50100 +17592281837871 50100 +17592281837874 50100 +17592281838048 50100 +17592281837891 50100 +17592281838049 50100 +17592266411451 82100 +17592268203504 83400 +17592258927017 16300 +17592269496649 74100 +17592267852087 54300 +17592271808420 50000 +17592271712317 75050 +17592281838657 50100 +17592281838658 50100 +17592281838502 50100 +17592271808408 50000 +17592281838920 50200 +17592281837649 50100 +17592268497990 54100 +17592268203528 74100 +17592281839116 50200 +17592281838474 50100 +17592281838075 50100 +17592281838073 50100 +17592271808542 50000 +17592271808550 72400 +17592281839120 50200 +17592281838297 50100 +17592267243657 25200 +17592267243502 25200 +17592267243967 25200 +17592271808526 50000 +17592267992158 74100 +17592269141336 86200 +17592271807291 74500 +17592271807300 74200 +17592281838268 50100 +17592271808534 50000 +17592270432805 75100 +17592281838731 50200 +17592271808428 50000 +17592270432796 75100 +17592271808060 50000 +17592267839917 25200 +17592281838053 50100 +17592281839118 50200 +17592267982316 81110 +17592270429032 50000 +17592268192841 74100 +17592271712533 50000 +17592270429063 50000 +17592270429174 50000 +17592281837679 50100 +17592281838715 50200 +17592281837652 50100 +17592271808469 50000 +17592270429318 50000 +17592270432813 75100 +17592270429206 50000 +17592281838277 50100 +17592281838713 50200 +17592281860764 73100 +17592269141689 54100 +17592268604989 74610 +17592281838082 50100 +17592281838050 50100 +17592270429310 50000 +17592268954045 74100 +17592270432821 75100 +17592281837884 50100 +17592281837848 50100 +17592281837850 50100 +17592281837887 50100 +17592281837879 50100 +17592281838061 50100 +17592281837868 50100 +17592281838062 50100 +17592281838065 50100 +17592281838068 50100 +17592281837865 50100 +17592281837854 50100 +17592281837860 50100 +17592281837870 50100 +17592281838055 50100 +17592281837862 50100 +17592281838058 50100 +17592281837892 50100 +17592281838069 50100 +17592281838072 50100 +17592281838724 50200 +17592269108309 83300 +17592269493623 54300 +17592281837664 50100 +17592281837669 50100 +17592281838735 50200 +17592269437644 83400 +17592258927146 16300 +17592268909494 82100 +17592270428890 75050 +17592270429024 50000 +17592269437137 74100 +17592281837658 50100 +17592270428989 54100 +17592270429006 50000 +17592269347391 86100 +17592281837675 50100 +17592269496657 74100 +17592281839114 50200 +17592281838085 50100 +17592281838742 50200 +17592271242734 50000 +17592281837690 50100 +17592271197765 50000 +17592271198200 74200 +17592271197798 50000 +17592271198208 74200 +17592281838462 50100 +17592270058465 74100 +17592281838084 50100 +17592281838741 50200 +17592270059182 74600 +17592281838473 50100 +17592271220623 75100 +17592271242632 50000 +17592281838076 50100 +17592281838074 50100 +17592281838936 50200 +17592271197814 50000 +17592271197822 50000 +17592270516182 74700 +17592281838941 50200 +17592270959261 74100 +17592271197830 50000 +17592281838270 50100 +17592281838946 50200 +17592281838919 50200 +17592281838057 50100 +17592281838923 50200 +17592271242640 50000 +17592281838067 50100 +17592281838921 50200 +17592271242624 74500 +17592273239942 74100 +17592281838925 50200 +17592281838471 50100 +17592281839111 50200 +17592274274703 74200 +17592281838468 50100 +17592274274711 50000 +17592271087658 74100 +17592281837673 50100 +17592281838280 50100 +17592281839112 50200 +17592281838663 50100 +17592271188128 74610 +17592271573834 84200 +17592274274617 75050 +17592281839124 50200 +17592281837872 50100 +17592274274719 50000 +17592274274687 50000 +17592274274695 74200 +17592274274646 50000 +17592271774689 83300 +17592271774681 74100 +17592281838071 50100 +17592281839126 50200 +17592272255412 54300 +17592271487080 82100 +17592258927278 16300 +17592271914738 83400 +17592275419777 54100 +17592275419769 50000 +17592281838708 50200 +17592281838459 50100 +17592281838460 50100 +17592269141679 86200 +17592281838503 50100 +17592272306703 74100 +17592275419785 50000 +17592281838704 50200 +17592281838096 50100 +17592281838258 50100 +17592281838479 50100 +17592281838457 50100 +17592281838907 50200 +17592273211287 74610 +17592273211557 74100 +17592281838275 50100 +17592281838271 50100 +17592281838272 50100 +17592275419924 74700 +17592281838705 50200 +17592275419793 50000 +17592281838263 50100 +17592271875163 83300 +17592281838709 50200 +17592281838481 50100 +17592273785240 74100 +17592281838938 50200 +17592273912670 74500 +17592281837680 50100 +17592275419801 50000 +17592273917691 54100 +17592273917494 74500 +17592281838945 50200 +17592275419809 50000 +17592281838947 50200 +17592281837855 50100 +17592281837852 50100 +17592281839115 50200 +17592281837678 50100 +17592274432337 74100 +17592274358474 74600 +17592281838951 50200 +17592281838255 50100 +17592281838253 50100 +17592281838251 50100 +17592281839113 50200 +17592281839119 50200 +17592276004811 75050 +17592274215099 82100 +17592275241068 81160 +17592258927286 16300 +17592274551333 25200 +17592275106451 54300 +17592276004796 50000 +17592281838059 50100 +17592281838917 50200 +17592276005105 50000 +17592275080141 83400 +17592274928660 83300 +17592276004617 74200 +17592274909503 97200 +17592281838273 50100 +17592281838276 50100 +17592281838256 50100 +17592281838257 50100 +17592281838254 50100 +17592275080125 74100 +17592281838477 50100 +17592281838932 50200 +17592281838916 50200 +17592275103839 25200 +17592275079764 86500 +17592276864097 54100 +17592275402390 74600 +17592281838926 50200 +17592281838283 50100 +17592281838499 50100 +17592276004629 50000 +17592275241108 75300 +17592276004711 50000 +17592281839110 50200 +17592281837853 50100 +17592281837847 50100 +17592281837858 50100 +17592281838903 50200 +17592281837642 50100 +17592275605898 74100 +17592281838267 50100 +17592281838265 50100 +17592281838911 50200 +17592281837657 50100 +17592281837656 50100 +17592281837682 50100 +17592281837685 50100 +17592281837684 50100 +17592279497996 50000 +17592276141215 74610 +17592281838909 50200 +17592278071037 50000 +17592281838467 50100 +17592279795902 74100 +17592276001781 54000 +17592276864160 54100 +17592276015863 74600 +17592276136522 54300 +17592276141233 74100 +17592276643825 83300 +17592281837878 50100 +17592281837882 50100 +17592281838730 50200 +17592281837859 50100 +17592281837863 50100 +17592276570870 54300 +17592279498012 15400 +17592278071053 74700 +17592279498004 75050 +17592278071045 75050 +17592281838732 50200 +17592278070997 50000 +17592276554192 25200 +17592281838470 50100 +17592276552168 74600 +17592278071021 50000 +17592278569379 50000 +17592276681322 81110 +17592276837954 74100 +17592281838290 50100 +17592281838293 50100 +17592281838259 50100 +17592281838745 50200 +17592278071029 50000 +17592277169428 25200 +17592281838744 50200 +17592277187641 25200 +17592281838492 50100 +17592281838496 50100 +17592281838494 50100 +17592277284633 83400 +17592277309217 83400 +17592281837668 50100 +17592281837665 50100 +17592276767043 82100 +17592277971588 54300 +17592277628816 84200 +17592281837861 50100 +17592281837864 50100 +17592277506117 74100 +17592281838743 50200 +17592281838077 50100 +17592277991347 74600 +17592279497980 50000 +17592279497988 50000 +17592281838749 50200 +17592281838455 50100 +17592279497972 50000 +17592279497964 50000 +17592281839107 50200 +17592278281816 74100 +17592281837689 50100 +17592281839106 50200 +17592281838483 50100 +17592279497956 54100 +17592281839103 50200 +17592281838952 50200 +17592281838094 50100 +17592279256413 74100 +17592281838922 50200 +17592281838294 50100 +17592279256345 74610 +17592281838264 50100 +17592281838711 50200 +17592281838292 50100 +17592281838289 50100 +17592279449728 74100 +17592280158955 50000 +17592281837845 50100 +17592281837691 50100 +17592281838700 50200 +17592281838458 50100 +17592281838906 50200 +17592279751194 25200 +17592280137155 74100 +17592281894236 74600 +17592280036571 74600 +17592280138867 83300 +17592284783582 50200 +17592281245901 54300 +17592284783438 50100 +17592282669039 83400 +17592279464685 82100 +17592284783445 50100 +17592284783580 50200 +17592284783428 50100 +17592284783426 50100 +17592284783425 50100 +17592281245335 74100 +17592284783589 50200 +17592284783423 50100 +17592284783443 50100 +17592284783444 50100 +17592284783422 50100 +17592284783419 50100 +17592284783434 50100 +17592284783415 50100 +17592284783583 50200 +17592284783436 50100 +17592284783416 50100 +17592284783424 50100 +17592284783414 50100 +17592282574728 74100 +17592284783586 50200 +17592284783587 50200 +17592284783433 50100 +17592284783432 50100 +17592284783427 50100 +17592284783420 50100 +17592284783588 50200 +17592282917917 74100 +17592283254317 74610 +17592284783585 50200 +17592284783448 50100 +17592284783584 50200 +17592284783449 50100 +17592283440121 74100 +17592284783441 50100 +17592284783421 50100 +17592284783578 50200 +17592283458482 82100 +17592284783417 50100 +17592284783577 50200 +17592284783430 50100 +17592284783581 50200 +17592284783418 50100 +17592284783579 50200 +17592284783439 50100 +17592284783435 50100 +17592284783442 50100 +17592284783437 50100 +17592284783440 50100 +17592284783429 50100 +17592284783431 50100 +17592285086909 51200 +17592284783446 50100 +17592284783447 50100 +17592285086905 51200 +17592285085173 50000 +17592285085171 50000 +17592285153356 50000 +17592285301371 50000 +17592285778542 51200 +17592285301369 50000 +17592285782905 50000 +17592285778538 51200 +17592285933620 50000 +17592286014943 50000 +17592286014945 50000 +17592286352568 51200 +17592286126482 50000 +17592286215675 50000 +17592286352564 51200 +17592286355565 50000 +17592286355563 50000 +17592286355569 50000 +17592286355567 50000 +17592286576459 50000 +17592286576461 50000 +17592286576455 50000 +17592286576457 50000 +17592286656926 50000 +17592286656924 50000 +17592287042869 51200 +17592286726603 50000 +17592286726605 50000 +17592286726607 50000 +17592286844477 50000 +17592286969138 50000 +17592287047257 50000 +17592287047259 50000 +17592287042865 51200 +17592287133465 50000 +17592287133467 50000 +17592287212488 50000 +17592287314006 50000 +17592287413436 50000 +17592287413434 50000 +17592278070308 81140 +17592278070292 81140 +17592279266198 50000 +17592279266196 50000 +17592279266194 50000 +17592277973285 51200 +17592279266192 50000 +17592279266190 50000 +17592279266188 50000 +17592278070316 81140 +17592277973494 51200 +17592277973581 51200 +17592279266186 50000 +17592277992695 51200 +17592279266182 50000 +17592279266184 50000 +17592278587701 51200 +17592279266180 50000 +17592278587697 51200 +17592278587693 51200 +17592279266178 50000 +17592278689455 50000 +17592278920439 50000 +17592279257681 51200 +17592279017769 73200 +17592279256232 50000 +17592279257677 51200 +17592279257673 51200 +17592279324404 50000 +17592279449431 50000 +17592279795305 51200 +17592279555566 50000 +17592279795293 51200 +17592279755269 50000 +17592279859950 50000 +17592279960075 73200 +17592280673638 51200 +17592280673634 51200 +17592280131824 50000 +17592280673630 51200 +17592283748070 51200 +17592280652337 50000 +17592280652339 50000 +17592281210326 50000 +17592281680781 51200 +17592281441619 50000 +17592281680777 51200 +17592281680427 50000 +17592281771470 50000 +17592281771303 73200 +17592286727043 81110 +17592281980009 50000 +17592281980013 50000 +17592281980011 50000 +17592282560880 51200 +17592282560876 51200 +17592282558593 50000 +17592282558493 73200 +17592282669337 81110 +17592282669197 73200 +17592283202610 51200 +17592282907628 50000 +17592283014258 50000 +17592283014112 73200 +17592283202606 51200 +17592283195501 50000 +17592282558509 73200 +17592283748072 51200 +17592283439419 50000 +17592283748074 51200 +17592283733069 50000 +17592283748078 51200 +17592283907631 50000 +17592283907615 73200 +17592284012354 50000 +17592284376766 51200 +17592284322891 50000 +17592284376762 51200 +17592284454417 50000 +17592284454879 50000 +17592284454881 50000 +17592284454433 73200 +17592284454887 50000 +17592284454883 50000 +17592284454885 50000 +17592284656261 50000 +17592284725320 50000 +17592285094691 51200 +17592285094687 51200 +17592285166850 50000 +17592285085197 50000 +17592285085195 50000 +17592285094683 51200 +17592285467758 73200 +17592285798359 51200 +17592285301389 50000 +17592285798355 51200 +17592285797933 50000 +17592285782929 50000 +17592285934637 73200 +17592286053751 50000 +17592286361084 51200 +17592286014965 50000 +17592286126492 50000 +17592286726056 50000 +17592286361080 51200 +17592286355591 50000 +17592287075782 51200 +17592286726627 50000 +17592286722179 73200 +17592286969150 50000 +17592287047281 50000 +17592287075778 51200 +17592287047880 50000 +17592287148603 73200 +17592287314032 50000 +17592287413458 50000 +17592264489986 15300 +17592264489943 50000 +17592264944883 16300 +17592264945562 81300 +17592264945578 15300 +17592264945484 82100 +17592265864100 15300 +17592266259503 16300 +17592266259528 16300 +17592267442176 16300 +17592267675990 16300 +17592269750396 16300 +17592270896506 16300 +17592279814619 16300 +17592282003483 16300 +17592284669645 16300 +17592285214962 72180 +17592286132343 15300 +17592285095335 51200 +17592286360808 50000 +17592285095347 51200 +17592286360814 50000 +17592285095402 51200 +17592286360816 50000 +17592285783189 51200 +17592285783197 51200 +17592285783201 51200 +17592285783203 51200 +17592286360818 50000 +17592286360820 50000 +17592286350462 51200 +17592286350460 51200 +17592286350464 51200 +17592286360812 50000 +17592286360822 50000 +17592286350476 51200 +17592286360826 50000 +17592286360824 50000 +17592286360810 50000 +17592287041464 51200 +17592286360828 50000 +17592287041929 51200 +17592286592478 57100 +17592286652647 50000 +17592286719932 50000 +17592287042141 51200 +17592286836883 50000 +17592286967904 50000 +17592287076050 25250 +17592287041319 50000 +17592287149231 25250 +17592287285885 25200 +17592287308125 50000 +17592287427774 15400 +17592287429014 15600 +17592252831896 51200 +17592252831575 50000 +17592252831573 50000 +17592255212578 51200 +17592253307296 50000 +17592253307611 51200 +17592253307298 50000 +17592253732427 51200 +17592253274782 50000 +17592254099594 51200 +17592253705004 50000 +17592253769733 50000 +17592254099294 51200 +17592254074417 50000 +17592254618129 51200 +17592254607841 50000 +17592255054814 51200 +17592255054823 51200 +17592255641020 51200 +17592254996511 50000 +17592255213091 50000 +17592256181264 51200 +17592255596903 50000 +17592256193042 51200 +17592256157041 50000 +17592256684619 51200 +17592257222084 51200 +17592256680187 50000 +17592257244022 50000 +17592257210595 50000 +17592257773929 51200 +17592257774009 51200 +17592258203790 51200 +17592257751378 50000 +17592257871410 50000 +17592258229985 51200 +17592258792471 51200 +17592258183959 50000 +17592258286785 50000 +17592258286783 50000 +17592258286781 50000 +17592258286779 50000 +17592258286801 50000 +17592258286799 50000 +17592258286797 50000 +17592258286795 50000 +17592258286793 50000 +17592258286791 50000 +17592258286789 50000 +17592258286787 50000 +17592258286813 50000 +17592258286811 50000 +17592258286809 50000 +17592258286807 50000 +17592258286805 50000 +17592258286803 50000 +17592259266476 51200 +17592258765298 50000 +17592258837595 50000 +17592259754320 51200 +17592259234072 50000 +17592260239146 51200 +17592259738080 50000 +17592260190649 50000 +17592260920270 51200 +17592266483359 51200 +17592260894796 50000 +17592261466262 51200 +17592261408040 50000 +17592262376219 51200 +17592262376221 51200 +17592261975246 50000 +17592263257379 51200 +17592263234955 50000 +17592263862310 51200 +17592263862340 51200 +17592263862320 51200 +17592263866756 51200 +17592263838255 50000 +17592264401657 51200 +17592263884793 50000 +17592264162758 50000 +17592264401743 51200 +17592264933661 51200 +17592264379305 50000 +17592264707093 50000 +17592264945446 51200 +17592265506012 51200 +17592264909834 50000 +17592265506034 51200 +17592265274018 50000 +17592266199094 51200 +17592265421451 50000 +17592265530080 50000 +17592265530082 50000 +17592265530076 50000 +17592265530078 50000 +17592265530072 50000 +17592265530074 50000 +17592265530068 50000 +17592265530070 50000 +17592265530064 50000 +17592265530066 50000 +17592265530060 50000 +17592265530062 50000 +17592265530056 50000 +17592265530058 50000 +17592265530052 50000 +17592265530054 50000 +17592265530048 50000 +17592265530050 50000 +17592265530044 50000 +17592265530046 50000 +17592265530040 50000 +17592265530042 50000 +17592265530036 50000 +17592265530038 50000 +17592265530096 50000 +17592265530098 50000 +17592265530092 50000 +17592265530094 50000 +17592265530088 50000 +17592265530090 50000 +17592265530084 50000 +17592265530086 50000 +17592266199126 51200 +17592266199156 51200 +17592265836935 50000 +17592266796049 51200 +17592266186994 50000 +17592266796065 51200 +17592266588479 50000 +17592267931177 50000 +17592267931179 50000 +17592267240574 51200 +17592268661571 51200 +17592267240602 51200 +17592267931187 50000 +17592268661559 51200 +17592268661412 85100 +17592268661404 85100 +17592267850996 51200 +17592267931185 50000 +17592267851022 51200 +17592267931183 50000 +17592267931181 50000 +17592268499500 51200 +17592268013622 50000 +17592268499520 51200 +17592268232228 50000 +17592269106395 51200 +17592268486490 50000 +17592268561822 50000 +17592268654622 50000 +17592270318947 51200 +17592269108375 51200 +17592269108367 51200 +17592268882537 50000 +17592269108383 51200 +17592269105700 50000 +17592269637153 51200 +17592269492801 50000 +17592269634621 50000 +17592270311589 51200 +17592270031597 50000 +17592270855641 51200 +17592270290442 50000 +17592270549532 50000 +17592270647099 50000 +17592271502777 51200 +17592270850479 50000 +17592271502853 51200 +17592271184611 50000 +17592272048064 51200 +17592271454856 50000 +17592271751799 50000 +17592272048150 51200 +17592272079315 51200 +17592271986291 50000 +17592272691140 51200 +17592272405162 50000 +17592275504726 51200 +17592272651888 50000 +17592273464274 51200 +17592273171918 50000 +17592273486781 51200 +17592273460477 50000 +17592274169520 51200 +17592273548955 50000 +17592275504847 50000 +17592273622631 50000 +17592273873199 50000 +17592274176379 51200 +17592274852106 51200 +17592274008608 50000 +17592274852161 51200 +17592274494209 50000 +17592275340530 51200 +17592274848180 50000 +17592275340554 51200 +17592275166249 50000 +17592275233717 50000 +17592275322274 50000 +17592275904283 51200 +17592275475000 50000 +17592275948865 50000 +17592275669071 50000 +17592275786819 50000 +17592275894809 50000 +17592276552471 51200 +17592276211487 50000 +17592276552506 51200 +17592277210352 50000 +17592277210362 50000 +17592277210176 51200 +17592276544532 50000 +17592277210184 51200 +17592276633775 50000 +17592277210198 51200 +17592276930396 50000 +17592277164321 50000 +17592277979165 51200 +17592277283492 50000 +17592277283494 50000 +17592277283496 50000 +17592277283498 50000 +17592277283500 50000 +17592277283502 50000 +17592277283504 50000 +17592277283506 50000 +17592277283482 50000 +17592277283484 50000 +17592277283486 50000 +17592277283488 50000 +17592277283490 50000 +17592280035721 51200 +17592277979203 51200 +17592277979282 51200 +17592277568111 50000 +17592278568334 51200 +17592277960098 50000 +17592280035711 51200 +17592278568402 51200 +17592278336672 50000 +17592278568424 51200 +17592278565618 50000 +17592279257733 51200 +17592279257739 51200 +17592278911739 50000 +17592278911741 50000 +17592279013028 50000 +17592279257757 51200 +17592279254571 50000 +17592279788296 51200 +17592279555490 50000 +17592279788338 51200 +17592280673742 51200 +17592279748100 50000 +17592280673756 51200 +17592280362743 50000 +17592280677886 51200 +17592280650504 50000 +17592281680617 51200 +17592281680627 51200 +17592281333959 50000 +17592281675598 50000 +17592282560558 51200 +17592282575272 50000 +17592282575232 51200 +17592281878725 50000 +17592282576094 51200 +17592282125834 50000 +17592283202627 51200 +17592282558529 50000 +17592282558531 50000 +17592283014572 50000 +17592283202639 51200 +17592283187392 50000 +17592283748099 51200 +17592283748115 51200 +17592283532164 50000 +17592283733013 50000 +17592284131775 51200 +17592284321515 51200 +17592284104305 50000 +17592284318080 50000 +17592285095345 51200 +17592284724403 50000 +17592285095398 51200 +17592284822255 50000 +17592285085135 50000 +17592285783191 51200 +17592285783209 51200 +17592285535278 50000 +17592286354764 51200 +17592285778669 50000 +17592286354774 51200 +17592286126454 50000 +17592286364485 51200 +17592286349099 50000 +17592286349097 50000 +17592287075716 51200 +17592286838254 50000 +17592287075726 51200 +17592287047217 50000 +17592287204683 50000 +17592287313972 50000 +17592287402935 50000 +17592265232915 50000 +17592269436571 50000 +17592269634673 50000 +17592270710239 51200 +17592286655670 51200 +17592269693275 50000 +17592269932490 50000 +17592270710241 51200 +17592270031625 50000 +17592270150306 50000 +17592270150308 50000 +17592270292412 50000 +17592270292414 50000 +17592270710243 51200 +17592270472170 50000 +17592270560826 50000 +17592270652854 50000 +17592270652852 50000 +17592270710229 51200 +17592270856045 51200 +17592286655847 51200 +17592271503083 51200 +17592270851749 50000 +17592277181521 50000 +17592270927051 74700 +17592271078453 50000 +17592271503320 51200 +17592271186644 50000 +17592272060756 51200 +17592271456122 50000 +17592271456120 50000 +17592271456118 50000 +17592271456124 50000 +17592272060758 51200 +17592272060760 51200 +17592271644193 50000 +17592271644195 50000 +17592272048272 51200 +17592272048282 51200 +17592271875381 50000 +17592286655851 51200 +17592272060808 51200 +17592271986357 50000 +17592272691298 51200 +17592272307146 50000 +17592272307148 50000 +17592272413733 50000 +17592272692147 51200 +17592272692237 51200 +17592272651940 50000 +17592272922727 50000 +17592272922729 50000 +17592273050716 50000 +17592273050714 50000 +17592273188503 50000 +17592273188505 50000 +17592274852384 51200 +17592273344228 50000 +17592273463309 50000 +17592274852386 51200 +17592273628408 50000 +17592277182087 50000 +17592273875465 50000 +17592274211545 51200 +17592286655855 51200 +17592274211565 51200 +17592274012074 50000 +17592274852214 51200 +17592274348813 50000 +17592274348815 50000 +17592274494997 50000 +17592274852354 51200 +17592274848236 50000 +17592274848234 50000 +17592274971237 50000 +17592275342601 51200 +17592275169812 50000 +17592275342631 51200 +17592275326409 50000 +17592275373371 50000 +17592275941614 51200 +17592275943164 51200 +17592275699998 50000 +17592275943658 51200 +17592275944108 51200 +17592275899617 50000 +17592276552572 51200 +17592276552778 51200 +17592276111798 50000 +17592277210382 51200 +17592276545221 50000 +17592276638771 50000 +17592276732417 50000 +17592276732415 50000 +17592277210491 51200 +17592276837483 50000 +17592277210589 51200 +17592276936534 50000 +17592276936532 50000 +17592277978749 51200 +17592277978593 51200 +17592277169328 50000 +17592277169326 50000 +17592277978705 51200 +17592286655859 51200 +17592277464488 50000 +17592277978810 51200 +17592279267850 51200 +17592277747810 50000 +17592278568463 51200 +17592277971666 50000 +17592278259371 50000 +17592278568543 51200 +17592279267768 51200 +17592278573924 50000 +17592278825987 50000 +17592278920435 50000 +17592279267962 51200 +17592279267982 51200 +17592279788384 51200 +17592279324396 50000 +17592279555556 50000 +17592279788521 51200 +17592279755265 50000 +17592280675343 51200 +17592280131820 50000 +17592280131818 50000 +17592281696693 51200 +17592280652333 50000 +17592281210322 50000 +17592281696697 51200 +17592281696701 51200 +17592281680423 50000 +17592281878757 50000 +17592281980003 50000 +17592281980001 50000 +17592282560277 51200 +17592282558589 50000 +17592283163259 51200 +17592282907618 50000 +17592283163263 51200 +17592283699035 51200 +17592283699062 51200 +17592283439413 50000 +17592283623901 50000 +17592283733065 50000 +17592284321601 51200 +17592283909009 50000 +17592284012350 50000 +17592284321605 51200 +17592284321609 51200 +17592284321613 51200 +17592284322887 50000 +17592284945315 51200 +17592284454863 50000 +17592284454859 50000 +17592284454861 50000 +17592284454855 50000 +17592284454857 50000 +17592284454853 50000 +17592284656253 50000 +17592284656255 50000 +17592284725316 50000 +17592284725314 50000 +17592284945311 51200 +17592285087333 51200 +17592285085191 50000 +17592285153360 50000 +17592285778193 51200 +17592285301385 50000 +17592286350739 51200 +17592285782925 50000 +17592285933622 50000 +17592286350735 51200 +17592286014961 50000 +17592286126488 50000 +17592286215679 50000 +17592286352605 51200 +17592286355587 50000 +17592287012207 51200 +17592286726623 50000 +17592286844485 50000 +17592287047277 50000 +17592287212498 50000 +17592287314026 50000 +17592287413452 50000 +17592253480881 82100 +17592253480889 82100 +17592259469602 83100 +17592257973427 81160 +17592257962715 74800 +17592258043446 97200 +17592258928730 82100 +17592260437864 97200 +17592260941354 15600 +17592260443021 82100 +17592261009985 15300 +17592263895866 82100 +17592266411346 82100 +17592269152745 82100 +17592271487088 82100 +17592274215107 82100 +17592276692823 81110 +17592276860882 82100 +17592279465207 82100 +17592279855651 15300 +17592283458514 82100 +17592262632225 50000 +17592263277281 51200 +17592263277297 51200 +17592262632235 50000 +17592263277309 51200 +17592264379138 51200 +17592262632245 50000 +17592266311806 50000 +17592262711722 51200 +17592262711724 51200 +17592266311747 50000 +17592263257274 51200 +17592266311756 50000 +17592266311706 50000 +17592263841556 51200 +17592263504220 50000 +17592263841552 51200 +17592263838249 50000 +17592264379140 51200 +17592264050072 50000 +17592264379134 51200 +17592264379956 50000 +17592264910174 51200 +17592264535146 50000 +17592264613907 50000 +17592264933994 51200 +17592264910188 51200 +17592264910170 51200 +17592264910408 50000 +17592265421085 51200 +17592265094801 50000 +17592265178569 50000 +17592265232969 74800 +17592265421081 51200 +17592265232930 74800 +17592265470758 50000 +17592266181147 51200 +17592265728613 50000 +17592266181143 51200 +17592266186986 50000 +17592266775132 51200 +17592266259197 50000 +17592266475949 50000 +17592266475947 50000 +17592266475951 50000 +17592266475941 50000 +17592266475939 50000 +17592266475945 50000 +17592266475943 50000 +17592266475901 50000 +17592266475899 50000 +17592266475905 50000 +17592266475903 50000 +17592266475897 50000 +17592266475917 50000 +17592266475915 50000 +17592266475921 50000 +17592266475919 50000 +17592266475909 50000 +17592266475907 50000 +17592266475913 50000 +17592266475911 50000 +17592266475933 50000 +17592266475931 50000 +17592266475937 50000 +17592266475935 50000 +17592266475925 50000 +17592266475923 50000 +17592266475929 50000 +17592266475927 50000 +17592266775138 51200 +17592266774719 50000 +17592267234820 51200 +17592266982740 50000 +17592267234816 51200 +17592269358864 50000 +17592267235134 50000 +17592267818055 51200 +17592267518415 50000 +17592267818057 51200 +17592267830366 50000 +17592268460363 51200 +17592268015369 50000 +17592268105330 50000 +17592268460359 51200 +17592268486542 50000 +17592270851354 51200 +17592269100416 51200 +17592268576819 50000 +17592268745488 50000 +17592268745490 50000 +17592268745484 50000 +17592268745486 50000 +17592268745480 50000 +17592268745482 50000 +17592268745476 50000 +17592268745478 50000 +17592268745500 50000 +17592268745496 50000 +17592268745498 50000 +17592268745492 50000 +17592268745494 50000 +17592268745472 50000 +17592268745474 50000 +17592268745468 50000 +17592268745470 50000 +17592270851346 51200 +17592269100434 51200 +17592269100411 51200 +17592269100407 51200 +17592269106856 50000 +17592269209783 50000 +17592269633710 51200 +17592269335728 50000 +17592269436569 50000 +17592269633704 51200 +17592269634671 50000 +17592270288121 51200 +17592269833033 50000 +17592269932486 50000 +17592269932488 50000 +17592270288117 51200 +17592270150304 50000 +17592270292408 50000 +17592270292410 50000 +17592270851358 51200 +17592270560824 50000 +17592270851350 51200 +17592270652850 50000 +17592270652848 50000 +17592270851747 50000 +17592271455370 51200 +17592271078451 50000 +17592271455366 51200 +17592271456116 50000 +17592271983542 51200 +17592271759250 50000 +17592271887694 74800 +17592271983545 51200 +17592271986355 50000 +17592272107180 50000 +17592272648916 51200 +17592272307144 50000 +17592272307142 50000 +17592272648912 51200 +17592272651938 50000 +17592273459933 51200 +17592273050712 50000 +17592273050710 50000 +17592273459937 51200 +17592273463307 50000 +17592274009116 51200 +17592273748302 50000 +17592274009112 51200 +17592273876174 72180 +17592273945766 50000 +17592274012072 50000 +17592274847063 51200 +17592274405952 50000 +17592274847069 51200 +17592274847067 51200 +17592274847065 51200 +17592274848232 50000 +17592275322442 51200 +17592274971231 50000 +17592274971233 50000 +17592274971235 50000 +17592275080317 50000 +17592275322446 51200 +17592275169810 50000 +17592275326407 50000 +17592275895403 51200 +17592275475024 50000 +17592275576148 50000 +17592275895405 51200 +17592275899615 50000 +17592276548098 51200 +17592276111796 50000 +17592276548102 51200 +17592276545219 50000 +17592277164497 51200 +17592276732413 50000 +17592276837481 50000 +17592277164493 51200 +17592277169324 50000 +17592277971177 51200 +17592277464486 50000 +17592277971173 51200 +17592278565568 51200 +17592278569395 50000 +17592278569411 50000 +17592278565564 51200 +17592278569403 50000 +17592278573922 50000 +17592279251491 51200 +17592278920433 50000 +17592281894918 50000 +17592281894926 50000 +17592279251487 51200 +17592279256228 50000 +17592279748045 51200 +17592279555554 50000 +17592279748041 51200 +17592279755263 50000 +17592280651050 51200 +17592280651056 51200 +17592280247514 50000 +17592280652331 50000 +17592281675494 51200 +17592281675498 51200 +17592281675490 51200 +17592281342386 50000 +17592281342384 50000 +17592281680421 50000 +17592281771464 50000 +17592281771466 50000 +17592282373185 51200 +17592281878755 50000 +17592282373189 51200 +17592282125856 50000 +17592282373181 51200 +17592282231510 50000 +17592282558587 50000 +17592283188000 51200 +17592283014592 50000 +17592283187996 51200 +17592283195493 50000 +17592283733863 51200 +17592283733867 51200 +17592283532190 50000 +17592287427726 16100 +17592283733063 50000 +17592284317848 51200 +17592284317852 51200 +17592284105289 50000 +17592284322885 50000 +17592285086854 51200 +17592284454847 50000 +17592284454849 50000 +17592284454843 50000 +17592284454845 50000 +17592284454851 50000 +17592284656249 50000 +17592284656251 50000 +17592285086858 51200 +17592284822283 50000 +17592285085189 50000 +17592285778477 51200 +17592285535314 50000 +17592285778481 51200 +17592285782923 50000 +17592285842564 50000 +17592286352516 51200 +17592286352520 51200 +17592286126486 50000 +17592286355585 50000 +17592287042820 51200 +17592286844483 50000 +17592287042824 51200 +17592287047275 50000 +17592287212496 50000 +17592287413450 50000 +17592252277635 50000 +17592252277633 50000 +17592252437091 51200 +17592283833323 74800 +17592283834085 25200 +17592283834123 51200 +17592283834075 25200 +17592283834055 25200 +17592284039633 50000 +17592284039229 74700 +17592283831224 50000 +17592283831216 50000 +17592283831238 50000 +17592252437087 51200 +17592252395347 50000 +17592258578086 51200 +17592252845875 51200 +17592252567255 50000 +17592252635318 50000 +17592252635320 50000 +17592255256790 50000 +17592252694204 50000 +17592252845871 51200 +17592252845867 51200 +17592252830859 50000 +17592252870536 50000 +17592253316648 51200 +17592253042468 50000 +17592258578151 51200 +17592253042470 50000 +17592253085971 50000 +17592255256314 50000 +17592253316629 51200 +17592253316625 51200 +17592253275090 50000 +17592253275092 50000 +17592253339701 50000 +17592253750325 51200 +17592253750329 51200 +17592253409321 50000 +17592253409319 50000 +17592253409323 50000 +17592253550037 50000 +17592253750321 51200 +17592253750317 51200 +17592253704992 50000 +17592253836273 50000 +17592254099182 51200 +17592254099172 51200 +17592253961668 50000 +17592253969942 34000 +17592254099192 51200 +17592254074407 50000 +17592254099202 51200 +17592254621376 51200 +17592254621372 51200 +17592254237626 50000 +17592254379509 50000 +17592254379507 50000 +17592254621368 51200 +17592254612821 50000 +17592254621364 51200 +17592258578234 51200 +17592254737380 50000 +17592255089311 51200 +17592255089307 51200 +17592254869089 50000 +17592255089303 51200 +17592255032443 50000 +17592255089299 51200 +17592255661770 51200 +17592255211792 50000 +17592255407596 50000 +17592255661766 51200 +17592255661762 51200 +17592255661758 51200 +17592255596883 50000 +17592258578386 51200 +17592256193149 51200 +17592255834955 50000 +17592255984033 50000 +17592256193146 51200 +17592256157023 50000 +17592256193142 51200 +17592256292158 50000 +17592256709431 51200 +17592256709427 51200 +17592256434241 50000 +17592256709423 51200 +17592256680167 50000 +17592256709419 51200 +17592257221776 51200 +17592256808144 50000 +17592256808142 50000 +17592257221819 51200 +17592256888778 50000 +17592256986753 50000 +17592256986751 50000 +17592257222043 51200 +17592257773627 51200 +17592257243840 51200 +17592257211268 50000 +17592286721813 51200 +17592286721815 51200 +17592257386111 50000 +17592257584845 50000 +17592286721817 51200 +17592258225328 51200 +17592257751354 50000 +17592257751356 50000 +17592258225324 51200 +17592257878524 50000 +17592258009880 50000 +17592258225320 51200 +17592258225316 51200 +17592286721819 51200 +17592258184656 50000 +17592258184654 50000 +17592258358366 50000 +17592258792402 51200 +17592263061198 50000 +17592258578931 50000 +17592258663459 50000 +17592258792412 51200 +17592258792422 51200 +17592258765806 50000 +17592259265640 51200 +17592258901100 50000 +17592259063667 50000 +17592259063665 50000 +17592259265650 51200 +17592259265660 51200 +17592259234052 50000 +17592259804362 51200 +17592259804364 51200 +17592259384469 50000 +17592259464755 50000 +17592263061395 50000 +17592263061324 50000 +17592259532744 50000 +17592259804358 51200 +17592259804354 51200 +17592259804350 51200 +17592259739181 50000 +17592259888219 50000 +17592260240012 51200 +17592260068996 50000 +17592260068998 50000 +17592260151172 50000 +17592260151170 50000 +17592260240007 51200 +17592260240004 51200 +17592260190625 50000 +17592260190623 50000 +17592260240000 51200 +17592260920468 51200 +17592260920458 51200 +17592260941250 51200 +17592260388799 50000 +17592260664517 50000 +17592260664519 50000 +17592260920486 51200 +17592260920496 51200 +17592260898183 50000 +17592261044055 50000 +17592261465962 51200 +17592261208222 50000 +17592263061244 50000 +17592261466093 51200 +17592261466083 51200 +17592261466163 51200 +17592261408960 50000 +17592261646110 50000 +17592262376324 51200 +17592262376326 51200 +17592261745327 50000 +17592262376328 51200 +17592261873024 50000 +17592262376330 51200 +17592264402027 51200 +17592261976649 50000 +17592261976647 50000 +17592262376333 51200 +17592262753549 50000 +17592263257033 51200 +17592262994502 50000 +17592263257294 51200 +17592263257324 51200 +17592263237768 50000 +17592263862513 51200 +17592263420445 50000 +17592263622867 50000 +17592263862509 51200 +17592263862501 51200 +17592263862505 51200 +17592263838233 50000 +17592264401920 51200 +17592263986359 50000 +17592264401930 51200 +17592264162750 50000 +17592264402127 51200 +17592264402137 51200 +17592264402267 51200 +17592264379940 50000 +17592264535140 50000 +17592264945470 51200 +17592264707085 50000 +17592264933862 51200 +17592264910390 50000 +17592264933872 51200 +17592265505936 51200 +17592265094793 50000 +17592265094791 50000 +17592265280152 50000 +17592265505928 51200 +17592265335479 50000 +17592265505914 51200 +17592265470742 50000 +17592265532387 50000 +17592266210942 51200 +17592265619395 50000 +17592266199285 51200 +17592265838066 50000 +17592266199403 51200 +17592266210938 51200 +17592266210934 51200 +17592266186968 50000 +17592266259175 50000 +17592266796177 51200 +17592268178898 50000 +17592266475373 50000 +17592266475371 50000 +17592266475377 50000 +17592266475375 50000 +17592266475365 50000 +17592266475363 50000 +17592266475369 50000 +17592266475367 50000 +17592266475389 50000 +17592266475387 50000 +17592266475393 50000 +17592266475391 50000 +17592266475381 50000 +17592266475379 50000 +17592266475385 50000 +17592266475383 50000 +17592266475405 50000 +17592266475403 50000 +17592266475409 50000 +17592266475407 50000 +17592266475397 50000 +17592266475395 50000 +17592266475401 50000 +17592266475399 50000 +17592266475421 50000 +17592266475419 50000 +17592266475425 50000 +17592266475423 50000 +17592266475413 50000 +17592266475411 50000 +17592266475417 50000 +17592266475415 50000 +17592266475329 50000 +17592266475341 50000 +17592266475339 50000 +17592266475345 50000 +17592266475343 50000 +17592266475333 50000 +17592266475331 50000 +17592266475337 50000 +17592266475335 50000 +17592266475357 50000 +17592266475355 50000 +17592266475361 50000 +17592266475359 50000 +17592266475349 50000 +17592266475347 50000 +17592266475353 50000 +17592266475351 50000 +17592266796181 51200 +17592266796173 51200 +17592266687230 50000 +17592266687228 50000 +17592266796169 51200 +17592266774703 50000 +17592267240448 51200 +17592267240452 51200 +17592266982726 50000 +17592267036727 50000 +17592267240444 51200 +17592267240440 51200 +17592267235118 50000 +17592270855853 51200 +17592267889880 51200 +17592267405310 50000 +17592267630054 50000 +17592267889872 51200 +17592267889876 51200 +17592267889868 51200 +17592267830350 50000 +17592270698025 50000 +17592267928195 50000 +17592267928163 50000 +17592267928165 50000 +17592267928167 50000 +17592267928169 50000 +17592267928171 50000 +17592267928173 50000 +17592267928175 50000 +17592267928177 50000 +17592267928179 50000 +17592267928181 50000 +17592267928183 50000 +17592267928185 50000 +17592267928187 50000 +17592267928189 50000 +17592267928191 50000 +17592267928193 50000 +17592267928153 50000 +17592267928155 50000 +17592267928157 50000 +17592267928159 50000 +17592267928161 50000 +17592270697978 50000 +17592268015365 50000 +17592268015363 50000 +17592268530160 51200 +17592268105312 50000 +17592268236783 50000 +17592268530156 51200 +17592268486526 50000 +17592268530152 51200 +17592268576785 50000 +17592268576783 50000 +17592268576787 50000 +17592269122936 51200 +17592268654644 50000 +17592268745196 50000 +17592268745194 50000 +17592268892324 50000 +17592268987645 50000 +17592269106834 50000 +17592269123715 51200 +17592269644957 51200 +17592269335710 50000 +17592269644952 51200 +17592269335708 50000 +17592270697935 50000 +17592269498888 50000 +17592269644948 51200 +17592269644945 51200 +17592269634655 50000 +17592270353813 51200 +17592269833013 50000 +17592269833011 50000 +17592270031619 50000 +17592270353808 51200 +17592270353804 51200 +17592270353801 51200 +17592270292384 50000 +17592270855886 51200 +17592270472160 50000 +17592270652812 50000 +17592270856070 51200 +17592270851733 50000 +17592270896081 51200 +17592271503128 51200 +17592271011617 50000 +17592271503219 51200 +17592271503209 51200 +17592271186630 50000 +17592271518586 51200 +17592271315565 50000 +17592271456096 50000 +17592271570255 50000 +17592271644177 50000 +17592272060778 51200 +17592271875373 50000 +17592272074969 51200 +17592271986329 50000 +17592272074965 51200 +17592272705089 51200 +17592272216953 50000 +17592272307122 50000 +17592272413715 50000 +17592272413717 50000 +17592272705085 51200 +17592272651920 50000 +17592272692177 51200 +17592272837876 97200 +17592273464550 51200 +17592272922715 50000 +17592272922713 50000 +17592273050686 50000 +17592284039464 50000 +17592273212531 74800 +17592273188491 50000 +17592273188493 50000 +17592273212242 97200 +17592273486835 51200 +17592273486831 51200 +17592273463289 50000 +17592273463291 50000 +17592273628392 50000 +17592274211425 51200 +17592277766786 50000 +17592273904733 74800 +17592273875455 50000 +17592274211585 51200 +17592274012052 50000 +17592274211595 51200 +17592274266654 50000 +17592274348803 50000 +17592274852399 51200 +17592274494993 50000 +17592274879007 51200 +17592274789182 74800 +17592274848212 50000 +17592274879003 51200 +17592274878999 51200 +17592275326231 51200 +17592274971183 50000 +17592274971185 50000 +17592274971179 50000 +17592274971181 50000 +17592275169796 50000 +17592275904181 51200 +17592275326383 50000 +17592275904183 51200 +17592275373363 50000 +17592275904189 51200 +17592275904187 51200 +17592275904185 51200 +17592275475016 50000 +17592275699982 50000 +17592275904191 51200 +17592275788375 74800 +17592275899595 50000 +17592275904177 51200 +17592275986728 50000 +17592277978771 51200 +17592277978769 51200 +17592276035738 50000 +17592276220854 50000 +17592276577546 51200 +17592276577550 51200 +17592276362653 50000 +17592276577542 51200 +17592276577538 51200 +17592276545199 50000 +17592277210299 51200 +17592277210295 51200 +17592276732401 50000 +17592277032149 50000 +17592277210291 51200 +17592277210287 51200 +17592277283606 50000 +17592277370327 50000 +17592277495497 81140 +17592277495481 12400 +17592277991398 51200 +17592277747794 50000 +17592277991394 51200 +17592277991374 51200 +17592277971644 50000 +17592278070760 50000 +17592278587632 51200 +17592278568533 51200 +17592278184675 50000 +17592278184677 50000 +17592278347116 50000 +17592278587628 51200 +17592278568693 51200 +17592278568703 51200 +17592278573900 50000 +17592278825973 50000 +17592279257616 51200 +17592278920411 50000 +17592279017857 50000 +17592279257612 51200 +17592279256206 50000 +17592279257608 51200 +17592279324374 50000 +17592279449415 50000 +17592279449417 50000 +17592279795198 51200 +17592279795193 51200 +17592279795190 51200 +17592279755239 50000 +17592280673696 51200 +17592279950202 50000 +17592280247508 50000 +17592280673692 51200 +17592280673688 51200 +17592280652303 50000 +17592280751380 50000 +17592280850162 50000 +17592280850164 50000 +17592281680725 51200 +17592281342370 50000 +17592281342374 50000 +17592281342372 50000 +17592282560790 51200 +17592282560792 51200 +17592282560794 51200 +17592281680393 50000 +17592281771434 50000 +17592281771436 50000 +17592281771438 50000 +17592282560796 51200 +17592281878741 50000 +17592281979971 50000 +17592282125852 50000 +17592282560786 51200 +17592282560782 51200 +17592282558565 50000 +17592283202545 51200 +17592282798248 50000 +17592283014588 50000 +17592283202541 51200 +17592283748029 51200 +17592283341706 50000 +17592283532184 50000 +17592283748025 51200 +17592283733041 50000 +17592283748021 51200 +17592283748017 51200 +17592284376705 51200 +17592283909003 50000 +17592284105285 50000 +17592284376701 51200 +17592284322863 50000 +17592284376697 51200 +17592284454719 50000 +17592284454721 50000 +17592284454715 50000 +17592284454717 50000 +17592284454711 50000 +17592284454713 50000 +17592284454707 50000 +17592284454709 50000 +17592284454705 50000 +17592285094638 51200 +17592284656205 50000 +17592284656207 50000 +17592284656209 50000 +17592284822277 50000 +17592284917464 50000 +17592285094640 51200 +17592285085165 50000 +17592285094634 51200 +17592285153352 50000 +17592285153354 50000 +17592285798279 51200 +17592285242057 50000 +17592285535300 50000 +17592285798275 51200 +17592285798251 51200 +17592285798255 51200 +17592285782899 50000 +17592286361153 51200 +17592285933616 50000 +17592286126480 50000 +17592286361149 51200 +17592286361145 51200 +17592286355557 50000 +17592286721794 51200 +17592286656922 50000 +17592286844475 50000 +17592287075854 51200 +17592287075850 51200 +17592287047251 50000 +17592287212486 50000 +17592287413426 50000 +17592258052488 16100 +17592258766090 50000 +17592258766216 51200 +17592258766088 50000 +17592258052504 16100 +17592258766086 50000 +17592258766224 51200 +17592258766084 50000 +17592258766139 51200 +17592258766082 50000 +17592258766080 50000 +17592258766135 51200 +17592258052520 16100 +17592258766131 51200 +17592259276778 50000 +17592259276786 50000 +17592258766127 51200 +17592258766078 50000 +17592258766232 51200 +17592259276768 50000 +17592259267239 51200 +17592258967621 50000 +17592259267235 51200 +17592259146770 25200 +17592259141187 25200 +17592259155928 25200 +17592259156029 25200 +17592259156051 25200 +17592259155984 25200 +17592259164893 25200 +17592259165017 25200 +17592259164998 25200 +17592259164930 25200 +17592259164912 25200 +17592259234064 50000 +17592259313473 15300 +17592259313450 15300 +17592259779061 51200 +17592259419336 74800 +17592259464765 50000 +17592259532752 50000 +17592259779071 51200 +17592259739193 50000 +17592260239728 51200 +17592259973228 50000 +17592259973230 50000 +17592260239738 51200 +17592260133420 25200 +17592260211161 25200 +17592260190637 50000 +17592260190639 50000 +17592260304916 50000 +17592260920236 51200 +17592260500879 50000 +17592260920246 51200 +17592262670255 51200 +17592261074022 82100 +17592261123441 50000 +17592261466053 51200 +17592262398302 51200 +17592262670257 51200 +17592262398730 51200 +17592265633778 73000 +17592265633770 73000 +17592265633860 81120 +17592266186980 50000 +17592266259191 50000 +17592278259359 50000 +17592278347120 50000 +17592278439366 50000 +17592258567235 51200 +17592252490079 51200 +17592287360118 50000 +17592258569839 51200 +17592258568847 51200 +17592258566922 51200 +17592252395337 50000 +17592252490075 51200 +17592252635296 50000 +17592252845703 51200 +17592252694198 50000 +17592252845699 51200 +17592252832217 82100 +17592252830849 50000 +17592252870524 50000 +17592252870522 50000 +17592253042458 50000 +17592253308443 51200 +17592253042460 50000 +17592253308439 51200 +17592253169947 50000 +17592253275062 50000 +17592253275064 50000 +17592253732078 51200 +17592253409305 50000 +17592253732088 51200 +17592253471297 50000 +17592253732098 51200 +17592253704980 50000 +17592254098949 51200 +17592253903999 50000 +17592254098959 51200 +17592253969961 73300 +17592254098970 51200 +17592254074397 50000 +17592254617262 51200 +17592254313967 50000 +17592254617272 51200 +17592254617282 51200 +17592254617292 51200 +17592254618765 82100 +17592254612805 50000 +17592255054423 51200 +17592254832022 50000 +17592255054433 51200 +17592255054443 51200 +17592255032427 50000 +17592255638234 51200 +17592255313037 50000 +17592255638244 51200 +17592255638471 51200 +17592255596865 50000 +17592256181137 51200 +17592258569928 51200 +17592258570058 51200 +17592255924156 50000 +17592256181147 51200 +17592256181157 51200 +17592256050348 50000 +17592256181167 51200 +17592256157007 50000 +17592256683931 51200 +17592256684050 51200 +17592256354394 50000 +17592256684067 51200 +17592256680147 50000 +17592257221789 51200 +17592257221870 51200 +17592256888756 50000 +17592256888754 50000 +17592256986745 50000 +17592257222033 51200 +17592257068403 74800 +17592257211252 50000 +17592257773697 51200 +17592258577552 50000 +17592258570151 50000 +17592258570133 50000 +17592257773738 51200 +17592257483510 50000 +17592257483508 50000 +17592257483514 50000 +17592257483512 50000 +17592257631666 82100 +17592257773851 51200 +17592257751334 50000 +17592258225217 51200 +17592257878510 50000 +17592258225213 51200 +17592257951948 50000 +17592258225209 51200 +17592258184634 50000 +17592258792271 51200 +17592258612649 74700 +17592258447115 50000 +17592258792281 51200 +17592258663455 50000 +17592258792291 51200 +17592258765790 50000 +17592259265537 51200 +17592259265547 51200 +17592258967601 50000 +17592259265557 51200 +17592259234036 50000 +17592259753924 51200 +17592259313611 15200 +17592259384797 74700 +17592259464735 50000 +17592259753934 51200 +17592259753944 51200 +17592259739165 50000 +17592260239608 51200 +17592259973204 50000 +17592259973206 50000 +17592260239618 51200 +17592260105083 25200 +17592260239628 51200 +17592260190605 50000 +17592260190607 50000 +17592260211177 25200 +17592260369991 25200 +17592260920080 51200 +17592260500855 50000 +17592260579407 82100 +17592260579540 74700 +17592260579447 82100 +17592260920090 51200 +17592260664509 50000 +17592260920100 51200 +17592260898167 50000 +17592261465952 51200 +17592261123421 50000 +17592261466012 51200 +17592261234622 74710 +17592261208198 50000 +17592261208196 50000 +17592261466063 51200 +17592261408942 50000 +17592262398324 51200 +17592261646098 50000 +17592261745311 50000 +17592262398473 51200 +17592262398916 51200 +17592262001348 82100 +17592261976627 50000 +17592262686250 74600 +17592263257003 51200 +17592263257154 51200 +17592262874865 50000 +17592263257284 51200 +17592263266261 72710 +17592263237752 50000 +17592263266277 72710 +17592263866514 51200 +17592263866565 51200 +17592263504192 50000 +17592264402002 51200 +17592264402000 51200 +17592263838217 50000 +17592264401900 51200 +17592264401970 51200 +17592264401980 51200 +17592264050046 50000 +17592266830625 51200 +17592264402107 51200 +17592264379924 50000 +17592264933832 51200 +17592264613875 50000 +17592264934024 51200 +17592264933852 51200 +17592264910372 50000 +17592266830627 51200 +17592265178539 50000 +17592266830629 51200 +17592265506000 51200 +17592265474742 25200 +17592265470726 50000 +17592266199246 51200 +17592265532379 50000 +17592265632993 82100 +17592265632977 82100 +17592266199325 51200 +17592265728585 50000 +17592265838056 50000 +17592266199393 51200 +17592266186950 50000 +17592266259155 50000 +17592266830497 51200 +17592270697424 50000 +17592266474721 50000 +17592266474719 50000 +17592266474733 50000 +17592266474731 50000 +17592266474737 50000 +17592266474735 50000 +17592266474725 50000 +17592266474723 50000 +17592266474729 50000 +17592266474727 50000 +17592266474749 50000 +17592266474747 50000 +17592266474753 50000 +17592266474751 50000 +17592266474741 50000 +17592266474739 50000 +17592266474745 50000 +17592266474743 50000 +17592266474765 50000 +17592266474763 50000 +17592266474769 50000 +17592266474767 50000 +17592266474757 50000 +17592266474755 50000 +17592266474761 50000 +17592266474759 50000 +17592266474773 50000 +17592266474771 50000 +17592266830547 51200 +17592266830593 51200 +17592266774687 50000 +17592267243739 51200 +17592266982712 50000 +17592267243770 51200 +17592267243828 51200 +17592267235102 50000 +17592267851420 51200 +17592267851440 51200 +17592267518387 50000 +17592267708444 82100 +17592267851534 51200 +17592267830330 50000 +17592267927875 50000 +17592267927877 50000 +17592267927879 50000 +17592267927881 50000 +17592267927883 50000 +17592267927885 50000 +17592267927887 50000 +17592267927889 50000 +17592267927891 50000 +17592267927893 50000 +17592267927895 50000 +17592267927897 50000 +17592267927899 50000 +17592267927901 50000 +17592267927871 50000 +17592267927873 50000 +17592268499815 51200 +17592268105294 50000 +17592268499861 51200 +17592268499921 51200 +17592268486510 50000 +17592269122867 51200 +17592268576747 50000 +17592268576745 50000 +17592268654634 50000 +17592269123161 51200 +17592268745164 50000 +17592268745160 50000 +17592268745162 50000 +17592269123688 51200 +17592269106816 50000 +17592270696819 50000 +17592269637247 51200 +17592269335686 50000 +17592269637307 51200 +17592269436541 50000 +17592269637367 51200 +17592269634639 50000 +17592270311849 51200 +17592269832989 50000 +17592269932446 50000 +17592270312035 51200 +17592270312214 51200 +17592270292366 50000 +17592270334134 74700 +17592270855827 51200 +17592270334150 82100 +17592270855931 51200 +17592270560794 50000 +17592270652758 50000 +17592270652756 50000 +17592270856000 51200 +17592270670524 86200 +17592270856035 51200 +17592270851717 50000 +17592271503148 51200 +17592271078423 50000 +17592271503240 51200 +17592271503346 51200 +17592271456074 50000 +17592272048240 51200 +17592272048250 51200 +17592271759222 50000 +17592272048303 51200 +17592272060788 51200 +17592271986309 50000 +17592272691338 51200 +17592272691378 51200 +17592272513219 50000 +17592272651902 50000 +17592273464450 51200 +17592273050664 50000 +17592273464470 51200 +17592273464813 51200 +17592273463271 50000 +17592274209249 51200 +17592273683030 82100 +17592273748270 50000 +17592274211475 51200 +17592274211535 51200 +17592273945758 50000 +17592274211555 51200 +17592274012034 50000 +17592274852264 51200 +17592274852304 51200 +17592274405916 50000 +17592274852364 51200 +17592275342327 51200 +17592274848196 50000 +17592274971131 50000 +17592274971133 50000 +17592274971129 50000 +17592275342432 51200 +17592275080285 50000 +17592277750286 50000 +17592275342611 51200 +17592275943828 51200 +17592275326363 50000 +17592275941567 51200 +17592275475008 50000 +17592275699972 50000 +17592275943614 51200 +17592275899575 50000 +17592276552620 51200 +17592276552808 51200 +17592276111758 50000 +17592276553028 51200 +17592276545179 50000 +17592277210458 51200 +17592277210468 51200 +17592287012254 50000 +17592276732395 50000 +17592277210521 51200 +17592276837447 50000 +17592276839166 82100 +17592276936522 50000 +17592277210609 51200 +17592277125845 82100 +17592277169282 50000 +17592277978640 51200 +17592277464454 50000 +17592277495527 81140 +17592277978840 51200 +17592277747776 50000 +17592277978910 51200 +17592277971626 50000 +17592278568513 51200 +17592278568583 51200 +17592278281760 15200 +17592278259337 50000 +17592278568653 51200 +17592278568663 51200 +17592278573882 50000 +17592279267836 51200 +17592278825965 50000 +17592278920397 50000 +17592279267914 51200 +17592279267992 51200 +17592279256186 50000 +17592279324358 50000 +17592279788434 51200 +17592279449399 50000 +17592279788500 51200 +17592279755221 50000 +17592280675333 51200 +17592279950196 50000 +17592280675383 51200 +17592280131782 50000 +17592280675453 51200 +17592280357961 50000 +17592280652287 50000 +17592281699721 51200 +17592281210290 50000 +17592281701219 51200 +17592281468155 82100 +17592281699883 51200 +17592281680375 50000 +17592281771408 50000 +17592281771406 50000 +17592282560312 51200 +17592281979949 50000 +17592281979947 50000 +17592282560316 51200 +17592282560320 51200 +17592282231496 50000 +17592282558549 50000 +17592283163353 51200 +17592282798246 50000 +17592282907586 50000 +17592283163359 51200 +17592283014582 50000 +17592283700201 51200 +17592283254379 50000 +17592283738387 51200 +17592283439381 50000 +17592283738391 51200 +17592283733025 50000 +17592284321652 51200 +17592283908995 50000 +17592284321656 51200 +17592284012318 50000 +17592284321660 51200 +17592284322847 50000 +17592284454611 50000 +17592284454613 50000 +17592284454607 50000 +17592284454609 50000 +17592284454605 50000 +17592284945278 51200 +17592284656171 50000 +17592284656173 50000 +17592284725278 50000 +17592284945274 51200 +17592284849515 25200 +17592284849483 25200 +17592284849499 25200 +17592284849443 25200 +17592284849467 25200 +17592284849419 25200 +17592284849435 25200 +17592284945270 51200 +17592285085149 50000 +17592285778203 51200 +17592285153340 50000 +17592285778207 51200 +17592285301351 50000 +17592285569861 82100 +17592285778211 51200 +17592285782881 50000 +17592286351017 51200 +17592286014925 50000 +17592286350772 51200 +17592286350768 51200 +17592286355539 50000 +17592287012305 51200 +17592287012309 51200 +17592286726577 50000 +17592287012313 51200 +17592287047231 50000 +17592287313986 50000 +17592287413406 50000 +17592275541252 16300 +17592275541244 82100 +17592271455487 51200 +17592275323920 50000 +17592271455479 51200 +17592271455495 51200 +17592275323934 50000 +17592275323945 50000 +17592275323960 50000 +17592272662865 51200 +17592275323975 50000 +17592272662881 51200 +17592272662890 51200 +17592275541260 82100 +17592271759246 50000 +17592277999170 81140 +17592277999159 81140 +17592277999281 81140 +17592272662898 51200 +17592272652069 51200 +17592271986349 50000 +17592271986347 50000 +17592272652061 51200 +17592272307138 50000 +17592272651934 50000 +17592272662857 51200 +17592273050706 50000 +17592273460328 51200 +17592273109943 25200 +17592277999121 81140 +17592277999245 81140 +17592273460320 51200 +17592273463303 50000 +17592273628406 50000 +17592274009138 51200 +17592273748298 50000 +17592273875463 50000 +17592274012068 50000 +17592274847227 51200 +17592274847235 51200 +17592274405948 50000 +17592274847243 51200 +17592274847219 51200 +17592277999253 81140 +17592274848228 50000 +17592274971227 50000 +17592274971225 50000 +17592275080313 50000 +17592275322471 51200 +17592275169808 50000 +17592275326403 50000 +17592275895413 51200 +17592275576144 50000 +17592275895409 51200 +17592277999129 81140 +17592275899611 50000 +17592276548738 51200 +17592276548616 51200 +17592276111792 50000 +17592276545215 50000 +17592276548526 51200 +17592278283277 51200 +17592278283269 51200 +17592276837473 50000 +17592277164575 51200 +17592277169318 50000 +17592277999261 81140 +17592277971185 51200 +17592277283614 50000 +17592278283316 51200 +17592278283308 51200 +17592277464480 50000 +17592277971181 51200 +17592278565598 51200 +17592277971660 50000 +17592278259365 50000 +17592278565594 51200 +17592277999137 81140 +17592278573916 50000 +17592278565590 51200 +17592278689451 50000 +17592278825985 50000 +17592278825983 50000 +17592278920425 50000 +17592279252115 51200 +17592279017869 50000 +17592279252111 51200 +17592279256222 50000 +17592279324388 50000 +17592279748057 51200 +17592279555546 50000 +17592279555544 50000 +17592279748053 51200 +17592279748049 51200 +17592279755255 50000 +17592279755257 50000 +17592280651156 51200 +17592280131812 50000 +17592280651152 51200 +17592280652325 50000 +17592281210316 50000 +17592281675579 51200 +17592281441615 50000 +17592281675575 51200 +17592281680415 50000 +17592281771460 50000 +17592282373388 51200 +17592281979997 50000 +17592281979995 50000 +17592282373384 51200 +17592282558583 50000 +17592282798262 50000 +17592282907612 50000 +17592283188013 51200 +17592283733884 51200 +17592283195487 50000 +17592283733880 51200 +17592283439407 50000 +17592287427742 16100 +17592283733057 50000 +17592284317962 51200 +17592284012344 50000 +17592284317958 51200 +17592285086973 51200 +17592284322879 50000 +17592284454819 50000 +17592284454815 50000 +17592284454817 50000 +17592284454811 50000 +17592284454813 50000 +17592284454809 50000 +17592284656241 50000 +17592284656243 50000 +17592285086969 51200 +17592284725308 50000 +17592285086965 51200 +17592285085183 50000 +17592285778498 51200 +17592285301379 50000 +17592285778494 51200 +17592285492214 25200 +17592286352691 51200 +17592285782917 50000 +17592285842558 50000 +17592285842560 50000 +17592286352687 51200 +17592286014955 50000 +17592287042922 51200 +17592286355579 50000 +17592287042918 51200 +17592286726615 50000 +17592286726617 50000 +17592286969144 50000 +17592287047269 50000 +17592287042914 51200 +17592287099210 25200 +17592287314018 50000 +17592287413442 50000 +17592257290981 50000 +17592252846037 51200 +17592252390785 50000 +17592253307641 51200 +17592252846043 51200 +17592253307637 51200 +17592252693507 50000 +17592252763330 50000 +17592252830632 50000 +17592253307613 51200 +17592253307617 51200 +17592253307627 51200 +17592253274531 50000 +17592253750017 51200 +17592256172077 50000 +17592254099596 51200 +17592253704739 50000 +17592253835996 50000 +17592253835994 50000 +17592254620732 51200 +17592254073954 50000 +17592254313717 50000 +17592254620738 51200 +17592254378918 50000 +17592254607475 50000 +17592255089109 51200 +17592254653830 50000 +17592254802112 50000 +17592255641022 51200 +17592255031311 50000 +17592255031313 50000 +17592255406894 50000 +17592256181260 51200 +17592255595704 50000 +17592255709381 50000 +17592255982896 50000 +17592256193038 51200 +17592256150706 50000 +17592256684621 51200 +17592256428438 50000 +17592256684730 51200 +17592259748619 51200 +17592257222086 51200 +17592256679636 50000 +17592256679638 50000 +17592256984780 50000 +17592257243790 51200 +17592257067213 50000 +17592257210589 50000 +17592257773927 51200 +17592257374776 50000 +17592257580853 50000 +17592257774007 51200 +17592257750095 50000 +17592258203786 51200 +17592257810599 50000 +17592258203808 51200 +17592258792469 51200 +17592258183951 50000 +17592258183953 50000 +17592258183947 50000 +17592258183949 50000 +17592258792551 51200 +17592258661868 50000 +17592258661870 50000 +17592259266472 51200 +17592258764874 50000 +17592259233481 50000 +17592259754318 51200 +17592260239150 51200 +17592259738074 50000 +17592260190008 50000 +17592260920272 51200 +17592260894124 50000 +17592261466264 51200 +17592262376217 51200 +17592261407612 50000 +17592261741931 50000 +17592261975240 50000 +17592263257377 51200 +17592263136189 50000 +17592263862314 51200 +17592263862312 51200 +17592263234332 50000 +17592263234330 50000 +17592263309006 50000 +17592263862324 51200 +17592263862328 51200 +17592263406435 50000 +17592263503705 50000 +17592263837658 50000 +17592263837660 50000 +17592264401659 51200 +17592263981670 50000 +17592264154123 50000 +17592264401741 51200 +17592264378281 50000 +17592264933659 51200 +17592264705907 50000 +17592264945442 51200 +17592265506010 51200 +17592264909826 50000 +17592265506038 51200 +17592265273024 50000 +17592265420826 50000 +17592266199092 51200 +17592265618345 50000 +17592265703003 50000 +17592265835799 50000 +17592266199158 51200 +17592266796047 51200 +17592266180183 50000 +17592266587356 50000 +17592266796067 51200 +17592266773114 50000 +17592267240578 51200 +17592266916225 50000 +17592266981197 50000 +17592267240604 51200 +17592267035121 50000 +17592268110547 85100 +17592267850998 51200 +17592267233676 50000 +17592267394990 50000 +17592267851079 51200 +17592267617213 50000 +17592267817525 50000 +17592268499498 51200 +17592268103501 50000 +17592268230535 50000 +17592268499524 51200 +17592269106401 51200 +17592268459611 50000 +17592269119524 51200 +17592268560916 50000 +17592268742472 50000 +17592269119456 51200 +17592268865352 50000 +17592269100696 50000 +17592269637097 51200 +17592269637151 51200 +17592269491063 50000 +17592270311593 51200 +17592269632388 50000 +17592269825767 50000 +17592270023820 50000 +17592270311717 51200 +17592270855643 51200 +17592270287958 50000 +17592270855708 51200 +17592270646015 50000 +17592271502779 51200 +17592270849702 50000 +17592271502851 51200 +17592271183486 50000 +17592272048066 51200 +17592271453874 50000 +17592271453872 50000 +17592271642527 50000 +17592271751805 50000 +17592272048156 51200 +17592271872634 50000 +17592272691094 51200 +17592271986369 50000 +17592272213665 50000 +17592272691180 51200 +17592272511104 50000 +17592272647776 50000 +17592273464276 51200 +17592272906832 50000 +17592273464345 51200 +17592273170956 50000 +17592273170958 50000 +17592273341475 50000 +17592273459132 50000 +17592274169518 51200 +17592273621660 50000 +17592273621662 50000 +17592273621664 50000 +17592273868364 50000 +17592273868362 50000 +17592274176377 51200 +17592274852108 51200 +17592274008622 50000 +17592274266093 50000 +17592274852167 51200 +17592274493679 50000 +17592274493681 50000 +17592275340532 51200 +17592274846537 50000 +17592275061047 50000 +17592275340550 51200 +17592275162942 50000 +17592275162940 50000 +17592275322282 50000 +17592275904287 51200 +17592275904293 51200 +17592275904309 51200 +17592275669079 50000 +17592276552434 51200 +17592275894813 50000 +17592276211497 50000 +17592276552504 51200 +17592277210178 51200 +17592276544544 50000 +17592276544540 50000 +17592276544542 50000 +17592276633787 50000 +17592277210200 51200 +17592276930404 50000 +17592277164331 50000 +17592277979161 51200 +17592277364684 50000 +17592277364686 50000 +17592277979290 51200 +17592277562267 50000 +17592277562269 50000 +17592277845068 50000 +17592277845070 50000 +17592277845066 50000 +17592278568336 51200 +17592277960104 50000 +17592278168862 50000 +17592278568400 51200 +17592278336680 50000 +17592278565628 50000 +17592279257735 51200 +17592278814319 50000 +17592278910255 50000 +17592279012172 50000 +17592279257755 51200 +17592279249200 50000 +17592279788298 51200 +17592279555576 50000 +17592279788344 51200 +17592280673740 51200 +17592279748104 50000 +17592279859960 50000 +17592280673760 51200 +17592280222771 50000 +17592280650518 50000 +17592281680615 51200 +17592280744998 50000 +17592281199093 50000 +17592281329284 50000 +17592281680637 51200 +17592282560556 51200 +17592281680431 50000 +17592282575288 50000 +17592282575240 51200 +17592282576090 51200 +17592282120594 50000 +17592283202625 51200 +17592282367989 50000 +17592282668280 50000 +17592283008724 50000 +17592283187396 50000 +17592283748097 51200 +17592283328961 50000 +17592283748113 51200 +17592283527618 50000 +17592283733071 50000 +17592284131773 51200 +17592284376787 51200 +17592284104315 50000 +17592285095337 51200 +17592284316963 50000 +17592284316961 50000 +17592284452847 50000 +17592284452845 50000 +17592285095400 51200 +17592284822307 50000 +17592285783187 51200 +17592285085211 50000 +17592285783211 51200 +17592285534175 50000 +17592285631655 50000 +17592285631653 50000 +17592286354766 51200 +17592285778683 50000 +17592285778685 50000 +17592285778687 50000 +17592285842570 50000 +17592285930306 50000 +17592286354778 51200 +17592286125548 50000 +17592286383623 51200 +17592286351216 50000 +17592287075712 51200 +17592286719930 50000 +17592287075730 51200 +17592286836879 50000 +17592286836881 50000 +17592287041317 50000 +17592287130591 50000 +17592287203497 50000 +17592287397703 50000 +17592252831839 51200 +17592252390783 50000 +17592252564285 50000 +17592252831847 51200 +17592252831863 51200 +17592252830630 50000 +17592252830628 50000 +17592253042482 50000 +17592253307621 51200 +17592253307302 50000 +17592253307304 50000 +17592253085977 50000 +17592253330626 51200 +17592253168860 50000 +17592253339446 50000 +17592253732394 51200 +17592253409063 50000 +17592253549737 50000 +17592253549735 50000 +17592253732402 51200 +17592253704737 50000 +17592253769167 50000 +17592254099540 51200 +17592254099573 51200 +17592253835992 50000 +17592254019128 50000 +17592254620746 51200 +17592258393728 51200 +17592254237036 50000 +17592254618104 51200 +17592254313715 50000 +17592254734526 50000 +17592254734528 50000 +17592254734530 50000 +17592255054782 51200 +17592255054790 51200 +17592255642518 51200 +17592255208849 50000 +17592255208847 50000 +17592255503912 50000 +17592255595702 50000 +17592256181296 51200 +17592255709379 50000 +17592255833971 50000 +17592256193793 51200 +17592256049340 50000 +17592256211239 50000 +17592256684688 51200 +17592256353990 50000 +17592256718255 51200 +17592256544766 50000 +17592257222112 51200 +17592256729881 50000 +17592256799125 50000 +17592257210587 50000 +17592257773959 51200 +17592257374774 50000 +17592257795979 51200 +17592257667237 50000 +17592257810597 50000 +17592257810595 50000 +17592257870931 50000 +17592258203796 51200 +17592258227802 51200 +17592258096891 50000 +17592258792515 51200 +17592258352478 50000 +17592258574764 50000 +17592258661866 50000 +17592258802022 51200 +17592258886839 50000 +17592259266506 51200 +17592259062499 50000 +17592259301758 50000 +17592259383623 50000 +17592259754354 51200 +17592260239156 51200 +17592259887155 50000 +17592260190006 50000 +17592260920320 51200 +17592260387574 50000 +17592260662958 50000 +17592261466304 51200 +17592261042947 50000 +17592261196145 50000 +17592261625227 50000 +17592262376227 51200 +17592261870938 50000 +17592263257419 51200 +17592262752528 50000 +17592262993667 50000 +17592263862348 51200 +17592263406433 50000 +17592263608449 50000 +17592263608447 50000 +17592263837656 50000 +17592263981668 50000 +17592264401701 51200 +17592264256619 50000 +17592264256617 50000 +17592264416143 51200 +17592264416151 51200 +17592264521041 50000 +17592264933667 51200 +17592264955609 51200 +17592264794454 50000 +17592265506024 51200 +17592265087691 50000 +17592265172469 50000 +17592265506193 51200 +17592265420824 50000 +17592268047576 50000 +17592266199124 51200 +17592265618343 50000 +17592266796073 51200 +17592266211161 51200 +17592265865591 50000 +17592266796057 51200 +17592266365869 50000 +17592266683447 50000 +17592266796307 51200 +17592267240594 51200 +17592266916223 50000 +17592267262931 51200 +17592267113352 50000 +17592267851041 51200 +17592267394988 50000 +17592267751208 50000 +17592267890868 51200 +17592268499510 51200 +17592268012092 50000 +17592268533703 51200 +17592268357644 50000 +17592268560914 50000 +17592268560912 50000 +17592269106407 51200 +17592268652741 50000 +17592269119953 51200 +17592268742468 50000 +17592268742470 50000 +17592268985872 50000 +17592269119961 51200 +17592269637121 51200 +17592269286330 50000 +17592269537918 50000 +17592269646817 51200 +17592269825765 50000 +17592270311634 51200 +17592270364576 51200 +17592270148286 50000 +17592270148284 50000 +17592270855675 51200 +17592270465706 50000 +17592270896305 50000 +17592270750250 50000 +17592271009017 50000 +17592271502791 51200 +17592271312065 50000 +17592271524098 51200 +17592271453870 50000 +17592271642525 50000 +17592272048104 51200 +17592272075171 51200 +17592271981341 50000 +17592272100739 50000 +17592272691138 51200 +17592272213663 50000 +17592272511102 50000 +17592272706251 51200 +17592273464313 51200 +17592272906830 50000 +17592275508509 50000 +17592275508904 50000 +17592273170954 50000 +17592275509930 50000 +17592275507921 50000 +17592275509903 50000 +17592273341473 50000 +17592273486471 51200 +17592274171658 51200 +17592273621658 50000 +17592273944025 50000 +17592274223481 51200 +17592274266091 50000 +17592274852134 51200 +17592274348038 50000 +17592274404816 50000 +17592274404818 50000 +17592274879593 51200 +17592274549364 50000 +17592275340540 51200 +17592274970200 50000 +17592275232072 50000 +17592275904299 51200 +17592275477006 50000 +17592275669077 50000 +17592275786821 50000 +17592275951939 51200 +17592275985720 50000 +17592276552450 51200 +17592276035082 50000 +17592276552510 51200 +17592276356963 50000 +17592276544538 50000 +17592277210186 51200 +17592276633785 50000 +17592276727372 50000 +17592277032155 50000 +17592277210865 51200 +17592277268240 50000 +17592277979185 51200 +17592277364682 50000 +17592277562265 50000 +17592277845064 50000 +17592277993400 51200 +17592278168860 50000 +17592278568383 51200 +17592278438705 50000 +17592278587883 51200 +17592278676209 50000 +17592278814317 50000 +17592279257743 51200 +17592278910253 50000 +17592279121592 50000 +17592279268060 51200 +17592279788318 51200 +17592279444380 50000 +17592279628743 50000 +17592280673748 51200 +17592279859958 50000 +17592279944176 50000 +17592280673766 51200 +17592280357027 50000 +17592280650516 50000 +17592280744994 50000 +17592280744996 50000 +17592281680623 51200 +17592280842801 50000 +17592280842799 50000 +17592280842797 50000 +17592281435593 50000 +17592281702346 51200 +17592281765667 50000 +17592282560566 51200 +17592281860306 50000 +17592282220999 50000 +17592282583117 51200 +17592283202629 51200 +17592282367987 50000 +17592282769600 50000 +17592283202641 51200 +17592283008722 50000 +17592283008720 50000 +17592283008718 50000 +17592283202757 51200 +17592283748107 51200 +17592283328959 50000 +17592283619199 50000 +17592283778479 50000 +17592284131785 51200 +17592283892315 50000 +17592284006615 50000 +17592284376783 51200 +17592284104313 50000 +17592285095341 51200 +17592284452843 50000 +17592284723510 50000 +17592284723512 50000 +17592284723514 50000 +17592284723516 50000 +17592285095404 51200 +17592284822301 50000 +17592284822305 50000 +17592284822303 50000 +17592285783193 51200 +17592285085209 50000 +17592285085207 50000 +17592285239424 50000 +17592285783205 51200 +17592285631651 50000 +17592286354768 51200 +17592285778679 50000 +17592285778681 50000 +17592285930304 50000 +17592285930300 50000 +17592285930302 50000 +17592286354772 51200 +17592286014057 50000 +17592286362233 51200 +17592286351214 50000 +17592286351212 50000 +17592287075718 51200 +17592286652645 50000 +17592287075732 51200 +17592286836877 50000 +17592287041315 50000 +17592287203495 50000 +17592287397701 50000 +17592252846049 51200 +17592252831641 50000 +17592252831643 50000 +17592252846045 51200 +17592252831639 50000 +17592253307334 50000 +17592253307332 50000 +17592253307336 50000 +17592253307615 51200 +17592253085975 50000 +17592253307631 51200 +17592253274529 50000 +17592253732410 51200 +17592253339444 50000 +17592253549733 50000 +17592253732418 51200 +17592253769165 50000 +17592254099419 51200 +17592253961428 50000 +17592254099493 51200 +17592254618113 51200 +17592254139216 50000 +17592254313713 50000 +17592254618121 51200 +17592254607473 50000 +17592254653828 50000 +17592255054798 51200 +17592254868744 50000 +17592255054806 51200 +17592255031307 50000 +17592255031309 50000 +17592255122566 50000 +17592255642514 51200 +17592255406890 50000 +17592255406892 50000 +17592255642566 51200 +17592256181266 51200 +17592255595700 50000 +17592255709377 50000 +17592255982894 50000 +17592256193040 51200 +17592256292168 50000 +17592256684686 51200 +17592256428436 50000 +17592256428434 50000 +17592256684726 51200 +17592257222108 51200 +17592256729879 50000 +17592257222152 51200 +17592256984778 50000 +17592257243788 51200 +17592257244152 51200 +17592257222182 51200 +17592257210585 50000 +17592257267231 50000 +17592257267229 50000 +17592257773957 51200 +17592257374772 50000 +17592257580851 50000 +17592257774011 51200 +17592257667235 50000 +17592258203794 51200 +17592257810593 50000 +17592257810591 50000 +17592257810589 50000 +17592258008977 50000 +17592258203804 51200 +17592258203806 51200 +17592258183943 50000 +17592258183945 50000 +17592258792499 51200 +17592258285461 50000 +17592258792547 51200 +17592258574762 50000 +17592258661864 50000 +17592259266494 51200 +17592258836603 50000 +17592259266536 51200 +17592259266551 51200 +17592259754336 51200 +17592259301756 50000 +17592259754352 51200 +17592259754350 51200 +17592259754368 51200 +17592259754391 51200 +17592260239154 51200 +17592259825811 50000 +17592259825813 50000 +17592260239164 51200 +17592260920296 51200 +17592260249485 50000 +17592260497912 50000 +17592260920346 51200 +17592260662956 50000 +17592260805419 50000 +17592260805421 50000 +17592260964137 50000 +17592261466280 51200 +17592261121241 50000 +17592261466330 51200 +17592261196141 50000 +17592261196143 50000 +17592261407610 50000 +17592261530649 50000 +17592262376223 51200 +17592261741929 50000 +17592262376239 51200 +17592263257375 51200 +17592263257397 51200 +17592262644405 50000 +17592263257457 51200 +17592262993665 50000 +17592263309004 50000 +17592263862330 51200 +17592263862352 51200 +17592263862356 51200 +17592263884386 50000 +17592264401677 51200 +17592264154121 50000 +17592264401739 51200 +17592264441032 50000 +17592264441030 50000 +17592264933665 51200 +17592264933671 51200 +17592264705905 50000 +17592264945448 51200 +17592265506020 51200 +17592264975244 50000 +17592265506036 51200 +17592265273022 50000 +17592265528888 50000 +17592266199110 51200 +17592265703001 50000 +17592265835797 50000 +17592266199162 51200 +17592266180181 50000 +17592266796055 51200 +17592266257340 50000 +17592266365867 50000 +17592266452389 50000 +17592266587354 50000 +17592266796069 51200 +17592267240582 51200 +17592266819079 50000 +17592267240606 51200 +17592267035119 50000 +17592267240618 51200 +17592267328932 50000 +17592267328934 50000 +17592267851018 51200 +17592268047613 51200 +17592267851081 51200 +17592267617211 50000 +17592268499504 51200 +17592267926319 50000 +17592267926321 50000 +17592267926323 50000 +17592268103499 50000 +17592268499516 51200 +17592268230533 50000 +17592268499649 51200 +17592268499522 51200 +17592269106405 51200 +17592268652739 50000 +17592268742466 50000 +17592269106464 51200 +17592268865350 50000 +17592268865348 50000 +17592269190249 50000 +17592269637111 51200 +17592269637147 51200 +17592269491061 50000 +17592269688512 50000 +17592270311611 51200 +17592270023818 50000 +17592270311715 51200 +17592270287956 50000 +17592270855660 51200 +17592270403704 50000 +17592270548482 50000 +17592270855706 51200 +17592270646013 50000 +17592271502787 51200 +17592270922912 50000 +17592271502847 51200 +17592271183484 50000 +17592271568344 50000 +17592272048082 51200 +17592272048148 51200 +17592271872632 50000 +17592271872630 50000 +17592272100737 50000 +17592272691110 51200 +17592272404309 50000 +17592272691176 51200 +17592272703628 51200 +17592273464302 51200 +17592272765691 50000 +17592275506476 50000 +17592275506460 50000 +17592273464343 51200 +17592273170950 50000 +17592273170952 50000 +17592274171654 51200 +17592273547921 50000 +17592274175147 51200 +17592273740206 50000 +17592273868360 50000 +17592274852124 51200 +17592274266089 50000 +17592274852159 51200 +17592274493677 50000 +17592275340536 51200 +17592274900980 50000 +17592275340548 51200 +17592275162938 50000 +17592275369267 50000 +17592275904295 51200 +17592275904307 51200 +17592275669075 50000 +17592275985718 50000 +17592276552446 51200 +17592276211495 50000 +17592276552508 51200 +17592276544536 50000 +17592277210182 51200 +17592277210639 51200 +17592276633783 50000 +17592276633781 50000 +17592277210194 51200 +17592276930402 50000 +17592277268238 50000 +17592277979183 51200 +17592277979280 51200 +17592277562263 50000 +17592277845062 50000 +17592278568368 51200 +17592278063969 50000 +17592278336678 50000 +17592278568422 51200 +17592278676207 50000 +17592279012170 50000 +17592279257751 51200 +17592279121590 50000 +17592279317852 50000 +17592279788314 51200 +17592279555574 50000 +17592279788340 51200 +17592280673750 51200 +17592279859956 50000 +17592280673758 51200 +17592280222769 50000 +17592280675278 51200 +17592280744992 50000 +17592281680619 51200 +17592281329282 50000 +17592281680633 51200 +17592281680429 50000 +17592281765665 50000 +17592282575296 50000 +17592282575224 51200 +17592282560562 51200 +17592283934698 51200 +17592282576086 51200 +17592282120592 50000 +17592282575405 51200 +17592282668278 50000 +17592283202631 51200 +17592283202637 51200 +17592283008716 50000 +17592283748105 51200 +17592283248959 50000 +17592283748111 51200 +17592283527616 50000 +17592283778477 50000 +17592284131783 51200 +17592284006613 50000 +17592284376781 51200 +17592284104311 50000 +17592285095339 51200 +17592284452839 50000 +17592284452841 50000 +17592284452837 50000 +17592285095396 51200 +17592284822299 50000 +17592285152420 50000 +17592285783195 51200 +17592285783215 51200 +17592285798506 51200 +17592286622445 50000 +17592286350468 51200 +17592285930298 50000 +17592286014055 50000 +17592286014053 50000 +17592286840608 51200 +17592287075708 51200 +17592286215687 50000 +17592286361687 51200 +17592286361679 51200 +17592286351210 50000 +17592286351208 50000 +17592287075720 51200 +17592286573717 50000 +17592287075724 51200 +17592286836873 50000 +17592286836875 50000 +17592287130589 50000 +17592287130587 50000 +17592287203493 50000 +17592287397699 50000 +17592273292609 72100 +17592264094501 50000 +17592264087196 51200 +17592264091198 50000 +17592263784730 54100 +17592264088442 50000 +17592264087172 50000 +17592264077257 54400 +17592264077249 54400 +17592264092213 51200 +17592264090579 74700 +17592264092483 51200 +17592264077167 51130 +17592264077150 50000 +17592263207865 34000 +17592274789656 54400 +17592262839293 25500 +17592262839317 25500 +17592264094699 74450 +17592262839327 25500 +17592262839301 25500 +17592262839309 25500 +17592264077142 54400 +17592264094162 51200 +17592262911031 25500 +17592262911039 25500 +17592262911047 25500 +17592262911055 25500 +17592264095433 51200 +17592264095293 50000 +17592264095588 51130 +17592263060669 25500 +17592263060653 25500 +17592263060678 25500 +17592263060962 74600 +17592263060764 25500 +17592263061181 25500 +17592263784005 50000 +17592263790381 51130 +17592263786788 54100 +17592263087992 71260 +17592263800816 50000 +17592263800872 54700 +17592263160504 25500 +17592263160496 25500 +17592263160488 25500 +17592263800465 51200 +17592263790614 51130 +17592263207784 25500 +17592263207768 25500 +17592263207760 25500 +17592263386464 11000 +17592263386455 25500 +17592263386447 25500 +17592263207800 25500 +17592263207792 25500 +17592263207776 25500 +17592263787636 54400 +17592263386472 25500 +17592263789929 54400 +17592263786131 74450 +17592263784046 50000 +17592263785994 50000 +17592263784021 50000 +17592263790364 54400 +17592263473244 25500 +17592263422687 74600 +17592263422678 25500 +17592263422670 25500 +17592263422662 25500 +17592263787103 54400 +17592263785056 50000 +17592263422786 25500 +17592263561888 25500 +17592263561912 25500 +17592263561904 25500 +17592263561896 25500 +17592263790372 51130 +17592263673993 25500 +17592263673968 25500 +17592263673977 25500 +17592263673985 25500 +17592263551857 74800 +17592263822753 25500 +17592263784070 51200 +17592263784062 51200 +17592263784029 50000 +17592263783988 50000 +17592263783997 54700 +17592263735175 25500 +17592263735143 25500 +17592263735151 25500 +17592263735159 11000 +17592263735167 25500 +17592263735134 25500 +17592263736024 25500 +17592263736036 25500 +17592263783559 25500 +17592263783567 25500 +17592263783575 25500 +17592263783551 25500 +17592263822691 25500 +17592263783651 25500 +17592263783584 25500 +17592263783625 25500 +17592263932946 25500 +17592263932954 25500 +17592263932962 25500 +17592263932970 25500 +17592263932978 25500 +17592263783859 82100 +17592263801309 54400 +17592263932878 25500 +17592263996239 34000 +17592264076984 51130 +17592264077059 74450 +17592264004362 25500 +17592264004325 25500 +17592264004333 25500 +17592264004343 25500 +17592264004346 25500 +17592273292593 72100 +17592266036226 54400 +17592266036248 50000 +17592264076951 25500 +17592264076967 25500 +17592264076975 25500 +17592264077035 25500 +17592264077043 25500 +17592264077051 25500 +17592264077105 51200 +17592264077113 50000 +17592264004354 25500 +17592264004401 82300 +17592264076959 51130 +17592264077129 54700 +17592264202639 25500 +17592264202655 25500 +17592264202647 25500 +17592264202671 25500 +17592264202663 25500 +17592264202679 25500 +17592266036578 54400 +17592264074977 25200 +17592264075079 25200 +17592264075421 25200 +17592264278412 25500 +17592264278429 25500 +17592264278421 25500 +17592264202621 74800 +17592264278445 25500 +17592264278437 25500 +17592264278461 25500 +17592264278453 25500 +17592264278279 74800 +17592264188554 25200 +17592264188563 74800 +17592266036449 51200 +17592264339600 25500 +17592264339592 74600 +17592264339608 25500 +17592264339568 25500 +17592264339560 25500 +17592264339584 25500 +17592264339576 25500 +17592264339794 74600 +17592264339786 25500 +17592264339810 25500 +17592264339802 25500 +17592264339762 25500 +17592264339754 25500 +17592264339778 11000 +17592264339770 25500 +17592264474385 25500 +17592264474377 25500 +17592264474401 11000 +17592264474368 25500 +17592264474417 25500 +17592264474425 25500 +17592266036289 50000 +17592266036457 51130 +17592266036466 74450 +17592264546208 25500 +17592264546200 25500 +17592264546224 25500 +17592264546216 25500 +17592264546232 25500 +17592266036363 54100 +17592264662431 25500 +17592264662282 25500 +17592266036554 50000 +17592266036570 51200 +17592266036477 51130 +17592264660939 25500 +17592264660931 25500 +17592264661394 25500 +17592264661410 25500 +17592266036323 50000 +17592266036281 51200 +17592266036806 50000 +17592264763236 25500 +17592264763219 25500 +17592264763203 25500 +17592264763211 25500 +17592264763191 25500 +17592266036339 50000 +17592266036355 51200 +17592266036371 50000 +17592266036306 50000 +17592266036831 51130 +17592264802197 25500 +17592264802205 25500 +17592264802262 25500 +17592264802246 25500 +17592264802254 25500 +17592264802229 25500 +17592264802237 25500 +17592264802213 25500 +17592264802221 11000 +17592264763228 25500 +17592266036441 51200 +17592266036546 50000 +17592266036822 51130 +17592264077241 54400 +17592264872295 25500 +17592264872279 25500 +17592264872287 11000 +17592265161031 25500 +17592264872263 25500 +17592264872271 25500 +17592264872247 25500 +17592264872255 25500 +17592264872231 25500 +17592264872239 25500 +17592265045456 25500 +17592265045710 25500 +17592265048450 25500 +17592265048327 25500 +17592265048335 25500 +17592265046679 25500 +17592265046671 25500 +17592265408162 34000 +17592266036970 54400 +17592266036978 54400 +17592266044556 54700 +17592265161721 25500 +17592266036814 74450 +17592266142058 51130 +17592266142066 54000 +17592266142082 50000 +17592265160981 25500 +17592265160990 25500 +17592265160965 25500 +17592265160973 25500 +17592265160998 25500 +17592265186330 25500 +17592265186338 25500 +17592265186314 25500 +17592265186322 25500 +17592265186306 25500 +17592265186356 25500 +17592265186346 25500 +17592265244046 54000 +17592266157680 51200 +17592266036798 50000 +17592265264905 25500 +17592266142006 50000 +17592266142022 54400 +17592265161015 25500 +17592265161023 25500 +17592266044580 50000 +17592265313570 25500 +17592265313627 25500 +17592265313619 25500 +17592265313611 25500 +17592265313603 25500 +17592265313586 25500 +17592265313578 25500 +17592266157663 84100 +17592265222622 25500 +17592266141990 51200 +17592266141998 51130 +17592266141965 50000 +17592265161006 25500 +17592266141982 51200 +17592266036879 50000 +17592265560014 74800 +17592265840377 25500 +17592265353243 25500 +17592265353235 11000 +17592265353227 25500 +17592265353219 25500 +17592265353211 25500 +17592265353190 25500 +17592265353267 25500 +17592265353259 25500 +17592265353251 25500 +17592266142048 54000 +17592265407900 25500 +17592265407892 25500 +17592265407884 25500 +17592266036676 74700 +17592265407852 25500 +17592266036692 51200 +17592265407844 25500 +17592265407932 25500 +17592265407924 25500 +17592265407916 25500 +17592265407908 25500 +17592265407772 25500 +17592265407721 25500 +17592265408154 25500 +17592265408146 25500 +17592265408138 25500 +17592266036708 51200 +17592266036732 51130 +17592265561469 25500 +17592265561623 25500 +17592265561615 25500 +17592265561607 25500 +17592265561599 11000 +17592265408075 25500 +17592265408065 25500 +17592265408057 25500 +17592265408049 25500 +17592265560901 25500 +17592265560893 25500 +17592265560885 25500 +17592265560877 25500 +17592266036273 74450 +17592266036257 50000 +17592266036643 74450 +17592265674104 25500 +17592265674096 25500 +17592266036619 51200 +17592266036627 51130 +17592266036635 74450 +17592265674074 25500 +17592265674063 25500 +17592265674055 25500 +17592265674043 25500 +17592265561766 25500 +17592264077121 54700 +17592265674136 25500 +17592265674128 25500 +17592265674119 71260 +17592266036871 54400 +17592265788980 25500 +17592265788988 25500 +17592265788996 25500 +17592265789006 25500 +17592265789014 25500 +17592265789022 25500 +17592265851878 25500 +17592265851888 25500 +17592266036603 50000 +17592266036611 51200 +17592265851846 25500 +17592265851854 25500 +17592265851862 25500 +17592265851870 25500 +17592265769847 25500 +17592265769856 25500 +17592265851779 25500 +17592267807493 51130 +17592266036595 51200 +17592266036839 50000 +17592265857575 25500 +17592265857592 25500 +17592265857600 25500 +17592266044572 54700 +17592266036586 51200 +17592266141286 25500 +17592266141294 74600 +17592266141308 11000 +17592266141230 25500 +17592266141238 25500 +17592266141246 25500 +17592266141254 25500 +17592266141263 25500 +17592266141271 25500 +17592267938098 51130 +17592266335343 25500 +17592266335334 25500 +17592266157823 82100 +17592266141453 25500 +17592266141461 25500 +17592266141469 25500 +17592266345282 25500 +17592266345274 25500 +17592266345298 25500 +17592266345290 25500 +17592266157915 25500 +17592267950601 74610 +17592267938947 50000 +17592267939386 51200 +17592266410288 25500 +17592266410296 25500 +17592266410320 25500 +17592266410312 25500 +17592266410263 25500 +17592267938751 74450 +17592267939398 50000 +17592267939606 51200 +17592267939993 50000 +17592266410424 25500 +17592266410456 25500 +17592267940245 51130 +17592266410304 25500 +17592266494573 25500 +17592266494565 25500 +17592266494500 25500 +17592266494522 25500 +17592266494538 25500 +17592266494548 25500 +17592267940695 50000 +17592267940947 50000 +17592267940930 51200 +17592266526120 74500 +17592266526103 74500 +17592267941144 50000 +17592266495506 25500 +17592266635186 25500 +17592266635178 25500 +17592266635202 25500 +17592266635194 25500 +17592266635210 25500 +17592266495856 25500 +17592266635170 25500 +17592266635161 25500 +17592266606583 25500 +17592267807575 54700 +17592266718379 74600 +17592266718371 25500 +17592266718387 11000 +17592267947193 54400 +17592266718331 25500 +17592267936926 50000 +17592266718323 25500 +17592273292601 72100 +17592266718347 25500 +17592266718339 25500 +17592266718363 25500 +17592266718355 25500 +17592266719037 34000 +17592266664130 25500 +17592266664146 25500 +17592266664138 25500 +17592267807584 51130 +17592267949244 50000 +17592266718628 25500 +17592266718620 25500 +17592266718612 25500 +17592266749478 25500 +17592266749436 25500 +17592266749454 25500 +17592266749444 25500 +17592266749470 25500 +17592266749462 25500 +17592267937646 51200 +17592267951046 84100 +17592267951056 84100 +17592266719045 82300 +17592266938544 25500 +17592266756577 25500 +17592266756585 25500 +17592266845109 25500 +17592266845093 25500 +17592266845101 25500 +17592266845077 25500 +17592266845085 25500 +17592266845069 25500 +17592266791573 74600 +17592266791686 74600 +17592267949259 74450 +17592266878545 50000 +17592266867060 83100 +17592266936724 25500 +17592266936732 25500 +17592266936708 25500 +17592266936716 25500 +17592266948855 25500 +17592266948863 25500 +17592266948847 74700 +17592266948871 25500 +17592267941461 50000 +17592267941441 51200 +17592266989048 25500 +17592266989056 25500 +17592266989040 25500 +17592266989064 25500 +17592266938171 72110 +17592266938389 25500 +17592266938398 25500 +17592266938381 25500 +17592266993124 25500 +17592267950514 51130 +17592266993891 25500 +17592266993902 25500 +17592267064051 25500 +17592267064059 25500 +17592267064043 25500 +17592267064083 25500 +17592267064092 25500 +17592267064067 25500 +17592267064075 11000 +17592267091383 25500 +17592267091367 25500 +17592267091375 25500 +17592267128499 25500 +17592267128513 25500 +17592267128491 25500 +17592267128537 25500 +17592267128545 74600 +17592267128521 25500 +17592267937355 50000 +17592267128553 11000 +17592267950506 51200 +17592267950498 50000 +17592267946544 54400 +17592267946883 54700 +17592267128529 25500 +17592267128698 25500 +17592267128682 25500 +17592267128690 25500 +17592267950531 51130 +17592267950490 50000 +17592267950378 51200 +17592267199188 25500 +17592267199196 25500 +17592267199219 25500 +17592267199228 25500 +17592267199204 11000 +17592267199252 11000 +17592267199236 25500 +17592267199244 74600 +17592267218399 25500 +17592267218407 25500 +17592267218415 25500 +17592267360383 25500 +17592267360375 11000 +17592267360367 25500 +17592267360359 25500 +17592267360399 25500 +17592267360391 25500 +17592267949057 74450 +17592267949430 51200 +17592267950040 51130 +17592267452671 25500 +17592267452663 25500 +17592267452703 25500 +17592267452695 25500 +17592267452687 25500 +17592267452679 25500 +17592267539675 25500 +17592267539667 25500 +17592267539659 25500 +17592267539651 25500 +17592267539707 25500 +17592267539699 25500 +17592267806361 25500 +17592267806353 25500 +17592267948371 51130 +17592267948267 50000 +17592267948547 51200 +17592267948528 51200 +17592267594754 25500 +17592267594770 25500 +17592267594762 25500 +17592267947365 50000 +17592267948020 54700 +17592267708858 25500 +17592267708850 25500 +17592267708842 11000 +17592267950523 54100 +17592267708834 25500 +17592267708826 25500 +17592267708818 25500 +17592271317822 50000 +17592268309060 51130 +17592267698071 74500 +17592267806446 34000 +17592267796667 25500 +17592267796659 25500 +17592267796701 25500 +17592267796693 25500 +17592267796684 25500 +17592267796676 25500 +17592267806736 50000 +17592267796731 11000 +17592267796723 25500 +17592267796715 74600 +17592267709107 25500 +17592267709033 25500 +17592268309068 51130 +17592267709025 25500 +17592267709006 83100 +17592268309043 50000 +17592268309052 50000 +17592267807566 51200 +17592267765038 25500 +17592267765024 25500 +17592267806254 25500 +17592267806246 25500 +17592267806207 25500 +17592267806199 25500 +17592267806191 25500 +17592267806238 25500 +17592267806230 25500 +17592267806216 25500 +17592268300218 51200 +17592268300226 51130 +17592267806273 25500 +17592267806265 25500 +17592267954342 25500 +17592267954350 25500 +17592267954358 25500 +17592267954366 25500 +17592267954318 11000 +17592267954326 25500 +17592267954334 25500 +17592267806281 25500 +17592268051985 25500 +17592268300199 74450 +17592268300209 51200 +17592268052905 74600 +17592268052913 25500 +17592268052889 25500 +17592268052897 25500 +17592268052839 25500 +17592268184680 25500 +17592268184688 25500 +17592268184696 25500 +17592268184704 25500 +17592268184672 25500 +17592268342634 25500 +17592268342642 25500 +17592268342650 25500 +17592268300191 51130 +17592268324614 25500 +17592268309092 50000 +17592268309101 51200 +17592268053006 25500 +17592268052991 11000 +17592268190822 25500 +17592268190798 25500 +17592268300091 54400 +17592268263566 25500 +17592268263582 25500 +17592268263526 25500 +17592268263534 25500 +17592268263542 25500 +17592268263550 25500 +17592268309076 74700 +17592268309084 51130 +17592271318045 51200 +17592271318053 51200 +17592268299539 50000 +17592268300175 54400 +17592268300183 54400 +17592268310524 15450 +17592268386641 25500 +17592268386628 25500 +17592268386607 25500 +17592268386617 11000 +17592268386990 74600 +17592268292786 83100 +17592268387009 25500 +17592268386998 11000 +17592268309109 25500 +17592268309117 25500 +17592271317880 54400 +17592271317889 50000 +17592271317872 50000 +17592268386867 25500 +17592268299190 54700 +17592268426635 25500 +17592268426627 25500 +17592268426643 25500 +17592268426597 25500 +17592268426538 25500 +17592268426514 25500 +17592268426530 25500 +17592268426522 25500 +17592268443289 25500 +17592268384220 25500 +17592268384212 25500 +17592268384228 11000 +17592271317864 51200 +17592268442123 25500 +17592268442144 25500 +17592268442136 25500 +17592268442112 11000 +17592268442542 11000 +17592268442407 25500 +17592268442375 25500 +17592268442398 74600 +17592268616847 25500 +17592268616859 25500 +17592268616803 25500 +17592268616781 25500 +17592268616773 25500 +17592268616739 25500 +17592268453707 11000 +17592268453699 25500 +17592268617530 25500 +17592268443400 25500 +17592268443392 25500 +17592268443383 11000 +17592271317855 50000 +17592268711118 25500 +17592268711303 25500 +17592268711318 25500 +17592268711627 74600 +17592268711637 25500 +17592271320858 74610 +17592268711406 25500 +17592266157842 82100 +17592271317847 51200 +17592271317839 74450 +17592268713420 25500 +17592268713410 11000 +17592268715403 74600 +17592271318061 54700 +17592271318105 54400 +17592271318113 51200 +17592271318121 50000 +17592271318232 51130 +17592268715255 74600 +17592268715791 11000 +17592268796558 25500 +17592268796550 25500 +17592268796566 25500 +17592268796542 25500 +17592268796534 25500 +17592268942945 25500 +17592268942921 25500 +17592268942929 25500 +17592268942913 25500 +17592268715551 74200 +17592268796658 25500 +17592268796650 25500 +17592271318138 54700 +17592271318146 50000 +17592271318198 50000 +17592268942963 25500 +17592268942955 25500 +17592269029497 25500 +17592269029489 11000 +17592269029396 25500 +17592269029404 74600 +17592269029380 25500 +17592269029388 25500 +17592269029364 25500 +17592269029372 25500 +17592273639540 25200 +17592269079777 11000 +17592271318298 51200 +17592271318290 51130 +17592269079694 74600 +17592269079672 25500 +17592269079680 25500 +17592269079656 25500 +17592269079664 11000 +17592269079640 25500 +17592269079785 25500 +17592271320881 84100 +17592271320989 84100 +17592269029619 11000 +17592269029627 25500 +17592269029611 25500 +17592271317831 51200 +17592269618213 74800 +17592269618205 25500 +17592269546945 25500 +17592269079860 25500 +17592269079844 11000 +17592269079852 25500 +17592269547036 11000 +17592269547028 74600 +17592269547020 25500 +17592269547006 25500 +17592269546998 11000 +17592269546990 25500 +17592269546982 25500 +17592273292626 72100 +17592271318273 50000 +17592271318281 74450 +17592269546834 25500 +17592269546826 74600 +17592269546818 25500 +17592269546810 25500 +17592269546802 25500 +17592269546788 25500 +17592269608733 25500 +17592271318265 50000 +17592269436129 25500 +17592271318248 51130 +17592271318257 51200 +17592269546682 25500 +17592269546666 25500 +17592269546650 25500 +17592269546642 25500 +17592269546634 25500 +17592269436000 25500 +17592269435884 25500 +17592269436281 25500 +17592269436266 25500 +17592269436196 25500 +17592269546766 25500 +17592269546758 11000 +17592271317805 54700 +17592269546570 25500 +17592269546561 74600 +17592269546553 25500 +17592269546545 25500 +17592269546531 25500 +17592269546523 25500 +17592269546501 25500 +17592269546493 25500 +17592269469174 25500 +17592271317719 54400 +17592271318240 51130 +17592271317813 50000 +17592271317797 54400 +17592269546384 25500 +17592269546376 25500 +17592269546306 25500 +17592269546292 11000 +17592269546284 74600 +17592269546276 11000 +17592269546268 25500 +17592269546254 25500 +17592269546246 25500 +17592269546674 74600 +17592271318443 51200 +17592269608255 25500 +17592269608247 25500 +17592269608502 11000 +17592269608494 74600 +17592269608485 25500 +17592269608477 11000 +17592269608469 11000 +17592269608461 25500 +17592269608453 25500 +17592269608439 25500 +17592269608692 25500 +17592269608684 25500 +17592269608676 11000 +17592269866038 74800 +17592269866030 25500 +17592271318426 74450 +17592271318435 51200 +17592269866431 25500 +17592269866384 25500 +17592269866371 25500 +17592269866342 25500 +17592269866275 25500 +17592269866477 11000 +17592269850432 25500 +17592269850424 25500 +17592269850733 25500 +17592269850722 25500 +17592269850698 25500 +17592269761327 50000 +17592271318324 50000 +17592271318332 51200 +17592271318348 51130 +17592269866327 25500 +17592269866485 25500 +17592269980169 25500 +17592269980177 25500 +17592269980200 25500 +17592269980234 25500 +17592271317710 54400 +17592270107889 25500 +17592270107897 25500 +17592270107905 25500 +17592270107913 25500 +17592270107921 25500 +17592270107866 25500 +17592270107874 25500 +17592269978350 15450 +17592269980412 25500 +17592269980420 25500 +17592269980185 25500 +17592269980281 25500 +17592271318306 54700 +17592270107940 25500 +17592270107948 25500 +17592271318315 50000 +17592271318451 51130 +17592271318459 50000 +17592271318467 51200 +17592271318475 51200 +17592270124129 11000 +17592270194653 25500 +17592270196341 25500 +17592270194390 25500 +17592270195015 25500 +17592270195033 11000 +17592270194661 25500 +17592270194670 25500 +17592270194680 25500 +17592270194695 74600 +17592273639542 25200 +17592271318881 51130 +17592270239993 25500 +17592270240016 25500 +17592270240024 25500 +17592270240144 74600 +17592270240168 11000 +17592270239717 25500 +17592270239728 25500 +17592270239741 25500 +17592270221330 11000 +17592270221338 25500 +17592270221346 25500 +17592270221354 25500 +17592270221362 25500 +17592270221371 25500 +17592270221379 25500 +17592270221387 25500 +17592270240302 25500 +17592270240311 11000 +17592270240322 25500 +17592270274185 50000 +17592270490080 25500 +17592270241894 11000 +17592270241903 25500 +17592270241911 25500 +17592270241926 11000 +17592270241934 25500 +17592270241942 25500 +17592270490349 25500 +17592270490341 25500 +17592270490382 11000 +17592270490373 74600 +17592270453519 25500 +17592270453527 11000 +17592270453535 25500 +17592270453543 25500 +17592270453551 25500 +17592270453560 25500 +17592270490088 25500 +17592270490102 25500 +17592270221921 25500 +17592270221929 11000 +17592270809740 74800 +17592270809732 25500 +17592270490333 25500 +17592271321028 84100 +17592271320761 84100 +17592270488879 25500 +17592270488895 25500 +17592270488887 25500 +17592270488903 25500 +17592270488927 74600 +17592270488919 25500 +17592270516224 25500 +17592271318797 51200 +17592271318898 74450 +17592270516208 25500 +17592270516200 25500 +17592270516216 25500 +17592270516232 25500 +17592270516253 25500 +17592270605585 25500 +17592270605616 25500 +17592270605607 25500 +17592270605632 25500 +17592270605624 25500 +17592270605386 25500 +17592270605403 25500 +17592270605395 25500 +17592270605419 25500 +17592270605411 25500 +17592270605427 25500 +17592271318967 51200 +17592271318979 51130 +17592271319243 50000 +17592270809708 25500 +17592270809700 11000 +17592270605563 25500 +17592270605555 25500 +17592270726608 11000 +17592270726600 25500 +17592270726625 25500 +17592270726617 25500 +17592270726641 25500 +17592270726633 25500 +17592270605795 25200 +17592271320641 54400 +17592271320417 54400 +17592270769522 25500 +17592270769124 25500 +17592270769270 25500 +17592270769285 25500 +17592270767280 25500 +17592270767297 25500 +17592271320563 50000 +17592280372891 51200 +17592280372899 51200 +17592271319128 50000 +17592271319226 51200 +17592270769016 11000 +17592270769031 25500 +17592279640596 51200 +17592279640588 51200 +17592270768788 25500 +17592270768812 25500 +17592270768804 25500 +17592270775360 25500 +17592271027418 50000 +17592271318557 51130 +17592271318679 51200 +17592271318663 51200 +17592270809839 25500 +17592270809856 74600 +17592270809848 11000 +17592270809864 25500 +17592270775192 25500 +17592270809793 25500 +17592270809809 25500 +17592270774994 11000 +17592270809801 25500 +17592270809825 11000 +17592270809817 25500 +17592271598910 74800 +17592271598902 25500 +17592271025491 25500 +17592271025475 25500 +17592271025483 25500 +17592271025524 25500 +17592271025532 25500 +17592271025507 25500 +17592271025516 25500 +17592270820303 11000 +17592270820319 25500 +17592270820311 25500 +17592275471466 74610 +17592271318494 74450 +17592271320061 51130 +17592271025692 25500 +17592271025716 25500 +17592271025724 25500 +17592271025700 25500 +17592271025708 25500 +17592271025732 25500 +17592271025499 25500 +17592271318485 54400 +17592280372907 51200 +17592271114987 25500 +17592271115061 25500 +17592271115070 25500 +17592271115045 25500 +17592271115053 25500 +17592271115092 25500 +17592271115100 25500 +17592271115084 25500 +17592271319936 51200 +17592275469606 74700 +17592271152215 25500 +17592271152199 25500 +17592271152207 25500 +17592271243197 25500 +17592271243221 11000 +17592271243229 25500 +17592271243205 25500 +17592271243213 25500 +17592275468744 50000 +17592271243237 25500 +17592271598878 11000 +17592277495627 54400 +17592271341404 25500 +17592271341429 25500 +17592271341437 25500 +17592271341412 25500 +17592271341421 25500 +17592271341461 25500 +17592271341445 25500 +17592271341453 25500 +17592275468528 51200 +17592271243380 25500 +17592271243388 25500 +17592273639544 25200 +17592271243396 25500 +17592275468412 51130 +17592275429918 54100 +17592275467957 51200 +17592275470563 84100 +17592275470737 84100 +17592271341591 11000 +17592271341599 25500 +17592271341607 25500 +17592271407987 25500 +17592271407995 25500 +17592271407971 25500 +17592271407979 25500 +17592271408019 25500 +17592271408003 25500 +17592271408011 25500 +17592271408035 25500 +17592271598940 74800 +17592271598932 25500 +17592271711636 25500 +17592271437195 25500 +17592271711681 25500 +17592271711673 74800 +17592271711659 25500 +17592271711697 25500 +17592271711689 11000 +17592271436941 25500 +17592271437431 25500 +17592271408027 25500 +17592271712127 25500 +17592271712119 25500 +17592271712159 25500 +17592271712214 74600 +17592271712200 25500 +17592271712228 25500 +17592275467144 51200 +17592271711628 25500 +17592275467722 50000 +17592271711620 11000 +17592275448089 51200 +17592271740986 25500 +17592271741024 74600 +17592271741016 25500 +17592271741008 25500 +17592271741000 25500 +17592271741032 25500 +17592275466760 74450 +17592273292617 72100 +17592275471554 54300 +17592268943144 82100 +17592268943117 82100 +17592275466485 51130 +17592271925597 11000 +17592271925589 25500 +17592271925581 25500 +17592271925573 25500 +17592271925614 25500 +17592271925605 74600 +17592275469753 54700 +17592271925693 25500 +17592271925685 25500 +17592271925701 11000 +17592275447801 54700 +17592275450049 50000 +17592271983393 25500 +17592271983390 25500 +17592271983387 11000 +17592271983384 25500 +17592271983405 25500 +17592271983402 74600 +17592271983399 11000 +17592271983396 25500 +17592275454452 50000 +17592275466198 51200 +17592275454349 51130 +17592271983361 25500 +17592271983357 11000 +17592271983354 74600 +17592271983351 25500 +17592271983348 25500 +17592271983345 11000 +17592271983342 25500 +17592271983339 25500 +17592271983331 25500 +17592271983328 11000 +17592271983322 25500 +17592272064854 25500 +17592272064862 25500 +17592272064903 74600 +17592272064911 11000 +17592272064870 25500 +17592272064878 25500 +17592272064886 25500 +17592272064895 25500 +17592272255828 25500 +17592272255836 74800 +17592271983435 25500 +17592271983432 25500 +17592271983429 11000 +17592271983580 74600 +17592272276293 25500 +17592272276301 74600 +17592272276277 25500 +17592272276285 25500 +17592275453298 74450 +17592272479225 74600 +17592275453738 51200 +17592272291442 11000 +17592275453640 50000 +17592272291454 25500 +17592275450039 50000 +17592275449980 54400 +17592275449989 54400 +17592272478722 25500 +17592272478915 25500 +17592272478929 25500 +17592272478890 25500 +17592272478900 25500 +17592272479500 25500 +17592272479593 25500 +17592275452955 51130 +17592272480518 25500 +17592272480595 74600 +17592272480272 25500 +17592272480416 25500 +17592272480427 25500 +17592272480440 11000 +17592272561426 25500 +17592272561416 25500 +17592272561445 74600 +17592272480115 25500 +17592272561767 11000 +17592272562448 11000 +17592272425306 74800 +17592272480232 25500 +17592275450031 50000 +17592273639546 25200 +17592275447948 50000 +17592272561032 25500 +17592272561052 25500 +17592272561062 25500 +17592272561081 25500 +17592272562322 11000 +17592272562330 25500 +17592272601870 25500 +17592272601880 74600 +17592272601901 11000 +17592275452484 51130 +17592272601655 25500 +17592272601734 11000 +17592272601757 25500 +17592275452579 51200 +17592272601749 25500 +17592272601718 25500 +17592272841970 25500 +17592272841956 25500 +17592272841986 74600 +17592272841978 11000 +17592272841932 25500 +17592272841948 25500 +17592272841940 25500 +17592272845135 25500 +17592272845151 25500 +17592272845143 74800 +17592272845184 25500 +17592273009379 25500 +17592273009401 74600 +17592273009356 25500 +17592273009364 25500 +17592273009326 25500 +17592273009334 25500 +17592275447578 50000 +17592273287085 25500 +17592275450184 51200 +17592273287192 25500 +17592273287200 25500 +17592273287224 25500 +17592273287208 25500 +17592273287216 74600 +17592275450023 54400 +17592275452006 74450 +17592273009592 25500 +17592275447470 51130 +17592273074580 72110 +17592273287322 25500 +17592273287330 74600 +17592273287306 25500 +17592273287314 25500 +17592273287290 25500 +17592273287298 25500 +17592275449999 54400 +17592273287752 25500 +17592273287760 25500 +17592273292376 11000 +17592273292384 25500 +17592273292392 25500 +17592275446039 50000 +17592275449956 54700 +17592275449964 54400 +17592275446528 50000 +17592275446283 51200 +17592273359510 25500 +17592273359518 74600 +17592273359494 11000 +17592273359502 25500 +17592273359486 25500 +17592273359461 25500 +17592273359469 25500 +17592273359526 11000 +17592273413657 25500 +17592273413666 25200 +17592273413649 25500 +17592280372915 51200 +17592273413704 25500 +17592273413696 11000 +17592273413674 11000 +17592273413682 25500 +17592273418330 25500 +17592275445782 51130 +17592275445877 51200 +17592273359799 25500 +17592273359807 25500 +17592273359791 11000 +17592273359478 25500 +17592273583236 25500 +17592271320217 54400 +17592273583228 25500 +17592273725258 74800 +17592273725248 25500 +17592273583061 74600 +17592273583069 25500 +17592273583045 25500 +17592273583053 25500 +17592273583037 25500 +17592273583023 25500 +17592273686173 25500 +17592273686206 25500 +17592273686197 25500 +17592273686189 25500 +17592273686181 25500 +17592275106108 25500 +17592275106124 25500 +17592275106116 25500 +17592275106142 25500 +17592275106132 25500 +17592273842013 25500 +17592273842005 25500 +17592273841997 25500 +17592273841989 25500 +17592273735485 25500 +17592273841981 25500 +17592273735477 11000 +17592273841973 25500 +17592275445471 51130 +17592275445765 51200 +17592275445773 74450 +17592273846090 25500 +17592273845777 25500 +17592273917596 11000 +17592273917588 25500 +17592273917572 25500 +17592273917618 25500 +17592273917604 74600 +17592275450015 54400 +17592275430111 50000 +17592273917715 25500 +17592273917707 25500 +17592273952729 25500 +17592275429676 50000 +17592273952797 11000 +17592273952783 74600 +17592273952775 25500 +17592273952767 25500 +17592273952759 25500 +17592273952751 11000 +17592273952743 25500 +17592273952855 11000 +17592273639548 25200 +17592275430078 50000 +17592275471538 84100 +17592275471522 84100 +17592275429668 51200 +17592275429660 51130 +17592273985949 25500 +17592273985941 11000 +17592273985933 25500 +17592273985925 25500 +17592273985987 11000 +17592273985979 74600 +17592273985971 25500 +17592273985963 25500 +17592273952903 11000 +17592273952895 25500 +17592273952887 25500 +17592276694623 72110 +17592274296870 25500 +17592274296878 25500 +17592274296886 25500 +17592274296894 11000 +17592274296841 25500 +17592274296862 25500 +17592274359192 25500 +17592274359199 74800 +17592273986145 25500 +17592273986137 25500 +17592273986129 11000 +17592275471474 74610 +17592275429652 51130 +17592275429636 51200 +17592275427740 54700 +17592274359079 74600 +17592274359046 25500 +17592274359058 25500 +17592275448399 54400 +17592274358966 25500 +17592274358973 25500 +17592274428200 25500 +17592274428207 25500 +17592274428233 25500 +17592274428240 25500 +17592274428167 25500 +17592274428174 25500 +17592275429644 74450 +17592274359156 11000 +17592274359163 25500 +17592275428737 50000 +17592275428761 51130 +17592275428745 51200 +17592275428753 51200 +17592274490344 25500 +17592274544467 25500 +17592274544475 25500 +17592274544483 25500 +17592274544491 25500 +17592274544499 25500 +17592275427806 54100 +17592274527142 25500 +17592274527150 25500 +17592274527158 25500 +17592274527166 74600 +17592274490330 25500 +17592274527134 25500 +17592275428629 51200 +17592275426577 54400 +17592275428729 51130 +17592275426527 54400 +17592274544548 25500 +17592274544532 11000 +17592274544540 25500 +17592274551013 25500 +17592274551021 74600 +17592274551029 11000 +17592274550967 25500 +17592274550975 25500 +17592274550983 25500 +17592274550991 11000 +17592274550999 25500 +17592275428263 54700 +17592275428248 54700 +17592277478752 51130 +17592274582747 25500 +17592274788138 25500 +17592274788083 25500 +17592274788127 25500 +17592274583433 25500 +17592278375939 51200 +17592274583253 25500 +17592274583164 25500 +17592274788393 25500 +17592271333418 82100 +17592274788378 11000 +17592279640564 54300 +17592274584248 50000 +17592274789645 25500 +17592274789637 25500 +17592275317943 25500 +17592274929391 25500 +17592274929383 25500 +17592274929399 25500 +17592274788219 25500 +17592274788235 25500 +17592274929375 25500 +17592274929367 25500 +17592275426551 54400 +17592278375896 51200 +17592274977189 25500 +17592274977165 25500 +17592274977157 25500 +17592274977181 25500 +17592274977173 25500 +17592278375859 50000 +17592278375874 74450 +17592275106222 25500 +17592275106214 25500 +17592275106230 25500 +17592275106254 25500 +17592275106174 25500 +17592275106190 25500 +17592275106182 25500 +17592275106206 25500 +17592278375798 51200 +17592278375813 50000 +17592275196197 25500 +17592275196205 25500 +17592275196181 25500 +17592275196189 25500 +17592275196165 25500 +17592275106158 25500 +17592275106150 25500 +17592278283179 51200 +17592275196434 50000 +17592277478802 51130 +17592278375765 51200 +17592275426498 50000 +17592275240926 25500 +17592278375968 50000 +17592275196173 25500 +17592275270010 11000 +17592275240950 25500 +17592275240958 25500 +17592275240934 25500 +17592275240942 25500 +17592275240974 25500 +17592273639550 25200 +17592275196408 25500 +17592275196392 25500 +17592275196400 25500 +17592275258408 25500 +17592275258416 25500 +17592277479035 51130 +17592275296311 25500 +17592275296319 25500 +17592275296295 25500 +17592275296303 25500 +17592275296327 25500 +17592275296335 11000 +17592275240966 25500 +17592275506431 25500 +17592275506407 74800 +17592275317811 25500 +17592275317819 25500 +17592275317795 25500 +17592275317803 25500 +17592275317827 11000 +17592275317835 25500 +17592275317951 74800 +17592275296538 25500 +17592275296546 25500 +17592275296530 11000 +17592278375715 54400 +17592278375707 54400 +17592275506169 11000 +17592280372923 51200 +17592275665647 25500 +17592275506097 25500 +17592275506141 25500 +17592275506042 25500 +17592275506034 25500 +17592275506054 25500 +17592278375691 51200 +17592278375699 74450 +17592275506372 11000 +17592275506380 25500 +17592275639989 25500 +17592275640000 25500 +17592275639981 25500 +17592275640008 25500 +17592275640016 25500 +17592277479055 51130 +17592278283187 50000 +17592275641820 11000 +17592275642106 25500 +17592278378306 54400 +17592275642082 25500 +17592275782079 25500 +17592275782109 11000 +17592275782095 25500 +17592275782087 11000 +17592278282948 51200 +17592278377942 51200 +17592278282508 51200 +17592278282216 50000 +17592275794092 11000 +17592275794084 25500 +17592275794046 25500 +17592275794038 25500 +17592278282390 50000 +17592275794030 25500 +17592275794076 11000 +17592278282366 50000 +17592275794062 25500 +17592275782184 25500 +17592275782176 25500 +17592275782168 11000 +17592275854673 25500 +17592275854605 25500 +17592275854597 25500 +17592275854769 74800 +17592275854721 11000 +17592275854713 25500 +17592275854705 25500 +17592275854697 25500 +17592277479134 51130 +17592275794191 72110 +17592278376755 50000 +17592278376763 51200 +17592275794146 25500 +17592275794138 11000 +17592275854785 11000 +17592275854801 25500 +17592275854793 25500 +17592276001217 25500 +17592276001209 25500 +17592276001233 25500 +17592276001225 25500 +17592276285848 25500 +17592276285856 74800 +17592276001265 25500 +17592276001257 25500 +17592280372931 51200 +17592278376778 51200 +17592276063802 11000 +17592276063794 25500 +17592276063778 25500 +17592276063770 25500 +17592276063756 25500 +17592277479258 51130 +17592276131709 25500 +17592276131701 25500 +17592276131693 25500 +17592276131717 25500 +17592276063851 25500 +17592276063843 11000 +17592278282414 74450 +17592278282398 51200 +17592278282382 51200 +17592278282200 54700 +17592276131768 25500 +17592276131782 25500 +17592276131725 25500 +17592280372939 51200 +17592276285097 11000 +17592276285063 25500 +17592276285082 25500 +17592276285030 11000 +17592276285038 25500 +17592278376790 74610 +17592276910781 25200 +17592276388907 25500 +17592276388915 11000 +17592276388923 25500 +17592276285785 11000 +17592276285877 11000 +17592276285800 25500 +17592276285808 25500 +17592277479426 51130 +17592273639552 25200 +17592278282406 51200 +17592278282374 50000 +17592278282358 50000 +17592276388648 25500 +17592276388656 25500 +17592276388664 11000 +17592276388616 25500 +17592276388624 25500 +17592276388632 25500 +17592276388640 25500 +17592276388608 25500 +17592276388949 25500 +17592276388957 25500 +17592276505769 25500 +17592276505739 25500 +17592276505753 25500 +17592276505761 11000 +17592276505723 25500 +17592278377997 84100 +17592278378007 84100 +17592277479566 51130 +17592275450007 54400 +17592276505541 25500 +17592276505517 25500 +17592276505528 25500 +17592276675825 25500 +17592276675833 25500 +17592276675784 25500 +17592276675792 25500 +17592276675803 25500 +17592276675776 25500 +17592277006288 25500 +17592277006298 74800 +17592276674921 25500 +17592276674929 25500 +17592276796870 25500 +17592276796856 25500 +17592276796966 11000 +17592276796958 25500 +17592278282462 54400 +17592278282454 51200 +17592278282446 51200 +17592276677534 74800 +17592276858108 25500 +17592276858292 25500 +17592280372971 51200 +17592280372963 51200 +17592276858782 25500 +17592276858774 25500 +17592276858346 25500 +17592280372947 51200 +17592276797091 25500 +17592276858509 25500 +17592276797083 11000 +17592278282438 74450 +17592276857392 25500 +17592276897203 25500 +17592276962352 25500 +17592276962344 25500 +17592276962368 11000 +17592276962360 25500 +17592276962336 25500 +17592276896789 25500 +17592276962328 25500 +17592278282430 50000 +17592278282422 51200 +17592276910789 50000 +17592278282886 54100 +17592277480053 51130 +17592277060587 25500 +17592277060579 11000 +17592276909236 54700 +17592277005456 25500 +17592277005444 25500 +17592278378290 54700 +17592278378298 54400 +17592275429227 50000 +17592278282340 50000 +17592277060555 25500 +17592277060547 25500 +17592277060571 25500 +17592277060563 25500 +17592277060539 25500 +17592277060531 11000 +17592277116205 25500 +17592277116197 11000 +17592277116213 25500 +17592277116172 25500 +17592277116164 25500 +17592277116189 11000 +17592277116180 25500 +17592277116156 25500 +17592277060646 25500 +17592277060638 25500 +17592278282248 51200 +17592277480314 51130 +17592277306824 25500 +17592277308873 25500 +17592277306808 25500 +17592277306816 25500 +17592277306792 25500 +17592277306800 25500 +17592277306784 25500 +17592277308778 25500 +17592277309225 74800 +17592277309137 25500 +17592278377957 54700 +17592274296044 82100 +17592277394631 11000 +17592277394617 25500 +17592277394601 25500 +17592277394609 25500 +17592277305293 72110 +17592280391473 72100 +17592278377981 54400 +17592277332488 74600 +17592279640572 54300 +17592278375683 74450 +17592278375522 51200 +17592278282240 51200 +17592277395361 25500 +17592277476950 25500 +17592277476908 25500 +17592277476886 25500 +17592277395156 11000 +17592277477044 25500 +17592277476965 25500 +17592278282268 51130 +17592277771593 25500 +17592277771577 11000 +17592277771585 11000 +17592277771561 25500 +17592277771569 25500 +17592277771553 25500 +17592277539678 25500 +17592277539700 25500 +17592278375657 50000 +17592278375667 51130 +17592277771646 11000 +17592278375633 51200 +17592278375641 50000 +17592278375649 51200 +17592273639554 25200 +17592277776533 25500 +17592277776541 25500 +17592277776525 11000 +17592277893890 11000 +17592277893882 25500 +17592277893874 25500 +17592277893866 25500 +17592277893858 25500 +17592277893850 25500 +17592277893842 25500 +17592277893834 11000 +17592278375542 51130 +17592277946160 11000 +17592277946152 25500 +17592277946144 25500 +17592277946136 25500 +17592277946128 25500 +17592277946120 11000 +17592277946112 25500 +17592277946030 25500 +17592277893957 25500 +17592277893949 11000 +17592277893941 25500 +17592278130615 25500 +17592278130607 25500 +17592278130599 11000 +17592278130585 25500 +17592278130577 25500 +17592278130187 25500 +17592278130397 25500 +17592278130667 74800 +17592278130659 25500 +17592277478744 51130 +17592278242957 25500 +17592278242949 11000 +17592278242941 25500 +17592278242933 25500 +17592278242917 25500 +17592278375237 51130 +17592278375113 51200 +17592278377915 54400 +17592278282208 54700 +17592278242925 25500 +17592278421930 11000 +17592278421938 25500 +17592278280455 25500 +17592278280447 25500 +17592278280439 25500 +17592278280431 25500 +17592278280423 25500 +17592278280415 25500 +17592278375089 50000 +17592278375097 74450 +17592278375105 51200 +17592278403173 25500 +17592278403181 25500 +17592278403189 25500 +17592278403197 25500 +17592278403205 25500 +17592278403246 25500 +17592278403254 25500 +17592278403165 11000 +17592278375073 50000 +17592278375081 51130 +17592279640556 74610 +17592279640636 54100 +17592278403276 11000 +17592278403284 25500 +17592278403292 25500 +17592278463333 25500 +17592278463341 25500 +17592278463349 25500 +17592278463357 25500 +17592278463373 25500 +17592278463381 25500 +17592278463325 25500 +17592279640580 54400 +17592279640628 50000 +17592278552028 25500 +17592278463543 25500 +17592278463551 25500 +17592280372995 51200 +17592278552036 25500 +17592278552044 25500 +17592278552052 25200 +17592278552060 11000 +17592278552068 25500 +17592278552076 25500 +17592278552084 25500 +17592278751304 25500 +17592279640678 51130 +17592278730016 25500 +17592278552167 25500 +17592278730428 25500 +17592278730437 25500 +17592278730445 25500 +17592278730458 25500 +17592278552159 25500 +17592279368054 25200 +17592279214509 25500 +17592279214537 74800 +17592278463365 25500 +17592279417401 50000 +17592278282918 74700 +17592278841266 25500 +17592278841274 25500 +17592280373017 51200 +17592278841145 25500 +17592278841153 25500 +17592278841576 25500 +17592278841562 25500 +17592279640686 51130 +17592280373045 51200 +17592278845619 25500 +17592278845412 11000 +17592278991595 25500 +17592278991587 25500 +17592278991603 25500 +17592279640694 50000 +17592279640702 74450 +17592278991565 25500 +17592278991557 25500 +17592278991573 25500 +17592279640618 51200 +17592280373065 51200 +17592279099495 25500 +17592279099449 25500 +17592279099471 25500 +17592279099463 25500 +17592279099479 11000 +17592278991644 11000 +17592278991652 25500 +17592279642970 51130 +17592280373148 51200 +17592280373089 51200 +17592279099219 11000 +17592279214517 25500 +17592279644452 51130 +17592279214193 25500 +17592279214185 25500 +17592279214201 25500 +17592279099554 11000 +17592279099586 25500 +17592279099594 25500 +17592273639556 25200 +17592279214139 25500 +17592279214155 25500 +17592279214147 11000 +17592279214177 25500 +17592279099487 25500 +17592279214163 25500 +17592279643042 50000 +17592279642758 74700 +17592280373156 51200 +17592280372835 84100 +17592280372827 84100 +17592279214459 25500 +17592279214451 25500 +17592279214338 25500 +17592279214354 25500 +17592279214346 25500 +17592279214370 11000 +17592279214362 25500 +17592279214384 25500 +17592279214400 25500 +17592279214392 25500 +17592279366637 25500 +17592279366645 25500 +17592279366705 25500 +17592279366697 25500 +17592279366713 25500 +17592279214480 25500 +17592279214488 25500 +17592279511368 74800 +17592279511213 25500 +17592279523483 25500 +17592279525400 74800 +17592279510487 25500 +17592279510467 25500 +17592279510476 25500 +17592279510262 25500 +17592279510246 11000 +17592279510356 25500 +17592279366653 25500 +17592279643227 50000 +17592280373164 51200 +17592279644361 51130 +17592279509977 25500 +17592283610510 84100 +17592280373172 51200 +17592279510867 11000 +17592279510880 25500 +17592279614327 25500 +17592279614335 25500 +17592279614319 11000 +17592279614343 25500 +17592279614351 25500 +17592279614305 25500 +17592279640548 51130 +17592279640662 50000 +17592279640670 74450 +17592279640654 51130 +17592279523029 25500 +17592279674086 25500 +17592279674094 25500 +17592279674138 25500 +17592279674130 25500 +17592279674070 25500 +17592279674078 11000 +17592279674056 25500 +17592279640646 50000 +17592279727397 25500 +17592279727221 25500 +17592279727229 11000 +17592279727213 25500 +17592279727258 25500 +17592279727266 25500 +17592279727240 25500 +17592279727274 25500 +17592280373180 51200 +17592279640604 51200 +17592279727362 25500 +17592279727376 25500 +17592279727405 25500 +17592280637033 25500 +17592280637041 74800 +17592279930994 25500 +17592279930980 25500 +17592279930942 25500 +17592279930966 25500 +17592279930958 25500 +17592279930950 25500 +17592280637017 25500 +17592280038003 25500 +17592280037987 25500 +17592280037979 25500 +17592280037971 25500 +17592280037955 25500 +17592280373196 51200 +17592280373188 51200 +17592280372859 50000 +17592280372851 54700 +17592280372843 54400 +17592280372883 51130 +17592280372875 74450 +17592280372867 54700 +17592280062328 25500 +17592280158432 25500 +17592280158424 25500 +17592283603105 54400 +17592280158416 25500 +17592280158408 25500 +17592280050414 25500 +17592280037995 25500 +17592280158736 25500 +17592280158728 25500 +17592280107576 11000 +17592280037963 25500 +17592280178482 25500 +17592285753100 72100 +17592280178474 25500 +17592280295841 25500 +17592280295833 25500 +17592280295857 25500 +17592280295849 25500 +17592280295733 25500 +17592280154422 33000 +17592280295753 25500 +17592283603081 54300 +17592279930857 82100 +17592283610550 50000 +17592283610710 51200 +17592283610638 51130 +17592273639558 25200 +17592280363035 25500 +17592280363027 25500 +17592280363019 25500 +17592280295487 25500 +17592280363067 25500 +17592280363059 25500 +17592280363051 25500 +17592280363043 25500 +17592280636806 25500 +17592280636814 25500 +17592280636822 25500 +17592280636830 25500 +17592280636784 11000 +17592280636792 25500 +17592280636886 25500 +17592280636894 25500 +17592280636838 25500 +17592280636753 25500 +17592280636766 25500 +17592280481464 54790 +17592280636934 25500 +17592280636942 11000 +17592280636902 11000 +17592280636910 25500 +17592280636918 25500 +17592280636926 25500 +17592283610630 51130 +17592280372805 25500 +17592281120914 25500 +17592281120922 25500 +17592281120898 25500 +17592281120946 25500 +17592281120938 25500 +17592281120954 25500 +17592280635918 11000 +17592280635926 25500 +17592283610622 51130 +17592281120874 25500 +17592281120850 25500 +17592281120840 25500 +17592281120866 25500 +17592281120858 25500 +17592281120816 25500 +17592281120824 25500 +17592283604706 74450 +17592283610702 51200 +17592283608698 50000 +17592283610614 51130 +17592283610542 50000 +17592281446126 25500 +17592281446118 25500 +17592281446144 25500 +17592281446134 25500 +17592283610742 51200 +17592281446086 25500 +17592281446110 25500 +17592281446102 25500 +17592283610694 51200 +17592283603234 54700 +17592283603210 54400 +17592281644431 54790 +17592281446094 25500 +17592281642683 25500 +17592281642659 25500 +17592281642670 25500 +17592283610606 51130 +17592281643404 25500 +17592281643394 25500 +17592281643811 25500 +17592281643669 25500 +17592281643680 25500 +17592281910548 25500 +17592281910556 25500 +17592281910580 25500 +17592281910564 25500 +17592281910572 25500 +17592282212061 11000 +17592283610582 51130 +17592283610590 51130 +17592283610686 51200 +17592283603097 54400 +17592283608812 50000 +17592283610678 51200 +17592283610598 51130 +17592283603908 74450 +17592283610566 50000 +17592283610558 50000 +17592283603121 54700 +17592273639560 25200 +17592283610518 84100 +17592283610526 84100 +17592282822954 25500 +17592282822896 25500 +17592282822938 25500 +17592282822832 25500 +17592282822856 25500 +17592282822864 25500 +17592282822872 25500 +17592282822880 25500 +17592282822816 25500 +17592283610734 51200 +17592283610718 51200 +17592283610646 51130 +17592283603242 54700 +17592283603226 54400 +17592283603218 54400 +17592287328367 54400 +17592283604929 74450 +17592283609035 50000 +17592282879729 74600 +17592282879737 74800 +17592282879758 25500 +17592283610654 51130 +17592287363928 54400 +17592283610534 74610 +17592283610750 51200 +17592283603113 54700 +17592283610574 50000 +17592283610662 51130 +17592283610670 51130 +17592283610502 50000 +17592283356914 25500 +17592283356906 25500 +17592283356930 25500 +17592283356922 25500 +17592283356946 25500 +17592283356938 25500 +17592283356875 25500 +17592283356898 25500 +17592283356890 25500 +17592283610758 51200 +17592283610766 51200 +17592283605239 74450 +17592285635911 74600 +17592285635816 25200 +17592283660537 50000 +17592273639562 25200 +17592283610726 51200 +17592283660545 54790 +17592283660529 51130 +17592283607237 50000 +17592286153616 54790 +17592285753114 72100 +17592283660561 82100 +17592287365085 74450 +17592287365020 54100 +17592287365077 50000 +17592284070134 25500 +17592284070142 25500 +17592284070115 25500 +17592284070123 25500 +17592284070069 25500 +17592284070077 25500 +17592284070053 25500 +17592284070061 25500 +17592284070105 25500 +17592287360171 54100 +17592287365093 51130 +17592284609792 25500 +17592284609784 25500 +17592284609776 25500 +17592284609768 25500 +17592284609808 25500 +17592284609727 25500 +17592284609746 25500 +17592284609684 25500 +17592287365101 51130 +17592284609260 25500 +17592284625543 74100 +17592284625495 50000 +17592287365069 74450 +17592287365053 50000 +17592287365061 51130 +17592287365037 50000 +17592287365045 51130 +17592273639564 25200 +17592287365028 51130 +17592285277550 25500 +17592285277454 25500 +17592287364880 54100 +17592287364908 54400 +17592287364924 51130 +17592287364916 54700 +17592287364932 74450 +17592285277878 25500 +17592285277699 25500 +17592285278541 25500 +17592285278526 25500 +17592285278319 25500 +17592285278218 25500 +17592285278736 25500 +17592287364832 50000 +17592287364566 54700 +17592287364848 50000 +17592287364856 51130 +17592287365109 54400 +17592287364840 51130 +17592285728629 74500 +17592287351301 84100 +17592287364897 54400 +17592287364109 51200 +17592285951302 25500 +17592285951288 25500 +17592285951222 25500 +17592285951214 25500 +17592285951107 25500 +17592285951088 25500 +17592287350613 74610 +17592287364093 74450 +17592285937521 25500 +17592285950855 25500 +17592285950585 25500 +17592287364077 50000 +17592287364085 50000 +17592286133427 74500 +17592287364069 51130 +17592287360156 54100 +17592273639566 25200 +17592287364061 50000 +17592287364021 50000 +17592287360134 54100 +17592287360148 54100 +17592287020975 54790 +17592287364029 51200 +17592286227882 82100 +17592286686410 25500 +17592286686378 25500 +17592287360126 51130 +17592287360187 51200 +17592287360195 74450 +17592286686131 25500 +17592286686123 25500 +17592286686115 25500 +17592286686107 25500 +17592286686099 25500 +17592286686087 25500 +17592286686079 25500 +17592286686071 25500 +17592286686063 25500 +17592287360110 50000 +17592287360179 51200 +17592287364013 50000 +17592287364005 50000 +17592287364037 51130 +17592287020914 50000 +17592287363981 51200 +17592287363997 51130 +17592287363989 51130 +17592287364045 51200 +17592287239935 74700 +17592287020983 25500 +17592287020991 74600 +17592287363973 51130 +17592287233680 25500 +17592287233672 25500 +17592287233688 25500 +17592287233714 25500 +17592287233699 25500 +17592287233725 25500 +17592287233739 25500 +17592287261913 54790 +17592287233381 25500 +17592287363949 51130 +17592287363965 74450 +17592287363957 51200 +17592287364872 54100 +17592287363941 50000 +17592287364665 51130 +17592287364864 50000 +17592273639568 25200 +17592287364053 51130 +17592273639570 25200 +17592273639572 25200 +17592273639574 25200 +17592273639576 25200 +17592273639578 25200 +17592273639580 25200 +17592273639582 25200 +17592273639584 25200 +17592273639586 25200 +17592273639588 25200 +17592273639590 25200 +17592273639592 25200 +17592256013835 25200 +17592256682188 97200 +17592257182309 81140 +17592259066282 25200 +17592264286813 25200 +17592266280744 25200 +17592267709930 25200 +17592275196317 25500 +17592284849531 25200 +17592252347822 12980 +17592252435229 12980 +17592252572105 82100 +17592252571838 74450 +17592252640999 74610 +17592252767561 12980 +17592252767545 12980 +17592252872642 83300 +17592252872613 83400 +17592252872596 83100 +17592252872580 54100 +17592252957629 12980 +17592253090676 51200 +17592253201201 12980 +17592253250356 83500 +17592253424328 12980 +17592253723928 12980 +17592253723954 54100 +17592253724000 54000 +17592253724025 54100 +17592253770651 25200 +17592253904435 54100 +17592253967150 12980 +17592254021503 12980 +17592254158964 74450 +17592254322894 74700 +17592254322948 54000 +17592254322983 82100 +17592254415617 74610 +17592254415633 83300 +17592254613426 54100 +17592254655581 12980 +17592254662729 54100 +17592254803476 83100 +17592254871553 54000 +17592254871537 12980 +17592255131187 12980 +17592255131217 83500 +17592255420383 51200 +17592255420461 54100 +17592255509969 12980 +17592255608664 74600 +17592255932938 12980 +17592256226992 54100 +17592256225796 12980 +17592256225788 12980 +17592256292035 82100 +17592256464913 54000 +17592256465531 83300 +17592256552067 74610 +17592256731287 12980 +17592256731529 74600 +17592256834178 12980 +17592256891352 54100 +17592256891336 83400 +17592256891374 98800 +17592256991774 74500 +17592257078102 83100 +17592257078085 74450 +17592257140655 12980 +17592257593189 74600 +17592257495118 51200 +17592257538659 54000 +17592257592517 83500 +17592257592889 12980 +17592257593148 74600 +17592257593228 74600 +17592257830624 74500 +17592257816464 81110 +17592257816552 54100 +17592257952974 12980 +17592257953006 12980 +17592258105589 54100 +17592258187044 86100 +17592258375953 12980 +17592258473706 54100 +17592258729911 82100 +17592258770605 74450 +17592258770564 74610 +17592258770678 83300 +17592258838588 12980 +17592258898441 74700 +17592258988098 82500 +17592258978741 12980 +17592259077583 74500 +17592259066182 54000 +17592259236929 83100 +17592259236946 12980 +17592259405131 12980 +17592259555695 51200 +17592259833382 54100 +17592259833366 83500 +17592259911609 74700 +17592259976443 12980 +17592259977132 12980 +17592260080470 54000 +17592260305074 12980 +17592260305040 74700 +17592260391043 54100 +17592260807731 74800 +17592260817069 12980 +17592260817361 54100 +17592260903251 74450 +17592260903343 54100 +17592260903271 54100 +17592260972490 54100 +17592260972443 82100 +17592261070203 74610 +17592261123763 83300 +17592261185849 15410 +17592261180057 12980 +17592261215518 54000 +17592261409103 12980 +17592261409085 83400 +17592261532898 74700 +17592261634271 83000 +17592261790399 51200 +17592261958314 12980 +17592261977077 83500 +17592262646839 12980 +17592262762736 74600 +17592263002239 54000 +17592263197009 12980 +17592263333054 12980 +17592263333065 12980 +17592263638133 91100 +17592263730438 12980 +17592263730430 12980 +17592264013885 74700 +17592263996057 54100 +17592263996073 74450 +17592264053017 12980 +17592264165616 82100 +17592264273096 83300 +17592264273079 12980 +17592264443028 74610 +17592264546111 54200 +17592264619364 54100 +17592264619340 12980 +17592264709572 51200 +17592264796773 83100 +17592264796756 12980 +17592264986622 54100 +17592265289954 54000 +17592265290316 83500 +17592265339288 12980 +17592265542780 74600 +17592265632833 54100 +17592265632808 86200 +17592265730762 12980 +17592266028801 12980 +17592266474436 12980 +17592266699585 12980 +17592266709858 82100 +17592266919337 74450 +17592266919598 74610 +17592266919481 83400 +17592266919447 83300 +17592266984330 51200 +17592267081056 54000 +17592267127392 12980 +17592267179823 50000 +17592267342326 12980 +17592267406588 83100 +17592267755245 12980 +17592267851875 54100 +17592267840014 83500 +17592268263638 50000 +17592268263558 50000 +17592268373179 12980 +17592268373237 12980 +17592268577566 12980 +17592268908031 54000 +17592269011054 12980 +17592269108166 54100 +17592269108149 74600 +17592269108130 74450 +17592269309919 82100 +17592269309936 54100 +17592269430694 54200 +17592269430678 83300 +17592269430661 74610 +17592269430645 51200 +17592269544396 12980 +17592269712952 12980 +17592269712936 74600 +17592269834012 83100 +17592269946283 54100 +17592270218832 74700 +17592270406100 12980 +17592270479858 54100 +17592270682419 54000 +17592270682435 83500 +17592270807789 12980 +17592270926565 54100 +17592270926581 12980 +17592271318078 12980 +17592271487048 74450 +17592271676842 54100 +17592271690774 74700 +17592271676325 51200 +17592271775083 83400 +17592271775116 54200 +17592271775188 54100 +17592271875490 74610 +17592271983088 82100 +17592271983082 12980 +17592271983076 12980 +17592272038441 74700 +17592272115741 83300 +17592272115760 12980 +17592272529500 12980 +17592272529517 83100 +17592272783047 54100 +17592273212396 97200 +17592273212511 97200 +17592273202382 54000 +17592273212283 97200 +17592273212070 97200 +17592273349636 12980 +17592273407588 83500 +17592273463155 12980 +17592273770309 86300 +17592273946892 12980 +17592274783498 12980 +17592274909961 12980 +17592274909775 58000 +17592274909783 74600 +17592274909799 54100 +17592274909815 82100 +17592274909831 83300 +17592275079943 74450 +17592275079788 74610 +17592275169619 51200 +17592275240843 12980 +17592275392312 83100 +17592275393397 12980 +17592275690215 54000 +17592275788391 12980 +17592275904264 97200 +17592275904075 83500 +17592276040763 12980 +17592276368530 12980 +17592276465754 74600 +17592276551125 91100 +17592276639229 54100 +17592276838240 74700 +17592277037471 12980 +17592277186639 83400 +17592277282776 12980 +17592277475364 82100 +17592277747202 51200 +17592277629804 83300 +17592277850532 12980 +17592277972723 74450 +17592277972707 74610 +17592277976660 54100 +17592278185856 54100 +17592278259289 54100 +17592278259253 54100 +17592278259237 83100 +17592278259305 54200 +17592278444194 74800 +17592278444091 12980 +17592278689216 12980 +17592279017785 54000 +17592279017801 83500 +17592279180786 12980 +17592279755445 12980 +17592279860546 58000 +17592279860554 58000 +17592279855533 54100 +17592279855746 12980 +17592268262486 50000 +17592280362940 82100 +17592280362811 12980 +17592280652803 83300 +17592280754548 74450 +17592281624343 50000 +17592281624376 83100 +17592281624360 74610 +17592281624804 12980 +17592281771382 12980 +17592283014667 74800 +17592282312650 12980 +17592282559984 83500 +17592282560023 54000 +17592282803120 12980 +17592282917998 51200 +17592282917982 54100 +17592283092484 12980 +17592283254172 12980 +17592283738586 82100 +17592283738496 12980 +17592284117292 74610 +17592284117574 83300 +17592284210933 12980 +17592284210950 83400 +17592284390849 54100 +17592284454495 74600 +17592284666239 54100 +17592284666076 83100 +17592284666751 74700 +17592284725256 12980 +17592284823759 54100 +17592284924027 12980 +17592285215730 74700 +17592285169746 74450 +17592285243625 51200 +17592285633421 12980 +17592285783063 83500 +17592285952489 12980 +17592286223741 51130 +17592286223702 54000 +17592286355181 12980 +17592286576423 54100 +17592286746484 82100 +17592286730144 74610 +17592286733483 82100 +17592287047512 12980 +17592287047528 74450 +17592287047544 83300 +17592287047619 51130 +17592287133355 12980 +17592287232537 83100 +17592287232553 54100 +17592252831719 50000 +17592252648649 83100 +17592252831727 50000 +17592252424790 81110 +17592252831736 50000 +17592252436269 81110 +17592252695102 51300 +17592252590548 51200 +17592252485956 50000 +17592252831744 50000 +17592252590473 52000 +17592252831752 50000 +17592252713544 52200 +17592252831768 50000 +17592252696348 74610 +17592252641038 83500 +17592252641015 83500 +17592252695110 51300 +17592252831784 50000 +17592252707863 74100 +17592252871337 50000 +17592252831855 51200 +17592252831792 50000 +17592252831831 50000 +17592252872361 74200 +17592252958124 75100 +17592253348381 75100 +17592252958078 50000 +17592252870544 50000 +17592252925506 51200 +17592252958116 51300 +17592253348404 75100 +17592252958091 50000 +17592252958099 50000 +17592253031152 50000 +17592253112920 52200 +17592252958107 50000 +17592253089980 71200 +17592253134136 74100 +17592253289205 50000 +17592253289252 51300 +17592253289219 50000 +17592253289244 51200 +17592253289235 50000 +17592253723743 50000 +17592253447250 51200 +17592253723751 50000 +17592253552657 50000 +17592253339705 50000 +17592253723768 50000 +17592253723776 50000 +17592253566137 74100 +17592253723841 50000 +17592253724053 52200 +17592253552665 50000 +17592253723593 52200 +17592253723884 50000 +17592253723467 51200 +17592253723920 50000 +17592253723945 50000 +17592253788246 50000 +17592254148055 50000 +17592253870326 74700 +17592254075400 50000 +17592253769729 50000 +17592253788197 50000 +17592254075340 51200 +17592254075409 50000 +17592254075417 50000 +17592254148091 50000 +17592253964644 52200 +17592253962639 74200 +17592254075425 50000 +17592253921829 82100 +17592253921870 74600 +17592253921862 74600 +17592253921924 74600 +17592253921940 74600 +17592253962651 50000 +17592254075392 74100 +17592254075433 50000 +17592254148071 50000 +17592254148799 51200 +17592254075441 50000 +17592254075449 50000 +17592254148014 52200 +17592254148039 50000 +17592254148254 50000 +17592256902943 52200 +17592254139485 50000 +17592254239820 82100 +17592254613022 51300 +17592253927224 82100 +17592254238658 51200 +17592254747117 50000 +17592256496679 52000 +17592254747130 50000 +17592254313983 50000 +17592254747149 50000 +17592254613054 74100 +17592254613030 51300 +17592254613158 52200 +17592254747157 50000 +17592254613604 54300 +17592254747173 50000 +17592254655067 51200 +17592254747250 50000 +17592254747262 50000 +17592254671549 74610 +17592254695167 83500 +17592254871511 50000 +17592254654565 50000 +17592254746802 51200 +17592254747270 50000 +17592254802967 74200 +17592254747278 50000 +17592254895391 50000 +17592254895895 52200 +17592254895399 50000 +17592254871520 50000 +17592254871528 50000 +17592254880677 74100 +17592254895407 50000 +17592255057434 51200 +17592254895416 50000 +17592255251706 50000 +17592255133235 74600 +17592255252198 50000 +17592255123240 50000 +17592255985472 51200 +17592255447662 50000 +17592255252220 50000 +17592255458217 52200 +17592255448178 52200 +17592254803508 83100 +17592255252259 50000 +17592286657631 25200 +17592255444898 74100 +17592255985533 50000 +17592255447670 50000 +17592256498974 75100 +17592261789303 75100 +17592255794779 51200 +17592255985557 50000 +17592255985565 50000 +17592256368283 50000 +17592255985573 50000 +17592255596897 50000 +17592255712788 50000 +17592255854245 50000 +17592255854313 51200 +17592255985516 50000 +17592255985581 50000 +17592256282326 55100 +17592255985589 50000 +17592255853430 74500 +17592256356027 74700 +17592255985597 50000 +17592255985693 52200 +17592256368699 50000 +17592255985524 50000 +17592255985605 50000 +17592256013176 74100 +17592256245097 52200 +17592256192497 51200 +17592256236086 50000 +17592256236094 50000 +17592256282058 55100 +17592256843211 52200 +17592256282074 50000 +17592254803492 83500 +17592256843301 50000 +17592256236102 50000 +17592256457809 85100 +17592258231458 83100 +17592256281936 74610 +17592256216416 50000 +17592256281904 74200 +17592256281912 74200 +17592256464420 50000 +17592261768992 15300 +17592263925584 82100 +17592256225554 82100 +17592256225516 82100 +17592256236313 50000 +17592256355153 51200 +17592256499334 50000 +17592256844212 50000 +17592256496540 52200 +17592256499342 50000 +17592256464428 50000 +17592256499320 73300 +17592256499382 50000 +17592256473294 74100 +17592256708239 52000 +17592256499413 50000 +17592256706603 51200 +17592256499421 50000 +17592256925815 50000 +17592256680179 50000 +17592257272689 50000 +17592256731056 50000 +17592256925837 50000 +17592256999831 50000 +17592256844169 51200 +17592256925866 50000 +17592257272673 54400 +17592256889690 74200 +17592257017690 52200 +17592256925874 50000 +17592256926732 50000 +17592256999821 50000 +17592256999813 52200 +17592257409706 75050 +17592257409714 75050 +17592257272681 54400 +17592257236295 51200 +17592258227027 50000 +17592258227035 50000 +17592257909525 74200 +17592258227103 50000 +17592257395932 74200 +17592257267792 50000 +17592257442219 51200 +17592257630697 50000 +17592258227111 50000 +17592258227125 50000 +17592257631785 52200 +17592258227139 50000 +17592258229310 83500 +17592257630705 50000 +17592257630713 74100 +17592258227147 50000 +17592261789365 75100 +17592257778011 51200 +17592258227155 50000 +17592261789413 75100 +17592258227163 50000 +17592258227171 50000 +17592258227179 50000 +17592257899733 51200 +17592257812350 50000 +17592258025911 50000 +17592258227187 50000 +17592258026251 52200 +17592258227195 50000 +17592258227203 50000 +17592258230505 73300 +17592258228490 52200 +17592258228500 74100 +17592258025919 50000 +17592258227212 50000 +17592258227328 52200 +17592258227444 51200 +17592258227220 50000 +17592258229285 83500 +17592258227228 50000 +17592258286663 50000 +17592258604006 50000 +17592258381475 51200 +17592258394363 50000 +17592259001992 50000 +17592258504901 74200 +17592258394371 50000 +17592261648944 74200 +17592259313628 52200 +17592258621652 52200 +17592258394379 50000 +17592258604014 50000 +17592259075292 50000 +17592261769000 15300 +17592263925796 82100 +17592258316863 82100 +17592258628339 82100 +17592258603923 74100 +17592258792634 51200 +17592259075300 50000 +17592259267303 52000 +17592259075308 50000 +17592260026953 50000 +17592259075316 50000 +17592260026961 74500 +17592259075276 50000 +17592259075324 50000 +17592260036281 74610 +17592286657626 25200 +17592260026977 54400 +17592260026969 50000 +17592260026985 50000 +17592258901106 50000 +17592259075332 50000 +17592261789446 75100 +17592261789462 75100 +17592261648954 74200 +17592261648962 74200 +17592259075340 50000 +17592259075284 50000 +17592259075349 50000 +17592259077632 74100 +17592259089173 52200 +17592259075357 50000 +17592259267285 51200 +17592260081911 50000 +17592260013735 50000 +17592260081933 50000 +17592259302604 50000 +17592259579071 50000 +17592260081941 50000 +17592259428957 51200 +17592260081949 50000 +17592260081957 50000 +17592259579079 50000 +17592260081979 50000 +17592259596692 74100 +17592259587023 52200 +17592261789512 75100 +17592260081987 50000 +17592259908413 51200 +17592260081995 50000 +17592259739197 50000 +17592261660671 83500 +17592260082003 50000 +17592259908545 83100 +17592259925046 51200 +17592259826900 50000 +17592260082025 50000 +17592260080414 50000 +17592264980745 74700 +17592260082033 50000 +17592260082041 50000 +17592261591747 50000 +17592260083472 74100 +17592261789430 75100 +17592260082049 50000 +17592260080422 50000 +17592260410291 52200 +17592260082086 50000 +17592260410234 51200 +17592261151472 50000 +17592261152017 50000 +17592260410275 52200 +17592261164310 50000 +17592261152026 50000 +17592260304918 50000 +17592260410251 51200 +17592261152416 50000 +17592261152622 50000 +17592260081825 83500 +17592260664523 50000 +17592261152630 50000 +17592261126356 50000 +17592261126324 74100 +17592263362503 81110 +17592264202347 52200 +17592261152833 50000 +17592263257527 50000 +17592261769010 15300 +17592261769019 15300 +17592263925869 82100 +17592263926179 82100 +17592260434399 82100 +17592260434340 82100 +17592260434331 82100 +17592263257536 50000 +17592261789528 75100 +17592261126274 52200 +17592263465927 74610 +17592261553605 51200 +17592263257721 50000 +17592260966866 50000 +17592261288374 50000 +17592263242332 74700 +17592261044057 50000 +17592263258380 50000 +17592261164168 86400 +17592261288412 52200 +17592263242340 74700 +17592263258690 50000 +17592261288404 74100 +17592261288382 50000 +17592263258933 50000 +17592263259586 50000 +17592261553588 51200 +17592263259595 50000 +17592261553451 74200 +17592262680195 50000 +17592261576407 74200 +17592261408976 50000 +17592262680211 50000 +17592261873176 50000 +17592262680317 51200 +17592261580908 72600 +17592261531927 50000 +17592262680227 50000 +17592262680149 50000 +17592261789544 75100 +17592261646118 50000 +17592261646120 50000 +17592261889334 52200 +17592262680243 50000 +17592261873032 50000 +17592261889342 74100 +17592262680251 50000 +17592261873184 50000 +17592262680259 50000 +17592262680325 51200 +17592262680300 50000 +17592263350215 50000 +17592263350319 50000 +17592263350288 74700 +17592263350327 50000 +17592262646163 50000 +17592262828345 51200 +17592263068155 50000 +17592263350335 50000 +17592263350343 50000 +17592263048454 52200 +17592263350351 50000 +17592263049891 74100 +17592263068360 50000 +17592263350359 50000 +17592263350367 50000 +17592263242315 51200 +17592263267301 83100 +17592264442933 50000 +17592263350375 50000 +17592263310514 50000 +17592271711827 50000 +17592263350383 50000 +17592264169790 50000 +17592263465881 51200 +17592264013212 50000 +17592271711836 50000 +17592263562100 52200 +17592264013490 50000 +17592264443052 75100 +17592264395836 74100 +17592264013795 50000 +17592264169799 50000 +17592264395488 74200 +17592264013806 50000 +17592264395720 51200 +17592264442949 50000 +17592264013814 50000 +17592264442941 50000 +17592264110703 50000 +17592264442957 50000 +17592265147960 81110 +17592264202363 52200 +17592264110712 50000 +17592263885318 50000 +17592264395728 51200 +17592264164741 50000 +17592261044039 82100 +17592264456482 50000 +17592263900074 82100 +17592264651973 52000 +17592264202379 52200 +17592264013833 50000 +17592264395859 74100 +17592264164733 50000 +17592264456491 50000 +17592264395786 51200 +17592264456499 50000 +17592264456559 50000 +17592264395516 50000 +17592264652355 51200 +17592264441978 50000 +17592264761716 50000 +17592264456567 50000 +17592264536764 50000 +17592264749133 52200 +17592264641378 50000 +17592264709144 50000 +17592264719831 74100 +17592264761732 50000 +17592265841987 50000 +17592265121630 50000 +17592264941985 51200 +17592265121930 50000 +17592265122221 50000 +17592265123287 74700 +17592265123546 50000 +17592264978300 50000 +17592265142733 51200 +17592265124111 50000 +17592265122531 50000 +17592265122868 50000 +17592265094803 50000 +17592265620783 50000 +17592265620798 50000 +17592265291290 50000 +17592265502578 52200 +17592265502562 74100 +17592265620813 50000 +17592265505722 51200 +17592265620852 50000 +17592265620876 50000 +17592271712355 50000 +17592265532391 50000 +17592265674026 51200 +17592265621073 50000 +17592271806132 50000 +17592271806124 50000 +17592265597786 50000 +17592271806382 50000 +17592266494637 50000 +17592265851940 52200 +17592266494645 50000 +17592265839737 50000 +17592265840293 74100 +17592265855106 50000 +17592266213604 74200 +17592266211796 51400 +17592266213999 51200 +17592266494459 50000 +17592266494468 50000 +17592271806394 50000 +17592271806415 50000 +17592271806407 50000 +17592266494476 50000 +17592266494373 51200 +17592266494557 50000 +17592266494484 50000 +17592266259199 50000 +17592266494492 50000 +17592267351603 83100 +17592266526208 50000 +17592266597185 74610 +17592267891451 52200 +17592269108326 50000 +17592266396978 82100 +17592268204121 74100 +17592266410357 82100 +17592266597193 50000 +17592269108334 50000 +17592267991908 51200 +17592269108342 50000 +17592269108350 50000 +17592268204170 52000 +17592268204137 52200 +17592266820468 50000 +17592267991900 51200 +17592269108359 50000 +17592269119248 50000 +17592268204071 50000 +17592274295628 50000 +17592268204002 50000 +17592269126200 75100 +17592269108391 50000 +17592268204010 50000 +17592267891207 52200 +17592267991981 74100 +17592269108399 50000 +17592267991876 51200 +17592269108407 50000 +17592269108415 50000 +17592269119912 50000 +17592274295636 50000 +17592269108423 50000 +17592267331946 50000 +17592267852127 50000 +17592267991884 51200 +17592269108439 50000 +17592269108447 50000 +17592267852242 74200 +17592269108463 50000 +17592267851820 74100 +17592267852205 52200 +17592267852136 50000 +17592269108471 50000 +17592274295644 50000 +17592267891273 51200 +17592269108487 50000 +17592267851837 74610 +17592269108495 50000 +17592269108504 50000 +17592268048065 51200 +17592268908905 50000 +17592267928197 50000 +17592269108520 50000 +17592268015371 50000 +17592267969021 81110 +17592268262877 50000 +17592269108536 50000 +17592269108552 50000 +17592268671403 74100 +17592268671500 52200 +17592269108568 50000 +17592271712403 50000 +17592268534281 51200 +17592269108584 50000 +17592269108669 50000 +17592269125846 75100 +17592274295652 50000 +17592274295660 50000 +17592274295668 50000 +17592269108685 50000 +17592269211074 51200 +17592268908023 50000 +17592268605207 52200 +17592268576821 50000 +17592269108693 50000 +17592269126225 75100 +17592269108701 50000 +17592268818549 52200 +17592271712378 74600 +17592269126387 75100 +17592269108717 50000 +17592268953941 74100 +17592268953950 50000 +17592269108318 51200 +17592269108741 50000 +17592269659115 83100 +17592269108757 50000 +17592274432351 52200 +17592269108773 50000 +17592274448344 50000 +17592270495992 86400 +17592268909280 82100 +17592268909257 82100 +17592268909249 82100 +17592269372986 50000 +17592269209785 50000 +17592269289929 50000 +17592269310769 51200 +17592269335730 50000 +17592269372994 50000 +17592269492844 50000 +17592269383463 50000 +17592269499587 50000 +17592269499993 74100 +17592269492948 52000 +17592269492836 50000 +17592269499579 50000 +17592269636289 51200 +17592269499595 50000 +17592274436921 50000 +17592269834052 74200 +17592270307299 50000 +17592274449581 50000 +17592269834094 50000 +17592269834069 52200 +17592270307333 50000 +17592269834605 74610 +17592269693277 50000 +17592270307402 50000 +17592270307476 50000 +17592270118176 82100 +17592270058563 50000 +17592270117960 82100 +17592270306389 52200 +17592270343765 74100 +17592270307571 50000 +17592270353880 51200 +17592270307651 50000 +17592270307774 50000 +17592274449572 50000 +17592270307846 50000 +17592274449565 50000 +17592270405418 50000 +17592270518236 51200 +17592271501651 50000 +17592270432689 50000 +17592271501659 50000 +17592274449391 55100 +17592271501671 50000 +17592270929511 74100 +17592271501683 50000 +17592286657630 25200 +17592270942775 50000 +17592270942792 50000 +17592271501717 50000 +17592270989519 51200 +17592270936781 52200 +17592284030630 50000 +17592271501743 50000 +17592274449530 75100 +17592270942510 52200 +17592271501751 50000 +17592271025676 51200 +17592271242820 83100 +17592284030511 50000 +17592270925473 50000 +17592271501767 50000 +17592270942810 50000 +17592270942848 50000 +17592271011631 50000 +17592274448670 50000 +17592271501779 50000 +17592271501802 50000 +17592271242532 52200 +17592271573763 74100 +17592271501810 50000 +17592271186418 50000 +17592271186646 50000 +17592271501818 50000 +17592271501826 50000 +17592271035651 82100 +17592271501618 74200 +17592271518618 51200 +17592274448935 75100 +17592271501834 50000 +17592271570259 50000 +17592271668116 51200 +17592271501868 50000 +17592271573723 50000 +17592271772812 50000 +17592273485924 52200 +17592271772820 50000 +17592271486826 82200 +17592271486825 82100 +17592271759254 50000 +17592271875138 50000 +17592271875146 50000 +17592271908557 52200 +17592271909294 74100 +17592272771672 50000 +17592272255429 51200 +17592272772056 50000 +17592272772607 50000 +17592272773354 50000 +17592275427757 75100 +17592272453654 52000 +17592272107182 50000 +17592272255445 51200 +17592272773820 50000 +17592272774244 50000 +17592272255820 50000 +17592272774470 50000 +17592272307152 50000 +17592272307154 50000 +17592272307156 50000 +17592272413735 50000 +17592272662873 74100 +17592272775239 50000 +17592272408623 50000 +17592272413427 74610 +17592272698016 51200 +17592272775798 50000 +17592272776233 50000 +17592273787870 73300 +17592272776665 50000 +17592284030646 50000 +17592284030638 50000 +17592284030531 50000 +17592272675076 52200 +17592272770544 50000 +17592272770536 50000 +17592272977629 51200 +17592272776870 50000 +17592275427724 75100 +17592284030654 50000 +17592272922731 50000 +17592273504789 50000 +17592274432760 52200 +17592274432769 74200 +17592273504872 50000 +17592273255115 52200 +17592273286152 74100 +17592274011180 50000 +17592273188507 50000 +17592275737137 74100 +17592273504880 50000 +17592273504888 50000 +17592275426591 75100 +17592273504896 50000 +17592273498094 51200 +17592273504904 50000 +17592275426535 50000 +17592273552779 82100 +17592273554649 50000 +17592273553174 81110 +17592273551576 50000 +17592273504912 50000 +17592273628410 50000 +17592273662358 51200 +17592279771354 74610 +17592273785717 50000 +17592273785991 50000 +17592273748308 50000 +17592273748306 50000 +17592273908449 74200 +17592273908816 52200 +17592273908457 50000 +17592275737520 74100 +17592274012651 50000 +17592284031125 50000 +17592274223937 51200 +17592274012659 50000 +17592275427749 75100 +17592274012667 50000 +17592274012675 50000 +17592274358360 51200 +17592274495495 50000 +17592274270335 50000 +17592274266656 50000 +17592274495503 50000 +17592274348817 50000 +17592274432295 52200 +17592274495511 50000 +17592276640053 52200 +17592274495519 50000 +17592274495713 50000 +17592275737528 74600 +17592272256150 82200 +17592272256149 82100 +17592274214915 82100 +17592274929685 51200 +17592274850705 50000 +17592276138702 52200 +17592274929607 50000 +17592275080039 52000 +17592274929615 50000 +17592274929591 74610 +17592274929623 50000 +17592275079999 50000 +17592274929631 50000 +17592275104209 51200 +17592274971239 50000 +17592275903788 50000 +17592275903796 50000 +17592275170460 50000 +17592275390935 74200 +17592275196109 52200 +17592275737536 74100 +17592275903823 50000 +17592275903884 50000 +17592275326411 50000 +17592275903892 50000 +17592275373373 50000 +17592275903906 50000 +17592275401940 74600 +17592275398151 50000 +17592275402366 51200 +17592275525987 51200 +17592275903914 50000 +17592275507939 25200 +17592275903922 50000 +17592275903930 50000 +17592275698041 50000 +17592275736729 74100 +17592275733203 52200 +17592275903938 50000 +17592275948951 51200 +17592275903946 50000 +17592275903954 50000 +17592276733166 50000 +17592275986732 50000 +17592276140858 50000 +17592276733174 50000 +17592276137168 51200 +17592276140536 74200 +17592276733182 50000 +17592276733190 50000 +17592276548854 50000 +17592276278694 52200 +17592276640061 74100 +17592276733198 50000 +17592276639350 51200 +17592276733206 50000 +17592276733214 50000 +17592286657629 25200 +17592276733222 50000 +17592276638773 50000 +17592277989713 50000 +17592276733976 51200 +17592276733230 50000 +17592276767097 81110 +17592276935839 52200 +17592276881649 50000 +17592276935855 50000 +17592276881831 50000 +17592277283327 74100 +17592277210430 51200 +17592277182506 50000 +17592277182522 50000 +17592277182538 50000 +17592277370245 51200 +17592276860859 82100 +17592277282920 50000 +17592277283616 50000 +17592275079754 82100 +17592275079755 82200 +17592277999210 74610 +17592278714617 50000 +17592277506133 74200 +17592278070734 15300 +17592277464492 50000 +17592278714625 50000 +17592277672681 52200 +17592277987142 74100 +17592278714633 50000 +17592277630956 83100 +17592278070626 52000 +17592277845058 50000 +17592278714641 50000 +17592278714649 50000 +17592278714657 50000 +17592278070770 50000 +17592278714713 50000 +17592278106770 51200 +17592278569442 51200 +17592278714721 50000 +17592278714729 50000 +17592284030463 75100 +17592278714737 50000 +17592278569426 52200 +17592278569711 74100 +17592278439370 50000 +17592278714745 50000 +17592278601842 51200 +17592278714753 50000 +17592278714761 50000 +17592279256329 74600 +17592278689457 50000 +17592278714769 50000 +17592278714777 50000 +17592278825647 51200 +17592279032695 52200 +17592279256006 50000 +17592281260777 74500 +17592279256429 74100 +17592281874424 25200 +17592279256014 50000 +17592280178726 75100 +17592279256022 50000 +17592279126780 50000 +17592279267876 51200 +17592279256030 50000 +17592279256038 50000 +17592280178734 75100 +17592279448975 51200 +17592279324406 50000 +17592279341518 50000 +17592279339584 52200 +17592279449744 50000 +17592280035687 50000 +17592279789791 74100 +17592279795067 51200 +17592280035695 50000 +17592279628741 50000 +17592279628739 50000 +17592280035703 50000 +17592280178718 75100 +17592279464633 82100 +17592280035865 50000 +17592280137278 74610 +17592284030443 75100 +17592279859954 50000 +17592279950176 51200 +17592280035873 50000 +17592281874423 25200 +17592281805025 81110 +17592280035904 50000 +17592282560353 50000 +17592280768803 83100 +17592277990129 82100 +17592282560361 50000 +17592280295375 52200 +17592280750910 74100 +17592280751324 51200 +17592280357977 50000 +17592282560369 50000 +17592283942475 50000 +17592282560377 50000 +17592282560391 50000 +17592280754310 52000 +17592286657628 25200 +17592280751388 50000 +17592280939507 51200 +17592282560399 50000 +17592280849716 52200 +17592282560407 50000 +17592281260592 74610 +17592282560415 50000 +17592282560423 50000 +17592281680033 74100 +17592281354370 52200 +17592281441623 50000 +17592282560431 50000 +17592281784793 51200 +17592282560439 50000 +17592281680963 91100 +17592282560447 50000 +17592281703192 74200 +17592281784809 74200 +17592281771476 50000 +17592282560455 50000 +17592281879483 51200 +17592282576318 75100 +17592282560463 50000 +17592284030487 75100 +17592282560471 50000 +17592282560531 74610 +17592286657627 25200 +17592282560479 50000 +17592282560572 52200 +17592282560601 74100 +17592282560487 50000 +17592282231518 50000 +17592283942465 50000 +17592282560495 50000 +17592282560503 50000 +17592282669249 50000 +17592282669251 50000 +17592283458186 50000 +17592283458194 50000 +17592283254346 52200 +17592282964082 81120 +17592283458202 50000 +17592283831330 74200 +17592283254369 74100 +17592283458210 50000 +17592283458218 50000 +17592283195503 50000 +17592283458226 50000 +17592283254389 50000 +17592283458234 50000 +17592283440251 52200 +17592283458242 50000 +17592283445721 82100 +17592283439423 50000 +17592283458258 50000 +17592283803523 74100 +17592283458250 50000 +17592283942498 50000 +17592283787723 50000 +17592283909011 50000 +17592284205472 50000 +17592284378305 82100 +17592284378306 82200 +17592284454899 50000 +17592284454901 50000 +17592284656956 81120 +17592284656263 50000 +17592284917470 50000 +17592285153372 50000 +17592285632586 50000 +17592285842568 50000 +17592286215685 50000 +17592286576467 50000 +17592286726633 50000 +17592286969156 50000 +17592287133473 50000 +17592287212502 50000 +17592252510409 82100 +17592252892573 50000 +17592252552471 50000 +17592253605970 50000 +17592253835687 50000 +17592252892579 50000 +17592253605883 50000 +17592253835689 50000 +17592252892577 50000 +17592253835691 50000 +17592252838995 50000 +17592252838999 50000 +17592252838991 50000 +17592252152236 50000 +17592252152238 50000 +17592252668295 11000 +17592253605889 50000 +17592253605887 50000 +17592253605885 50000 +17592253835693 50000 +17592252892581 50000 +17592252892575 50000 +17592253835695 50000 +17592253152408 50000 +17592252152240 50000 +17592252152242 50000 +17592253606000 50000 +17592253835697 50000 +17592252892563 50000 +17592253606002 50000 +17592253835699 50000 +17592253605893 50000 +17592253605891 50000 +17592253606004 50000 +17592253835701 50000 +17592253835703 50000 +17592253606006 50000 +17592253835707 50000 +17592253305714 50000 +17592252152244 50000 +17592252152246 50000 +17592253605972 50000 +17592253606008 50000 +17592253075244 11000 +17592253835709 50000 +17592253605974 50000 +17592253835711 50000 +17592253835808 50000 +17592252152248 50000 +17592252152250 50000 +17592253605810 50000 +17592253605818 50000 +17592253605814 50000 +17592253835713 50000 +17592253835810 50000 +17592255176832 50000 +17592255176803 50000 +17592253835715 50000 +17592253835812 50000 +17592253605901 50000 +17592253605899 50000 +17592253835719 50000 +17592253835814 50000 +17592254231651 50000 +17592253734078 50000 +17592253734082 50000 +17592253540324 11000 +17592253835721 50000 +17592253835816 50000 +17592252152252 50000 +17592252152254 50000 +17592253835723 50000 +17592253835818 50000 +17592254021374 50000 +17592253835727 50000 +17592254231657 50000 +17592253835677 50000 +17592254778073 50000 +17592254231659 50000 +17592254778075 50000 +17592254231661 50000 +17592254231699 50000 +17592254231701 50000 +17592252152256 50000 +17592254778077 50000 +17592254231663 50000 +17592253951248 11000 +17592254098818 50000 +17592254098828 50000 +17592254778079 50000 +17592254231665 50000 +17592254231703 50000 +17592254231705 50000 +17592252552543 50000 +17592252552541 50000 +17592254778081 50000 +17592254231653 50000 +17592254778095 50000 +17592254778083 50000 +17592254231640 50000 +17592254080968 74600 +17592254778097 50000 +17592254778085 50000 +17592254778099 50000 +17592254778087 50000 +17592254207744 82100 +17592252552545 50000 +17592254778101 50000 +17592254778089 50000 +17592254778182 50000 +17592254778184 50000 +17592254370204 11000 +17592254620103 50000 +17592254778103 50000 +17592254778091 50000 +17592255518713 50000 +17592254778105 50000 +17592254778188 50000 +17592254778186 50000 +17592256013381 50000 +17592256354942 50000 +17592254778107 50000 +17592256013383 50000 +17592254778062 50000 +17592256013385 50000 +17592255396333 50000 +17592256013387 50000 +17592255396357 50000 +17592255396359 50000 +17592255396335 50000 +17592256263060 50000 +17592256013389 50000 +17592255088622 50000 +17592255088618 50000 +17592255396337 50000 +17592254851956 11000 +17592256013391 50000 +17592255396361 50000 +17592256013393 50000 +17592256013463 50000 +17592256013395 50000 +17592256013465 50000 +17592255396313 50000 +17592255396323 50000 +17592256013397 50000 +17592256013467 50000 +17592256354950 50000 +17592256013399 50000 +17592256013469 50000 +17592255396365 50000 +17592255396363 50000 +17592255396367 50000 +17592256013401 50000 +17592256013471 50000 +17592255372489 81120 +17592255372608 81120 +17592255656260 50000 +17592255656256 50000 +17592255396295 11000 +17592256013403 50000 +17592255411341 11000 +17592256013473 50000 +17592256263064 50000 +17592256263062 50000 +17592256707515 50000 +17592256013405 50000 +17592256013475 50000 +17592253835853 50000 +17592253835851 50000 +17592256013477 50000 +17592256262809 50000 +17592256013479 50000 +17592255794435 12401 +17592256262811 50000 +17592256013481 50000 +17592256262813 50000 +17592256263058 50000 +17592256263068 50000 +17592256263066 50000 +17592256013371 50000 +17592256013483 50000 +17592256262815 50000 +17592255972152 11000 +17592256013485 50000 +17592256029084 74800 +17592256262817 50000 +17592256263072 50000 +17592256263070 50000 +17592256948165 50000 +17592256262819 50000 +17592256948167 50000 +17592256262795 50000 +17592256262825 50000 +17592256262821 50000 +17592256948169 50000 +17592257909283 50000 +17592256948171 50000 +17592256948221 50000 +17592256948223 50000 +17592257909285 50000 +17592256409271 82100 +17592256708416 50000 +17592256948173 50000 +17592256418191 11000 +17592257909287 50000 +17592258540440 50000 +17592256948175 50000 +17592256948227 50000 +17592256948225 50000 +17592257909289 50000 +17592257265777 50000 +17592257909291 50000 +17592257909377 50000 +17592257240441 50000 +17592256948229 50000 +17592257265779 50000 +17592257909293 50000 +17592257265781 50000 +17592257909295 50000 +17592257543043 50000 +17592259953836 50000 +17592256948231 50000 +17592256948233 50000 +17592257265783 50000 +17592257909297 50000 +17592257265785 50000 +17592257909299 50000 +17592256965269 11000 +17592257239821 50000 +17592257265820 50000 +17592257265818 50000 +17592257265787 50000 +17592257909301 50000 +17592257909303 50000 +17592257909379 50000 +17592257909383 50000 +17592257244240 12300 +17592257909305 50000 +17592257909385 50000 +17592257786826 50000 +17592257786822 50000 +17592257909307 50000 +17592257909387 50000 +17592257909309 50000 +17592257909435 50000 +17592257909437 50000 +17592257909389 50000 +17592257566715 11000 +17592257909311 50000 +17592257909391 50000 +17592257786698 50000 +17592258430511 50000 +17592257909439 50000 +17592257909441 50000 +17592257909443 50000 +17592257909393 50000 +17592258430513 50000 +17592258375614 50000 +17592258186666 50000 +17592258430515 50000 +17592258375622 50000 +17592257909265 50000 +17592257909269 50000 +17592258430517 50000 +17592258375630 50000 +17592259017123 50000 +17592258430519 50000 +17592258430628 50000 +17592258430626 50000 +17592258375638 50000 +17592258567245 11000 +17592258186610 50000 +17592257996169 11000 +17592258430521 50000 +17592258375646 50000 +17592257956658 12401 +17592258430523 50000 +17592258430630 50000 +17592258430632 50000 +17592258375654 50000 +17592258258941 50000 +17592258430525 50000 +17592259017139 50000 +17592258430527 50000 +17592258430485 50000 +17592258430489 50000 +17592258430493 50000 +17592259017141 50000 +17592259017125 50000 +17592259017143 50000 +17592259017185 50000 +17592258329203 74700 +17592259018326 50000 +17592259018328 50000 +17592259017145 50000 +17592259017187 50000 +17592258792897 50000 +17592258792893 50000 +17592259017147 50000 +17592259017189 50000 +17592259018332 50000 +17592259018330 50000 +17592259017149 50000 +17592259017191 50000 +17592258735250 82100 +17592260499126 50000 +17592259017151 50000 +17592260499128 50000 +17592259017109 50000 +17592259017105 50000 +17592259267546 50000 +17592259953874 50000 +17592260499130 50000 +17592259267554 50000 +17592259587379 50000 +17592259587341 50000 +17592259587339 50000 +17592259587345 50000 +17592259587343 50000 +17592260499132 50000 +17592259587381 50000 +17592260499134 50000 +17592259266677 50000 +17592259064358 11000 +17592259587383 50000 +17592259587349 50000 +17592259587347 50000 +17592260499136 50000 +17592259098541 25200 +17592259953876 50000 +17592259587385 50000 +17592260499138 50000 +17592259587387 50000 +17592259587514 50000 +17592260499140 50000 +17592259587389 50000 +17592260499142 50000 +17592259953842 50000 +17592259953840 50000 +17592259953838 50000 +17592259587391 50000 +17592260499144 50000 +17592259953878 50000 +17592259499147 11000 +17592259587393 50000 +17592259587453 50000 +17592260499146 50000 +17592259953846 50000 +17592259953844 50000 +17592259587395 50000 +17592260499148 50000 +17592260499166 50000 +17592260499150 50000 +17592259953818 50000 +17592259953822 50000 +17592260499168 50000 +17592260499152 50000 +17592260499170 50000 +17592260499154 50000 +17592260499156 50000 +17592260499172 50000 +17592260499335 50000 +17592260499337 50000 +17592260238679 50000 +17592260238675 50000 +17592260037864 74700 +17592260499158 50000 +17592261125972 50000 +17592260499174 50000 +17592259985613 74700 +17592260499160 50000 +17592260499176 50000 +17592260499339 50000 +17592260499341 50000 +17592260074341 11000 +17592260499162 50000 +17592260941587 50000 +17592262753694 50000 +17592261125986 50000 +17592260435926 50000 +17592262753696 50000 +17592261125988 50000 +17592261858046 50000 +17592262753698 50000 +17592260499343 50000 +17592260499345 50000 +17592261125990 50000 +17592260940907 50000 +17592262753700 50000 +17592260632001 11000 +17592263691847 50000 +17592261125992 50000 +17592262753702 50000 +17592261126092 50000 +17592261126094 50000 +17592261125994 50000 +17592262753704 50000 +17592261125998 50000 +17592262753706 50000 +17592261129737 82100 +17592261125968 50000 +17592262423122 50000 +17592262753708 50000 +17592261269171 74600 +17592261009822 12400 +17592262423130 50000 +17592262753710 50000 +17592261126100 50000 +17592261126096 50000 +17592261126098 50000 +17592262423170 50000 +17592262433892 50000 +17592262753712 50000 +17592261179463 11000 +17592261499133 50000 +17592261266603 25200 +17592262753714 50000 +17592262753740 50000 +17592262753894 50000 +17592262753896 50000 +17592263404628 50000 +17592262753716 50000 +17592262753734 50000 +17592263404630 50000 +17592262753718 50000 +17592261683236 50000 +17592261683240 50000 +17592263404632 50000 +17592262753720 50000 +17592263404634 50000 +17592262753722 50000 +17592262753898 50000 +17592262753900 50000 +17592263404636 50000 +17592262753724 50000 +17592262375806 50000 +17592261868000 11000 +17592263404638 50000 +17592262753726 50000 +17592262753736 50000 +17592262753902 50000 +17592262753904 50000 +17592263541280 50000 +17592263404640 50000 +17592262753728 50000 +17592262380646 97200 +17592263404642 50000 +17592262753684 50000 +17592262753674 50000 +17592262753730 50000 +17592263404644 50000 +17592263404594 50000 +17592263541302 50000 +17592263404646 50000 +17592263404596 50000 +17592263404772 50000 +17592263404774 50000 +17592263404648 50000 +17592263404598 50000 +17592262970675 11000 +17592263266430 50000 +17592263266426 50000 +17592262877549 74700 +17592263404650 50000 +17592263404600 50000 +17592263404776 50000 +17592263404778 50000 +17592263030030 74700 +17592263404602 50000 +17592263931527 50000 +17592263404584 50000 +17592264666402 50000 +17592263931529 50000 +17592263931523 50000 +17592263541324 50000 +17592264666404 50000 +17592263931531 50000 +17592264666406 50000 +17592263931533 50000 +17592263931591 50000 +17592263931593 50000 +17592263931595 50000 +17592264666408 50000 +17592263931535 50000 +17592263862192 50000 +17592263862196 50000 +17592263579400 11000 +17592264666410 50000 +17592263931537 50000 +17592263931599 50000 +17592263931597 50000 +17592264183162 50000 +17592264666412 50000 +17592264183221 50000 +17592264183237 50000 +17592264666414 50000 +17592264666470 50000 +17592264666354 50000 +17592264666352 50000 +17592264666350 50000 +17592264666416 50000 +17592265789132 50000 +17592264076429 15400 +17592264666472 50000 +17592264396157 50000 +17592264396153 50000 +17592264666418 50000 +17592266396493 50000 +17592264076082 74600 +17592264666474 50000 +17592264379843 82100 +17592264666358 50000 +17592264666356 50000 +17592264164602 11000 +17592264666420 50000 +17592265129613 50000 +17592267641370 50000 +17592266525723 50000 +17592265129615 50000 +17592267641372 50000 +17592265129617 50000 +17592265789140 50000 +17592267641374 50000 +17592264666364 50000 +17592264666362 50000 +17592264666360 50000 +17592265129619 50000 +17592267641376 50000 +17592266525739 50000 +17592266525761 50000 +17592266525747 50000 +17592265129621 50000 +17592265789148 50000 +17592267641378 50000 +17592264709345 11000 +17592265129623 50000 +17592265129657 50000 +17592265129659 50000 +17592267641380 50000 +17592265789409 50000 +17592267641382 50000 +17592266396495 50000 +17592266525769 50000 +17592265129609 50000 +17592265789417 50000 +17592267641384 50000 +17592267641386 50000 +17592266396499 50000 +17592265789156 50000 +17592267641388 50000 +17592266396636 50000 +17592266396634 50000 +17592266396501 50000 +17592266525777 50000 +17592267641390 50000 +17592265274146 11000 +17592266396503 50000 +17592267641392 50000 +17592267641420 50000 +17592266396638 50000 +17592266396642 50000 +17592266396640 50000 +17592266396505 50000 +17592267641394 50000 +17592266396510 50000 +17592267071786 50000 +17592267641396 50000 +17592266396512 50000 +17592267641398 50000 +17592266396514 50000 +17592266396646 50000 +17592266396644 50000 +17592266396648 50000 +17592265789164 50000 +17592267641400 50000 +17592266396516 50000 +17592265837988 11000 +17592267071802 50000 +17592267071794 50000 +17592267641402 50000 +17592266396518 50000 +17592266396652 50000 +17592266396650 50000 +17592267765338 50000 +17592267641404 50000 +17592266396520 50000 +17592267406825 50000 +17592267641406 50000 +17592267641422 50000 +17592267406840 50000 +17592267641408 50000 +17592266396483 50000 +17592267641410 50000 +17592267641427 50000 +17592267642031 50000 +17592267642033 50000 +17592267642027 50000 +17592267642029 50000 +17592267641429 50000 +17592267641412 50000 +17592267765362 50000 +17592267641431 50000 +17592267641414 50000 +17592266597290 11000 +17592267642039 50000 +17592267642035 50000 +17592267642037 50000 +17592268800597 50000 +17592267641433 50000 +17592267641416 50000 +17592270623792 50000 +17592267641437 50000 +17592270896208 50000 +17592267037302 82100 +17592267641439 50000 +17592269988356 50000 +17592267642043 50000 +17592267642041 50000 +17592270896216 50000 +17592267641441 50000 +17592269988371 50000 +17592267071768 11000 +17592267641443 50000 +17592268630955 50000 +17592267642047 50000 +17592267642049 50000 +17592267642045 50000 +17592270896224 50000 +17592267641445 50000 +17592269988388 50000 +17592268187765 50000 +17592269988428 50000 +17592270896241 50000 +17592268800599 50000 +17592269165528 50000 +17592270896249 50000 +17592268800617 50000 +17592267642051 50000 +17592267642053 50000 +17592270896257 50000 +17592268800619 50000 +17592269988517 50000 +17592270896265 50000 +17592267643346 11000 +17592268800621 50000 +17592267641359 50000 +17592270896273 50000 +17592268800623 50000 +17592268800909 50000 +17592268800907 50000 +17592270896281 50000 +17592268800627 50000 +17592269988553 50000 +17592267892038 74700 +17592270896289 50000 +17592268800629 50000 +17592268800593 50000 +17592268636669 74710 +17592270896232 50000 +17592270896297 50000 +17592268800631 50000 +17592270896313 50000 +17592269988647 50000 +17592268800633 50000 +17592268800913 50000 +17592268800911 50000 +17592268235967 11000 +17592268184875 74700 +17592271676922 50000 +17592269988663 50000 +17592268800635 50000 +17592269659049 50000 +17592271676924 50000 +17592268800637 50000 +17592268800917 50000 +17592268800915 50000 +17592271676926 50000 +17592269224070 50000 +17592269223992 50000 +17592269988671 50000 +17592271676928 50000 +17592269223738 50000 +17592269223734 50000 +17592269223730 50000 +17592269224072 50000 +17592269988679 50000 +17592271676930 50000 +17592269224074 50000 +17592271676932 50000 +17592269224076 50000 +17592269988687 50000 +17592268800919 50000 +17592268891157 11000 +17592271676934 50000 +17592269223765 50000 +17592269224078 50000 +17592269397273 50000 +17592269397275 50000 +17592271676936 50000 +17592269224080 50000 +17592268819215 25200 +17592271676938 50000 +17592269865628 50000 +17592269223900 50000 +17592271676940 50000 +17592269865630 50000 +17592269449965 81120 +17592269466778 82100 +17592271676942 50000 +17592273917580 50000 +17592269865632 50000 +17592271676944 50000 +17592271677137 50000 +17592269865634 50000 +17592269865767 50000 +17592269865765 50000 +17592271676946 50000 +17592269480121 11000 +17592269865636 50000 +17592269865609 50000 +17592271024799 50000 +17592271676950 50000 +17592271676948 50000 +17592271024885 50000 +17592269865638 50000 +17592269865771 50000 +17592269865769 50000 +17592271676952 50000 +17592270402124 50000 +17592271676954 50000 +17592269865613 50000 +17592270402126 50000 +17592271676956 50000 +17592270402128 50000 +17592271676958 50000 +17592270402333 50000 +17592270402331 50000 +17592270402130 50000 +17592271676960 50000 +17592271087704 50000 +17592271087715 50000 +17592271087725 50000 +17592271087756 50000 +17592270402132 50000 +17592271676962 50000 +17592271677139 50000 +17592270004255 11000 +17592270402337 50000 +17592270402335 50000 +17592270402134 50000 +17592271676964 50000 +17592271677154 50000 +17592271677156 50000 +17592271676966 50000 +17592270402114 50000 +17592271677158 50000 +17592271676968 50000 +17592273368149 50000 +17592271677160 50000 +17592271676970 50000 +17592272220490 50000 +17592272220488 50000 +17592270681345 11000 +17592271677162 50000 +17592271677079 50000 +17592272220492 50000 +17592271087694 50000 +17592273368165 50000 +17592271677164 50000 +17592271677081 50000 +17592272220494 50000 +17592272220496 50000 +17592272218575 50000 +17592273368372 50000 +17592271677198 50000 +17592271677083 50000 +17592271677200 50000 +17592271677085 50000 +17592271087674 50000 +17592271087684 50000 +17592271677202 50000 +17592273368627 50000 +17592271677109 50000 +17592271677204 50000 +17592271677111 50000 +17592272220500 50000 +17592273534298 50000 +17592271677206 50000 +17592271186715 11000 +17592271334760 81120 +17592271677208 50000 +17592271243180 11000 +17592271677113 50000 +17592271357059 25200 +17592271677115 50000 +17592273368798 50000 +17592271676895 50000 +17592273368814 50000 +17592272218585 50000 +17592273623989 50000 +17592272218587 50000 +17592273623991 50000 +17592273368935 50000 +17592273623993 50000 +17592273534281 50000 +17592273534289 50000 +17592271875599 11000 +17592272218589 50000 +17592271808676 93100 +17592271808720 81160 +17592273623995 50000 +17592271887824 74700 +17592271898555 12300 +17592271904241 74800 +17592272218591 50000 +17592271898649 74800 +17592273623997 50000 +17592273368943 50000 +17592272115216 82100 +17592273623893 50000 +17592273623999 50000 +17592271983094 12401 +17592273623895 50000 +17592275125846 50000 +17592273623897 50000 +17592273624001 50000 +17592273624101 50000 +17592273624103 50000 +17592273623899 50000 +17592279149352 50000 +17592273624003 50000 +17592273624041 50000 +17592273368951 50000 +17592272390898 11000 +17592273623901 50000 +17592273624043 50000 +17592273624107 50000 +17592273624105 50000 +17592273369045 50000 +17592273623903 50000 +17592273624045 50000 +17592273623933 50000 +17592273624047 50000 +17592273623935 50000 +17592273624049 50000 +17592273369053 50000 +17592273623937 50000 +17592273624051 50000 +17592273624109 50000 +17592273624111 50000 +17592273369061 50000 +17592273623939 50000 +17592276311345 50000 +17592275193165 50000 +17592275193205 50000 +17592273624053 50000 +17592273153881 11000 +17592273272518 97200 +17592273623941 50000 +17592273624055 50000 +17592273624057 50000 +17592273624115 50000 +17592273624113 50000 +17592273623943 50000 +17592276311353 50000 +17592274406185 50000 +17592276311361 50000 +17592275193213 50000 +17592274406187 50000 +17592274406189 50000 +17592274406191 50000 +17592274406288 50000 +17592274406290 50000 +17592276311369 50000 +17592275193221 50000 +17592275193229 50000 +17592273875259 11000 +17592273840844 74700 +17592274406193 50000 +17592274406292 50000 +17592276311377 50000 +17592275079696 50000 +17592276311385 50000 +17592274242583 12300 +17592274406158 50000 +17592274406167 50000 +17592274406176 50000 +17592274242469 81120 +17592275079698 50000 +17592275079700 50000 +17592274406296 50000 +17592274406294 50000 +17592275079702 50000 +17592275765034 50000 +17592275386106 50000 +17592275765026 50000 +17592274495527 11000 +17592275079704 50000 +17592275079733 50000 +17592275079731 50000 +17592275079706 50000 +17592276311393 50000 +17592275386146 50000 +17592276939339 50000 +17592275386148 50000 +17592275079611 50000 +17592275079621 50000 +17592274976993 82100 +17592276939341 50000 +17592274878966 74600 +17592276647251 50000 +17592276647123 50000 +17592275386150 50000 +17592276939343 50000 +17592276311401 50000 +17592275386152 50000 +17592274977009 12400 +17592276939345 50000 +17592275079737 50000 +17592275079735 50000 +17592276311409 50000 +17592275168231 11000 +17592275386154 50000 +17592275386116 50000 +17592275386126 50000 +17592276939347 50000 +17592275213756 50000 +17592275386156 50000 +17592275390922 50000 +17592275390924 50000 +17592276939349 50000 +17592276311417 50000 +17592276160155 50000 +17592276939351 50000 +17592276939770 50000 +17592275386136 50000 +17592276939353 50000 +17592276311425 50000 +17592276939772 50000 +17592276939355 50000 +17592276939774 50000 +17592276940838 50000 +17592276940840 50000 +17592276939357 50000 +17592275686432 11000 +17592276939776 50000 +17592276938706 50000 +17592276939359 50000 +17592278283515 50000 +17592276939778 50000 +17592276940842 50000 +17592276939651 50000 +17592276939412 50000 +17592276939969 50000 +17592276939414 50000 +17592278283517 50000 +17592276939971 50000 +17592276938719 50000 +17592276939416 50000 +17592276939973 50000 +17592276939505 50000 +17592276939975 50000 +17592276940846 50000 +17592276940844 50000 +17592276939507 50000 +17592278283519 50000 +17592276596071 50000 +17592276939977 50000 +17592276238805 11000 +17592276939600 50000 +17592276939979 50000 +17592276939602 50000 +17592278283521 50000 +17592276939604 50000 +17592277394279 50000 +17592278283523 50000 +17592276938915 50000 +17592276938900 50000 +17592276939606 50000 +17592277394281 50000 +17592276488780 97200 +17592276939608 50000 +17592276940850 50000 +17592276940848 50000 +17592276939610 50000 +17592277394283 50000 +17592278283525 50000 +17592276938925 50000 +17592276938935 50000 +17592276939612 50000 +17592276935480 11000 +17592277394285 50000 +17592276939614 50000 +17592276935599 74700 +17592277394325 50000 +17592277394333 50000 +17592277394287 50000 +17592278283527 50000 +17592278103008 50000 +17592277394309 50000 +17592278283529 50000 +17592277394341 50000 +17592277394317 50000 +17592279903361 50000 +17592278839217 50000 +17592280246733 11000 +17592278103010 50000 +17592279903363 50000 +17592278103012 50000 +17592278839219 50000 +17592278102560 50000 +17592278102544 50000 +17592279903365 50000 +17592278103014 50000 +17592278839182 50000 +17592278839221 50000 +17592277481048 82100 +17592278101617 50000 +17592278101613 50000 +17592279903367 50000 +17592278103016 50000 +17592278839153 50000 +17592278839257 50000 +17592278839255 50000 +17592277628655 11000 +17592279387035 50000 +17592279903369 50000 +17592278103018 50000 +17592278839223 50000 +17592279903371 50000 +17592278839192 50000 +17592278101609 50000 +17592279903373 50000 +17592278839194 50000 +17592278839225 50000 +17592279903375 50000 +17592278839253 50000 +17592278839251 50000 +17592279324021 50000 +17592278283392 12400 +17592278839157 50000 +17592278839196 50000 +17592278839249 50000 +17592279903377 50000 +17592278839198 50000 +17592278839247 50000 +17592278839245 50000 +17592278352535 11000 +17592279324023 50000 +17592279323991 50000 +17592279903379 50000 +17592278463173 12300 +17592279323993 50000 +17592278574217 74700 +17592279903381 50000 +17592278839149 50000 +17592279324025 50000 +17592279323995 50000 +17592279903383 50000 +17592279324059 50000 +17592279324057 50000 +17592279323997 50000 +17592279903385 50000 +17592279323966 50000 +17592279903387 50000 +17592279903399 50000 +17592279013395 11000 +17592279324055 50000 +17592279323999 50000 +17592279903389 50000 +17592279903391 50000 +17592279903401 50000 +17592281141025 50000 +17592279323962 50000 +17592279903403 50000 +17592279263198 12401 +17592279903393 50000 +17592281140868 50000 +17592279903357 50000 +17592279903359 50000 +17592279903395 50000 +17592281141027 50000 +17592279903397 50000 +17592281141029 50000 +17592279634043 11000 +17592281141031 50000 +17592281140858 50000 +17592279903276 50000 +17592279903272 50000 +17592281140870 50000 +17592281140860 50000 +17592281141033 50000 +17592281140862 50000 +17592281141035 50000 +17592281140850 50000 +17592281140848 50000 +17592281140864 50000 +17592281121788 50000 +17592281121792 50000 +17592281903062 50000 +17592281141037 50000 +17592281140866 50000 +17592283356463 50000 +17592280678156 82100 +17592281141039 50000 +17592281140854 50000 +17592281140852 50000 +17592281140856 50000 +17592282829745 50000 +17592281902439 50000 +17592282829747 50000 +17592281902441 50000 +17592280653097 74600 +17592281903064 50000 +17592282829749 50000 +17592281121701 50000 +17592281902443 50000 +17592282829751 50000 +17592282829700 50000 +17592281903058 50000 +17592281903056 50000 +17592282829753 50000 +17592282829779 50000 +17592281902445 50000 +17592281902410 50000 +17592281902418 50000 +17592281902414 50000 +17592282829755 50000 +17592281334428 11000 +17592281902447 50000 +17592281903060 50000 +17592282829757 50000 +17592282829781 50000 +17592282829759 50000 +17592282829710 50000 +17592281902406 50000 +17592282829761 50000 +17592282829783 50000 +17592282829712 50000 +17592282829763 50000 +17592282829714 50000 +17592282829765 50000 +17592282829771 50000 +17592282829773 50000 +17592282829716 50000 +17592282125730 11000 +17592282125700 11000 +17592282829670 50000 +17592282829718 50000 +17592282070465 25200 +17592282150734 12300 +17592282829767 50000 +17592282829775 50000 +17592282829777 50000 +17592282829720 50000 +17592283281897 50000 +17592282829769 50000 +17592283281871 50000 +17592282616092 25200 +17592283939020 50000 +17592282829658 50000 +17592282829666 50000 +17592282829662 50000 +17592283939022 50000 +17592283281899 50000 +17592283281873 50000 +17592283939024 50000 +17592283281901 50000 +17592283281905 50000 +17592283281903 50000 +17592283281854 50000 +17592283281875 50000 +17592283939026 50000 +17592283014065 11000 +17592283281877 50000 +17592283939028 50000 +17592284869371 50000 +17592283281907 50000 +17592283939030 50000 +17592284586349 50000 +17592283938990 50000 +17592283939032 50000 +17592284586351 50000 +17592283939048 50000 +17592283939046 50000 +17592283938992 50000 +17592283939034 50000 +17592283938440 50000 +17592283532842 11000 +17592283938994 50000 +17592283939050 50000 +17592283939052 50000 +17592283938996 50000 +17592283938980 50000 +17592283939036 50000 +17592283938998 50000 +17592283939038 50000 +17592284586353 50000 +17592283939040 50000 +17592283939042 50000 +17592285243540 50000 +17592284039213 82100 +17592283939044 50000 +17592285243581 50000 +17592285243542 50000 +17592284089649 11000 +17592284586297 50000 +17592284586293 50000 +17592284586289 50000 +17592285243544 50000 +17592284586347 50000 +17592284586345 50000 +17592284586343 50000 +17592284586337 50000 +17592285243583 50000 +17592285243546 50000 +17592284137563 12400 +17592285957162 50000 +17592284586339 50000 +17592285957164 50000 +17592284586341 50000 +17592284586273 50000 +17592284586269 50000 +17592285243585 50000 +17592285243530 50000 +17592285957166 50000 +17592284586321 25200 +17592285243575 50000 +17592285957168 50000 +17592285243577 50000 +17592285957170 50000 +17592284823330 11000 +17592285243565 50000 +17592285243567 50000 +17592285243569 50000 +17592285243507 50000 +17592286774959 50000 +17592285957172 50000 +17592285243579 50000 +17592285243571 50000 +17592285596491 25200 +17592285957222 50000 +17592285957174 50000 +17592285957224 50000 +17592285957176 50000 +17592285243573 50000 +17592285243417 50000 +17592285957226 50000 +17592285957178 50000 +17592285957242 50000 +17592285957248 50000 +17592285957244 50000 +17592285957246 50000 +17592285957228 50000 +17592285957180 50000 +17592285957230 50000 +17592285957182 50000 +17592285548315 11000 +17592285956482 50000 +17592285957252 50000 +17592285957250 50000 +17592285957232 50000 +17592285957234 50000 +17592287180762 50000 +17592285957236 50000 +17592287180764 50000 +17592285956474 50000 +17592285956478 50000 +17592285957238 50000 +17592287180766 50000 +17592286711550 50000 +17592286711552 50000 +17592286711554 50000 +17592285957240 50000 +17592287180768 50000 +17592286711544 50000 +17592286129165 11000 +17592286697200 50000 +17592286711546 50000 +17592286711556 50000 +17592286711558 50000 +17592287180770 50000 +17592286711548 50000 +17592287180772 50000 +17592286697193 50000 +17592286697185 50000 +17592286697181 50000 +17592287180774 50000 +17592287180776 50000 +17592287180778 50000 +17592287180817 50000 +17592287180819 50000 +17592286844447 11000 +17592287180745 50000 +17592287180749 50000 +17592287047639 82100 +17592287180780 50000 +17592287180825 50000 +17592287180823 50000 +17592287180821 50000 +17592287410162 11000 +17592253122516 25200 +17592236720668 93400 +17592236720692 93400 +17592255088564 28117 +17592255088565 28117 +17592255088566 28117 +17592236720670 93400 +17592236720694 93400 +17592255985710 25200 +17592257225506 97200 +17592257225592 97200 +17592236720672 12830 +17592236720696 93400 +17592257690873 97200 +17592257690958 97200 +17592257690975 97200 +17592257690992 97200 +17592258592755 98800 +17592258839071 81140 +17592259002658 81110 +17592259002642 81110 +17592258978420 81150 +17592236720674 12830 +17592236720698 93400 +17592236720676 12830 +17592236720700 93400 +17592263480015 97200 +17592268782030 72110 +17592270549941 81110 +17592272424925 81120 +17592281461199 81120 +17592275735842 82300 +17592283283240 81120 +17592275735844 82300 +17592285933353 81120 +17592275735846 82300 +17592275735848 82300 +17592275735850 82300 +17592275735852 82300 +17592275735854 82300 +17592275735856 82300 +17592275735858 82300 +17592275735860 82300 +17592275735862 82300 +17592275735864 82300 +17592275735866 82300 +17592275735868 82300 +17592275735870 82300 +17592275735872 82300 +17592275735874 82300 +17592275735876 82300 +17592275735878 82300 +17592275735880 82300 +17592275735882 82300 +17592275735884 82300 +17592275735886 82300 +17592275735888 82300 +17592275735890 82300 +17592275735892 82300 +17592275735894 82300 +17592275735896 82300 +17592275735898 82300 +17592275735900 82300 +17592275735902 82300 +17592275735904 82300 +17592275735906 82300 +17592275735908 82300 +17592275735910 82300 +17592275735912 82300 +17592275735914 82300 +17592275735916 82300 +17592275735918 82300 +17592275735920 82300 +17592275735922 82300 +17592275735924 82300 +17592275735926 82300 +17592275735928 82300 +17592275735930 82300 +17592275735932 82300 +17592275735934 82300 +17592275735936 82300 +17592275735938 82300 +17592275735940 82300 +17592275735942 82300 +17592275735944 82300 +17592275735946 82300 +17592275735948 82300 +17592275735950 82300 +17592275735952 82300 +17592275735954 82300 +17592275735956 82300 +17592275735958 82300 +17592252283349 82100 +17592255166306 74450 +17592255166298 74450 +17592255166331 74450 +17592255166323 74450 +17592255166314 74450 +17592255158746 54400 +17592255166460 74450 +17592253952162 50000 +17592261122909 51200 +17592253361522 50000 +17592254596048 71400 +17592253952906 50000 +17592253361557 50000 +17592253361565 50000 +17592255166518 74450 +17592253953336 50000 +17592261122917 51200 +17592253361513 50000 +17592253953847 50000 +17592255166526 74450 +17592261975923 50000 +17592255158788 54700 +17592261975931 50000 +17592253954415 50000 +17592261122980 51200 +17592261975940 50000 +17592253732317 54700 +17592261975948 50000 +17592255166534 74450 +17592253954779 50000 +17592254238497 54700 +17592254738213 50000 +17592254167411 54700 +17592254511157 74610 +17592255166543 74450 +17592271983008 50000 +17592254738240 50000 +17592254738255 50000 +17592261122988 51200 +17592261975956 50000 +17592254496613 82100 +17592254738276 50000 +17592255166551 74450 +17592261975964 50000 +17592261122998 51200 +17592254996239 50000 +17592255158780 54700 +17592261975972 50000 +17592255984698 50000 +17592258977890 74450 +17592255166559 74450 +17592255158763 54700 +17592255984613 50000 +17592255343874 54700 +17592261975980 50000 +17592261123006 51200 +17592255599854 54700 +17592256986837 50000 +17592255984605 50000 +17592261976044 50000 +17592255599724 54700 +17592261976052 50000 +17592256056790 54700 +17592255984597 50000 +17592261123014 51200 +17592255984588 50000 +17592261976060 50000 +17592256239731 74600 +17592256681182 50000 +17592261976068 50000 +17592256301228 82100 +17592256681212 74610 +17592256681166 54700 +17592256681190 50000 +17592256986846 50000 +17592261123022 51200 +17592261976076 50000 +17592257244930 54700 +17592261976085 50000 +17592258977552 54700 +17592256936367 50000 +17592257244914 54700 +17592256986854 50000 +17592261123030 51200 +17592261976093 50000 +17592261976101 50000 +17592257532796 50000 +17592261123039 51200 +17592257532816 50000 +17592261123047 51200 +17592257690854 50000 +17592261976109 50000 +17592261976117 50000 +17592258010622 50000 +17592261976125 50000 +17592258186496 54700 +17592258186504 54700 +17592258010614 50000 +17592258316355 50000 +17592261976139 50000 +17592258316363 50000 +17592261976148 50000 +17592261123064 51200 +17592261123055 51200 +17592266917310 74610 +17592258730257 50000 +17592261976156 50000 +17592258730238 82100 +17592265097949 54700 +17592261976164 51200 +17592258977915 74450 +17592271983011 50000 +17592258977636 50000 +17592262762660 54400 +17592258977803 54700 +17592261123072 51200 +17592259075617 74610 +17592261976173 50000 +17592265018581 50000 +17592259016737 54700 +17592259234575 54700 +17592261976182 50000 +17592265018589 50000 +17592263505109 50000 +17592261976191 50000 +17592266388413 74450 +17592267901620 51200 +17592261976199 50000 +17592259889722 54700 +17592260176715 50000 +17592259890097 54700 +17592259890081 54700 +17592266388421 74450 +17592260176724 50000 +17592261976267 50000 +17592265097957 54700 +17592267901628 51200 +17592260176732 50000 +17592260176699 54700 +17592261976275 50000 +17592260388550 71400 +17592263505117 50000 +17592261976283 50000 +17592266388429 74450 +17592263505126 50000 +17592267901636 51200 +17592263505134 50000 +17592261976291 50000 +17592261976299 50000 +17592260916729 82100 +17592263505142 50000 +17592266388437 74450 +17592266494755 50000 +17592266917318 74610 +17592263505384 50000 +17592267901644 51200 +17592266494832 50000 +17592265097965 54700 +17592263505392 50000 +17592266494841 50000 +17592266495066 50000 +17592263505401 50000 +17592266495841 50000 +17592267901652 51200 +17592266388446 74450 +17592262875603 54700 +17592267901660 51200 +17592263505409 50000 +17592266495865 50000 +17592266388454 74450 +17592263505417 50000 +17592266496130 50000 +17592267901668 51200 +17592265621785 54400 +17592265097973 54700 +17592266496357 50000 +17592263505425 50000 +17592266496653 50000 +17592266388462 74450 +17592263421143 73100 +17592263505433 50000 +17592273662068 54700 +17592266497965 50000 +17592267901745 51200 +17592265741931 54000 +17592265023177 50000 +17592265741906 54000 +17592266388542 74450 +17592266917327 74610 +17592266499445 50000 +17592267901753 51200 +17592265023185 50000 +17592266499650 50000 +17592269493737 74700 +17592267831160 50000 +17592264324479 82100 +17592266388550 74450 +17592265023201 50000 +17592266499977 50000 +17592265023225 50000 +17592265742607 54000 +17592267901761 51200 +17592266500862 50000 +17592271197781 74600 +17592266388558 74450 +17592267831177 50000 +17592265023248 50000 +17592268253924 54400 +17592265161940 54700 +17592265742673 54000 +17592267901769 51200 +17592266501173 50000 +17592267831198 50000 +17592266501459 50000 +17592266389219 74450 +17592267831206 50000 +17592267901777 51200 +17592266497455 50000 +17592266501696 50000 +17592267831216 50000 +17592266121517 54000 +17592266121525 54000 +17592276838173 54700 +17592267831225 50000 +17592266389227 74450 +17592266498744 50000 +17592266674683 54000 +17592266674691 54000 +17592267838943 50000 +17592267838951 50000 +17592266674699 54000 +17592267901785 51200 +17592269833760 50000 +17592271983037 50000 +17592266796315 82100 +17592269833769 50000 +17592274979321 74450 +17592267411659 74610 +17592271983040 50000 +17592269833777 50000 +17592267901793 51200 +17592269833785 50000 +17592271983049 50000 +17592269833794 50000 +17592271983052 50000 +17592274979340 74450 +17592267539591 54700 +17592271983055 50000 +17592267901802 51200 +17592267830735 54000 +17592267830903 54700 +17592269833802 50000 +17592271983058 50000 +17592270594306 54700 +17592274979348 74450 +17592269833810 50000 +17592271983061 50000 +17592269833818 50000 +17592271983064 50000 +17592271983067 50000 +17592270594314 54700 +17592269833826 50000 +17592274979356 74450 +17592271983070 50000 +17592269833834 50000 +17592271983073 50000 +17592269833843 50000 +17592274979364 74450 +17592275849017 74610 +17592269833851 50000 +17592269493721 82100 +17592269833950 50000 +17592269566079 54000 +17592269566061 74600 +17592269833941 50000 +17592269833933 50000 +17592274979387 74450 +17592270306050 54700 +17592274348639 50000 +17592274979395 74450 +17592274348646 50000 +17592274348653 50000 +17592284322815 54700 +17592274979403 74450 +17592284322807 54700 +17592274348660 50000 +17592271185165 54700 +17592273748501 74600 +17592271575627 54700 +17592274348667 50000 +17592274979411 74450 +17592274348681 50000 +17592274348688 50000 +17592271982996 82100 +17592274979419 74450 +17592274348695 50000 +17592275849025 74610 +17592274348715 50000 +17592274348877 50000 +17592274979427 74450 +17592274348969 50000 +17592274348976 50000 +17592283011660 54700 +17592273748603 74600 +17592274979435 74450 +17592274348983 50000 +17592278544102 50000 +17592283013989 54700 +17592274348674 50000 +17592274979443 74450 +17592278544117 50000 +17592278544125 50000 +17592278544133 50000 +17592274811210 82100 +17592278544141 50000 +17592274979451 74450 +17592275849033 74610 +17592278544155 50000 +17592283013997 54700 +17592278544163 50000 +17592283009159 74450 +17592275575898 54700 +17592278544171 50000 +17592283009167 74450 +17592278544179 50000 +17592283014005 54700 +17592278544194 50000 +17592283009175 74450 +17592278544202 50000 +17592283014013 54700 +17592278544210 50000 +17592283009780 74450 +17592278544218 50000 +17592283014021 54700 +17592278544226 50000 +17592277849965 82100 +17592278544234 50000 +17592283009788 74450 +17592283014029 54700 +17592278545234 50000 +17592283009796 74450 +17592286360930 50000 +17592283014037 54700 +17592286360922 50000 +17592283014073 54700 +17592283009806 74450 +17592286360914 50000 +17592280674050 82100 +17592286360905 50000 +17592283009814 74450 +17592283009822 74450 +17592283009830 74450 +17592284015957 82100 +17592287007735 82100 +17592285213003 74450 +17592258393867 82100 +17592284390884 73301 +17592264169597 72500 +17592264169659 71400 +17592264169560 74450 +17592284012707 74100 +17592285303002 50000 +17592284012715 74100 +17592264170053 72180 +17592264170032 72180 +17592269636494 51200 +17592253305694 54300 +17592252435213 11000 +17592252435201 11000 +17592252486396 50000 +17592252839119 51200 +17592252871040 50000 +17592252581870 50000 +17592254223115 50000 +17592252655188 50000 +17592252839292 54790 +17592252839284 54700 +17592252839288 54612 +17592252839189 50000 +17592252839187 52000 +17592252839181 50000 +17592252839179 55000 +17592252839185 71182 +17592252839183 74100 +17592252839123 51200 +17592252839121 51200 +17592252839043 50000 +17592252839038 71182 +17592252839030 54200 +17592252839034 55000 +17592252839007 50000 +17592252695279 11000 +17592252695801 50000 +17592252839125 51200 +17592252838987 50000 +17592252785481 50000 +17592253305848 51200 +17592253305939 50000 +17592252871024 50000 +17592252839536 54100 +17592252845315 74502 +17592253305684 74100 +17592253305915 75100 +17592253032451 50000 +17592252874573 11000 +17592252957961 50000 +17592253305907 75100 +17592253306234 54612 +17592253306238 54400 +17592253306242 54790 +17592253306245 54700 +17592252957969 50000 +17592254223125 50000 +17592253305933 54790 +17592253305931 71182 +17592253305937 55000 +17592253305935 50000 +17592253176011 50000 +17592253042233 50000 +17592253305742 54612 +17592253305746 54611 +17592253305750 54200 +17592253305754 55000 +17592253305758 71182 +17592253305762 50000 +17592253305824 54100 +17592253305850 51200 +17592253176019 50000 +17592253113625 72711 +17592253305718 50000 +17592253339980 50000 +17592286657001 81160 +17592253734186 51200 +17592253339994 50000 +17592253391988 25200 +17592253383810 25200 +17592253383852 25200 +17592253392052 50000 +17592253392060 50000 +17592253734188 51200 +17592253348616 11000 +17592254625995 50000 +17592253518062 50000 +17592253734110 55000 +17592253734114 71182 +17592253734106 54611 +17592253734118 50000 +17592253734172 54200 +17592253742384 54400 +17592253742378 54700 +17592253742388 54700 +17592253734251 50000 +17592253734253 50000 +17592253734255 71182 +17592253734245 74100 +17592253734247 52000 +17592253734249 55000 +17592253742487 54700 +17592253501320 50000 +17592253518070 50000 +17592253734086 50000 +17592254098682 54300 +17592253734190 51200 +17592253518141 74710 +17592253555378 50000 +17592253555441 50000 +17592253750066 72186 +17592253640284 50000 +17592253638975 72710 +17592253639139 83400 +17592254098742 51200 +17592253770367 50000 +17592253815981 50000 +17592253815973 50000 +17592254098672 74100 +17592253797165 11000 +17592253951109 50000 +17592254098746 51200 +17592254098744 51200 +17592253951117 50000 +17592254098864 55000 +17592254098860 54611 +17592254098856 54200 +17592254098872 50000 +17592254098868 71182 +17592254099038 55000 +17592254099036 74100 +17592254099034 54790 +17592254099032 71182 +17592254099030 52000 +17592254099028 50000 +17592254098748 51200 +17592254098814 50000 +17592254021602 50000 +17592254020671 11000 +17592254098750 51200 +17592254021618 50000 +17592255412155 50000 +17592254620227 51200 +17592254238514 50000 +17592258064254 82100 +17592255088597 54300 +17592254620229 51200 +17592254654905 50000 +17592254620406 54700 +17592254620394 54700 +17592254620390 54700 +17592254620402 54700 +17592254620398 54700 +17592254620151 71182 +17592254620147 55000 +17592254620155 50000 +17592254620135 54611 +17592254620143 55000 +17592254620139 54200 +17592254392920 50000 +17592254620313 71182 +17592254620311 50000 +17592254620319 71182 +17592254620317 74100 +17592254620315 54790 +17592254654692 50000 +17592254620111 50000 +17592254620231 51200 +17592254620309 50000 +17592254654700 50000 +17592254620233 51200 +17592254624566 50000 +17592254516234 25200 +17592254532350 25200 +17592254613410 11000 +17592255088587 74100 +17592255088792 51200 +17592254654708 50000 +17592257774242 12980 +17592254778469 50000 +17592254778423 50000 +17592255088794 51200 +17592255088927 54790 +17592255088930 54612 +17592255088923 54400 +17592255088919 54700 +17592254737376 50000 +17592255123218 54200 +17592255088674 54200 +17592255088670 54611 +17592255088666 54150 +17592255088646 50000 +17592255088690 50000 +17592255088686 54790 +17592255088682 71182 +17592255088678 55000 +17592255088770 54150 +17592255088859 71182 +17592255088855 74100 +17592255088857 50000 +17592255088851 55000 +17592255088853 52000 +17592254929804 50000 +17592247566351 86300 +17592255088626 50000 +17592255088796 51200 +17592255088843 74450 +17592254894742 74600 +17592254929812 50000 +17592254895015 74600 +17592255088800 51200 +17592255088798 51200 +17592254941916 50000 +17592255040872 11000 +17592255123123 50000 +17592255656219 51200 +17592255656221 51200 +17592255240984 50000 +17592255656885 50000 +17592256192587 54300 +17592255240992 50000 +17592255412145 50000 +17592255656245 54100 +17592255656296 54200 +17592255656292 54611 +17592255656306 55000 +17592255656314 50000 +17592255656310 71182 +17592255656881 52000 +17592255656879 50000 +17592255656877 74100 +17592255656875 55000 +17592255656883 71182 +17592255712684 50000 +17592255656223 51200 +17592255656268 50000 +17592253750098 72186 +17592255448008 50000 +17592255712692 50000 +17592255712700 50000 +17592255608754 11000 +17592256192573 74100 +17592256192705 51200 +17592255774722 25200 +17592255933165 50000 +17592255933181 55000 +17592257932634 74600 +17592255933173 50000 +17592255834945 50000 +17592256013591 50000 +17592256192645 50000 +17592256192625 54150 +17592256192617 54612 +17592256192613 54611 +17592256192641 50000 +17592256192637 71182 +17592256192633 55000 +17592256192629 54200 +17592256192734 54100 +17592256192828 52000 +17592256192826 71182 +17592256192824 74100 +17592256192822 55000 +17592256192820 50000 +17592256192930 54400 +17592256192927 54612 +17592256192957 54790 +17592256192953 54700 +17592255932921 50000 +17592256216214 50000 +17592256192605 50000 +17592256192601 50000 +17592256192707 51200 +17592256192818 50000 +17592255986059 11000 +17592255994302 11000 +17592257778441 50000 +17592256216222 50000 +17592256103416 25200 +17592256102178 25200 +17592256216230 50000 +17592256708357 51200 +17592256515203 50000 +17592256236780 11000 +17592256708267 54300 +17592256292156 50000 +17592256708359 51200 +17592256436073 50000 +17592256276529 81200 +17592256708361 51200 +17592256708335 54200 +17592256708472 55000 +17592256708468 54790 +17592256708480 50000 +17592256708476 71182 +17592256708456 54612 +17592256708464 54200 +17592256436081 50000 +17592256708460 54611 +17592256708961 50000 +17592256708959 50000 +17592256708957 50000 +17592256708955 74100 +17592256709018 54612 +17592256708363 51200 +17592256708424 50000 +17592256634968 50000 +17592256634960 50000 +17592256708365 51200 +17592256634976 50000 +17592256634994 50000 +17592256681411 11000 +17592256681389 86100 +17592257241132 51200 +17592256760650 50000 +17592257101545 50000 +17592257241134 51200 +17592257101553 50000 +17592257241138 51200 +17592257241136 51200 +17592257242365 55000 +17592257242363 50000 +17592257242361 52000 +17592257242359 54790 +17592257242357 71182 +17592257242355 50000 +17592257240437 50000 +17592257240433 71182 +17592257240429 55000 +17592257240425 54200 +17592257240421 54611 +17592257101569 50000 +17592257101561 50000 +17592257242861 54700 +17592257242857 54790 +17592257242853 54612 +17592257240985 54150 +17592256888758 50000 +17592256888760 50000 +17592257243739 54700 +17592257242353 71182 +17592257101577 50000 +17592257032271 25200 +17592257241140 51200 +17592257239825 50000 +17592257101586 50000 +17592257239591 74100 +17592257291475 50000 +17592257221055 11000 +17592257225370 97200 +17592257225342 97200 +17592257786624 51200 +17592257304239 50000 +17592257249347 72180 +17592257786626 51200 +17592257484581 50000 +17592257786628 51200 +17592257786921 52000 +17592257786919 50000 +17592257543203 50000 +17592257786917 54790 +17592257786927 50000 +17592257786925 74100 +17592257786923 55000 +17592258186600 54300 +17592257843164 54790 +17592257825584 54150 +17592257786680 54200 +17592257786710 54611 +17592257786630 51200 +17592257786794 71182 +17592257786790 55000 +17592257786798 50000 +17592257786814 50000 +17592257557440 57000 +17592257786724 50000 +17592257786900 74450 +17592257786985 54700 +17592257786993 54612 +17592257786989 54400 +17592257786997 54790 +17592257670414 50000 +17592257584839 50000 +17592257786632 51200 +17592257671953 50000 +17592253750106 72186 +17592257816651 50000 +17592258186586 74100 +17592258186582 74100 +17592258186796 51200 +17592257816659 50000 +17592257763518 11000 +17592257786690 50000 +17592257816667 50000 +17592258106426 50000 +17592258186798 51200 +17592258106434 50000 +17592258186662 50000 +17592258186626 50000 +17592258186642 54612 +17592258186638 54611 +17592258186658 71182 +17592258186654 55000 +17592258186650 54200 +17592258186646 54150 +17592258186841 54150 +17592258186975 54790 +17592258186875 55000 +17592258186871 54790 +17592258186873 74100 +17592258186867 50000 +17592258186869 71182 +17592258186979 54700 +17592258187025 54700 +17592258106442 50000 +17592258186618 50000 +17592258186800 51200 +17592262875587 50000 +17592258019799 11000 +17592258019875 11000 +17592258186802 51200 +17592258106882 50000 +17592258064262 82100 +17592258137132 25200 +17592258146153 25200 +17592258792801 51200 +17592258792799 51200 +17592258287710 50000 +17592258286651 50000 +17592258792803 51200 +17592258287937 50000 +17592258792805 51200 +17592258381358 11000 +17592258424416 50000 +17592258792930 50000 +17592258792926 50000 +17592258792807 51200 +17592258792863 54100 +17592258793025 50000 +17592258793033 50000 +17592258793031 50000 +17592258793029 50000 +17592258793027 50000 +17592258793037 50000 +17592258793035 50000 +17592258792938 50000 +17592258792933 50000 +17592258792945 50000 +17592258792942 50000 +17592258531503 73180 +17592258550440 50000 +17592258495347 25200 +17592258792889 50000 +17592258792809 51200 +17592261553928 83500 +17592258064270 82100 +17592259266650 54300 +17592258977868 50000 +17592258671444 50000 +17592258671452 50000 +17592258671537 50000 +17592259266629 74100 +17592259266779 51200 +17592259266775 51200 +17592259266777 51200 +17592258779465 50000 +17592259114637 50000 +17592258838977 81140 +17592258838961 15403 +17592259114645 50000 +17592259267068 54700 +17592259267052 54612 +17592259267084 54400 +17592258906867 11000 +17592259114653 50000 +17592259266717 50000 +17592259266712 50000 +17592259266709 71182 +17592259266705 50000 +17592259266701 54611 +17592259266697 54612 +17592259266693 54150 +17592259266890 54100 +17592259266999 54700 +17592259266995 54612 +17592259266991 54790 +17592259266923 52000 +17592259266925 71182 +17592259266919 74100 +17592259266921 55000 +17592259266917 50000 +17592259114661 50000 +17592259266781 51200 +17592259266673 50000 +17592259266915 50000 +17592259302869 50000 +17592259155944 25200 +17592259266783 51200 +17592259302877 50000 +17592259302861 55000 +17592259792739 51200 +17592259554707 50000 +17592260238875 75100 +17592259304122 11000 +17592259554728 50000 +17592259792741 51200 +17592259793937 55000 +17592259793943 50000 +17592259793945 74100 +17592259793939 52000 +17592259793941 71182 +17592259554737 50000 +17592259464737 50000 +17592259518255 72180 +17592259792743 51200 +17592259793098 54100 +17592260434514 54611 +17592260434510 71182 +17592260434526 54200 +17592260434498 50000 +17592260434442 50000 +17592259826765 50000 +17592259793935 55000 +17592259518247 72180 +17592259532734 50000 +17592260435866 50000 +17592259792745 51200 +17592253750115 72186 +17592259826773 50000 +17592259826781 50000 +17592259826789 50000 +17592260238791 51200 +17592260238789 51200 +17592260238795 51200 +17592260238793 51200 +17592259833475 50000 +17592259833634 72180 +17592259865066 71700 +17592260238647 74100 +17592260239110 54700 +17592260239126 54400 +17592260239094 54612 +17592281359178 54700 +17592259976062 50000 +17592260072733 50000 +17592260238797 51200 +17592260238703 54612 +17592260238699 54150 +17592260238719 50000 +17592260238715 71182 +17592260238711 54200 +17592260238707 54611 +17592260238891 55000 +17592260238893 52000 +17592260238887 50000 +17592260238889 74100 +17592260238883 71182 +17592260238885 50000 +17592260238843 54200 +17592260003768 15300 +17592262875579 50000 +17592260266253 54150 +17592260037618 74710 +17592260238667 50000 +17592260238799 51200 +17592260239026 54612 +17592260239038 54400 +17592260239034 54700 +17592260239030 54790 +17592260068988 50000 +17592260068986 50000 +17592260124395 50000 +17592260081555 11000 +17592260238801 51200 +17592260153472 50000 +17592261064013 51200 +17592260265991 50000 +17592260499906 50000 +17592260940857 54300 +17592261064015 51200 +17592260428016 11000 +17592260428031 11000 +17592260499914 50000 +17592260940877 54200 +17592260941002 50000 +17592260941000 55000 +17592260940998 52000 +17592260941004 71182 +17592260940935 71182 +17592260940931 55000 +17592260940939 50000 +17592260940919 54150 +17592260940927 54200 +17592260940923 54612 +17592261064017 51200 +17592260941064 54700 +17592260941060 54400 +17592260941068 54790 +17592260500857 50000 +17592261027313 54150 +17592262875620 50000 +17592260940915 50000 +17592260964882 50000 +17592260964890 50000 +17592260964898 50000 +17592261499033 54300 +17592262762988 82100 +17592261499048 51200 +17592261499010 74100 +17592260964906 50000 +17592261027387 50000 +17592261499050 51200 +17592261201609 50000 +17592262875595 50000 +17592261692850 54611 +17592261692854 54200 +17592261692858 55000 +17592261692863 71182 +17592261692867 50000 +17592261164474 34020 +17592261164466 34010 +17592261201618 50000 +17592261126242 11000 +17592261499231 55000 +17592261499229 71182 +17592261499227 50000 +17592261499225 54790 +17592261499223 74150 +17592261499108 54100 +17592261531833 55000 +17592261499054 51200 +17592261499052 51200 +17592261300625 50000 +17592265023256 74500 +17592261310815 25200 +17592261331459 50000 +17592261331451 50000 +17592261531825 50000 +17592262375775 51200 +17592261553569 54100 +17592261730256 50000 +17592262375779 51200 +17592262375777 51200 +17592261730264 50000 +17592262375781 51200 +17592261872696 50000 +17592261779557 11000 +17592261767140 50000 +17592262375802 54100 +17592262375824 55000 +17592262375821 50000 +17592262375815 54150 +17592262375818 54611 +17592262375827 71182 +17592262375830 50000 +17592262375856 50000 +17592262375858 55000 +17592262375864 54790 +17592262375866 50000 +17592262375860 74100 +17592262375862 71182 +17592261745313 50000 +17592262375964 54700 +17592261876837 74700 +17592262646778 54400 +17592262646782 54612 +17592262646786 54700 +17592262646790 54700 +17592262375783 51200 +17592262711651 50000 +17592262375812 50000 +17592262375854 50000 +17592261876005 74700 +17592261942304 25200 +17592262711675 50000 +17592262375785 51200 +17592262711659 50000 +17592263266303 74100 +17592263266358 51200 +17592263266356 51200 +17592262711683 50000 +17592262711699 50000 +17592262819610 50000 +17592263266360 51200 +17592262769223 11000 +17592262911143 50000 +17592262874867 50000 +17592263266410 54100 +17592263266466 54200 +17592263266478 50000 +17592263266469 54611 +17592263266474 71182 +17592263266653 54790 +17592263266651 71182 +17592263266645 52000 +17592263266649 50000 +17592263266647 55000 +17592263266438 50000 +17592263266362 51200 +17592263266751 54790 +17592263266643 71221 +17592253750153 72186 +17592263045970 50000 +17592263310654 50000 +17592263266364 51200 +17592263386431 50000 +17592263851806 51200 +17592265130480 74600 +17592263504558 50000 +17592263504550 50000 +17592263517656 50000 +17592263851742 55000 +17592263851746 54611 +17592263862176 54100 +17592263862212 54700 +17592263851780 74100 +17592263851750 50000 +17592263851774 52000 +17592263851772 55000 +17592263851778 50000 +17592263851776 71182 +17592263862278 54400 +17592263862286 54612 +17592263528924 11000 +17592263504194 50000 +17592263486067 73302 +17592263486051 73301 +17592263518804 25200 +17592263851718 50000 +17592263851808 51200 +17592263885391 50000 +17592263851810 51200 +17592263885399 50000 +17592263885407 50000 +17592263907235 50000 +17592263992374 11000 +17592264396084 51200 +17592264916510 54300 +17592264202969 82100 +17592264164025 50000 +17592264396175 54150 +17592264396189 55000 +17592264396192 71182 +17592264396181 54611 +17592264396184 54200 +17592264396133 54100 +17592264396197 50000 +17592264396086 51200 +17592264396333 55000 +17592264396331 71182 +17592264396337 54790 +17592264396335 74100 +17592264396341 50000 +17592264396339 52000 +17592264164033 50000 +17592264396492 54612 +17592264396496 54700 +17592264396488 54790 +17592264442379 50000 +17592264396088 51200 +17592264286217 57000 +17592264442395 50000 +17592264442387 50000 +17592264442403 50000 +17592264926047 51200 +17592264916440 74100 +17592264478524 50000 +17592264601138 50000 +17592264926049 51200 +17592264709152 50000 +17592264926688 54100 +17592264924694 50000 +17592264924698 50000 +17592264926745 54612 +17592264926749 54700 +17592264924677 54611 +17592264924682 54200 +17592264924686 55000 +17592264924690 71182 +17592264926709 71182 +17592264926707 52000 +17592264926713 55000 +17592264926711 50000 +17592264926715 54790 +17592264924674 54150 +17592264926705 55000 +17592264916524 50000 +17592264613877 50000 +17592264630586 50000 +17592264926051 51200 +17592264916520 50000 +17592266186926 54300 +17592264796867 50000 +17592264796859 50000 +17592264926053 51200 +17592264795328 50000 +17592264801808 25200 +17592264796565 11000 +17592264796587 11000 +17592264796875 50000 +17592264854552 25200 +17592265421482 74100 +17592264976967 50000 +17592265421681 51200 +17592264977862 55000 +17592265041341 50000 +17592265129671 50000 +17592267243255 54700 +17592267243263 54700 +17592267243272 54700 +17592267461330 54700 +17592265421683 51200 +17592265290761 50000 +17592265178543 50000 +17592265178541 50000 +17592265095180 50000 +17592265421529 50000 +17592265421518 55000 +17592265421510 54611 +17592265421513 54200 +17592265421506 54150 +17592265421651 54790 +17592265421645 71182 +17592265421643 50000 +17592265421649 52000 +17592265421647 55000 +17592265421641 55000 +17592265421605 54100 +17592265290725 50000 +17592265323014 54100 +17592265421685 51200 +17592253750173 72186 +17592265338987 11000 +17592265531496 50000 +17592266186504 50000 +17592265531504 50000 +17592265618998 50000 +17592266186898 51200 +17592265554002 74502 +17592265622663 50000 +17592265632825 74500 +17592266186900 51200 +17592266186798 54790 +17592266186804 54700 +17592266259359 54400 +17592265601333 11000 +17592265867200 50000 +17592266186697 54200 +17592266186480 54611 +17592266186488 55000 +17592266186484 54150 +17592266186496 50000 +17592266186492 71182 +17592266186500 50000 +17592266186858 54790 +17592266186866 50000 +17592266186864 71182 +17592266186862 55000 +17592266186860 52000 +17592266186868 74100 +17592265728587 50000 +17592266186452 50000 +17592266186460 50000 +17592265867161 50000 +17592266186902 51200 +17592266024000 11000 +17592266021031 11000 +17592266259003 50000 +17592266778446 74100 +17592266258995 50000 +17592266778540 51200 +17592266404827 50000 +17592266433654 71500 +17592266405182 50000 +17592266778544 51200 +17592266778542 51200 +17592270118135 34010 +17592270118160 34020 +17592266830228 54200 +17592266474775 50000 +17592266778546 51200 +17592266778474 50000 +17592266778470 71182 +17592266483510 50000 +17592266778466 55000 +17592266778462 54200 +17592266778458 54611 +17592266778799 71182 +17592266778797 50000 +17592266778795 50000 +17592266778793 55000 +17592266778791 74100 +17592266778789 54790 +17592266778663 54150 +17592266778866 54700 +17592266778880 54400 +17592266778876 54612 +17592266778872 54790 +17592267850791 54300 +17592266597469 11000 +17592267901963 82100 +17592266598534 50000 +17592266821004 50000 +17592266778548 51200 +17592266938433 50000 +17592268525005 51200 +17592266938441 50000 +17592266936301 86600 +17592268525013 51200 +17592267065022 50000 +17592267243129 50000 +17592267243125 71182 +17592267243113 54150 +17592267243108 54612 +17592267243121 55000 +17592267243117 54200 +17592267243104 54611 +17592267243562 52000 +17592267243570 71182 +17592267243568 50000 +17592267243566 55000 +17592267243564 74100 +17592267243491 54100 +17592267243076 50000 +17592267065276 50000 +17592267071378 11000 +17592267243832 54790 +17592267243836 54700 +17592267243824 54700 +17592267243820 54400 +17592268525021 51200 +17592267331186 50000 +17592267331194 50000 +17592267459699 50000 +17592267850769 74100 +17592267459708 50000 +17592267931064 54300 +17592268525029 51200 +17592267539434 50000 +17592267931045 54100 +17592267851725 54790 +17592267851729 54700 +17592267851733 54612 +17592267851737 54400 +17592267851544 74100 +17592267851546 55000 +17592267851548 50000 +17592267851550 52000 +17592267851552 71182 +17592267851554 54790 +17592267850534 50000 +17592267850525 54200 +17592253750258 72186 +17592267670962 11000 +17592267929122 50000 +17592267081567 54100 +17592267840066 50000 +17592267929130 50000 +17592268525038 51200 +17592268525246 74100 +17592267929138 50000 +17592268525046 51200 +17592267931075 50000 +17592268525054 51200 +17592267952956 25200 +17592268525062 51200 +17592268292719 50000 +17592268524684 54790 +17592268524688 54400 +17592268524680 54700 +17592268524692 54612 +17592268524948 54100 +17592268524805 74100 +17592268524803 55000 +17592268524809 54790 +17592268524807 50000 +17592268524801 50000 +17592268525292 54611 +17592268525296 54200 +17592268525288 54612 +17592268525309 50000 +17592268525301 55000 +17592268525305 71182 +17592268292727 50000 +17592268266748 11000 +17592268525264 50000 +17592268525070 51200 +17592268292735 50000 +17592268392803 50000 +17592268563543 50000 +17592268525078 51200 +17592269123996 74100 +17592268688893 50000 +17592269417664 54700 +17592269417656 54612 +17592269417648 54790 +17592269417634 54400 +17592269126947 51200 +17592269126956 51200 +17592269137834 54700 +17592269137782 54400 +17592269137786 54612 +17592269137766 54790 +17592269137778 54700 +17592268922964 50000 +17592268755945 11000 +17592268696926 50000 +17592269126972 54150 +17592269137621 50000 +17592269137625 55000 +17592269137623 74100 +17592269137629 52000 +17592269137627 71221 +17592269137631 71182 +17592268779348 50000 +17592269122165 50000 +17592269122150 55000 +17592269122156 71182 +17592269122145 54200 +17592268800891 51100 +17592268922972 50000 +17592269121906 50000 +17592269126964 51200 +17592269015419 50000 +17592270334296 54300 +17592269119881 74502 +17592269119993 74600 +17592269210392 50000 +17592269372774 50000 +17592270343441 51200 +17592269372451 25200 +17592269372783 50000 +17592269636478 51200 +17592269636652 71182 +17592269636646 50000 +17592269636650 52000 +17592269636648 74100 +17592269417869 50000 +17592269636860 54612 +17592269636854 54790 +17592269636850 54700 +17592269633979 50000 +17592269633971 50000 +17592269633963 55000 +17592269633967 71182 +17592269633955 54612 +17592269633959 54100 +17592269636279 74450 +17592269464418 50000 +17592269694195 55000 +17592270334292 54300 +17592269633908 50000 +17592269496681 50000 +17592269496902 11000 +17592269546691 50000 +17592269636486 51200 +17592269694026 50000 +17592270334271 74100 +17592275585408 55000 +17592270288383 54611 +17592269761415 50000 +17592269761308 15300 +17592270343391 51200 +17592271644418 74600 +17592270335695 54700 +17592270335705 54700 +17592270335701 54700 +17592270426711 54400 +17592269877410 25200 +17592269888481 50000 +17592270006845 50000 +17592269865742 25200 +17592270288302 50000 +17592270288322 54612 +17592270288318 54100 +17592270288330 71182 +17592270288326 54100 +17592270288334 50000 +17592270334970 54100 +17592270426947 54100 +17592270342337 52000 +17592270342335 71182 +17592270342333 74100 +17592270342341 50000 +17592270342339 55000 +17592270117453 50000 +17592270175504 50000 +17592270288298 50000 +17592270335631 54400 +17592270335641 54612 +17592270335636 54700 +17592270046879 11000 +17592270343399 51200 +17592270175420 50000 +17592270173811 25200 +17592287328342 81160 +17592270343407 51200 +17592270343416 51200 +17592270343424 51200 +17592270343432 51200 +17592270405313 50000 +17592270856257 51200 +17592270856268 51200 +17592270856402 51200 +17592270865255 51200 +17592270385785 72130 +17592270411080 50000 +17592270573269 50000 +17592270865350 51200 +17592270866216 54700 +17592270866212 54400 +17592270866282 54612 +17592270866310 54790 +17592270866386 55000 +17592270866384 74100 +17592270866382 71182 +17592270866388 50000 +17592270866108 54100 +17592270573277 50000 +17592270594433 25200 +17592270866512 54100 +17592270866508 54611 +17592270866524 50000 +17592270866520 71182 +17592270866516 55000 +17592270584603 11000 +17592253750295 72186 +17592270729066 50000 +17592270866476 50000 +17592270865358 51200 +17592270925117 50000 +17592270925125 50000 +17592271501126 74100 +17592270960415 50000 +17592271501137 51200 +17592271035162 50000 +17592271455544 50000 +17592271455540 54611 +17592271455528 50000 +17592271455536 54612 +17592271455532 50000 +17592271455594 55000 +17592271455602 50000 +17592271455598 71182 +17592271455646 54790 +17592271144512 74600 +17592271135026 50000 +17592271501695 54400 +17592271501691 54612 +17592271501667 54790 +17592271501679 54700 +17592271501341 54100 +17592271501378 74100 +17592271501376 54790 +17592271501386 71182 +17592271501384 52000 +17592271501382 50000 +17592271501380 55000 +17592271455508 50000 +17592271197964 11000 +17592271210123 50000 +17592271334769 50000 +17592271501145 51200 +17592271573609 50000 +17592271578277 25200 +17592271644510 50000 +17592271475327 54100 +17592271902175 50000 +17592271983651 51200 +17592271983730 54700 +17592271983727 54700 +17592271983724 54700 +17592271983677 52000 +17592271983675 55000 +17592271983673 74100 +17592271983671 50000 +17592271983669 71182 +17592271983665 54100 +17592271902183 50000 +17592271983504 50000 +17592271983501 71182 +17592271983498 55000 +17592271983495 54100 +17592271983492 50000 +17592272978899 54700 +17592272695803 54300 +17592275690131 71182 +17592275690139 71182 +17592271887603 11000 +17592271902191 50000 +17592271983476 50000 +17592271983654 51200 +17592272107237 50000 +17592271983143 25200 +17592272172782 54790 +17592272165053 50000 +17592272695793 74100 +17592272146932 25200 +17592272146940 25200 +17592272126614 25200 +17592272215366 50000 +17592272696088 50000 +17592272235345 54100 +17592272696211 54700 +17592272306720 50000 +17592272695991 51200 +17592272695558 54611 +17592272695683 50000 +17592272695660 71182 +17592272695664 50000 +17592272695651 55000 +17592272390575 72180 +17592272767021 50000 +17592272696078 55000 +17592272696076 52000 +17592272696082 50000 +17592272696080 71221 +17592272696074 74100 +17592272696086 54790 +17592272696084 71182 +17592272696019 54100 +17592272767037 50000 +17592272696160 54400 +17592272696166 54790 +17592272696170 54700 +17592272696235 74700 +17592272767054 50000 +17592272696001 51200 +17592272767063 50000 +17592272834349 50000 +17592272845020 51100 +17592272794560 11000 +17592273465278 51200 +17592273124144 50000 +17592273551620 50000 +17592273478024 55000 +17592273478020 54100 +17592273478028 50000 +17592273477996 50000 +17592273465329 54100 +17592273465480 71182 +17592273465482 50000 +17592273465476 55000 +17592273465478 52000 +17592273465484 74100 +17592273466144 54400 +17592273466140 54700 +17592273466148 54612 +17592253750333 72186 +17592273224739 11000 +17592273350590 50000 +17592273223763 11000 +17592273465286 51200 +17592273350598 50000 +17592273465294 51200 +17592273360498 25200 +17592273550666 50000 +17592273477978 50000 +17592274215123 74100 +17592273623981 50000 +17592274901915 54700 +17592274901916 54612 +17592274216019 51200 +17592273819984 50000 +17592274270343 54400 +17592274270353 54612 +17592274270367 54700 +17592274220909 54100 +17592273819992 50000 +17592274214949 54100 +17592274214961 54612 +17592274214965 54611 +17592274214983 54100 +17592274214987 55000 +17592274214991 71182 +17592274214995 50000 +17592274221618 55000 +17592274221620 52000 +17592274221622 71182 +17592274221624 54790 +17592274221626 50000 +17592274221628 74100 +17592274216198 51200 +17592274879538 74100 +17592273916923 72186 +17592273917477 50000 +17592273889349 11000 +17592273890036 25200 +17592273912719 86300 +17592273890262 25200 +17592273889942 25200 +17592273889926 25200 +17592273952491 50000 +17592274267879 50000 +17592274278642 50000 +17592274879466 51200 +17592274408618 50000 +17592274358538 73600 +17592274851568 54611 +17592274851580 71182 +17592274851584 50000 +17592274851572 54100 +17592274851576 55000 +17592274518070 50000 +17592274409473 11000 +17592274518031 50000 +17592274879275 54400 +17592274879267 54790 +17592274879271 54612 +17592274879263 54700 +17592274879405 50000 +17592274879403 55000 +17592274879409 74100 +17592274879407 71182 +17592274879411 52000 +17592274879072 54100 +17592274851544 50000 +17592274518057 50000 +17592285303565 50000 +17592274879474 51200 +17592275986303 54300 +17592275024804 50000 +17592275326305 74100 +17592275024812 50000 +17592274929575 53000 +17592275024822 50000 +17592275192962 55000 +17592275326770 51200 +17592274977242 11000 +17592275024830 50000 +17592275476998 50000 +17592275326146 71182 +17592275326116 54611 +17592275326120 54100 +17592275326124 55000 +17592275326150 50000 +17592275326112 54100 +17592275326786 54700 +17592275326790 54790 +17592275326794 54400 +17592275326798 54612 +17592275326886 50000 +17592275326890 52000 +17592275326888 71182 +17592275326894 55000 +17592275326892 74100 +17592275101556 50000 +17592275326851 54100 +17592275474921 55000 +17592275106238 25200 +17592279875657 71180 +17592275258437 50000 +17592275326108 50000 +17592275269913 72186 +17592274999968 54100 +17592275258445 50000 +17592275326778 51200 +17592275474747 50000 +17592275474767 50000 +17592275419945 11000 +17592275986320 51200 +17592275584573 50000 +17592275986494 54790 +17592275986490 54612 +17592275986486 54400 +17592275986482 54700 +17592275986240 54611 +17592275986236 54100 +17592275986256 50000 +17592275986252 55000 +17592275986248 71182 +17592275986244 54612 +17592275986328 51200 +17592275986404 54100 +17592275986619 55000 +17592275986615 71182 +17592275986617 50000 +17592275986613 74100 +17592287328350 81160 +17592275585539 74700 +17592253750383 72186 +17592275854321 50000 +17592275986224 50000 +17592275854329 50000 +17592275986336 51200 +17592276596023 74100 +17592275986834 50000 +17592275995058 50000 +17592276596043 54300 +17592276221387 50000 +17592276674967 51200 +17592276192562 73181 +17592276596053 54100 +17592276596135 50000 +17592276596131 55000 +17592276596127 71182 +17592276596123 74100 +17592276596083 50000 +17592276596271 54400 +17592276596274 54790 +17592276596279 54700 +17592276221566 50000 +17592276674983 54100 +17592276674981 54100 +17592276674979 54612 +17592276674977 54611 +17592276674975 55000 +17592276674973 71182 +17592276674971 50000 +17592285303468 54700 +17592276596063 50000 +17592276192614 73181 +17592276246201 11000 +17592276368333 50000 +17592276674969 51200 +17592276368341 50000 +17592276639215 50000 +17592276732954 50000 +17592276732962 50000 +17592277270885 51200 +17592277271572 74100 +17592277271566 55000 +17592277271568 71182 +17592277271570 50000 +17592285305022 50000 +17592276861048 50000 +17592277164625 71182 +17592277164621 55000 +17592277164617 54100 +17592277164613 54612 +17592277164629 50000 +17592277164609 54100 +17592286355994 71500 +17592276936042 50000 +17592277271603 54700 +17592277271607 54700 +17592277271611 54700 +17592276936847 11000 +17592277164593 50000 +17592277210672 50000 +17592277270893 51200 +17592277210680 50000 +17592277986825 74100 +17592277211304 74600 +17592278586439 54300 +17592277305916 50000 +17592277394485 50000 +17592277981118 54700 +17592277981122 54612 +17592277981114 54790 +17592277981105 54400 +17592279854788 71180 +17592277979854 51200 +17592277476349 50000 +17592277980381 54100 +17592277526478 72186 +17592277526206 15300 +17592277971236 50000 +17592277971228 55000 +17592277971232 71182 +17592277971220 54612 +17592277971224 54100 +17592277971216 54100 +17592277981574 50000 +17592277981572 52000 +17592277981566 50000 +17592277981564 54790 +17592277981570 55000 +17592277981568 74100 +17592277465248 50000 +17592277971208 50000 +17592278072222 50000 +17592278076690 50000 +17592277979870 51200 +17592277914091 50000 +17592278020514 74600 +17592278075561 50000 +17592278018780 73181 +17592278136144 72130 +17592278185590 50000 +17592278133187 83400 +17592278020530 74600 +17592278261479 50000 +17592278587068 51200 +17592278199112 81200 +17592278186601 11000 +17592278586952 54790 +17592278586954 50000 +17592278586950 71182 +17592278586960 52000 +17592278586956 74100 +17592278586958 55000 +17592279257561 54100 +17592278444010 50000 +17592278575980 54611 +17592278575984 54100 +17592278575988 55000 +17592278575994 71182 +17592278575998 50000 +17592278444002 50000 +17592278587078 51200 +17592278586948 50000 +17592278444062 50000 +17592278587471 54700 +17592278587467 54400 +17592278587479 54100 +17592278587475 54790 +17592278575902 50000 +17592278683266 50000 +17592278683838 50000 +17592278444054 50000 +17592278683274 50000 +17592278820654 50000 +17592278765179 74600 +17592279257266 50000 +17592278949716 50000 +17592279257291 51200 +17592279257088 50000 +17592279257557 54100 +17592279257264 74100 +17592279257262 50000 +17592279257260 71182 +17592279257258 52000 +17592279257256 55000 +17592279257072 54611 +17592279257084 71182 +17592279257080 55000 +17592279257076 54100 +17592279042979 50000 +17592278991480 15300 +17592278991420 74200 +17592279258358 54700 +17592279258427 54700 +17592279258423 54700 +17592253750483 72186 +17592279756403 54300 +17592279257068 50000 +17592279042987 50000 +17592278991436 51130 +17592279148896 50000 +17592279257299 51200 +17592279756393 74100 +17592279756012 51200 +17592279323710 50000 +17592279325805 11000 +17592279479329 50000 +17592279417369 54100 +17592279756028 51200 +17592279755991 71182 +17592279755993 74100 +17592279755987 55000 +17592279755989 50000 +17592279479516 50000 +17592279499457 72186 +17592279633954 50000 +17592279756036 51200 +17592279705690 50000 +17592279756044 51200 +17592279788577 11000 +17592279788609 11000 +17592279788585 11000 +17592279788641 11000 +17592279854890 50000 +17592279860603 50000 +17592279861052 83400 +17592283027094 50000 +17592280675145 74100 +17592280674246 54400 +17592280674250 54790 +17592280674254 54700 +17592280674258 54612 +17592280674010 51200 +17592283027102 50000 +17592280264918 50000 +17592280674187 55000 +17592280674191 71182 +17592280674195 50000 +17592280674168 54611 +17592280674172 54612 +17592280674176 54100 +17592280674026 51200 +17592283027110 50000 +17592283027118 50000 +17592280674277 54100 +17592280674374 71182 +17592280674372 52000 +17592280674378 74100 +17592280674376 50000 +17592280674380 55000 +17592281696331 54300 +17592280362756 50000 +17592280674097 50000 +17592280674034 51200 +17592280750185 50000 +17592280750193 50000 +17592280784564 50000 +17592281354392 71180 +17592281027694 50000 +17592281698146 54400 +17592281013863 11000 +17592281696409 51200 +17592281698277 54700 +17592281698287 54612 +17592281698372 54700 +17592285000567 54700 +17592281675363 55000 +17592281675367 71182 +17592281675371 71182 +17592281675375 50000 +17592281675355 54611 +17592281675359 54100 +17592281696534 71182 +17592281696532 52000 +17592281696536 50000 +17592281696530 55000 +17592281696528 74100 +17592281696418 51200 +17592281860288 50000 +17592281772105 50000 +17592281771675 50000 +17592281696483 51200 +17592281771683 50000 +17592281771691 50000 +17592281873779 50000 +17592282575960 74100 +17592285452639 50000 +17592282576076 51200 +17592282007797 55000 +17592281912212 50000 +17592281912196 50000 +17592282576127 71182 +17592282576129 54790 +17592282576131 50000 +17592282576133 74100 +17592282576135 55000 +17592282576137 52000 +17592282575974 54300 +17592282575987 54100 +17592282575997 54700 +17592282576001 54700 +17592282576005 54700 +17592282576009 54700 +17592282576013 54700 +17592282575861 71182 +17592282575865 50000 +17592282007039 74600 +17592282007885 50000 +17592282575779 50000 +17592282575822 54100 +17592282575826 54612 +17592282575830 55000 +17592253750533 72186 +17592282181866 50000 +17592282575775 50000 +17592282576098 51200 +17592282668748 50000 +17592282231678 11000 +17592285935565 86200 +17592282668756 50000 +17592282731836 72186 +17592282688587 50000 +17592283014334 50000 +17592283195403 51200 +17592283014342 50000 +17592283195707 71182 +17592283195711 50000 +17592283195703 55000 +17592283195898 54100 +17592283195917 71182 +17592283195915 52000 +17592283195921 74100 +17592283195919 50000 +17592283195923 55000 +17592283092407 50000 +17592283195854 54700 +17592283195858 54400 +17592283195850 54612 +17592283195862 54400 +17592283195866 54790 +17592283195679 50000 +17592283195419 51200 +17592283195411 51200 +17592283105099 50000 +17592283105109 50000 +17592283907329 51200 +17592283255944 11000 +17592283783030 74100 +17592283782889 50000 +17592283444157 50000 +17592283344536 25200 +17592283344945 25200 +17592283783240 51200 +17592283444165 50000 +17592283355877 93100 +17592283355911 25200 +17592283355927 93100 +17592283553596 50000 +17592283782837 54612 +17592283782841 55000 +17592283782845 71182 +17592283782849 50000 +17592283782833 50000 +17592283783221 71182 +17592283783219 50000 +17592283783217 55000 +17592283783215 74100 +17592283440042 50000 +17592283642986 50000 +17592283554853 25200 +17592283782829 50000 +17592285304466 50000 +17592285304430 50000 +17592283783248 51200 +17592283783672 50000 +17592284390566 54300 +17592285932658 82100 +17592284611460 83700 +17592283804967 25200 +17592283805023 93100 +17592284725164 50000 +17592283862668 72186 +17592284012699 74100 +17592283908795 74700 +17592284390562 54300 +17592284323481 51200 +17592283969165 25200 +17592283969782 25200 +17592283930794 11000 +17592283930630 25200 +17592284390259 54700 +17592284390255 54612 +17592284390251 54400 +17592284390247 54790 +17592283970357 25200 +17592283970389 25200 +17592283970373 25200 +17592283935206 50000 +17592284323382 52000 +17592284323380 55000 +17592284323386 50000 +17592284323384 71182 +17592284323378 74100 +17592284318011 54611 +17592284318015 54100 +17592284318007 54612 +17592284318027 50000 +17592284318019 55000 +17592284318023 71182 +17592284390368 54100 +17592284035734 50000 +17592284210814 50000 +17592284317975 50000 +17592284454241 50000 +17592284323502 51200 +17592284454249 50000 +17592284390457 73301 +17592284390490 73301 +17592284390414 73301 +17592284625664 72711 +17592284695179 50000 +17592284657046 11000 +17592285843351 54700 +17592285843359 54700 +17592284695171 50000 +17592285094471 54790 +17592285094467 54612 +17592285094475 54700 +17592285094463 54400 +17592285165248 51200 +17592285165240 51200 +17592284919420 50000 +17592285094346 54100 +17592285094298 74100 +17592285094296 54790 +17592285094294 71182 +17592285094302 50000 +17592285094300 55000 +17592285000595 54700 +17592285086467 50000 +17592285086449 54611 +17592285086457 55000 +17592285086453 54100 +17592285086463 71182 +17592284760564 54100 +17592284919428 50000 +17592285086413 50000 +17592285165425 50000 +17592285165256 51200 +17592287124635 72180 +17592285165433 50000 +17592285193242 74500 +17592285187886 50000 +17592285253063 25200 +17592285253079 25200 +17592285253031 25200 +17592285253047 25200 +17592285842752 51200 +17592285466397 50000 +17592285842622 74100 +17592285842620 50000 +17592285842626 71182 +17592285842624 55000 +17592285548475 72180 +17592285466405 50000 +17592285843226 54100 +17592285843027 54100 +17592285843032 55000 +17592285843036 71182 +17592285843042 50000 +17592285843022 54611 +17592285842950 54790 +17592285842955 54700 +17592285842941 54612 +17592285842945 54400 +17592285570898 50000 +17592285568594 72180 +17592285568602 72180 +17592285842991 50000 +17592285842766 51200 +17592285635794 50000 +17592285635349 11000 +17592285843567 50000 +17592286352305 74100 +17592286033237 71180 +17592285933337 50000 +17592285899661 74600 +17592285955355 50000 +17592286351552 51130 +17592285933553 15600 +17592286080359 50000 +17592286575816 50000 +17592286352387 50000 +17592286351314 54700 +17592286351306 54790 +17592286351270 74100 +17592286351268 50000 +17592286351274 52000 +17592286351272 55000 +17592286351266 71182 +17592286035556 25200 +17592286034341 25200 +17592286351586 54100 +17592286033986 25200 +17592286352339 71182 +17592286352343 50000 +17592286352331 54100 +17592286352335 55000 +17592286352327 54611 +17592286160853 74250 +17592286351561 51200 +17592286130154 50000 +17592286352315 50000 +17592286576415 50000 +17592286351570 51200 +17592286356002 72110 +17592286220794 11000 +17592286576407 50000 +17592286355941 72186 +17592286727067 50000 +17592286686428 81200 +17592285932666 82100 +17592287099383 54610 +17592287099391 54790 +17592287099387 54700 +17592287099395 54400 +17592287099463 51200 +17592286727075 50000 +17592287099337 54300 +17592287099341 54300 +17592286874929 50000 +17592287099427 54100 +17592286874321 75300 +17592287133922 71182 +17592287133920 50000 +17592287133918 55000 +17592287133924 74100 +17592287099257 54610 +17592287099265 50000 +17592287099261 55000 +17592286874951 50000 +17592286618309 15600 +17592286863675 25200 +17592287099237 50000 +17592287099471 51200 +17592286970552 11000 +17592287132515 50000 +17592287099479 51200 +17592287132501 50000 +17592287184423 50000 +17592287429035 50000 +17592287429045 50000 +17592286879336 72180 +17592286865339 91200 +17592286879338 72180 +17592286879340 72180 +17592286879342 72180 +17592286879344 72180 +17592286879346 72180 +17592286879348 72180 +17592286879350 72180 +17592286879352 72180 +17592286879354 72180 +17592286879356 72180 +17592286879358 72180 +17592252742248 15300 +17592252735756 15300 +17592252845227 15300 +17592253034246 73300 +17592246196453 93400 +17592253353243 15300 +17592253348724 15300 +17592253518125 74710 +17592253988697 15300 +17592253988713 82100 +17592254363683 74710 +17592254446982 15300 +17592254765784 15300 +17592246196455 93400 +17592255219270 15300 +17592255876123 74700 +17592255898797 15300 +17592258779644 74700 +17592256029118 82100 +17592256035387 15300 +17592259487921 54100 +17592254626634 83300 +17592256256827 15300 +17592256276505 71700 +17592258780405 50000 +17592258780634 50000 +17592258780552 50000 +17592258780728 55000 +17592258780720 50000 +17592267243297 54700 +17592261499301 50000 +17592261499299 50000 +17592258779944 50000 +17592258779989 50000 +17592258779980 50000 +17592257199004 72130 +17592257199026 72130 +17592257250307 72180 +17592246196457 93400 +17592257670516 71700 +17592257691366 15300 +17592257850383 15300 +17592257930869 82100 +17592259485174 54700 +17592259485173 54790 +17592259485172 54150 +17592258779557 54400 +17592258779604 50000 +17592258779612 50000 +17592258779588 50000 +17592258779596 54200 +17592258779636 50000 +17592258779620 54150 +17592258779628 50000 +17592259190970 50000 +17592258779572 54700 +17592258779580 54700 +17592258105832 15300 +17592258299221 83300 +17592259193425 54100 +17592259190713 51200 +17592259191119 50000 +17592259486014 54700 +17592259486013 54400 +17592259193441 54700 +17592259193453 54790 +17592258779481 54400 +17592258593198 81200 +17592259480098 50000 +17592262875385 74100 +17592259486259 74100 +17592259480073 51200 +17592262819584 54400 +17592258770530 72100 +17592258770452 72100 +17592258779493 54400 +17592259480106 50000 +17592259480082 51200 +17592258849602 11000 +17592259486824 54790 +17592259487015 54700 +17592259486999 54700 +17592259480859 50000 +17592259487007 54400 +17592259193089 54300 +17592261499297 50000 +17592259480114 50000 +17592259480214 50000 +17592259480223 74100 +17592261591941 54700 +17592259486175 54200 +17592259480090 51200 +17592259486183 50000 +17592266186444 74100 +17592259480122 50000 +17592261257113 50000 +17592260759395 51200 +17592260759397 51200 +17592259480130 50000 +17592260759399 51200 +17592259480138 50000 +17592259480146 50000 +17592259412775 81200 +17592259482799 54790 +17592259482809 50000 +17592259482817 55000 +17592259481291 52000 +17592259481562 74100 +17592263002141 54610 +17592263002165 54700 +17592263002173 54790 +17592263002149 54400 +17592263002157 54700 +17592259482572 50000 +17592246196459 93400 +17592260081571 50000 +17592260081879 50000 +17592259486191 50000 +17592265130526 74700 +17592259509038 11000 +17592259509020 11000 +17592261257032 50000 +17592260081887 50000 +17592260081895 50000 +17592261499295 50000 +17592260081579 50000 +17592260081718 74100 +17592260081863 50000 +17592260081841 50000 +17592260081855 54790 +17592260037610 74710 +17592260081611 54790 +17592260081603 54700 +17592260081627 54200 +17592260081619 54790 +17592260081595 54400 +17592260081587 54700 +17592260081643 54700 +17592260081635 54700 +17592260081659 50000 +17592260081651 54200 +17592259998631 15300 +17592258299213 83300 +17592260114361 25200 +17592260096042 93400 +17592260081871 55000 +17592260081903 50000 +17592262818470 50000 +17592260152450 15300 +17592260817337 50000 +17592260817321 52000 +17592260817329 50000 +17592260817312 50000 +17592260759401 51200 +17592260818800 50000 +17592260211145 71700 +17592260188556 11000 +17592260759403 51200 +17592260817219 50000 +17592262818527 50000 +17592260817972 54100 +17592260434348 82100 +17592260817286 50000 +17592261084929 50000 +17592260759405 51200 +17592260817378 74100 +17592260817353 52000 +17592260817345 50000 +17592260817294 54400 +17592260817418 50000 +17592260817402 50000 +17592260817410 50000 +17592260817386 50000 +17592260817394 50000 +17592262818536 50000 +17592261320925 54700 +17592261499063 51200 +17592262818551 50000 +17592260717505 25200 +17592261074038 12980 +17592258266801 93400 +17592261320884 50000 +17592267243305 54700 +17592261320892 50000 +17592261499043 51200 +17592261084951 50000 +17592260949741 72130 +17592261320900 50000 +17592265130506 74700 +17592261028800 25200 +17592261028775 25200 +17592261321014 54790 +17592261331245 50000 +17592261320957 54610 +17592261320949 54400 +17592261320941 54700 +17592261331426 52000 +17592261331402 50000 +17592261331385 51200 +17592261331442 50000 +17592261331434 50000 +17592262875650 50000 +17592261028832 25200 +17592261137399 25200 +17592261320917 74100 +17592261873694 74100 +17592261066901 11000 +17592261331296 50000 +17592261331278 50000 +17592261331237 50000 +17592261320933 54400 +17592261331393 51200 +17592261331377 54700 +17592261331369 50000 +17592261331361 54610 +17592261499293 50000 +17592261499291 50000 +17592261331353 54200 +17592261331344 55000 +17592261257015 50000 +17592261320908 50000 +17592261499045 51200 +17592261499137 50000 +17592265180033 54700 +17592265023280 74500 +17592261301238 25200 +17592261301215 25200 +17592261730272 50000 +17592261730298 51200 +17592261553578 54100 +17592261613502 25200 +17592261730280 50000 +17592261613569 25200 +17592261613591 25200 +17592262375793 51200 +17592261872791 51200 +17592261872799 54790 +17592261872807 54610 +17592261872816 54400 +17592261872824 54700 +17592261872832 54610 +17592261872910 54700 +17592261872918 50000 +17592261872926 52000 +17592261872934 74100 +17592261872943 50000 +17592261872951 55000 +17592261872959 54790 +17592261709303 15300 +17592267243315 54700 +17592261730288 50000 +17592261730306 25200 +17592261708066 15300 +17592261648988 11000 +17592261872783 50000 +17592261858299 72180 +17592261876853 74700 +17592261877360 74700 +17592261875864 15300 +17592262375795 51200 +17592262711577 50000 +17592262375797 51200 +17592246196461 93400 +17592265130514 15300 +17592263266345 51200 +17592262711585 50000 +17592274215133 74100 +17592262711601 50000 +17592262701583 72710 +17592263049404 50000 +17592263266330 54300 +17592263266347 51200 +17592263266613 50000 +17592262891059 50000 +17592262891074 50000 +17592262891070 50000 +17592262891082 50000 +17592262891078 50000 +17592263266611 50000 +17592263266605 50000 +17592263266603 50000 +17592263266609 50000 +17592263266607 50000 +17592263007493 25200 +17592263018108 25200 +17592263151264 50000 +17592263018154 25200 +17592263008023 25200 +17592263266442 50000 +17592263049412 50000 +17592263266349 51200 +17592263018742 25200 +17592262851180 25200 +17592263138972 53000 +17592263151272 50000 +17592263266351 51200 +17592263386751 54100 +17592263386706 51200 +17592263844081 51200 +17592263844079 51200 +17592263248532 11000 +17592266410523 50000 +17592263851574 54700 +17592263851578 54700 +17592263473141 82100 +17592266410540 50000 +17592263451132 74500 +17592263486033 73300 +17592284390544 74100 +17592263851542 50000 +17592263851540 50000 +17592263851546 50000 +17592263851544 50000 +17592263851548 50000 +17592263844083 51200 +17592263486075 73300 +17592266410532 50000 +17592263486042 73300 +17592263896382 50000 +17592263691929 93400 +17592263691831 83300 +17592263844085 51200 +17592263867051 11000 +17592258266809 93400 +17592263900065 50000 +17592267850811 54300 +17592264396078 51200 +17592264396301 71182 +17592264396299 52000 +17592264396293 50000 +17592264396291 55000 +17592264396297 54790 +17592264396295 55000 +17592267243323 54700 +17592264486965 50000 +17592263995846 15300 +17592264189008 54400 +17592264188995 54700 +17592264189026 54610 +17592264188981 54700 +17592264396204 54200 +17592264396209 55000 +17592264396201 54150 +17592264396213 50000 +17592264396217 50000 +17592264486978 50000 +17592264396080 51200 +17592264202275 72100 +17592264487222 50000 +17592264203178 25200 +17592267243331 54700 +17592264927345 51200 +17592264487389 50000 +17592264401884 74500 +17592264489978 54100 +17592264927381 55000 +17592264927385 74100 +17592264927383 50000 +17592264927389 52000 +17592264927387 54790 +17592264927391 71182 +17592264927347 51200 +17592268922981 50000 +17592264666783 11000 +17592264924835 50000 +17592264924840 71182 +17592264924844 55000 +17592264927379 50000 +17592264927349 51200 +17592264613899 50000 +17592264749097 50000 +17592264630846 50000 +17592265421950 74100 +17592264738066 50000 +17592264927351 51200 +17592264749105 50000 +17592265543455 54610 +17592265543454 54400 +17592265543453 54790 +17592267243347 54700 +17592267243339 54700 +17592264927353 51200 +17592264872168 50000 +17592265179925 54700 +17592265543835 55000 +17592265421946 54200 +17592265421884 51200 +17592265543545 50000 +17592264911716 54100 +17592265543808 54150 +17592265097009 50000 +17592265421886 51200 +17592246196463 93400 +17592265179929 54700 +17592265179937 54610 +17592265179933 54790 +17592265179906 50000 +17592265179941 54400 +17592265421916 50000 +17592265543150 50000 +17592265095196 50000 +17592269947313 54200 +17592265421595 50000 +17592265421587 54200 +17592265421591 50000 +17592265421583 54610 +17592265421567 54610 +17592265421910 50000 +17592265421908 50000 +17592265421914 74100 +17592265421912 54790 +17592265421906 55000 +17592265543164 50000 +17592265385845 25200 +17592265397000 25200 +17592265421888 51200 +17592268922989 50000 +17592265374012 25200 +17592266186448 50000 +17592265543172 50000 +17592266186624 54100 +17592266186633 51200 +17592265543186 50000 +17592266186635 51200 +17592266186637 51200 +17592266186533 52000 +17592266186531 55000 +17592265774827 50000 +17592266186529 74100 +17592266186527 50000 +17592266186525 54790 +17592266186523 71182 +17592269947305 54150 +17592265647223 50000 +17592265774819 50000 +17592265829305 11000 +17592265757589 93400 +17592258299229 83300 +17592266483351 50000 +17592266483391 50000 +17592266186639 51200 +17592266483399 50000 +17592266778596 51200 +17592266483407 50000 +17592266322195 25200 +17592266433633 72180 +17592266483415 50000 +17592267243355 54700 +17592266778753 50000 +17592266778751 54790 +17592266778749 71182 +17592266778759 52000 +17592266778757 55000 +17592266778755 74100 +17592266778598 51200 +17592266778916 54612 +17592266778912 54790 +17592266778908 54700 +17592266778902 54400 +17592266483423 50000 +17592266778482 54200 +17592266778478 54611 +17592266778490 54790 +17592266778486 71182 +17592258267061 93400 +17592266778454 50000 +17592267016641 82100 +17592266749622 50000 +17592266749630 50000 +17592266778600 51200 +17592266699566 25200 +17592266795876 11000 +17592266853499 50000 +17592268525087 51200 +17592267243498 54100 +17592268525095 51200 +17592266938449 50000 +17592267243530 52000 +17592267243528 71182 +17592267243536 55000 +17592267243534 74100 +17592267243532 50000 +17592267850779 74100 +17592266984996 50000 +17592268525103 51200 +17592267081575 54100 +17592267345680 50000 +17592267331202 50000 +17592268525111 51200 +17592267931034 54100 +17592268525119 51200 +17592267345689 50000 +17592267318208 11000 +17592268922997 50000 +17592267418845 25200 +17592267558011 54700 +17592267417036 25200 +17592267416916 25200 +17592268525127 51200 +17592267441982 25200 +17592267851781 54700 +17592267851785 54790 +17592267851789 54612 +17592267417622 25200 +17592267851777 54400 +17592267600265 50000 +17592267851490 50000 +17592267851492 55000 +17592267851494 54790 +17592267851496 52000 +17592267851498 71182 +17592267600506 50000 +17592267850543 54611 +17592267850550 55000 +17592267850557 50000 +17592246196465 93400 +17592267951030 50000 +17592268525135 51200 +17592267951038 50000 +17592267970707 54200 +17592267950918 50000 +17592268524765 54790 +17592268524763 71182 +17592268524769 74100 +17592268524767 50000 +17592268524761 52000 +17592268524771 55000 +17592268525143 51200 +17592268378219 50000 +17592268028346 81200 +17592268524654 54400 +17592268524658 54700 +17592268524650 54790 +17592268524662 54612 +17592268524629 54700 +17592268191536 72100 +17592268378227 50000 +17592258299237 83300 +17592268525151 51200 +17592268378235 50000 +17592268525229 51200 +17592268420855 93400 +17592268696894 50000 +17592268525238 51200 +17592268420764 82100 +17592268744722 50000 +17592268554739 11000 +17592269137853 54700 +17592269126911 51200 +17592269137701 54790 +17592269137699 74100 +17592269137693 55000 +17592269137691 52000 +17592269137697 50000 +17592269137695 71182 +17592268923006 50000 +17592268850388 72130 +17592269122956 54200 +17592269122916 71182 +17592269122926 55000 +17592269122899 50000 +17592269126919 51200 +17592269123144 54612 +17592269123129 54611 +17592268923092 50000 +17592269437048 54150 +17592268800962 51100 +17592269042857 25200 +17592269372758 25200 +17592269000415 25200 +17592269000616 25200 +17592269000509 25200 +17592268923100 50000 +17592269029810 25200 +17592269126927 51200 +17592269000528 25200 +17592258267522 93400 +17592269126935 51200 +17592269119795 74500 +17592269210383 50000 +17592269466761 50000 +17592269240349 25200 +17592269257071 81120 +17592269466770 50000 +17592269636614 52000 +17592269636612 55000 +17592269636616 71182 +17592269636606 54790 +17592269636610 74100 +17592269636608 50000 +17592269709018 50000 +17592269827594 50000 +17592269636803 54700 +17592269636799 54700 +17592269636789 54700 +17592269636793 54700 +17592269466787 50000 +17592269417887 50000 +17592269636842 54700 +17592269827602 50000 +17592269465498 50000 +17592274406225 54400 +17592270334282 74100 +17592269496673 50000 +17592269636504 51200 +17592269546750 50000 +17592269618268 11000 +17592272696651 54100 +17592269743258 54100 +17592269694063 50000 +17592275585416 55000 +17592270343190 51200 +17592269773444 50000 +17592269761426 50000 +17592269888517 50000 +17592270343198 51200 +17592270342490 74100 +17592270342488 55000 +17592270342496 71182 +17592270342494 50000 +17592270342492 54790 +17592270288338 54611 +17592270288346 54100 +17592270288342 54612 +17592270288354 50000 +17592270288350 54100 +17592270343206 51200 +17592270343214 51200 +17592270288358 55000 +17592270288367 50000 +17592270288363 71182 +17592270117418 50000 +17592270190536 50000 +17592270343165 51200 +17592270343173 51200 +17592270343181 51200 +17592271644410 74600 +17592246196467 93400 +17592270387145 81150 +17592270866114 54100 +17592270408244 50000 +17592270385801 72130 +17592270408252 50000 +17592270866352 71182 +17592270866350 52000 +17592270866348 55000 +17592270866346 74100 +17592270866344 50000 +17592270866342 54790 +17592270573186 50000 +17592283196158 50000 +17592283196160 50000 +17592270573545 50000 +17592270560176 81160 +17592270866162 54790 +17592270866158 54700 +17592270866148 54700 +17592270866166 54612 +17592270729074 50000 +17592270865952 51200 +17592270820677 25200 +17592270841637 11000 +17592270925109 50000 +17592270865960 51200 +17592271095460 54100 +17592270960425 50000 +17592271501284 51200 +17592271501474 74100 +17592271501472 50000 +17592271501470 71182 +17592271501468 52000 +17592271501476 55000 +17592271035146 50000 +17592283196146 50000 +17592283196156 50000 +17592283196150 50000 +17592283196148 50000 +17592283196154 50000 +17592283196152 50000 +17592271455607 55000 +17592271455688 54612 +17592271455696 50000 +17592271455692 71182 +17592271135034 50000 +17592271501759 54700 +17592271501763 54700 +17592271501775 54700 +17592271254868 81200 +17592271983657 74100 +17592258299245 83300 +17592271210131 50000 +17592271501303 51200 +17592271573617 50000 +17592271983642 51200 +17592271644519 50000 +17592271556928 93400 +17592271905769 50000 +17592271983681 52000 +17592271983691 55000 +17592271983689 74100 +17592271983687 50000 +17592271983685 54790 +17592271983683 71182 +17592268744574 82100 +17592258267534 93400 +17592283196142 50000 +17592283196140 50000 +17592283196144 50000 +17592283196138 50000 +17592271983645 51200 +17592271905847 50000 +17592271838709 15300 +17592283196136 50000 +17592272696243 54300 +17592275690147 71182 +17592271906061 50000 +17592271983648 51200 +17592272107227 50000 +17592272170611 50000 +17592272172767 54790 +17592272696035 54100 +17592272305245 50000 +17592272238882 11000 +17592272216850 50000 +17592272696134 71182 +17592272696132 52000 +17592272235359 54100 +17592272696126 50000 +17592272696130 55000 +17592272696128 74100 +17592283196134 50000 +17592283196132 50000 +17592283196130 50000 +17592283196128 50000 +17592272695887 51200 +17592272768879 50000 +17592272695691 50000 +17592272695687 50000 +17592272695771 71182 +17592272695775 54612 +17592272695767 55000 +17592272695741 54611 +17592272433031 74500 +17592272768903 50000 +17592272424965 81120 +17592272695895 51200 +17592272605961 25200 +17592272768975 50000 +17592273465339 54100 +17592273465302 51200 +17592272834262 50000 +17592273124466 50000 +17592273465442 74100 +17592273465448 71182 +17592273465450 55000 +17592273465444 54790 +17592273465446 50000 +17592283196126 50000 +17592283196122 50000 +17592283196120 50000 +17592246196469 93400 +17592273465310 51200 +17592273187355 97200 +17592273304634 97200 +17592273348438 50000 +17592273466118 54400 +17592273466106 54790 +17592273466114 54612 +17592273466110 54700 +17592273465260 25200 +17592274220184 51200 +17592273819869 50000 +17592274220196 51200 +17592273819877 50000 +17592274221576 52000 +17592274221578 71182 +17592274221580 50000 +17592274221582 74100 +17592274221584 54790 +17592274214999 50000 +17592274215057 54612 +17592274215061 54611 +17592274215065 55000 +17592274215069 71182 +17592274215073 50000 +17592274879558 74100 +17592274220248 51200 +17592258299254 83300 +17592273917556 50000 +17592273953179 25200 +17592274220273 51200 +17592274220258 51200 +17592273952499 50000 +17592274005775 11000 +17592274220374 51200 +17592274278759 50000 +17592274879490 51200 +17592274879498 51200 +17592274359820 50000 +17592274879358 71182 +17592274879356 52000 +17592274879362 50000 +17592274879360 54790 +17592274879354 55000 +17592274879352 74100 +17592274879506 51200 +17592274518015 50000 +17592274879514 51200 +17592268744576 82100 +17592274517614 93400 +17592274518023 50000 +17592274879209 54790 +17592274879219 54400 +17592258267809 93400 +17592274879530 51200 +17592274879522 51200 +17592275474866 50000 +17592275193010 55000 +17592275326714 51200 +17592275326867 71182 +17592275326861 74100 +17592275326865 50000 +17592275326863 55000 +17592275080047 50000 +17592275326181 54612 +17592275326185 55000 +17592275326189 71182 +17592275326193 50000 +17592275258461 50000 +17592279875673 71180 +17592275080063 50000 +17592275258453 50000 +17592275326722 51200 +17592275341604 25200 +17592275326730 51200 +17592275474858 50000 +17592275986414 54100 +17592275854353 50000 +17592275854361 50000 +17592275986360 51200 +17592275585392 74700 +17592275986472 54612 +17592275986432 54790 +17592275986428 54700 +17592275986424 54400 +17592275986592 71182 +17592275986594 50000 +17592275986588 55000 +17592275986590 74100 +17592275854369 50000 +17592287047504 72180 +17592275987230 54612 +17592275986668 54700 +17592275782210 11000 +17592277778158 93400 +17592277779117 93400 +17592275986368 51200 +17592275986817 50000 +17592276032043 81150 +17592276674953 50000 +17592276674951 74100 +17592276674949 71182 +17592276674947 55000 +17592276226107 50000 +17592276596033 74100 +17592276596075 54612 +17592277268712 74100 +17592276674961 55000 +17592276674959 71182 +17592276674957 50000 +17592276674955 50000 +17592276674965 54611 +17592276674963 54100 +17592276674945 51200 +17592276226119 50000 +17592258299262 83300 +17592276308918 50000 +17592276368365 50000 +17592277270319 51200 +17592277269738 71182 +17592277269736 52000 +17592277269734 55000 +17592277269732 74100 +17592276732970 50000 +17592277269730 50000 +17592277270354 51200 +17592276936050 50000 +17592278190735 54100 +17592277185937 93400 +17592268744578 82100 +17592277210777 50000 +17592277211320 74600 +17592277270685 51200 +17592258267823 93400 +17592277305908 50000 +17592277986550 55000 +17592277986548 74100 +17592277986554 71182 +17592277986552 50000 +17592279854796 71180 +17592277476373 50000 +17592277971260 71182 +17592277971264 50000 +17592277971252 54100 +17592277971256 55000 +17592277465373 50000 +17592277979323 51200 +17592278070989 50000 +17592278587221 51200 +17592278587229 51200 +17592278071005 50000 +17592278071013 50000 +17592277979387 51200 +17592278576002 50000 +17592279257574 54100 +17592278136160 72130 +17592278185077 50000 +17592278205792 81200 +17592278310715 50000 +17592278587280 50000 +17592278587282 74100 +17592278587288 71182 +17592278587284 55000 +17592278587286 52000 +17592278587237 51200 +17592278310723 50000 +17592278427506 11000 +17592278587546 54612 +17592278587554 54400 +17592278587550 54790 +17592278587558 54700 +17592278444030 50000 +17592278685436 50000 +17592278444022 50000 +17592278587245 51200 +17592278587253 51200 +17592278949668 50000 +17592277778160 93400 +17592278949684 50000 +17592277779119 93400 +17592278949660 50000 +17592278839070 25200 +17592279257466 51200 +17592279257423 74100 +17592279257421 54790 +17592279257419 71182 +17592279257417 50000 +17592279257415 55000 +17592279257161 74100 +17592279257092 54100 +17592279257127 50000 +17592279257123 55000 +17592279042955 50000 +17592279257474 51200 +17592279257482 51200 +17592279147314 50000 +17592279257413 71221 +17592279476092 50000 +17592279388078 74600 +17592279387981 25200 +17592279755687 55000 +17592279755689 52000 +17592279755685 74100 +17592279755695 50000 +17592279755691 71182 +17592279755693 54790 +17592279755720 51200 +17592279499449 81200 +17592258299270 83300 +17592279633946 50000 +17592279770971 93400 +17592279755728 51200 +17592279855643 50000 +17592279860619 50000 +17592279770313 93400 +17592280080109 11000 +17592280272688 74600 +17592268744580 82100 +17592280674406 54790 +17592280674404 71182 +17592280674410 55000 +17592280674408 74100 +17592280674402 50000 +17592258267832 93400 +17592280674042 51200 +17592280674121 55000 +17592280674105 54100 +17592280674109 71182 +17592280674113 50000 +17592280264785 50000 +17592280674341 54700 +17592280674345 54400 +17592280674349 54790 +17592280674353 54612 +17592280265554 50000 +17592280674066 51200 +17592280481482 25200 +17592280784606 50000 +17592281260511 71180 +17592281260503 50000 +17592281696564 55000 +17592281696558 50000 +17592281696562 52000 +17592281696560 71182 +17592281776525 54790 +17592281860296 50000 +17592281260584 50000 +17592281384652 50000 +17592281696583 51200 +17592281873815 50000 +17592282576182 51200 +17592282576164 50000 +17592282576166 71182 +17592282576162 74100 +17592282007973 55000 +17592282576190 51200 +17592282575970 74100 +17592277778162 93400 +17592282575783 54611 +17592282575802 55000 +17592282575806 71182 +17592282575810 50000 +17592277779121 93400 +17592282668764 50000 +17592283195745 74100 +17592282688595 50000 +17592283200098 51200 +17592283195949 74100 +17592283195947 50000 +17592283195953 52000 +17592283195951 55000 +17592283195945 54790 +17592283195955 71182 +17592282918278 25200 +17592283200272 51200 +17592282993159 25200 +17592283050605 25200 +17592283105117 50000 +17592283444283 50000 +17592283783083 51200 +17592279771050 83300 +17592283783062 50000 +17592283783060 52000 +17592283783064 55000 +17592283783058 71182 +17592283553584 50000 +17592283782869 71182 +17592283782873 50000 +17592283782861 54611 +17592283782865 55000 +17592279770541 93400 +17592283554869 25200 +17592283642978 50000 +17592268744582 82100 +17592284571953 82100 +17592258268071 93400 +17592284611365 81200 +17592284378315 54100 +17592283868207 25200 +17592283863994 83400 +17592284035750 50000 +17592284390465 71182 +17592284390498 51200 +17592284390471 55000 +17592284390467 50000 +17592284390469 74100 +17592285843367 54700 +17592284390307 54612 +17592284390303 54400 +17592284390299 54790 +17592284390295 54700 +17592284035758 50000 +17592284210822 50000 +17592284317979 55000 +17592284317983 50000 +17592284390386 73300 +17592284390378 73300 +17592284390354 73300 +17592284571977 82100 +17592284586167 54100 +17592284605220 54100 +17592285165319 51200 +17592285165291 74100 +17592285165293 50000 +17592285165295 71182 +17592285165297 74100 +17592284919412 50000 +17592284757436 54400 +17592285094360 54100 +17592285086440 71182 +17592285086436 55000 +17592285086445 50000 +17592285086431 50000 +17592285086427 54611 +17592284760726 54100 +17592285165289 71182 +17592285165441 50000 +17592277779123 93400 +17592285847342 15300 +17592286656993 81160 +17592285193381 74500 +17592285935557 86200 +17592285843339 74100 +17592285199981 81110 +17592285279469 11000 +17592285635786 50000 +17592285843320 51200 +17592285843285 55000 +17592285843289 71182 +17592285843287 52000 +17592285843293 50000 +17592285843291 54790 +17592285843295 74100 +17592285248240 25200 +17592285548491 72180 +17592285843189 54612 +17592285843173 54700 +17592285843178 54790 +17592285843183 54400 +17592285570753 50000 +17592285843018 50000 +17592285842995 54612 +17592285843001 54100 +17592285843005 55000 +17592285843010 71182 +17592286033222 71180 +17592286074365 50000 +17592286351671 51200 +17592286352383 50000 +17592286352371 71182 +17592286352375 50000 +17592286352363 54611 +17592286352367 55000 +17592286074373 50000 +17592286352323 50000 +17592286351956 50000 +17592286351950 52000 +17592286351948 55000 +17592286351954 54790 +17592286351952 71182 +17592286351946 74100 +17592279771058 83300 +17592279770575 93400 +17592287099495 50000 +17592258268083 93400 +17592268744584 82100 +17592287099487 51200 +17592286874371 50000 +17592286877724 83300 +17592286874363 50000 +17592287133849 55000 +17592287133847 74100 +17592287133845 71182 +17592287133843 50000 +17592287099249 55000 +17592287099245 54100 +17592287099253 50000 +17592287099233 50000 +17592287429053 50000 +17592277779125 93400 +17592279771072 83300 +17592279770628 93400 +17592258268091 93400 +17592268744586 82100 +17592277779196 93400 +17592279771098 83300 +17592279770640 93400 +17592258268115 93400 +17592268744588 82100 +17592277779198 93400 +17592279771126 83300 +17592279770706 93400 +17592268744590 82100 +17592277779200 93400 +17592279771146 83300 +17592279770722 93400 +17592268744592 82100 +17592277779202 93400 +17592279771174 83300 +17592279770784 93400 +17592268744594 82100 +17592277779204 93400 +17592279770838 93400 +17592268744596 82100 +17592277779206 93400 +17592277779208 93400 +17592270896191 83300 +17592269106486 81200 +17592269106456 72680 +17592236380469 82100 +17592285466451 50000 +17592236380132 82100 +17592236380282 82100 +17592258867288 51200 +17592258867296 51200 +17592258867271 51200 +17592258867304 51200 +17592253989480 50000 +17592264170079 72180 +17592253305704 54300 +17592252839113 51200 +17592253734068 74100 +17592252581886 50000 +17592252567251 50000 +17592252839246 71182 +17592252839244 52000 +17592252839250 74100 +17592252839248 54790 +17592252839238 50000 +17592252839242 55000 +17592252655196 50000 +17592252839240 50000 +17592252839171 74450 +17592252839155 54200 +17592252839022 54790 +17592252839026 50000 +17592252839018 54200 +17592252839003 50000 +17592252712607 11000 +17592252695809 50000 +17592252838983 50000 +17592252785489 50000 +17592252839115 51200 +17592252813883 25200 +17592252871032 50000 +17592252839572 54100 +17592253305854 51200 +17592242092285 93400 +17592253032776 50000 +17592253305965 71182 +17592253305969 55000 +17592253305967 50000 +17592252957977 50000 +17592253305923 74450 +17592253306268 54790 +17592253306272 54612 +17592253306276 54400 +17592253306280 54700 +17592253176027 50000 +17592253305726 54612 +17592253305730 54611 +17592253305734 55000 +17592253305738 50000 +17592253305820 54200 +17592254459525 50000 +17592254459529 50000 +17592253176035 50000 +17592253113678 11000 +17592253305722 50000 +17592254462899 50000 +17592254462897 50000 +17592253305856 51200 +17592253340002 50000 +17592253340010 50000 +17592253734193 51200 +17592253353319 25200 +17592253410756 50000 +17592254459533 50000 +17592254462901 50000 +17592253422808 50000 +17592253742347 74100 +17592253742349 54790 +17592253742351 50000 +17592253742343 71182 +17592253742345 55000 +17592254459541 50000 +17592253431452 11000 +17592254459537 50000 +17592253409295 50000 +17592254462905 50000 +17592254462903 50000 +17592253734094 55000 +17592253734098 71182 +17592253734102 50000 +17592253734168 54150 +17592253734237 74450 +17592253501125 50000 +17592253734090 50000 +17592253750593 72186 +17592253742447 54700 +17592253742451 54700 +17592253742455 54700 +17592253638544 50000 +17592253734195 51200 +17592253638552 50000 +17592253770375 50000 +17592253836502 50000 +17592254098753 51200 +17592253861509 11000 +17592254099106 52000 +17592254099104 55000 +17592254099102 74100 +17592254099100 50000 +17592254099098 71182 +17592253861542 11000 +17592253881147 50000 +17592253951125 50000 +17592254098726 54150 +17592254098832 54611 +17592254098848 71182 +17592254098844 55000 +17592254098836 54200 +17592254098852 50000 +17592254098980 74450 +17592254147918 54200 +17592254098810 50000 +17592254459545 50000 +17592254459549 50000 +17592254459553 50000 +17592253991618 50000 +17592254462909 50000 +17592254462907 50000 +17592254462911 50000 +17592254098755 51200 +17592254019124 50000 +17592254459557 50000 +17592261730166 74600 +17592254021642 50000 +17592254462913 50000 +17592235329482 15322 +17592263420992 86300 +17592236380471 82100 +17592254459561 50000 +17592254459565 50000 +17592236380134 82100 +17592236380284 82100 +17592255088607 54300 +17592254620301 75100 +17592254462917 50000 +17592254462915 50000 +17592254459939 50000 +17592254239083 11000 +17592254654914 50000 +17592254620237 51200 +17592254620353 74100 +17592254620351 54790 +17592254620359 71182 +17592254620357 50000 +17592254620355 55000 +17592254462919 50000 +17592254465250 50000 +17592254620119 54200 +17592254620115 54611 +17592254620127 71182 +17592254620123 55000 +17592254620131 50000 +17592254620217 54200 +17592254392928 50000 +17592254620293 74450 +17592254620440 54700 +17592254620436 54790 +17592254620443 54400 +17592254620432 54611 +17592254620093 74100 +17592254620107 50000 +17592254620349 50000 +17592254620239 51200 +17592254532294 50000 +17592254654639 50000 +17592255088786 51200 +17592254663094 11000 +17592254778415 50000 +17592255088891 74100 +17592255088893 55000 +17592255088887 71182 +17592255088889 50000 +17592255088885 52000 +17592254737370 50000 +17592242092287 93400 +17592255088642 50000 +17592255088638 54200 +17592255088634 54611 +17592255088662 50000 +17592255088658 71182 +17592255088654 55000 +17592255088650 54790 +17592255088760 54100 +17592255088834 74450 +17592254929820 50000 +17592270968582 75050 +17592254869075 50000 +17592255088630 50000 +17592270964980 75050 +17592265531727 75050 +17592254894551 74600 +17592254894643 74600 +17592254895007 74600 +17592254929828 50000 +17592255088788 51200 +17592254941924 50000 +17592257850118 74800 +17592257850134 74800 +17592255240976 50000 +17592255166344 25200 +17592255133686 11000 +17592255176692 25200 +17592255412137 50000 +17592255656921 71182 +17592255656919 52000 +17592255656917 55000 +17592255656915 74100 +17592255656923 50000 +17592257932642 74600 +17592255412199 50000 +17592255656215 51200 +17592255656272 54200 +17592255656280 55000 +17592255656276 54611 +17592255656288 50000 +17592255656284 50000 +17592255656867 74450 +17592255656953 54790 +17592255656949 54612 +17592255656961 54400 +17592255656957 54700 +17592253750601 72186 +17592255656264 50000 +17592255448016 50000 +17592255712708 50000 +17592255712716 50000 +17592255712917 50000 +17592256192700 51200 +17592255810839 11000 +17592255810791 11000 +17592255933189 55000 +17592255785920 25200 +17592255966949 50000 +17592256192866 74100 +17592256192864 71182 +17592256192862 50000 +17592256192860 55000 +17592256192858 52000 +17592255932904 50000 +17592255967083 50000 +17592256192609 71182 +17592256192621 50000 +17592256192730 54200 +17592256192810 74450 +17592256216694 54150 +17592256013362 50000 +17592256192702 51200 +17592256192905 54400 +17592256192901 54612 +17592256192897 54700 +17592256192893 54790 +17592256029307 54100 +17592256029299 54100 +17592256216238 50000 +17592256192990 54700 +17592256216246 50000 +17592256708351 51200 +17592235329484 15322 +17592256515475 50000 +17592236380473 82100 +17592256708293 54300 +17592236380136 82100 +17592236380286 82100 +17592256236323 11000 +17592256236462 11000 +17592256436089 50000 +17592256708985 71182 +17592256708991 50000 +17592256708989 50000 +17592256708987 74100 +17592257897065 50000 +17592256708440 54612 +17592256708436 54611 +17592256708448 71182 +17592256708444 55000 +17592256708432 54200 +17592256708428 54150 +17592256436097 50000 +17592256708452 50000 +17592256709024 54612 +17592256708983 52000 +17592256709056 74450 +17592256709028 54700 +17592256708257 74100 +17592256591491 50000 +17592256708353 51200 +17592256708420 50000 +17592256591499 50000 +17592256573797 25200 +17592256681957 15303 +17592256760634 50000 +17592256731166 11000 +17592257241144 51200 +17592257242401 55000 +17592257242399 74100 +17592257242409 50000 +17592257242407 54790 +17592257242405 71182 +17592257242403 52000 +17592257032357 50000 +17592257242144 74450 +17592257240175 54200 +17592257240171 54150 +17592257240327 50000 +17592257240417 54611 +17592257242628 54700 +17592257242623 54790 +17592257242620 54612 +17592257240686 54150 +17592257032365 50000 +17592257243508 54700 +17592257897079 50000 +17592257032373 50000 +17592256991578 72130 +17592256999797 11000 +17592242092289 93400 +17592257101535 50000 +17592257241146 51200 +17592257078120 25200 +17592257138303 25200 +17592257182292 97200 +17592257223717 11000 +17592257249178 72180 +17592257282228 50000 +17592257223402 11000 +17592257282236 50000 +17592257346024 25200 +17592257786604 74100 +17592257786961 74100 +17592257786959 50000 +17592257786957 71182 +17592257786963 55000 +17592257409459 50000 +17592257786616 51200 +17592257543211 50000 +17592257786908 74450 +17592257843156 54790 +17592258867325 51200 +17592257825576 54200 +17592257786670 54150 +17592257786706 54200 +17592257786702 54611 +17592257786618 51200 +17592257786802 50000 +17592257786810 71182 +17592257786806 55000 +17592257786818 50000 +17592257670329 50000 +17592257787007 54612 +17592257787003 54700 +17592257787011 54790 +17592253750609 72186 +17592257330877 54100 +17592257253544 74600 +17592257673941 50000 +17592257786620 51200 +17592257850150 74800 +17592257816675 50000 +17592257786694 50000 +17592257850614 28050 +17592257830333 25200 +17592257816239 11000 +17592257816699 50000 +17592258106418 50000 +17592258186911 50000 +17592258186907 71182 +17592258186909 54790 +17592258186903 55000 +17592258186905 52000 +17592258186901 74100 +17592258106402 50000 +17592258186622 54200 +17592258186634 50000 +17592258186630 55000 +17592258186806 51200 +17592258186838 54200 +17592258186733 74450 +17592258186945 54790 +17592258186942 54612 +17592258186950 54700 +17592258106410 50000 +17592258043251 25200 +17592258186614 50000 +17592258063962 25200 +17592258186808 51200 +17592258106874 50000 +17592261730158 74600 +17592258287718 50000 +17592258171812 11000 +17592258792813 51200 +17592261084164 50000 +17592258793081 50000 +17592258793079 50000 +17592258793077 50000 +17592258793075 50000 +17592258793073 50000 +17592258793071 50000 +17592258424482 50000 +17592258792921 50000 +17592258792918 50000 +17592258792906 50000 +17592258792900 50000 +17592258792914 50000 +17592258792910 50000 +17592258792853 54100 +17592258793016 74450 +17592261730150 74600 +17592235329486 15322 +17592258550421 50000 +17592258792885 50000 +17592236380475 82100 +17592236380138 82100 +17592236380288 82100 +17592259266654 54300 +17592258977899 50000 +17592258671460 50000 +17592258792815 51200 +17592258671545 50000 +17592258766241 86400 +17592258770547 72100 +17592258770580 74600 +17592258770589 11000 +17592258779473 50000 +17592258840461 25200 +17592259266640 74100 +17592259266787 51200 +17592258839117 81140 +17592258849591 50000 +17592258906360 50000 +17592259266959 50000 +17592259266961 71182 +17592259266955 74100 +17592259266957 55000 +17592259826961 54150 +17592259266689 50000 +17592259266685 54200 +17592259266681 54150 +17592259266878 74450 +17592259266887 54200 +17592259266789 51200 +17592259064590 50000 +17592259124584 50000 +17592259266669 50000 +17592259267003 54700 +17592259267006 54700 +17592259266983 54790 +17592259266986 54612 +17592259267011 54400 +17592259302904 50000 +17592269636356 51200 +17592259302912 55000 +17592259302896 50000 +17592259792749 51200 +17592259587282 25200 +17592259587266 25200 +17592259554874 50000 +17592259303558 11000 +17592259338737 25200 +17592259621601 25200 +17592259793975 74100 +17592259793977 55000 +17592259793979 50000 +17592259793981 71182 +17592259792141 74100 +17592259579404 50000 +17592259412840 74502 +17592261084196 50000 +17592259579396 50000 +17592259941899 50000 +17592259942179 54611 +17592259942175 71182 +17592259518239 72180 +17592259792781 54150 +17592260435862 50000 +17592259826969 54200 +17592259793824 74450 +17592253750617 72186 +17592260238867 75100 +17592259579387 50000 +17592259792751 51200 +17592259942423 50000 +17592259826692 50000 +17592260238657 54300 +17592259621674 25200 +17592259826700 50000 +17592259734724 11000 +17592260238783 51200 +17592260238781 51200 +17592259833483 50000 +17592259865084 71700 +17592264203059 50000 +17592260269126 50000 +17592260238927 71182 +17592260238923 50000 +17592260238925 55000 +17592260238687 54611 +17592260238683 54612 +17592260072741 50000 +17592260238695 50000 +17592260238691 54200 +17592260238859 74450 +17592260238671 50000 +17592260239020 54700 +17592260239016 54790 +17592260239012 54612 +17592260239008 54700 +17592260114351 50000 +17592260094886 73704 +17592260238785 51200 +17592260153480 50000 +17592260265999 50000 +17592260211134 11000 +17592260315427 50000 +17592260941026 52000 +17592260941034 55000 +17592260941032 74100 +17592260941030 50000 +17592260941028 71182 +17592260499922 50000 +17592260940867 54200 +17592260940848 74450 +17592261084358 50000 +17592260940947 50000 +17592260940943 55000 +17592261064010 51200 +17592260631984 73704 +17592261027143 54150 +17592260964969 50000 +17592260940911 50000 +17592260941080 54612 +17592260941076 54400 +17592260941084 54790 +17592260941072 54700 +17592260964977 50000 +17592235329488 15322 +17592260964985 50000 +17592236380477 82100 +17592236380140 82100 +17592236380290 82100 +17592262375771 54300 +17592260949671 72130 +17592263958673 54400 +17592260880529 11000 +17592261027379 50000 +17592262808977 50000 +17592262808903 50000 +17592261499059 51200 +17592261331254 50000 +17592261499345 54790 +17592261499341 54700 +17592261499336 54612 +17592261499333 54400 +17592261499265 55000 +17592261499263 74100 +17592261499261 54790 +17592261499259 71182 +17592261499257 50000 +17592261201627 50000 +17592261873146 54200 +17592261152639 73704 +17592261499101 54150 +17592261498998 74450 +17592261499173 50000 +17592261499169 50000 +17592261499165 50000 +17592261499161 50000 +17592261499157 50000 +17592261499153 50000 +17592261499149 71182 +17592261499145 55000 +17592261499141 54200 +17592261153144 73704 +17592261256925 25200 +17592261256928 25200 +17592265023264 74500 +17592261331262 50000 +17592261499020 74100 +17592261331270 50000 +17592261531857 50000 +17592261531849 55000 +17592261531841 50000 +17592261409500 11000 +17592261623447 54100 +17592262375788 51200 +17592262375951 54790 +17592262375957 54700 +17592261730176 50000 +17592262375872 71182 +17592262375874 50000 +17592262375876 74100 +17592262375954 54700 +17592261872688 50000 +17592261767213 50000 +17592261808210 25200 +17592262375839 50000 +17592262375842 50000 +17592262375836 50000 +17592262375833 50000 +17592262375849 50000 +17592262375845 50000 +17592262375735 74450 +17592261889064 73704 +17592261889356 15300 +17592261875264 50000 +17592261875463 74700 +17592263049420 25200 +17592261916735 25200 +17592262375809 50000 +17592262375870 50000 +17592262375765 74100 +17592262375790 51200 +17592262711839 50000 +17592263266313 74100 +17592261973411 11000 +17592261978015 15400 +17592262633267 25200 +17592262711848 50000 +17592262829500 25200 +17592262829525 25200 +17592262829547 25200 +17592263266685 50000 +17592263266683 71182 +17592263266689 55000 +17592263266687 74100 +17592263266717 54790 +17592263266720 54400 +17592263266691 52000 +17592263266726 54612 +17592263266723 54700 +17592262912950 50000 +17592262913334 50000 +17592263569304 25200 +17592263266462 50000 +17592263266454 50000 +17592263266457 50000 +17592263266445 50000 +17592263266450 50000 +17592263266295 74450 +17592253750625 72186 +17592263061236 74600 +17592263061275 74600 +17592263061291 74600 +17592263266433 50000 +17592263266342 51200 +17592263045508 50000 +17592263885776 74600 +17592263310646 50000 +17592263138988 73704 +17592263227514 11000 +17592263310510 50000 +17592263504567 50000 +17592263851946 71182 +17592263851950 74100 +17592263851948 50000 +17592263851954 74100 +17592263851952 55000 +17592265130488 74600 +17592263517665 50000 +17592263851722 54611 +17592263851726 54200 +17592263851730 55000 +17592263851734 50000 +17592263851738 71182 +17592263851905 51200 +17592263851980 74450 +17592263862032 74450 +17592263486059 73302 +17592263702139 73704 +17592263851916 54700 +17592263851920 54612 +17592263851924 54790 +17592263885417 50000 +17592263885425 50000 +17592263833211 11000 +17592264396061 54300 +17592263907225 50000 +17592235329490 15322 +17592263944837 15300 +17592263944821 15300 +17592264396072 51200 +17592236380479 82100 +17592264396381 55000 +17592264396379 54790 +17592264396383 52000 +17592264396373 50000 +17592264396371 71182 +17592264396377 74100 +17592264396375 50000 +17592236380142 82100 +17592236380292 82100 +17592264927019 54300 +17592263958681 54700 +17592264163526 50000 +17592264396172 50000 +17592264396165 54200 +17592264396169 55000 +17592264396053 74450 +17592264396123 54150 +17592264564887 54790 +17592264163534 50000 +17592264709543 54400 +17592264709544 54700 +17592264709535 54200 +17592264272947 50000 +17592264396161 50000 +17592264202889 74600 +17592264231404 73704 +17592264231421 73704 +17592264273009 50000 +17592264396074 51200 +17592264564444 54612 +17592264564441 54790 +17592264564438 54400 +17592264564435 54700 +17592264296802 25200 +17592264380439 15300 +17592264368449 11000 +17592264442412 50000 +17592264489969 15300 +17592264509127 72130 +17592264469220 15400 +17592264709128 50000 +17592264926981 74100 +17592264926985 71182 +17592264926983 55000 +17592264926987 50000 +17592264709136 50000 +17592264924827 50000 +17592264924831 55000 +17592264926821 54790 +17592264926825 54612 +17592264926829 54700 +17592264916528 54200 +17592264927009 51200 +17592264613901 50000 +17592265095148 50000 +17592267532558 50000 +17592269636306 74450 +17592264738076 50000 +17592264924848 50000 +17592242092226 93400 +17592265421791 74100 +17592264796851 50000 +17592264977854 55000 +17592264926872 11000 +17592267532572 50000 +17592264976958 50000 +17592265421729 51200 +17592265067470 73704 +17592265148338 85200 +17592264986403 50000 +17592265421854 54100 +17592265094799 50000 +17592266410515 50000 +17592265421757 50000 +17592265421755 74100 +17592265421749 71182 +17592265421747 52000 +17592265421753 50000 +17592265421751 54790 +17592265252408 50000 +17592265095164 50000 +17592265531661 54200 +17592265421501 50000 +17592265421494 54200 +17592265421498 55000 +17592265421486 54790 +17592265421490 54611 +17592265421745 55000 +17592265421599 54150 +17592253750634 72186 +17592265314234 50000 +17592265314459 73704 +17592266186763 74100 +17592265314475 73704 +17592265531426 50000 +17592265421731 51200 +17592265483385 11000 +17592265543574 25200 +17592266186508 50000 +17592265531488 50000 +17592265618990 50000 +17592265554018 74502 +17592266186768 54300 +17592266186687 51200 +17592266186721 50000 +17592266186719 55000 +17592266186717 74100 +17592265732010 50000 +17592266186723 71182 +17592266186745 54400 +17592266186753 54612 +17592266186749 54700 +17592265647148 50000 +17592266186464 55000 +17592265867209 50000 +17592266186701 54200 +17592266186472 54611 +17592266186468 50000 +17592266186476 54200 +17592266186759 74100 +17592266186456 50000 +17592266259011 50000 +17592266078925 73704 +17592266078942 73704 +17592266259019 50000 +17592266198805 11000 +17592266270154 74700 +17592266778640 51200 +17592266279816 50000 +17592266483520 50000 +17592266778834 54790 +17592266778832 71182 +17592266778830 52000 +17592266778828 55000 +17592266778826 74100 +17592266778836 50000 +17592266778898 54400 +17592266778894 54612 +17592266778890 54700 +17592266778886 54612 +17592266433641 72180 +17592266778498 54200 +17592266778494 54150 +17592266778506 50000 +17592266778502 71182 +17592266483502 50000 +17592266778651 54100 +17592235329492 15322 +17592268080243 82100 +17592266778450 50000 +17592236380294 82100 +17592266598492 50000 +17592266996157 75100 +17592269124188 54300 +17592266821012 50000 +17592266831938 11000 +17592266832149 25200 +17592266795770 73704 +17592266795753 73704 +17592266995207 50000 +17592267243608 50000 +17592267243606 74100 +17592267243604 55000 +17592267243602 71182 +17592267243600 52000 +17592268524965 51200 +17592267243096 71182 +17592267243092 54200 +17592267243100 50000 +17592267243080 54790 +17592267243088 54611 +17592267243084 54612 +17592266996032 50000 +17592267931094 54300 +17592267065266 50000 +17592267081481 72110 +17592268524973 51200 +17592267331211 50000 +17592267128409 73704 +17592267128393 73704 +17592242092228 93400 +17592268524981 51200 +17592267331219 50000 +17592267243281 11000 +17592267931083 54300 +17592267851627 54790 +17592267851631 54700 +17592267851643 54400 +17592267539442 50000 +17592267539450 50000 +17592267931018 54100 +17592267539827 74701 +17592267539843 74701 +17592267851588 52000 +17592267851590 71182 +17592267851592 54790 +17592267851594 50000 +17592267851584 74100 +17592267851586 55000 +17592267850446 54200 +17592268292777 74600 +17592267850507 71182 +17592267850516 50000 +17592267850498 54150 +17592268524989 51200 +17592253750642 72186 +17592267929147 50000 +17592267840130 50000 +17592267929155 50000 +17592267850956 11000 +17592267850931 73704 +17592267850889 73704 +17592267929163 50000 +17592268524670 54790 +17592268524674 54612 +17592268524666 54700 +17592268292743 50000 +17592268524837 71182 +17592268524835 50000 +17592268524841 55000 +17592268524839 74100 +17592268292751 50000 +17592268524932 54100 +17592268525256 74100 +17592268525276 55000 +17592268525280 71182 +17592268525268 54611 +17592268525272 54200 +17592268525284 50000 +17592268292759 50000 +17592268377229 73704 +17592268524639 54700 +17592268524997 51200 +17592268525260 50000 +17592269209821 54612 +17592268292767 50000 +17592268377257 73704 +17592268377240 73704 +17592268392788 50000 +17592268454160 11000 +17592268563556 50000 +17592268696910 50000 +17592270925290 50000 +17592269126076 51200 +17592269417616 54700 +17592269417608 54612 +17592269417510 54790 +17592269417502 54400 +17592268688885 50000 +17592268779322 50000 +17592269123521 54200 +17592268779340 50000 +17592269137734 54790 +17592269137732 71182 +17592269137738 55000 +17592269137736 74100 +17592269137740 50000 +17592268779330 50000 +17592269123676 50000 +17592269123860 71182 +17592268782139 86300 +17592274879574 50000 +17592268943305 25200 +17592269209354 50000 +17592268922948 25200 +17592269126209 51200 +17592269040470 25200 +17592269015291 50000 +17592235329494 15322 +17592268080245 82100 +17592236380296 82100 +17592270334310 54300 +17592269164959 73704 +17592269119778 74502 +17592269165108 73704 +17592269122391 11000 +17592269372750 50000 +17592269636340 51200 +17592269636678 50000 +17592269636676 52000 +17592269636674 71182 +17592269827578 50000 +17592269636589 54100 +17592269418143 50000 +17592269827586 50000 +17592269633975 50000 +17592269633925 50000 +17592269633917 50000 +17592269633921 55000 +17592269633904 54100 +17592269636314 74450 +17592269695095 54100 +17592269636780 54700 +17592269636736 54612 +17592269636702 54790 +17592269636696 54790 +17592269636887 54700 +17592269633896 50000 +17592269496665 50000 +17592269636348 51200 +17592269546658 50000 +17592269694034 50000 +17592275585424 55000 +17592270343259 51200 +17592269715420 73704 +17592269715446 73704 +17592269750606 25200 +17592269722402 73704 +17592270342377 50000 +17592270342375 54790 +17592270342385 71182 +17592270342383 52000 +17592270342381 55000 +17592270342379 74100 +17592270288306 54100 +17592270288314 50000 +17592270288310 54100 +17592270343267 51200 +17592271644426 74600 +17592270288375 54611 +17592270288371 54612 +17592270288379 55000 +17592270334321 54100 +17592270211268 73704 +17592270211635 73704 +17592270117528 50000 +17592270288294 50000 +17592270199081 50000 +17592270199089 50000 +17592270318908 25200 +17592270318724 11000 +17592270343275 51200 +17592270343284 51200 +17592270406826 50000 +17592270385833 72187 +17592270406843 50000 +17592270573285 50000 +17592270866417 52000 +17592270866415 71182 +17592270866413 50000 +17592270866411 55000 +17592270866419 74100 +17592270866461 74100 +17592270866194 54700 +17592270866190 54790 +17592270866184 54612 +17592270573536 50000 +17592270866103 54100 +17592270866496 54100 +17592270866504 50000 +17592270866500 55000 +17592253750650 72186 +17592270729113 50000 +17592270866472 50000 +17592270925092 50000 +17592270865928 51200 +17592270833090 73704 +17592270832392 73704 +17592270925100 50000 +17592271501247 51200 +17592271501239 51200 +17592271501432 74100 +17592271501430 54790 +17592271501428 71182 +17592271501426 52000 +17592271501424 50000 +17592271501422 55000 +17592271035154 50000 +17592271455512 54100 +17592271455520 71182 +17592271455516 55000 +17592271455524 50000 +17592271455619 54790 +17592271144430 74600 +17592271135015 50000 +17592271501324 54100 +17592271455504 50000 +17592271501255 51200 +17592271210200 50000 +17592271285140 73704 +17592271285124 73704 +17592271334785 50000 +17592271501842 11000 +17592271573625 50000 +17592271983636 51200 +17592271983703 55000 +17592271983701 74100 +17592271983699 71182 +17592271983697 50000 +17592271902460 50000 +17592235329496 15322 +17592271983179 73704 +17592271983173 73704 +17592268080247 82100 +17592271983661 54100 +17592271983695 50000 +17592271906768 50000 +17592236380298 82100 +17592271983489 50000 +17592271983486 71182 +17592271983483 54100 +17592271983480 54611 +17592272695813 54300 +17592275690163 71182 +17592271983714 54400 +17592271983710 54790 +17592271983707 54400 +17592271983720 54612 +17592271983717 54700 +17592271906756 50000 +17592271983473 50000 +17592271983639 51200 +17592272107219 50000 +17592272126240 11000 +17592272165045 50000 +17592272116583 81120 +17592273552298 54790 +17592272696046 74100 +17592272696050 50000 +17592272696048 55000 +17592272696052 71182 +17592272306736 50000 +17592272215349 50000 +17592272767989 50000 +17592272695695 50000 +17592272695699 50000 +17592272695725 54611 +17592272695729 54100 +17592272695733 55000 +17592272695737 50000 +17592272696009 54100 +17592272767997 50000 +17592274879584 50000 +17592272695824 51200 +17592272768005 50000 +17592272833982 50000 +17592273024674 73704 +17592273024690 73704 +17592273477968 74100 +17592273465524 50000 +17592273465520 74100 +17592273465522 55000 +17592273465518 71182 +17592273123888 50000 +17592273478008 54100 +17592273478004 54612 +17592273478016 50000 +17592273478012 55000 +17592273478000 54100 +17592273465319 54100 +17592273123913 50000 +17592273350039 50000 +17592253750658 72186 +17592273465250 51200 +17592273466263 54612 +17592273466271 54790 +17592273466267 54700 +17592273466275 54400 +17592273433474 73704 +17592273433458 73704 +17592273498061 11000 +17592273477982 50000 +17592274215412 51200 +17592274215602 51200 +17592273623947 50000 +17592274215618 51200 +17592273819886 50000 +17592274221658 71182 +17592274221660 55000 +17592274221662 50000 +17592274221664 74100 +17592274220891 54100 +17592273819894 50000 +17592274215003 54611 +17592274215007 54100 +17592274215011 71182 +17592274215015 50000 +17592273940256 73704 +17592273940240 73704 +17592273917564 50000 +17592274221355 54790 +17592274221286 54400 +17592274214931 50000 +17592274221186 54790 +17592274221195 54700 +17592273952515 50000 +17592273952507 50000 +17592274275979 50000 +17592274215629 51200 +17592274879548 74100 +17592274276866 50000 +17592274408611 50000 +17592274879437 74100 +17592274879435 71182 +17592274879439 55000 +17592274879433 50000 +17592274879482 51200 +17592274851564 50000 +17592274851548 55000 +17592274518041 50000 +17592274879230 73704 +17592274517428 74600 +17592274851540 50000 +17592235329498 15322 +17592274518049 50000 +17592274879294 73704 +17592274879326 54700 +17592274879250 54790 +17592274879238 54700 +17592268080249 82100 +17592275986307 54300 +17592236380300 82100 +17592274879310 73704 +17592275024854 50000 +17592274879336 11000 +17592275024862 50000 +17592275024870 50000 +17592275326658 51200 +17592275192986 55000 +17592275326918 74100 +17592275326916 50000 +17592275326922 52000 +17592275326920 55000 +17592275326924 71182 +17592275106435 50000 +17592275326177 50000 +17592275326154 54611 +17592275326158 54100 +17592275326841 54100 +17592279875665 71180 +17592275106443 50000 +17592275325944 50000 +17592275325948 50000 +17592275325952 50000 +17592275170514 25200 +17592275171199 25200 +17592275170860 25200 +17592275326666 51200 +17592275258295 50000 +17592275281637 73704 +17592275281621 73704 +17592275326674 51200 +17592275258303 50000 +17592275474850 50000 +17592275389938 86300 +17592275474842 50000 +17592275986293 74100 +17592275636548 50000 +17592275986232 50000 +17592275986228 55000 +17592275986344 51200 +17592275986394 54100 +17592275585376 74700 +17592275636556 50000 +17592275986456 54700 +17592275986452 54790 +17592275986448 54400 +17592275986644 50000 +17592275986646 74100 +17592275986640 52000 +17592275986642 71182 +17592275986638 55000 +17592275854345 50000 +17592253750666 72186 +17592275986220 50000 +17592275544964 86300 +17592275817917 73704 +17592275854337 50000 +17592275818211 73704 +17592275815947 25200 +17592275818982 73704 +17592275986352 51200 +17592275941266 11000 +17592275995082 50000 +17592276596170 74100 +17592276596166 71182 +17592276596192 52000 +17592276596162 55000 +17592276596158 50000 +17592276226066 50000 +17592276596154 55000 +17592276596079 54100 +17592276596087 54612 +17592276596091 54100 +17592276192808 74600 +17592276674943 54611 +17592276674941 55000 +17592276674939 50000 +17592276226042 50000 +17592276596067 50000 +17592276368349 50000 +17592276368357 50000 +17592276674937 51200 +17592276732978 50000 +17592276732986 50000 +17592276644004 25200 +17592277269045 51200 +17592277271855 54700 +17592277271923 54790 +17592277271919 54612 +17592276732994 50000 +17592277269702 55000 +17592277269700 50000 +17592277269698 54790 +17592277269696 74100 +17592277271694 54400 +17592277269373 51200 +17592277268806 54100 +17592276861001 50000 +17592276890456 73704 +17592277269381 51200 +17592276890472 73704 +17592277164605 50000 +17592277164601 71182 +17592277164597 55000 +17592286596521 74600 +17592276936058 50000 +17592279771033 50000 +17592277268722 54300 +17592277210761 50000 +17592277210769 50000 +17592235329500 15322 +17592268080251 82100 +17592278586457 54300 +17592236380302 82100 +17592279771154 82100 +17592277269393 51200 +17592277305900 50000 +17592277283378 11000 +17592277476357 50000 +17592277978950 51200 +17592283803309 71180 +17592279854780 71180 +17592277981846 55000 +17592277981844 74100 +17592277981848 50000 +17592277981842 71182 +17592277476365 50000 +17592277978962 51200 +17592277981057 54612 +17592277981048 54700 +17592277981042 54400 +17592277971244 71182 +17592277971248 50000 +17592277971240 55000 +17592277971212 50000 +17592277465264 50000 +17592277980059 54100 +17592277981838 71221 +17592277981840 50000 +17592278071077 50000 +17592277971204 50000 +17592278586641 51200 +17592278071085 50000 +17592278071103 73704 +17592278071061 73704 +17592278071291 73704 +17592278071500 73704 +17592278071093 50000 +17592277978990 51200 +17592278136176 72130 +17592278586707 51200 +17592279257171 75100 +17592278586808 50000 +17592278586810 71182 +17592278586816 74100 +17592278586818 55000 +17592278586812 54790 +17592278586814 50000 +17592278264825 50000 +17592278586421 74100 +17592278587512 54790 +17592278587520 54700 +17592278587516 54400 +17592278587524 54612 +17592278586806 50000 +17592278689098 54400 +17592278443994 50000 +17592278587508 54700 +17592278575971 71182 +17592278575975 50000 +17592278575906 54611 +17592278575962 54100 +17592278575967 55000 +17592278586716 51200 +17592278444082 50000 +17592278575898 50000 +17592278444074 50000 +17592278709371 73704 +17592278697091 73704 +17592279323678 50000 +17592278949640 50000 +17592279257393 50000 +17592279257397 71182 +17592279257395 55000 +17592279257547 54100 +17592279257369 51200 +17592279257135 54100 +17592279257131 54611 +17592279257139 50000 +17592279042963 50000 +17592253750674 72186 +17592279099285 73704 +17592279099351 73704 +17592279257377 51200 +17592279257064 50000 +17592279099367 73704 +17592279042971 50000 +17592279149268 25200 +17592279149251 50000 +17592279323670 50000 +17592279257385 51200 +17592279476670 50000 +17592279366353 11000 +17592279366369 11000 +17592279633962 50000 +17592279755655 52000 +17592279755657 71182 +17592279755663 55000 +17592279755659 50000 +17592279755661 74100 +17592279633970 50000 +17592279876861 73704 +17592279876922 73704 +17592279705698 50000 +17592279755611 51200 +17592279788561 11000 +17592279855525 50000 +17592279755619 51200 +17592279860611 50000 +17592280272696 74600 +17592280250795 50000 +17592280674438 55000 +17592280674436 74100 +17592280674440 50000 +17592235329502 15322 +17592280674434 54790 +17592280674432 71182 +17592280674317 54700 +17592280674321 54790 +17592280674325 54612 +17592268080253 82100 +17592280674156 55000 +17592280674160 71182 +17592280674164 50000 +17592280674236 54100 +17592280674081 51200 +17592280674117 54612 +17592280674125 54100 +17592236380304 82100 +17592279771188 82100 +17592281696343 54300 +17592280250946 50000 +17592280674101 50000 +17592280251013 50000 +17592280362764 72130 +17592280674089 51200 +17592280750177 50000 +17592281354384 71180 +17592280809613 73704 +17592280809597 73704 +17592280754358 50000 +17592281696613 50000 +17592281696611 71182 +17592281696615 74100 +17592281696609 52000 +17592281696607 55000 +17592281239705 50000 +17592281675347 50000 +17592281675351 54790 +17592281675335 50000 +17592281675339 54100 +17592281675343 55000 +17592281696591 51200 +17592281696353 74100 +17592281260521 50000 +17592281772089 50000 +17592281772097 50000 +17592281873799 50000 +17592285000826 51200 +17592282575869 50000 +17592281722518 11000 +17592281696599 51200 +17592281873807 50000 +17592282576198 51200 +17592282576228 71182 +17592282576230 50000 +17592282576222 74100 +17592282576224 55000 +17592282576226 52000 +17592282007477 55000 +17592281894982 73704 +17592281912204 50000 +17592282006999 74600 +17592282007469 50000 +17592275735361 82300 +17592282575814 55000 +17592282575818 50000 +17592282576045 54400 +17592282576049 54700 +17592282576053 54612 +17592282576057 54790 +17592253750682 72186 +17592282308359 50000 +17592283092532 73704 +17592282575771 50000 +17592282576206 51200 +17592282308342 50000 +17592282320799 73704 +17592282320783 73704 +17592282576214 51200 +17592282694700 11000 +17592282668667 50000 +17592282731713 15300 +17592282688603 50000 +17592283262181 71182 +17592283262179 52000 +17592283262185 50000 +17592283262183 54790 +17592283262177 55000 +17592283262175 74100 +17592282859391 50000 +17592285000995 54700 +17592283014250 50000 +17592283195826 54700 +17592283195830 54400 +17592283195834 54790 +17592283195691 55000 +17592283195695 71182 +17592283195687 54611 +17592283195699 50000 +17592283200280 51200 +17592283195888 54100 +17592283092391 50000 +17592283092516 73704 +17592283195683 50000 +17592283200311 51200 +17592283092399 50000 +17592283092500 73704 +17592283782885 50000 +17592283444173 50000 +17592283782806 55000 +17592283782804 74100 +17592283782810 71182 +17592283782808 50000 +17592283832637 51200 +17592283444181 50000 +17592283553661 50000 +17592283782877 55000 +17592283782881 50000 +17592283782853 54612 +17592283782857 54611 +17592283440034 93100 +17592283583651 73704 +17592283583654 73704 +17592283583683 73704 +17592283642962 50000 +17592283554768 25200 +17592283642970 50000 +17592284454525 74100 +17592235329504 15322 +17592283648620 25200 +17592268080255 82100 +17592284390570 54300 +17592236380306 82100 +17592283804896 93100 +17592283804832 25200 +17592284725172 50000 +17592283832645 51200 +17592284390506 51200 +17592284390436 55000 +17592284390438 50000 +17592284390432 71182 +17592284390434 74100 +17592283935198 50000 +17592284390334 54612 +17592284390330 54700 +17592284390326 54400 +17592284035767 25200 +17592284390552 74100 +17592284318003 55000 +17592284317995 50000 +17592284317999 50000 +17592284317991 54200 +17592284390350 54100 +17592284035742 50000 +17592285466459 50000 +17592284210830 50000 +17592284317987 50000 +17592284454233 50000 +17592284390528 73301 +17592284390518 73301 +17592284390536 73301 +17592284454551 73704 +17592285086995 74100 +17592284454517 74100 +17592284610770 73704 +17592284610735 73704 +17592284695195 50000 +17592285165264 55000 +17592285165266 50000 +17592285165268 71182 +17592285165270 74100 +17592284695187 50000 +17592285094356 54100 +17592284743777 50000 +17592285086480 54612 +17592285086476 54100 +17592285086489 50000 +17592285086484 71182 +17592284725910 54100 +17592285094377 54612 +17592285094385 54790 +17592285094381 54700 +17592285165401 50000 +17592285466413 50000 +17592285165417 50000 +17592285165409 50000 +17592287124643 72180 +17592275735363 82300 +17592286656985 81160 +17592285193302 74500 +17592285165327 51200 +17592285187864 50000 +17592285289124 11000 +17592285570076 50000 +17592285843254 71182 +17592285843252 52000 +17592285843258 54790 +17592285843256 50000 +17592285570084 50000 +17592285548483 72180 +17592285843277 51200 +17592285843160 54100 +17592285843145 54700 +17592285843151 54400 +17592285843059 71182 +17592285843063 50000 +17592285843046 54612 +17592285843055 54100 +17592285570092 50000 +17592285842987 50000 +17592285598450 50000 +17592285598417 73704 +17592285598433 73704 +17592285635802 50000 +17592286033129 71180 +17592285933345 50000 +17592285899641 74600 +17592285899625 74600 +17592285901479 74600 +17592286074286 50000 +17592286351653 51200 +17592286074294 50000 +17592286352379 50000 +17592286352355 55000 +17592286352359 50000 +17592286351614 55000 +17592286351612 74100 +17592286351618 71182 +17592286351616 52000 +17592286351610 50000 +17592286351397 54700 +17592286351389 54700 +17592286351394 54790 +17592286351385 54612 +17592286352347 54611 +17592286352351 54100 +17592286351428 54100 +17592286130162 50000 +17592286352319 50000 +17592286285028 73704 +17592286277573 73704 +17592286864911 25200 +17592287099447 51200 +17592287099503 50000 +17592235329506 15322 +17592268080257 82100 +17592236380308 82100 +17592286727059 50000 +17592287099327 74100 +17592286681591 86400 +17592287099354 54300 +17592287099358 54300 +17592287099423 54100 +17592286874386 50000 +17592287133890 74100 +17592287133888 54790 +17592287133896 71182 +17592287133894 50000 +17592287133892 55000 +17592287099273 54100 +17592287099269 54790 +17592287099281 50000 +17592287099277 55000 +17592286873370 91200 +17592287099375 54700 +17592287099379 54790 +17592287099511 50000 +17592286874329 73704 +17592286874459 73704 +17592287099241 50000 +17592287099519 50000 +17592287099527 50000 +17592287099455 51200 +17592287132523 50000 +17592287184409 50000 +17592287429061 50000 +17592287429069 50000 +17592287429077 50000 +17592286879312 72180 +17592275735365 82300 +17592235329508 15322 +17592268080259 82100 +17592236380310 82100 +17592286879314 72180 +17592275735367 82300 +17592235329510 15322 +17592268080261 82100 +17592236380312 82100 +17592286879316 72180 +17592275735369 82300 +17592235329512 15322 +17592268080263 82100 +17592236380314 82100 +17592286879318 72180 +17592275735371 82300 +17592235329514 15322 +17592268080265 82100 +17592236380316 82100 +17592286879320 72180 +17592275735373 82300 +17592235329516 15322 +17592268080384 82100 +17592236380318 82100 +17592286879322 72180 +17592275735375 82300 +17592235329518 15322 +17592268080386 82100 +17592236380320 82100 +17592286879324 72180 +17592275735377 82300 +17592268080388 82100 +17592236380322 82100 +17592286879326 72180 +17592275735379 82300 +17592236380324 82100 +17592286879328 72180 +17592275735381 82300 +17592286879330 72180 +17592275735383 82300 +17592286879332 72180 +17592275735385 82300 +17592286879334 72180 +17592275735387 82300 +17592275735389 82300 +17592275735391 82300 +17592275735393 82300 +17592275735395 82300 +17592275735397 82300 +17592275735399 82300 +17592275735401 82300 +17592275735403 82300 +17592275735405 82300 +17592275735407 82300 +17592275735409 82300 +17592275735411 82300 +17592275735413 82300 +17592275735415 82300 +17592275735417 82300 +17592275735419 82300 +17592275735421 82300 +17592275735423 82300 +17592275735425 82300 +17592275735427 82300 +17592275735429 82300 +17592275735431 82300 +17592275735433 82300 +17592275735435 82300 +17592275735437 82300 +17592275735439 82300 +17592275735441 82300 +17592275735443 82300 +17592275735445 82300 +17592275735447 82300 +17592275735449 82300 +17592275735451 82300 +17592275735453 82300 +17592275735455 82300 +17592275735457 82300 +17592275735459 82300 +17592275735461 82300 +17592275735463 82300 +17592275735465 82300 +17592275735467 82300 +17592275735469 82300 +17592275735471 82300 +17592275735473 82300 +17592275735475 82300 +17592275735477 82300 +17592234455675 11000 +17592252616322 51130 +17592252605814 51110 +17592252926871 51110 +17592252928233 51130 +17592252907060 72700 +17592253076506 51300 +17592253058020 51200 +17592253041998 50000 +17592253328438 74600 +17592253331616 82100 +17592253331807 51100 +17592253431408 51110 +17592253431708 72700 +17592253560079 72700 +17592253560154 50000 +17592253567542 50000 +17592253816098 75990 +17592253854856 51110 +17592253988655 50000 +17592254223163 51130 +17592254239787 74600 +17592254287754 74600 +17592254267501 51110 +17592254696134 74600 +17592254748157 51110 +17592254748837 72700 +17592254757177 50000 +17592254831886 51130 +17592255192820 82100 +17592255186066 71500 +17592255189176 51130 +17592255396001 74600 +17592255396075 74600 +17592255547635 74600 +17592255855979 51110 +17592256249736 51200 +17592256258878 51200 +17592256249498 51130 +17592256298990 51110 +17592256723893 74600 +17592256783768 74600 +17592256769819 72700 +17592257173646 82100 +17592257337316 83650 +17592257431343 51110 +17592257442236 72700 +17592257532532 72700 +17592257850463 74600 +17592257909534 51130 +17592258011832 51130 +17592258316456 50000 +17592258393897 51110 +17592258815184 51200 +17592258876122 51130 +17592259013614 50000 +17592258935276 72700 +17592259034086 74600 +17592259267100 74600 +17592259315383 72700 +17592259433678 51110 +17592259924059 72700 +17592260315496 72700 +17592260551652 72700 +17592260630903 74600 +17592260569898 51130 +17592261019037 51110 +17592261019188 50000 +17592261019109 50000 +17592260958464 74600 +17592261066235 51110 +17592261065430 72700 +17592261515826 82100 +17592261523703 51130 +17592261518420 51200 +17592261518355 51130 +17592261887967 82100 +17592262773594 51110 +17592262964725 74600 +17592262902613 50000 +17592263387402 51130 +17592263277177 74600 +17592263277202 74600 +17592263996890 82100 +17592264098199 51130 +17592264200660 72700 +17592264203042 74600 +17592265560802 82100 +17592265560772 82100 +17592264959179 74600 +17592265129106 72700 +17592265156880 72700 +17592265120505 74600 +17592265185707 71500 +17592265232946 51130 +17592265561687 72700 +17592265775587 51300 +17592265849309 50000 +17592266512992 74600 +17592266965797 50000 +17592267074804 72700 +17592267130128 51200 +17592266844212 82100 +17592266966386 51130 +17592266936129 72700 +17592267408580 82100 +17592267198954 74600 +17592267361537 51130 +17592267407822 74600 +17592267966832 51300 +17592268694983 72700 +17592268694838 50000 +17592268816812 82100 +17592268800525 74600 +17592269335368 72700 +17592269784139 51130 +17592270428873 82100 +17592271143007 81200 +17592270487030 72700 +17592270997830 51130 +17592271034704 72700 +17592271142919 51130 +17592271502652 82100 +17592271502669 82100 +17592272242785 72700 +17592273413534 82100 +17592273417976 50000 +17592273420208 50000 +17592273413853 50000 +17592273420941 72700 +17592273683992 72700 +17592273687196 51130 +17592274454245 50000 +17592274568442 82100 +17592274789608 51130 +17592274789427 50000 +17592274898031 51200 +17592274810575 51130 +17592274929639 72700 +17592274928778 72700 +17592275502168 72700 +17592275502753 72700 +17592276017746 82100 +17592276002330 51130 +17592276407102 57000 +17592276962469 72700 +17592276962109 51110 +17592277497312 82100 +17592277497296 72700 +17592278051409 72700 +17592278199096 72700 +17592278620796 51130 +17592278764032 51130 +17592278949477 51130 +17592279268112 72700 +17592280038996 82100 +17592280038151 51130 +17592281259838 72700 +17592281895235 72700 +17592281912228 74600 +17592282071947 57000 +17592282071919 82100 +17592282150911 50000 +17592282642933 74800 +17592282829977 51130 +17592283465316 72700 +17592283458170 51130 +17592284696503 82100 +17592285095648 57000 +17592285096522 71500 +17592285215587 51130 +17592285193081 51130 +17592285253679 72700 +17592285901548 82100 +17592285955339 72700 +17592286345580 74800 +17592259881679 74600 +17592259881671 74600 +17592261914070 54400 +17592259881688 74600 +17592267746543 74600 +17592267746455 74600 +17592267890889 82100 +17592267746110 74600 +17592269137770 74600 +17592267746471 74600 +17592267746463 74610 +17592267850794 74600 +17592267746222 54400 +17592267746214 54400 +17592267746206 54400 +17592269137844 54400 +17592269137826 54400 +17592270353863 82100 +17592275342311 74600 +17592273167340 54400 +17592272220330 25500 +17592272220328 25500 +17592272220334 25500 +17592272220332 25500 +17592272220338 25500 +17592272220336 25500 +17592272220342 25500 +17592272220340 25500 +17592272220344 25500 +17592275342238 54400 +17592275342319 74600 +17592275342288 74600 +17592275342272 74600 +17592273841943 74500 +17592275342280 54400 +17592278257206 54400 +17592278257072 86500 +17592279254559 74600 +17592279254590 74600 +17592278257214 54400 +17592279254605 54400 +17592278257183 50000 +17592279254551 54400 +17592279254261 74600 +17592279254543 54400 +17592281310385 74600 +17592282336727 54400 +17592282336711 74600 +17592286721746 86200 +17592285302746 74600 +17592285302434 54400 +17592286847776 74600 +17592286674426 54400 +17592264422723 97200 +17592252412787 73800 +17592252412771 73800 +17592252167223 51500 +17592252606282 82100 +17592252657957 74450 +17592252742721 11000 +17592252742866 11000 +17592252742850 11000 +17592252742834 11000 +17592252742818 11000 +17592252742802 11000 +17592252742786 11000 +17592252742770 11000 +17592252742754 11000 +17592252742737 11000 +17592252522827 50000 +17592252885278 50000 +17592252767578 50000 +17592252917045 54400 +17592252892738 50000 +17592253041982 74450 +17592252659349 51500 +17592253712850 50000 +17592253161206 74800 +17592253306997 50000 +17592253042125 50000 +17592253431361 54400 +17592252892755 50000 +17592253348838 51500 +17592253670576 11000 +17592253670592 11000 +17592253670637 11000 +17592253670653 11000 +17592253670669 11000 +17592253670688 11000 +17592253670704 11000 +17592253670720 11000 +17592253670737 11000 +17592253670753 11000 +17592253670769 11000 +17592253797325 74100 +17592253949235 50000 +17592253933389 74450 +17592253813315 50000 +17592253813363 51500 +17592254818646 74600 +17592254816829 82100 +17592254613166 82100 +17592254619779 11000 +17592254619841 11000 +17592254619873 11000 +17592254619857 11000 +17592254619896 11000 +17592254619928 11000 +17592254619912 11000 +17592254619961 11000 +17592254619945 11000 +17592254619993 11000 +17592254619977 11000 +17592254620028 11000 +17592254620011 11000 +17592254816853 82100 +17592254818156 74600 +17592254818333 74600 +17592254818324 74600 +17592254831610 50000 +17592254809206 54400 +17592254809222 54400 +17592254819978 74600 +17592254832621 74450 +17592254818502 74600 +17592254903616 50000 +17592255133243 50000 +17592255356372 74450 +17592255323783 82100 +17592255334438 50000 +17592255332882 82100 +17592255332901 82100 +17592255133415 50000 +17592255498062 50000 +17592255230073 51500 +17592255252853 50000 +17592255333515 82100 +17592255845392 50000 +17592255847570 54400 +17592255867188 11000 +17592255845225 74100 +17592255919099 11000 +17592255918853 11000 +17592255918869 11000 +17592255918944 11000 +17592255918992 11000 +17592255919008 11000 +17592255918960 11000 +17592255918976 11000 +17592255919056 74800 +17592255919073 49500 +17592255919024 11000 +17592255919040 11000 +17592255845374 50000 +17592255230136 51500 +17592255942880 74450 +17592256282105 74600 +17592256293324 54400 +17592256487772 74600 +17592256225769 50000 +17592256552049 74600 +17592256582584 82100 +17592256707658 11000 +17592256707778 11000 +17592256707831 15600 +17592256707923 11000 +17592256708050 11000 +17592256708030 11000 +17592256708081 11000 +17592256708190 11000 +17592256708223 11000 +17592256708319 11000 +17592256708399 74800 +17592256244809 51500 +17592256708207 11000 +17592256760658 50000 +17592256824305 50000 +17592256873839 74600 +17592256815271 82100 +17592256824287 50000 +17592256921803 74450 +17592256777708 50000 +17592257304723 81140 +17592257329839 11000 +17592257396048 12300 +17592257542213 50000 +17592257542229 50000 +17592257542602 74450 +17592257281693 50000 +17592257521325 50000 +17592257329410 51500 +17592257773517 50000 +17592257800955 11000 +17592257801552 11000 +17592257832219 11000 +17592257801572 11000 +17592257801589 91100 +17592257801936 11000 +17592257802292 11000 +17592257802326 11000 +17592257816570 74100 +17592257802343 11000 +17592257802507 11000 +17592257831202 11000 +17592257802737 74800 +17592257831741 11000 +17592257831757 11000 +17592257912241 50000 +17592257843172 51500 +17592257970385 74450 +17592258229293 11000 +17592258229263 11000 +17592258316185 51500 +17592258403515 74800 +17592258394072 50000 +17592258375533 12300 +17592258380361 50000 +17592258495488 74600 +17592258505106 74450 +17592258823488 91100 +17592258823510 11000 +17592258807040 74150 +17592258823625 74800 +17592258823543 11000 +17592258823527 11000 +17592258823576 11000 +17592258823560 11000 +17592258823701 11000 +17592258823608 11000 +17592258823592 11000 +17592258858713 82100 +17592258857197 51500 +17592258923476 50000 +17592259111229 11000 +17592259243257 12300 +17592259313595 50000 +17592259313578 11000 +17592259338577 51500 +17592259406786 54400 +17592259399522 50000 +17592259474248 74450 +17592259596763 50000 +17592259804755 11000 +17592259804660 11000 +17592259804837 11000 +17592259804810 11000 +17592259804789 49500 +17592259399546 50000 +17592259804676 11000 +17592259833349 74100 +17592259804853 74800 +17592259804827 49500 +17592259804773 11000 +17592259804946 11000 +17592259804930 11000 +17592259899762 50000 +17592259908365 12300 +17592259908495 12300 +17592260014301 74450 +17592260239921 51500 +17592260304988 15600 +17592260305058 12300 +17592260305024 15600 +17592260352557 50000 +17592260379476 50000 +17592260608436 11000 +17592260475544 91100 +17592260556609 54400 +17592260857731 74600 +17592260839588 50000 +17592260839572 50000 +17592260990545 11000 +17592260990599 11000 +17592260990581 11000 +17592260990735 11000 +17592260990698 11000 +17592260989304 12300 +17592260989450 11000 +17592260987557 51500 +17592261104613 72710 +17592261053003 50000 +17592261095966 50000 +17592261164260 82100 +17592261126291 54400 +17592261146735 74450 +17592261424168 50000 +17592261498981 81120 +17592261053070 50000 +17592261592497 51500 +17592261581693 50000 +17592261634097 12300 +17592261779861 74450 +17592261875024 74800 +17592261875187 11000 +17592261875204 11000 +17592261875220 11000 +17592261875238 11000 +17592261875283 11000 +17592261976979 50000 +17592261976995 50000 +17592262701443 50000 +17592262646746 74100 +17592262849849 11000 +17592262902543 74450 +17592263382779 51500 +17592263328345 83400 +17592263314295 51200 +17592263375639 50000 +17592263648441 12300 +17592263652608 11000 +17592263648561 11000 +17592263702122 50000 +17592263653242 11000 +17592263649094 11000 +17592263649598 11000 +17592263852149 50000 +17592263968020 11000 +17592263896014 50000 +17592263851647 50000 +17592264032152 12300 +17592264068962 74450 +17592264075490 54400 +17592264180351 74600 +17592264329333 82100 +17592264402296 50000 +17592264456415 51500 +17592264403042 50000 +17592264456431 51500 +17592264456709 50000 +17592264641471 74450 +17592264709590 11000 +17592264828842 11000 +17592264828891 11000 +17592264828875 11000 +17592264828859 11000 +17592264828941 11000 +17592264828925 11000 +17592264828908 91100 +17592265004435 51500 +17592265015724 50000 +17592265067394 50000 +17592265197668 11000 +17592265208657 50000 +17592265341879 50000 +17592265601186 51500 +17592265601178 51500 +17592265695517 50000 +17592265695509 50000 +17592265768514 74450 +17592265856686 81140 +17592265862857 11000 +17592265862873 11000 +17592265862955 11000 +17592265862971 11000 +17592265862987 11000 +17592265862890 11000 +17592265862906 11000 +17592265862922 11000 +17592265862938 11000 +17592265863735 11000 +17592265863065 11000 +17592266068520 74100 +17592265863751 11000 +17592266311311 11000 +17592266311303 11000 +17592266292760 51500 +17592266301631 50000 +17592266396769 74450 +17592266526508 50000 +17592266536709 50000 +17592266878442 50000 +17592266831821 85100 +17592266844152 50000 +17592266844135 50000 +17592266865340 51500 +17592266865241 51500 +17592266844691 12300 +17592266830813 14100 +17592266919465 50000 +17592266919431 50000 +17592267018195 11000 +17592266993461 74450 +17592267018422 11000 +17592267018486 11000 +17592266984236 74600 +17592267018454 11000 +17592267018438 11000 +17592267018366 11000 +17592267018350 11000 +17592267018399 11000 +17592267018383 11000 +17592267018227 11000 +17592267018211 11000 +17592267018259 11000 +17592267018243 11000 +17592267018502 11000 +17592267313476 50000 +17592267346603 50000 +17592267405524 74100 +17592267583903 74450 +17592267733748 50000 +17592267755541 11000 +17592267930677 11000 +17592267936720 51500 +17592268082606 50000 +17592268046340 50000 +17592268203399 11000 +17592268163675 74450 +17592268203488 11000 +17592268203632 11000 +17592268203600 11000 +17592268203616 11000 +17592268203568 11000 +17592268203584 11000 +17592268203536 11000 +17592268203512 11000 +17592268203953 11000 +17592268203918 11000 +17592268203937 11000 +17592268378127 74700 +17592268534444 50000 +17592268534537 11000 +17592268605217 51500 +17592268604303 50000 +17592268796433 74450 +17592268943323 74600 +17592269029093 11000 +17592269229096 51500 +17592269256813 50000 +17592269266500 50000 +17592269298298 50000 +17592269266517 50000 +17592269449126 74450 +17592269457794 86600 +17592269449873 82100 +17592269494144 74600 +17592269498581 11000 +17592269498831 11000 +17592269498799 11000 +17592269498783 11000 +17592269498759 11000 +17592269498678 11000 +17592269498646 11000 +17592269499038 11000 +17592269509225 50000 +17592269499350 11000 +17592269499320 11000 +17592269519648 11000 +17592269519640 49500 +17592269550136 50000 +17592269750308 51500 +17592269722567 50000 +17592269988189 50000 +17592269947394 74450 +17592270190309 50000 +17592270376194 50000 +17592270411174 50000 +17592270411682 74600 +17592270411309 54400 +17592270573553 11000 +17592270573570 11000 +17592270573605 11000 +17592270573692 11000 +17592270573709 11000 +17592270573725 11000 +17592270573742 11000 +17592270573761 11000 +17592270573779 11000 +17592270584354 11000 +17592270584458 11000 +17592270573587 11000 +17592270885925 50000 +17592270866586 50000 +17592270891863 11000 +17592270998009 11000 +17592271095369 74450 +17592271439318 72710 +17592271502682 50000 +17592271486805 74600 +17592271487064 74800 +17592271577305 51500 +17592271577935 50000 +17592271700986 74450 +17592271819788 91100 +17592271776244 50000 +17592271876353 74600 +17592271956731 11000 +17592271956766 11000 +17592271956986 11000 +17592271957032 11000 +17592271957060 11000 +17592271956808 11000 +17592271956859 11000 +17592271956875 11000 +17592272075002 82100 +17592272164957 50000 +17592272147034 51500 +17592272177885 50000 +17592272222307 11000 +17592272220906 50000 +17592272178165 50000 +17592272359583 74450 +17592272728283 91100 +17592272829713 51500 +17592272841915 50000 +17592272803682 81120 +17592272845036 74150 +17592272816858 50000 +17592273103491 74450 +17592273292448 50000 +17592273555347 51500 +17592273574680 11000 +17592273574663 50000 +17592273574631 11000 +17592273574712 11000 +17592273574696 11000 +17592273574826 11000 +17592273574614 11000 +17592273574647 11000 +17592273574729 11000 +17592273818214 74450 +17592273952615 50000 +17592274223979 50000 +17592274223995 50000 +17592274295884 51500 +17592274295908 51500 +17592274224011 50000 +17592274427171 11000 +17592274427262 49500 +17592274426953 11000 +17592274427776 11000 +17592274427469 11000 +17592274427613 11000 +17592274431630 74450 +17592274452778 71400 +17592274427944 11000 +17592274427930 11000 +17592274426841 11000 +17592274495891 50000 +17592274544681 74800 +17592274578057 11000 +17592274851425 50000 +17592274929255 51500 +17592275004470 50000 +17592274977025 50000 +17592274977225 74600 +17592274977125 50000 +17592275004287 82100 +17592275103622 74450 +17592275046898 74600 +17592275170215 50000 +17592275426443 50000 +17592275402350 51500 +17592275399174 15450 +17592275788246 50000 +17592275994928 51500 +17592276021368 11000 +17592276017762 11000 +17592276017778 11000 +17592276017826 11000 +17592276062378 11000 +17592276062411 12300 +17592276017858 11000 +17592276017842 11000 +17592276017794 11000 +17592276017810 11000 +17592276112655 50000 +17592276131676 74450 +17592276368706 50000 +17592276661563 74150 +17592276694640 50000 +17592276669026 51500 +17592276660772 50000 +17592276798213 11000 +17592276798184 82400 +17592276798154 86300 +17592276996555 11000 +17592276988455 11000 +17592276988471 11000 +17592276988551 11000 +17592276988535 11000 +17592276988487 11000 +17592276988503 11000 +17592276988519 11000 +17592277116264 12300 +17592277116286 11000 +17592277210849 50000 +17592277210043 12300 +17592277209997 11000 +17592277284487 51500 +17592277283161 74100 +17592277332429 11000 +17592277332661 50000 +17592277332645 50000 +17592277332628 50000 +17592277495685 74450 +17592277771764 82100 +17592277999050 50000 +17592278022246 50000 +17592278133252 51500 +17592278197250 97200 +17592278264861 74600 +17592278282470 74450 +17592278412556 11000 +17592278412572 11000 +17592278412588 11000 +17592278412604 11000 +17592278412620 11000 +17592278412636 11000 +17592278650121 11000 +17592278576122 11000 +17592278600748 50000 +17592278588505 50000 +17592278646407 11000 +17592278617550 81140 +17592278719484 81120 +17592278693481 51500 +17592278694335 11000 +17592278860845 11000 +17592278839042 15450 +17592278949756 50000 +17592278949676 74450 +17592278949692 74450 +17592279364234 51500 +17592279464039 74450 +17592279464152 50000 +17592279822216 11000 +17592279822750 11000 +17592279771239 11000 +17592279822506 11000 +17592279788454 50000 +17592279877089 51500 +17592279824110 11000 +17592279823283 11000 +17592278617747 81140 +17592279877105 51500 +17592280036105 11000 +17592280158648 74450 +17592280187424 50000 +17592280674002 97200 +17592280673986 81200 +17592280658132 54400 +17592280713871 82100 +17592280773692 51500 +17592280775481 50000 +17592281115358 15500 +17592281241318 50000 +17592281219312 74450 +17592284454449 50000 +17592284455492 50000 +17592281460687 11000 +17592281241438 50000 +17592281460402 11000 +17592281460418 11000 +17592281460317 11000 +17592281460285 11000 +17592281460301 11000 +17592281776534 50000 +17592281784755 51500 +17592282021141 50000 +17592282007055 74600 +17592282007023 50000 +17592282239832 50000 +17592282701916 50000 +17592282859521 50000 +17592282704429 51500 +17592282963220 74150 +17592283072359 11000 +17592283072423 11000 +17592283072441 11000 +17592283072375 11000 +17592283072391 11000 +17592283072407 11000 +17592283262036 50000 +17592283256665 51500 +17592283283536 50000 +17592283365221 51500 +17592283355979 74450 +17592283458380 74800 +17592283642838 50000 +17592278617810 81140 +17592283804880 51500 +17592283930778 54400 +17592283936799 50000 +17592284061848 82100 +17592284015395 74600 +17592284249613 50000 +17592284215998 25500 +17592284216014 25500 +17592284215867 25500 +17592284215851 25500 +17592284215899 25500 +17592284215883 25500 +17592284323102 50000 +17592284322983 50000 +17592284391267 25500 +17592284390965 50000 +17592284788620 50000 +17592284776290 50000 +17592285187715 51500 +17592285235548 25500 +17592285214746 50000 +17592285596411 91100 +17592285811848 15450 +17592285811832 25500 +17592285798306 25500 +17592285798259 25500 +17592285798216 25500 +17592285798142 25500 +17592285798126 25500 +17592285798490 74600 +17592285798394 25500 +17592285571617 50000 +17592285811932 54400 +17592285847459 74100 +17592285845828 51500 +17592285870208 50000 +17592285901677 25500 +17592285870812 74500 +17592286053869 74450 +17592285909881 50000 +17592286622054 50000 +17592286595988 74150 +17592286593683 51500 +17592286622356 49500 +17592286674467 15600 +17592286749427 74450 +17592286848765 74600 +17592286973631 49500 +17592286973647 49500 +17592286973663 49500 +17592286973679 49500 +17592286973695 49500 +17592286973771 82100 +17592287097889 54400 +17592287103740 50000 +17592287103756 50000 +17592287180846 49500 +17592287261287 49500 +17592256681081 81200 +17592252707584 51130 +17592252707441 50000 +17592252708532 82100 +17592252707871 50000 +17592253353226 50000 +17592253353337 50000 +17592253424374 54700 +17592253348648 50000 +17592253424382 54000 +17592253498556 54000 +17592253480979 74700 +17592253788058 51130 +17592253788330 50000 +17592253811450 50000 +17592253788941 50000 +17592253900189 72600 +17592253855310 74100 +17592253861820 50000 +17592253855669 74100 +17592253933133 81120 +17592253933258 54700 +17592253922030 50000 +17592253922038 50000 +17592254158948 50000 +17592254156916 51130 +17592254159018 50000 +17592254148883 50000 +17592254331449 74450 +17592254331458 74450 +17592254331475 74450 +17592254331483 74450 +17592254331467 74450 +17592254331492 74450 +17592254331546 74450 +17592254331554 74450 +17592254331538 74450 +17592254567144 71600 +17592254655518 51130 +17592254671374 50000 +17592254663493 50000 +17592254680016 50000 +17592254748297 54000 +17592254787626 72680 +17592254748779 81150 +17592254816878 74100 +17592254816870 74100 +17592254895375 51130 +17592254871692 50000 +17592254871757 50000 +17592255054377 74700 +17592255132709 50000 +17592255305640 50000 +17592255365864 54700 +17592255412376 50000 +17592255412393 50000 +17592255421191 51130 +17592255810595 50000 +17592255810697 50000 +17592255810688 50000 +17592255810680 50000 +17592255794796 50000 +17592255794905 50000 +17592255784780 50000 +17592255784771 50000 +17592255784788 50000 +17592255784763 50000 +17592255919174 72600 +17592255847751 50000 +17592255847726 50000 +17592255847742 50000 +17592255847734 50000 +17592255942381 54100 +17592255985541 50000 +17592255946618 54700 +17592255986100 51130 +17592256060427 28500 +17592256060435 28500 +17592256236552 50000 +17592256235633 50000 +17592256235641 50000 +17592256235714 50000 +17592256225697 54100 +17592256236396 50000 +17592256341521 91201 +17592256474568 51130 +17592256474640 51130 +17592256464436 50000 +17592256522935 69900 +17592256476103 82100 +17592256760806 50000 +17592256769185 50000 +17592256769164 28500 +17592256769193 50000 +17592256769201 50000 +17592256769299 74100 +17592256769291 74100 +17592256769356 83000 +17592256769380 50000 +17592256749078 50000 +17592256749094 50000 +17592256865350 69900 +17592256873493 72680 +17592257000322 51130 +17592257048784 50000 +17592257164915 73500 +17592257294105 50000 +17592257294113 50000 +17592257294219 50000 +17592257294211 50000 +17592257294203 50000 +17592257294267 50000 +17592257303061 50000 +17592257396011 74100 +17592257475270 72680 +17592257409658 50000 +17592257409877 74450 +17592257409885 74450 +17592257409965 74450 +17592257409905 74450 +17592257511227 71100 +17592257532656 54700 +17592257605060 51130 +17592257605068 51130 +17592257623757 51130 +17592257593325 50000 +17592257593349 50000 +17592257673911 50000 +17592257673919 50000 +17592257830587 50000 +17592257830604 50000 +17592257830545 50000 +17592257830553 50000 +17592257830561 50000 +17592257843072 50000 +17592257816683 51130 +17592257825667 50000 +17592257897494 54700 +17592257887585 74100 +17592257887602 74100 +17592257887594 74100 +17592257888059 54700 +17592257947583 72600 +17592257898504 50000 +17592258011001 51130 +17592258019532 54700 +17592258299023 50000 +17592258299344 54700 +17592258316102 50000 +17592258359214 74600 +17592258310131 50000 +17592258287857 51130 +17592258430716 72600 +17592258473681 51130 +17592258464564 54100 +17592258593784 51130 +17592258592193 50000 +17592259385097 82100 +17592258839842 50000 +17592258840361 74200 +17592258840339 50000 +17592258840331 50000 +17592258840536 50000 +17592258849562 50000 +17592258849570 50000 +17592258934485 74100 +17592258934590 74450 +17592258934582 74450 +17592258934574 74450 +17592258934614 74450 +17592258934606 74450 +17592258934598 74450 +17592258953981 91201 +17592258934548 74100 +17592258934540 74100 +17592259089398 91200 +17592259075417 51130 +17592259098676 74600 +17592259313093 50000 +17592259313211 50000 +17592259313371 50000 +17592259313363 50000 +17592259313355 50000 +17592259313282 50000 +17592259303425 50000 +17592259303707 54100 +17592259373606 12401 +17592266079592 74100 +17592259556462 54700 +17592259579191 51130 +17592259569789 74600 +17592259555717 50000 +17592259839053 50000 +17592259838917 50000 +17592259838899 50000 +17592259954018 72600 +17592259907632 51130 +17592260315512 50000 +17592260014128 50000 +17592259985623 54100 +17592260081435 50000 +17592260081726 51130 +17592260324714 54100 +17592260324730 50000 +17592260315349 50000 +17592260305208 50000 +17592260315520 50000 +17592260475368 50000 +17592260676865 50000 +17592260718793 51130 +17592260977819 82100 +17592260973996 50000 +17592261005070 50000 +17592260989422 50000 +17592266079576 74100 +17592261136828 71100 +17592261215741 50000 +17592261533132 50000 +17592261256768 51130 +17592261245477 54700 +17592261537396 51130 +17592261576456 50000 +17592261580974 50000 +17592261580982 50000 +17592261580990 50000 +17592261580998 50000 +17592261649506 54000 +17592261649661 74100 +17592261649669 74100 +17592261649684 74100 +17592264728040 50000 +17592261649042 50000 +17592261649050 50000 +17592261649065 50000 +17592261868942 72600 +17592261868861 72600 +17592261874966 50000 +17592261873443 50000 +17592267129950 54000 +17592262646770 50000 +17592262647088 50000 +17592262647393 50000 +17592262891472 54700 +17592262875454 54100 +17592263018170 51130 +17592263002313 50000 +17592263331258 50000 +17592263376165 50000 +17592263327267 51130 +17592263337701 50000 +17592263562247 54100 +17592263582492 25200 +17592263904676 50000 +17592263638814 50000 +17592263968038 12401 +17592263992405 50000 +17592263996692 54100 +17592263968507 50000 +17592263968877 50000 +17592263968806 50000 +17592263991803 51130 +17592264137776 72680 +17592264117839 73500 +17592267129747 74450 +17592264165489 50000 +17592264169912 51130 +17592264442799 82100 +17592264443130 50000 +17592264455753 51130 +17592264456686 50000 +17592267129925 50000 +17592264546272 74700 +17592267130020 54000 +17592264651896 71100 +17592264641570 93300 +17592265023193 74450 +17592264687522 91200 +17592267129755 74450 +17592264728056 74100 +17592264728064 74100 +17592264728836 54000 +17592264728824 54000 +17592264728816 54000 +17592265018554 50000 +17592264986313 50000 +17592264986305 50000 +17592265023385 74450 +17592265023393 74450 +17592265023377 74450 +17592265023401 74450 +17592264986386 83000 +17592265023209 50000 +17592265023318 74450 +17592265023326 74450 +17592265023310 74450 +17592265017955 50000 +17592265001496 51130 +17592265001504 51130 +17592265017927 50000 +17592265016113 50000 +17592265185905 54100 +17592265265726 72600 +17592267129763 74450 +17592265291488 51130 +17592267129805 74100 +17592265290593 50000 +17592265542796 50000 +17592265542646 54100 +17592265542928 50000 +17592265555830 54700 +17592265554637 50000 +17592265651581 54700 +17592265824594 50000 +17592265833964 72680 +17592267345789 74450 +17592266079543 50000 +17592266079560 51130 +17592266079584 74100 +17592265824618 50000 +17592265824602 50000 +17592265824610 50000 +17592269436756 12401 +17592266654136 50000 +17592266653936 51130 +17592266653953 50000 +17592268576481 54700 +17592266571295 91200 +17592267129771 74450 +17592266654144 50000 +17592266653944 51130 +17592267129797 74100 +17592266727304 82100 +17592267129909 50000 +17592267129892 51130 +17592267129813 50000 +17592269433978 74450 +17592266986887 50000 +17592266986748 50000 +17592266986735 50000 +17592266987000 50000 +17592266987014 50000 +17592267129780 54700 +17592267930792 50000 +17592267930810 54000 +17592267930744 50000 +17592267345658 83000 +17592267345650 83000 +17592268564847 50000 +17592267495227 73500 +17592269510381 50000 +17592267580415 54400 +17592267580423 54400 +17592267533702 54100 +17592269434115 74450 +17592267613914 72600 +17592267595723 74600 +17592267575069 54400 +17592267574241 54400 +17592267580284 54400 +17592267580275 54400 +17592267580267 54400 +17592267580259 54400 +17592267930834 54000 +17592267930771 50000 +17592267696419 54700 +17592267696396 51130 +17592267696388 51130 +17592268565322 74100 +17592268565044 50000 +17592268563580 50000 +17592268564921 51130 +17592268564824 50000 +17592268565022 50000 +17592269958084 54100 +17592268028099 50000 +17592268028115 50000 +17592268028302 50000 +17592268028221 50000 +17592269434151 74450 +17592269510285 50000 +17592268227121 72680 +17592268563588 50000 +17592269436773 12401 +17592269211170 50000 +17592269211398 50000 +17592269211366 51130 +17592269221957 50000 +17592269434321 74450 +17592268779372 28500 +17592268779364 28500 +17592268779356 28500 +17592268850139 91200 +17592268973334 73500 +17592269510277 74100 +17592269211178 50000 +17592269211374 51130 +17592269435404 74100 +17592272953002 54100 +17592269211186 50000 +17592269211415 50000 +17592269510417 50000 +17592269211407 50000 +17592269510396 50000 +17592269436656 50000 +17592274317481 50000 +17592271576485 58000 +17592269510294 50000 +17592271334925 50000 +17592269510409 54000 +17592269480306 91201 +17592270682650 54400 +17592274274810 74450 +17592269431592 54100 +17592269585788 69900 +17592269499692 54700 +17592269510269 51130 +17592269510261 50000 +17592271320981 50000 +17592269926524 50000 +17592269926516 50000 +17592269926512 50000 +17592270057460 50000 +17592269812543 83200 +17592269926533 51130 +17592269977466 54700 +17592270009953 50000 +17592270009962 82100 +17592270010064 54400 +17592269947217 73500 +17592269957986 72250 +17592274274818 74450 +17592274410538 54700 +17592270045411 50000 +17592270133255 86300 +17592270133362 54100 +17592270133371 74100 +17592270058048 50000 +17592270058056 50000 +17592270058064 50000 +17592270242205 73500 +17592270681183 50000 +17592270682626 50000 +17592270682642 50000 +17592270682634 50000 +17592270682658 51130 +17592270640869 72680 +17592270737070 50000 +17592274274842 74450 +17592270682739 50000 +17592270737411 51130 +17592271321044 51130 +17592271321020 50000 +17592271321007 50000 +17592271321036 50000 +17592272321114 50000 +17592271332826 51130 +17592271967247 50000 +17592271333003 51130 +17592271088353 74600 +17592271164883 91200 +17592271320870 74100 +17592271320970 50000 +17592271320999 54700 +17592271088361 74600 +17592271243287 74700 +17592271407797 74100 +17592271378673 73500 +17592271983197 54100 +17592271983194 50000 +17592271983191 50000 +17592271983188 50000 +17592271983185 51130 +17592271983218 50000 +17592271967459 50000 +17592271983212 54700 +17592271819994 91200 +17592275876302 74450 +17592271983200 54100 +17592271983206 54400 +17592271983203 50000 +17592271938719 73500 +17592271983215 54700 +17592271983209 50000 +17592271983167 73500 +17592271983221 82100 +17592272433048 51130 +17592272766594 50000 +17592272766635 50000 +17592273574210 50000 +17592272766586 50000 +17592272766481 50000 +17592275876294 74450 +17592272399144 72680 +17592272766498 74100 +17592272766447 51130 +17592272766464 51130 +17592273349135 50000 +17592273574218 50000 +17592272862985 73500 +17592273348998 50000 +17592273349126 50000 +17592273349158 50000 +17592273557973 50000 +17592273067070 54700 +17592273558711 50000 +17592275876286 74450 +17592273349007 50000 +17592273349028 51130 +17592273388231 73500 +17592273574226 50000 +17592273594210 74200 +17592274271594 51130 +17592274271614 50000 +17592273557811 57000 +17592274551266 54400 +17592273558297 50000 +17592273605400 73500 +17592274551194 50000 +17592281931488 54700 +17592275876278 74450 +17592276849211 50000 +17592274551282 74100 +17592274551298 50000 +17592274551306 50000 +17592273851001 91200 +17592274274459 50000 +17592274551290 74100 +17592274274935 74450 +17592276733326 50000 +17592274551242 57000 +17592274551250 51130 +17592274551274 50000 +17592274811226 50000 +17592276505838 50000 +17592274452047 72600 +17592274551218 54400 +17592274551234 54100 +17592274551186 74450 +17592274551202 54700 +17592275876330 74450 +17592276644070 50000 +17592274551210 50000 +17592274551226 50000 +17592275636564 50000 +17592275636580 50000 +17592274811283 12401 +17592274832599 82100 +17592275385800 50000 +17592275385894 57000 +17592275043736 81120 +17592275046804 72680 +17592275385775 50000 +17592275636190 50000 +17592279397533 74100 +17592280156955 74100 +17592275385902 57000 +17592275636289 51130 +17592275636297 50000 +17592275636198 57000 +17592275563607 72600 +17592275636182 50000 +17592275636572 50000 +17592275636159 57000 +17592275636174 50000 +17592275875704 54700 +17592275875696 54100 +17592275876246 54700 +17592276083082 54400 +17592276025696 50000 +17592276024210 57000 +17592276083060 73100 +17592276083049 50000 +17592276091807 91200 +17592276505860 50000 +17592278714025 50000 +17592276505881 74100 +17592276505822 51130 +17592276278032 54700 +17592280156963 74100 +17592277412511 50000 +17592277534535 73500 +17592277412519 50000 +17592276839742 57000 +17592276661618 73500 +17592276661626 73500 +17592276839609 57000 +17592276839915 50000 +17592276840044 50000 +17592276839458 50000 +17592276799929 91200 +17592276854609 54400 +17592277332453 50000 +17592277283275 51130 +17592277534556 73500 +17592277412527 50000 +17592277332445 57000 +17592277332469 50000 +17592277332477 50000 +17592277332461 54100 +17592277412551 50000 +17592277420435 72680 +17592277527432 50000 +17592277527543 82100 +17592277527460 50000 +17592277527424 54100 +17592278714467 54100 +17592279270203 57000 +17592278243016 72600 +17592280137609 50000 +17592278714475 54100 +17592278714483 54100 +17592278714491 54700 +17592280187012 74200 +17592278714443 57000 +17592278714451 50000 +17592278714459 51130 +17592279417665 50000 +17592279924630 50000 +17592278897167 72680 +17592278920763 50000 +17592279268076 50000 +17592279417377 57000 +17592279268068 74100 +17592279268084 50000 +17592279167078 73500 +17592279167057 83250 +17592279268092 51130 +17592279417657 50000 +17592279417385 57000 +17592279417393 50000 +17592279526656 72680 +17592279473111 54700 +17592280157112 50000 +17592279815795 50000 +17592280187204 73500 +17592281660449 50000 +17592280137631 57000 +17592280137623 50000 +17592279924816 50000 +17592280100591 73500 +17592280100684 91200 +17592280187033 50000 +17592280153454 28500 +17592280153186 28500 +17592280156034 28500 +17592280152748 28500 +17592280481722 73500 +17592280610027 97200 +17592280610011 97200 +17592281249649 50000 +17592281249634 50000 +17592281249626 51130 +17592281172805 72680 +17592281307851 50000 +17592281396643 50000 +17592281660457 50000 +17592282688371 57000 +17592282688319 50000 +17592281931464 72600 +17592282688387 51130 +17592281931512 82100 +17592281931480 54700 +17592282688423 50000 +17592282973215 50000 +17592283254545 50000 +17592283254537 57000 +17592283254553 51130 +17592282939735 72680 +17592283512761 50000 +17592283290468 73500 +17592283421416 72680 +17592274429803 50000 +17592274429822 50000 +17592274431554 74700 +17592274430954 75050 +17592274430928 75050 +17592274428431 50000 +17592274429354 50000 +17592274431381 74800 +17592274430999 75050 +17592274431169 83250 +17592274429703 50000 +17592274430218 91300 +17592253234903 25500 +17592274428488 50000 +17592274428680 50000 +17592253410896 54400 +17592274431086 83250 +17592253552759 54400 +17592274429532 50000 +17592253846698 71600 +17592274431143 83250 +17592253921908 54400 +17592253990207 54000 +17592254075350 74700 +17592274428602 50000 +17592274429271 50000 +17592274431105 83250 +17592274429741 50000 +17592254331303 54400 +17592274428181 50000 +17592274430739 54400 +17592254671623 74600 +17592274430009 91300 +17592254809288 74700 +17592274431067 83250 +17592274430777 50000 +17592254835633 54700 +17592274429879 50000 +17592274430701 73300 +17592274428721 50000 +17592274428699 50000 +17592255276662 74600 +17592255300197 25500 +17592274431400 74800 +17592255334569 74600 +17592255342900 74600 +17592255300213 25500 +17592274429233 50000 +17592274431246 83250 +17592274429188 74500 +17592274429760 50000 +17592274429646 50000 +17592274429784 50000 +17592255980785 74800 +17592274431227 83250 +17592274429290 50000 +17592274428583 50000 +17592274429082 74500 +17592256258789 74600 +17592256323048 74700 +17592256355964 54700 +17592274430720 73300 +17592274431046 71700 +17592274428962 50000 +17592274428640 50000 +17592256474552 54100 +17592274429722 50000 +17592274429684 50000 +17592274430351 74200 +17592274431025 75050 +17592256669661 74800 +17592274428279 50000 +17592274428355 50000 +17592274430973 75050 +17592274429475 50000 +17592274429494 50000 +17592274429589 50000 +17592256965140 25800 +17592274430831 83200 +17592274431124 83250 +17592274431419 74800 +17592257009557 74600 +17592274429665 50000 +17592274430332 74200 +17592274430237 91300 +17592274431573 74700 +17592257522569 74600 +17592274431872 74500 +17592257662722 74800 +17592274428298 50000 +17592274429608 50000 +17592274431265 83250 +17592257690760 54400 +17592274429513 50000 +17592257989846 71600 +17592274429551 50000 +17592274430104 91300 +17592258063984 74600 +17592274430902 83200 +17592274430876 83200 +17592258473563 54400 +17592258570591 74800 +17592274428621 50000 +17592274428943 50000 +17592274428374 50000 +17592258711693 74800 +17592274428984 50000 +17592274431284 83250 +17592258914616 74800 +17592259018228 74600 +17592274428792 50000 +17592274430047 91300 +17592274431438 74800 +17592259612151 15410 +17592259833399 74600 +17592259858903 74700 +17592259484014 74800 +17592274431644 83200 +17592274430294 74200 +17592274430313 74200 +17592260146735 74800 +17592260074357 54100 +17592274431682 73300 +17592274430066 91300 +17592274428507 50000 +17592274429022 50000 +17592260173604 74500 +17592274428659 50000 +17592274431739 50000 +17592274429437 50000 +17592274428545 50000 +17592274428564 50000 +17592274429990 91300 +17592260589248 54400 +17592274430199 91300 +17592274431303 83250 +17592274430275 74200 +17592274430758 54400 +17592261164244 74700 +17592274428336 50000 +17592274428317 50000 +17592274430256 91300 +17592274431457 74800 +17592274429919 91300 +17592261868959 74800 +17592261857805 74600 +17592261876022 74600 +17592261977789 74700 +17592274429309 50000 +17592274428393 50000 +17592274430123 91300 +17592274430085 91300 +17592274429373 50000 +17592274430161 91300 +17592274431592 74700 +17592264307019 74800 +17592274429252 50000 +17592274429938 91300 +17592274431343 73800 +17592264936429 74600 +17592265097445 74700 +17592274431476 74800 +17592274429627 50000 +17592274431322 54100 +17592265792510 74700 +17592274431663 50000 +17592274428148 50000 +17592274428469 50000 +17592266079940 74600 +17592266079963 74600 +17592274429335 50000 +17592274430682 73300 +17592274431812 50000 +17592274428450 50000 +17592274429392 50000 +17592274429041 50000 +17592274428412 50000 +17592274429860 50000 +17592274429900 91300 +17592274431495 74800 +17592274430850 83200 +17592267198976 74600 +17592274429456 50000 +17592274429003 50000 +17592274428526 50000 +17592267965376 54400 +17592274430028 91300 +17592274428214 50000 +17592268444130 74800 +17592268311400 54400 +17592268388388 54400 +17592268411420 74600 +17592268694856 74600 +17592268694822 54700 +17592274430180 91300 +17592274428110 50000 +17592274429207 50000 +17592274431701 50000 +17592274428129 50000 +17592274431362 50000 +17592270262710 25200 +17592278129954 74600 +17592278130558 74700 +17592278129106 74600 +17592274430805 83200 +17592274431514 74800 +17592274429570 50000 +17592274431853 50000 +17592274429411 50000 +17592274431611 74700 +17592270742558 74600 +17592274431720 50000 +17592274429841 50000 +17592271036489 74700 +17592271043384 74500 +17592274430142 91300 +17592271350028 74150 +17592271598704 74800 +17592274429169 74500 +17592271806835 74500 +17592274909626 50000 +17592274909647 50000 +17592274909710 91300 +17592274909731 50000 +17592274909689 50000 +17592274431533 74800 +17592272996380 74600 +17592274428882 50000 +17592274429971 91300 +17592272996609 74600 +17592273707590 25200 +17592274322474 50000 +17592273974923 74600 +17592274459853 72680 +17592274909605 50000 +17592274909668 50000 +17592274452672 74800 +17592274568301 74800 +17592274832639 74800 +17592274568253 25200 +17592274568269 74200 +17592274568285 74800 +17592274435620 74600 +17592274811249 72680 +17592274436654 25200 +17592275126828 25200 +17592275126778 72680 +17592275125830 53000 +17592275125922 74600 +17592275449313 25200 +17592275126796 74600 +17592275449329 74800 +17592275618046 72680 +17592275617797 72680 +17592275588122 74600 +17592275617893 72680 +17592275815849 74800 +17592276001241 50000 +17592276001291 50000 +17592276156130 72680 +17592276156151 72680 +17592276285653 74700 +17592276312074 74600 +17592276312175 74600 +17592276677608 74600 +17592276677554 74600 +17592276770059 50000 +17592276768207 50000 +17592276884873 75100 +17592276772033 50000 +17592276767856 50000 +17592276768574 50000 +17592276774416 75050 +17592276769184 50000 +17592276772900 50000 +17592276770958 50000 +17592276677570 74600 +17592276773441 50000 +17592276769486 50000 +17592276769457 50000 +17592276884127 91200 +17592276881130 72680 +17592276880918 72680 +17592276881973 74600 +17592276881930 91200 +17592276882038 91200 +17592276882759 15450 +17592276882780 91200 +17592276882734 50000 +17592276882711 91200 +17592276882667 50000 +17592276882690 91200 +17592276884935 91200 +17592276884907 91200 +17592276882506 91200 +17592276882527 91200 +17592276882485 91200 +17592276882441 91200 +17592276882464 91200 +17592276882420 91200 +17592276882571 91200 +17592276882548 91200 +17592276882260 91200 +17592276882214 91200 +17592276882237 50000 +17592276882193 73300 +17592276882149 50000 +17592276882170 91200 +17592276882373 91200 +17592276882396 91200 +17592276882350 91200 +17592276882327 50000 +17592276882283 54000 +17592276882306 91200 +17592276882126 91200 +17592276882103 91200 +17592276882059 91200 +17592276882080 91200 +17592277065807 74600 +17592274909754 73800 +17592276970029 74600 +17592277306721 54000 +17592277306686 54000 +17592277306665 54000 +17592277306644 50000 +17592277306623 50000 +17592277306602 50000 +17592277306763 74600 +17592277306742 91200 +17592277306581 75050 +17592277284055 25500 +17592277306560 50000 +17592277387791 74700 +17592277527374 72680 +17592277387809 53000 +17592277795283 74500 +17592277795172 74600 +17592277782625 74500 +17592277779252 74600 +17592277795565 74500 +17592277797789 25500 +17592277527395 72680 +17592277797733 25500 +17592277783265 74600 +17592277832256 25500 +17592277779268 74600 +17592278572315 50000 +17592278572346 75100 +17592278571595 91200 +17592278571610 91200 +17592279017748 74600 +17592279042844 91200 +17592279042865 50000 +17592279069280 25200 +17592279166879 74800 +17592279166789 74200 +17592279218658 91200 +17592279218967 50000 +17592279392147 91200 +17592279388055 74600 +17592279387949 74600 +17592279388004 75100 +17592279392175 50000 +17592279387965 74600 +17592279464344 50000 +17592279464323 50000 +17592279466624 25200 +17592279673830 74600 +17592279640317 75100 +17592279640296 50000 +17592279640338 50000 +17592279640360 50000 +17592279640275 91200 +17592279755576 91200 +17592279674224 74700 +17592280215148 25500 +17592280215132 74800 +17592280178608 74150 +17592280328322 25200 +17592280295497 74800 +17592280454166 25500 +17592280454132 74600 +17592280454183 25500 +17592280178553 74600 +17592280178581 74150 +17592280178524 74800 +17592280454090 74600 +17592280775439 75100 +17592280775460 91200 +17592280820248 74600 +17592281141174 74800 +17592281280322 11000 +17592281307920 74600 +17592281307904 25500 +17592281307872 11000 +17592281426167 74600 +17592281307888 74600 +17592281503670 25500 +17592281503501 25500 +17592281503584 25500 +17592281503566 25500 +17592281503790 25500 +17592281503704 25500 +17592281503686 25500 +17592281503517 25500 +17592281503549 74800 +17592281503533 74800 +17592281503772 25500 +17592281503754 25500 +17592281503736 74600 +17592281503720 25500 +17592281503822 25500 +17592281503806 74800 +17592281426151 74800 +17592282150927 91200 +17592282150969 50000 +17592282150948 75050 +17592282269025 72710 +17592282269300 25500 +17592282269192 74800 +17592282669096 91200 +17592282669123 50000 +17592282669144 50000 +17592282669057 50000 +17592282830251 25500 +17592282830182 74600 +17592282830198 74600 +17592282830215 25500 +17592282830233 25500 +17592283123080 74800 +17592283123016 25500 +17592283107694 74800 +17592283123064 74800 +17592283123096 74800 +17592283123032 25500 +17592283117468 74800 +17592283107730 74600 +17592283117890 25500 +17592283108131 25500 +17592283108189 25200 +17592283107948 74600 +17592283483531 74800 +17592283486427 74600 +17592283483565 25500 +17592283483547 74800 +17592283624705 75100 +17592283624684 50000 +17592283624642 91200 +17592283624619 74200 +17592283624663 91200 +17592283624575 50000 +17592283624598 91200 +17592284157940 74600 +17592284157956 74600 +17592284872068 25500 +17592284877048 25200 +17592284980431 74800 +17592285214669 74600 +17592285214685 74600 +17592285301790 74200 +17592285494297 74600 +17592285493414 54400 +17592285569845 74600 +17592285658020 74600 +17592286628347 75050 +17592286071130 74500 +17592286285662 74800 +17592286643656 50000 +17592286643640 50000 +17592286644183 50000 +17592286629770 50000 +17592286629518 50000 +17592286630316 50000 +17592286644367 75100 +17592286645116 74500 +17592286624520 50000 +17592286622464 75100 +17592286644870 74500 +17592286918174 25500 +17592286917993 49500 +17592286918009 74600 +17592286918025 25500 +17592286943811 74600 +17592286943827 74600 +17592286626914 91200 +17592286643231 91200 +17592286627793 50000 +17592286625839 91200 +17592286626558 74200 +17592287264291 54400 +17592252766252 50000 +17592253765392 50000 +17592253765552 51300 +17592253765568 51300 +17592253765401 50000 +17592253765533 55000 +17592253765526 50000 +17592253765560 51300 +17592254978015 50000 +17592254978262 51300 +17592256760642 50000 +17592254978174 51300 +17592254977945 74700 +17592254978007 50000 +17592254978223 51300 +17592254978083 51300 +17592256760618 50000 +17592254977999 50000 +17592254978206 51300 +17592256760626 50000 +17592254978074 51300 +17592256760602 50000 +17592254977954 50000 +17592254978190 51300 +17592256760610 50000 +17592254978231 51300 +17592255898605 25500 +17592255898597 25500 +17592255898524 25500 +17592255898573 25500 +17592255898563 25500 +17592255898589 25500 +17592255898581 25500 +17592255898533 25500 +17592255898555 25500 +17592255898781 51300 +17592257068363 50000 +17592257068377 55000 +17592257068354 50000 +17592255898765 51300 +17592255898756 55000 +17592255898745 51300 +17592255898773 51300 +17592256760480 51300 +17592257068500 50000 +17592257068419 50000 +17592257068426 55000 +17592256760471 51300 +17592256760488 51300 +17592257068543 50000 +17592257068517 50000 +17592257068524 55000 +17592257542004 51300 +17592259066150 50000 +17592257541996 51300 +17592259065579 55000 +17592259065514 50000 +17592259065488 74600 +17592259065605 51300 +17592259065613 51300 +17592259066142 50000 +17592259646365 73800 +17592260152606 54300 +17592259644696 93100 +17592259644932 93100 +17592259066126 51300 +17592259066134 50000 +17592259646182 55000 +17592259645693 50000 +17592259066256 51300 +17592259646048 50000 +17592259646302 51300 +17592259646373 50000 +17592259646389 55000 +17592259646150 51300 +17592263842206 73800 +17592259646382 50000 +17592263842215 74500 +17592263842223 74500 +17592263842361 74500 +17592260152527 51300 +17592259645966 50000 +17592259646165 55000 +17592260152535 51300 +17592260152519 50000 +17592260152543 51300 +17592260152551 51300 +17592261215510 50000 +17592259065621 51300 +17592263841926 51300 +17592261215588 50000 +17592261215457 51300 +17592263841934 51300 +17592263843968 50000 +17592263843967 55000 +17592263843228 55000 +17592271875509 74500 +17592263841997 51300 +17592263876365 50000 +17592263876459 55000 +17592263876433 50000 +17592263843994 55000 +17592263844004 55000 +17592263842023 51300 +17592263876356 50000 +17592263876449 55000 +17592263876425 50000 +17592263842036 51300 +17592265741197 73300 +17592263842044 51300 +17592263842053 51300 +17592263842069 51300 +17592269079597 51300 +17592269209861 50000 +17592269210255 55000 +17592269079495 50000 +17592269079264 50000 +17592269079247 50000 +17592270317355 51300 +17592269210263 55000 +17592269209842 50000 +17592270317363 51300 +17592269079505 51300 +17592269079256 50000 +17592271875615 55000 +17592269209579 55000 +17592269209444 50000 +17592269209946 50000 +17592269209571 55000 +17592269209452 50000 +17592269210022 50000 +17592270316853 51300 +17592269209731 50000 +17592269210132 50000 +17592270316668 51300 +17592269209562 55000 +17592269209460 50000 +17592269210167 50000 +17592269436820 50000 +17592269436844 55000 +17592272601112 51300 +17592271875470 50000 +17592269079360 55000 +17592269079283 50000 +17592270315818 50000 +17592270316356 55000 +17592269433290 51300 +17592270316530 51300 +17592271875462 50000 +17592270318615 50000 +17592271875153 55000 +17592271875130 50000 +17592270315765 51300 +17592271875171 50000 +17592271875430 74700 +17592271875230 50000 +17592271875238 50000 +17592271875179 50000 +17592271875186 55000 +17592271875247 50000 +17592271875222 50000 +17592274012349 50000 +17592272604960 50000 +17592272604959 55000 +17592272601103 51300 +17592272605081 50000 +17592272605050 55000 +17592272601120 51300 +17592272605173 54300 +17592272604979 50000 +17592272601137 51300 +17592272601128 50000 +17592274011916 50000 +17592274011924 50000 +17592274012268 50000 +17592274012252 50000 +17592274012294 55000 +17592274012260 50000 +17592274012310 50000 +17592276414535 50000 +17592276415324 51300 +17592276414543 50000 +17592276415332 51300 +17592276414551 50000 +17592276370010 74600 +17592276368546 51300 +17592277971556 51300 +17592276414559 50000 +17592276415340 51300 +17592277534577 50000 +17592279931043 50000 +17592279931059 50000 +17592279931075 51300 +17592279904825 51300 +17592279904873 55000 +17592279904833 51300 +17592279904841 51300 +17592279904817 51300 +17592279904889 51300 +17592279931035 50000 +17592281337626 51300 +17592281337634 55000 +17592283265516 51300 +17592283265775 51300 +17592284840440 73300 +17592283532892 51300 +17592287427822 51300 +17592283532937 51300 +17592283532900 51300 +17592287425306 51300 +17592284840496 50000 +17592287424881 51300 +17592287424920 51300 +17592287425226 51300 +17592287424873 51300 +") + + + (def invoice-current + (->> (da/q '[:find ?iea ?a + :in $ + :where + [?i :invoice/date ?d] + [(>= ?d #inst "2022-01-01T00:00:00-08:00")] + [?i :invoice/expense-accounts ?iea] + [?iea :invoice-expense-account/account ?a]] + (da/db auto-ap.datomic/conn)) + (into {}))) + + (doseq [vendor-update (->> (clojure.data.csv/read-csv + invoice-fixup-csv + :separator \tab + ) + (map (fn [[expense-account-id numeric-code]] + {:db/id (Long/parseLong expense-account-id) + :invoice-expense-account/account (numeric-code->account-id (Long/parseLong numeric-code))})) + + (filter (fn [x] + (not= (:invoice-expense-account/account x) + (invoice-current (:db/id x))))) + + + (partition-all 100))] + @(da/transact auto-ap.datomic/conn (conj vendor-update {:db/id "datomic.tx" + :audit/user "Fixup account allowances - invoice updates"}))) + + + (doseq [iea (->> (clojure.data.csv/read-csv + invoice-fixup-csv + :separator \tab + ) + (map (fn [[expense-account-id numeric-code]] + {:db/id (Long/parseLong expense-account-id) + :invoice-expense-account/account (numeric-code->account-id (Long/parseLong numeric-code))})) + + (filter (fn [x] + (not= (:invoice-expense-account/account x) + (invoice-current (:db/id x))))) + + + ) + :let [invoice (da/pull (da/db auto-ap.datomic/conn) [{:invoice/_expense-accounts [:db/id]}] (:db/id iea))] + :when (:db/id (:invoice/_expense-accounts invoice))] + + + (println "touching " (:db/id (:invoice/_expense-accounts invoice))) + (auto-ap.ledger/touch-invoice (:db/id (:invoice/_expense-accounts invoice))) + ) + + ) +