diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba6e777ef..06278e298 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,26 +17,20 @@ jobs: - "latest" fail-fast: false - services: - splunk: - image: splunk/splunk:${{matrix.splunk-version}} - env: - SPLUNK_START_ARGS: --accept-license - SPLUNK_HEC_TOKEN: 11111111-1111-1111-1111-1111111111113 - SPLUNK_PASSWORD: changed! - SPLUNK_APPS_URL: https://github.com/splunk/sdk-app-collection/releases/download/v1.1.0/sdkappcollection.tgz - ports: - - 8000:8000 - - 8088:8088 - - 8089:8089 - steps: - - uses: actions/checkout@v2 + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run docker-compose + run: SPLUNK_VERSION=${{matrix.splunk-version}} docker-compose up -d + - name: Setup Python uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} + - name: Install tox run: pip install tox + - name: Test Execution run: tox -e py diff --git a/CHANGELOG.md b/CHANGELOG.md index f01bb3faf..e36b326c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Splunk Enterprise SDK for Python Changelog +## Version 1.7.1 + +### Bug fixes +* [#471](https://github.com/splunk/splunk-sdk-python/pull/471) Fixed support of Load Balancer "sticky sessions" (persistent cookies) [[issue#438](https://github.com/splunk/splunk-sdk-python/issues/438)] + +### Minor changes +* [#466](https://github.com/splunk/splunk-sdk-python/pull/466) tests for CSC apps +* [#467](https://github.com/splunk/splunk-sdk-python/pull/467) Added 'kwargs' parameter for Saved Search History function +* [#475](https://github.com/splunk/splunk-sdk-python/pull/475) README updates + ## Version 1.7.0 ### New features and APIs diff --git a/README.md b/README.md index 762844a5f..eb7ad8bd3 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # The Splunk Enterprise Software Development Kit for Python -#### Version 1.7.0 +#### Version 1.7.1 The Splunk Enterprise Software Development Kit (SDK) for Python contains library code designed to enable developers to build applications using the Splunk platform. @@ -28,7 +28,9 @@ Here's what you need to get going with the Splunk Enterprise SDK for Python. The Splunk Enterprise SDK for Python has been tested with Python v2.7 and v3.7. -* Splunk Enterprise +* Splunk Enterprise 9.0 or 8.2 + + The Splunk Enterprise SDK for Python has been tested with Splunk Enterprise 9.0 and 8.2 If you haven't already installed Splunk Enterprise, download it [here](http://www.splunk.com/download). For more information, see the Splunk Enterprise [_Installation Manual_](https://docs.splunk.com/Documentation/Splunk/latest/Installation). diff --git a/docker-compose.yml b/docker-compose.yml index 0527a30bd..10800c2a8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,3 +18,12 @@ services: interval: 5s timeout: 5s retries: 20 + volumes: + - "./tests/searchcommands/test_apps/eventing_app:/opt/splunk/etc/apps/eventing_app" + - "./tests/searchcommands/test_apps/generating_app:/opt/splunk/etc/apps/generating_app" + - "./tests/searchcommands/test_apps/reporting_app:/opt/splunk/etc/apps/reporting_app" + - "./tests/searchcommands/test_apps/streaming_app:/opt/splunk/etc/apps/streaming_app" + - "./splunklib:/opt/splunk/etc/apps/eventing_app/lib/splunklib" + - "./splunklib:/opt/splunk/etc/apps/generating_app/lib/splunklib" + - "./splunklib:/opt/splunk/etc/apps/reporting_app/lib/splunklib" + - "./splunklib:/opt/splunk/etc/apps/streaming_app/lib/splunklib" diff --git a/splunklib/__init__.py b/splunklib/__init__.py index 487a76c35..b370003ea 100644 --- a/splunklib/__init__.py +++ b/splunklib/__init__.py @@ -31,5 +31,5 @@ def setup_logging(level, log_format=DEFAULT_LOG_FORMAT, date_format=DEFAULT_DATE format=log_format, datefmt=date_format) -__version_info__ = (1, 7, 0) +__version_info__ = (1, 7, 1) __version__ = ".".join(map(str, __version_info__)) diff --git a/splunklib/binding.py b/splunklib/binding.py index 919ad4dce..7806bee49 100644 --- a/splunklib/binding.py +++ b/splunklib/binding.py @@ -543,8 +543,8 @@ def _auth_headers(self): token = 'Splunk %s' % self.token if token: header.append(("Authorization", token)) - if self.get_cookies().__len__() > 0: - header.append("Cookie", _make_cookie_header(self.get_cookies().items())) + if self.get_cookies(): + header.append(("Cookie", _make_cookie_header(list(self.get_cookies().items())))) return header @@ -1434,7 +1434,7 @@ def request(url, message, **kwargs): head = { "Content-Length": str(len(body)), "Host": host, - "User-Agent": "splunk-sdk-python/1.7.0", + "User-Agent": "splunk-sdk-python/1.7.1", "Accept": "*/*", "Connection": "Close", } # defaults diff --git a/splunklib/client.py b/splunklib/client.py index 14fe2977a..85c559d0d 100644 --- a/splunklib/client.py +++ b/splunklib/client.py @@ -3291,12 +3291,15 @@ def fired_alerts(self): item=AlertGroup) return c - def history(self): + def history(self, **kwargs): """Returns a list of search jobs corresponding to this saved search. + :param `kwargs`: Additional arguments (optional). + :type kwargs: ``dict`` + :return: A list of :class:`Job` objects. """ - response = self.get("history") + response = self.get("history", **kwargs) entries = _load_atom_entries(response) if entries is None: return [] jobs = [] diff --git a/tests/README.md b/tests/README.md index 2388cd4a9..3da69c9f9 100644 --- a/tests/README.md +++ b/tests/README.md @@ -1,7 +1,7 @@ # Splunk Test Suite The test suite uses Python's standard library and the built-in **unittest** -library. If you're using Python 2.7, you're all set. However, if you are using +library. If you're using Python 2.7 or Python 3.7, you're all set. However, if you are using Python 2.6, you'll also need to install the **unittest2** library to get the additional features that were added to Python 2.7 (just run `pip install unittest2` or `easy_install unittest2`). diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/args.txt deleted file mode 100644 index 1e076015e..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/args.txt +++ /dev/null @@ -1,10 +0,0 @@ ---id=1434859155.44 ---maxbuckets=0 ---ttl=600 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/custom_prop.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/custom_prop.csv deleted file mode 100644 index 7559fe348..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/custom_prop.csv +++ /dev/null @@ -1,2 +0,0 @@ -"dispatch.earliest_time","dispatch.latest_time","display.general.type","display.page.search.mode","display.page.search.tab",search,"__mv_dispatch.earliest_time","__mv_dispatch.latest_time","__mv_display.general.type","__mv_display.page.search.mode","__mv_display.page.search.tab","__mv_search" -"","",statistics,smart,statistics,"| inputlookup tweets | countmatches record=t fieldname=word_count pattern=""\\w+"" text",,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/externSearchResultsInfo.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/externSearchResultsInfo.csv deleted file mode 100644 index 4fb00363d..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/externSearchResultsInfo.csv +++ /dev/null @@ -1,7 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434859155.44","1434859155.566481000","1434859155.000000000","1434859155.557458000","","","",0,0,0,"duration.command.inputlookup;3;duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;556;duration.dispatch.evaluate.countmatches;550;duration.dispatch.evaluate.inputlookup;7;duration.dispatch.writeStatus;10;duration.startup.configuration;36;duration.startup.handoff;86;in_ct.command.inputlookup;0;invocations.command.inputlookup;1;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.countmatches;1;invocations.dispatch.evaluate.inputlookup;1;invocations.dispatch.writeStatus;5;invocations.startup.configuration;1;invocations.startup.handoff;1;out_ct.command.inputlookup;500;",686,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"^^0QHi5Rib5zntT_bzUGOWcapoXgVgAfnZttdMBP9pHc9oxPEcijLDHe7AwWOh8ckgYwiRfeblH3yiJTHnsrMGdBD0TK4211aJ9LwvH0wayVkP1LkuJNDo",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup tweets | countmatches record=t fieldname=word_count pattern=""\\w+"" text","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (36ms) when dispatching a search (search ID: 1434859155.44); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Disabling timeline and fields picker for reporting search due to adhoc_search_level=smart",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Successfully read lookup file '/Users/david-noble/Workspace/Splunk/etc/apps/searchcommands_app/lookups/tweets.csv.gz'.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'countmatches' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/info.csv deleted file mode 100644 index 6eb9913b7..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/info.csv +++ /dev/null @@ -1,6 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434859155.44","1434859155.566481000","1434859155.000000000","1434859155.557458000","","","",0,0,0,"duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;556;duration.dispatch.evaluate.countmatches;550;duration.dispatch.evaluate.inputlookup;7;duration.dispatch.writeStatus;8;duration.startup.configuration;36;duration.startup.handoff;86;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.countmatches;1;invocations.dispatch.evaluate.inputlookup;1;invocations.dispatch.writeStatus;4;invocations.startup.configuration;1;invocations.startup.handoff;1;",686,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"^^0QHi5Rib5zntT_bzUGOWcapoXgVgAfnZttdMBP9pHc9oxPEcijLDHe7AwWOh8ckgYwiRfeblH3yiJTHnsrMGdBD0TK4211aJ9LwvH0wayVkP1LkuJNDo",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup tweets | countmatches record=t fieldname=word_count pattern=""\\w+"" text","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (36ms) when dispatching a search (search ID: 1434859155.44); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Disabling timeline and fields picker for reporting search due to adhoc_search_level=smart",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'countmatches' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/metadata.csv deleted file mode 100644 index d44d02b5d..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"searchcommands_app",600 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/peers.csv deleted file mode 100644 index 038056ceb..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp-2.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/request.csv deleted file mode 100644 index 79c5d3bed..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -rf,"auto_cancel","status_buckets","custom.display.page.search.mode","custom.display.page.search.tab","custom.display.general.type","custom.search","custom.dispatch.earliest_time","custom.dispatch.latest_time",search,"earliest_time","latest_time","ui_dispatch_app",preview,"adhoc_search_level",indexedRealtime,"__mv_rf","__mv_auto_cancel","__mv_status_buckets","__mv_custom.display.page.search.mode","__mv_custom.display.page.search.tab","__mv_custom.display.general.type","__mv_custom.search","__mv_custom.dispatch.earliest_time","__mv_custom.dispatch.latest_time","__mv_search","__mv_earliest_time","__mv_latest_time","__mv_ui_dispatch_app","__mv_preview","__mv_adhoc_search_level","__mv_indexedRealtime" -"*",30,300,smart,statistics,statistics,"| inputlookup tweets | countmatches record=t fieldname=word_count pattern=""\\w+"" text","","","| inputlookup tweets | countmatches record=t fieldname=word_count pattern=""\\w+"" text","","","searchcommands_app",1,smart,"",,,,,,,,,,,,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/runtime.csv deleted file mode 100644 index 6080cf7b6..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -30,0,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/status.csv deleted file mode 100644 index 5e190e062..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","can_summarize","max_time","max_count","reduce_freq","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","normalized_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"time_cursored","column_order","searched_buckets","eliminated_buckets" -FINALIZING,admin,1434859155,"0.563000",49152,0,0,0,0,2147483647,"",0,0,0,0,8640000,500000,10,0,1,0,0,0,1,0,"| inputlookup tweets | countmatches record=t fieldname=word_count pattern=""\\w+"" text","",0,"",1,desc,"inputlookup tweets | countmatches record=t fieldname=word_count pattern=""\\w+"" text",0,"*","","",1,0,1,"",18033,5,0,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.input.gz deleted file mode 100644 index f4d216bfb..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.output deleted file mode 100644 index 8f33c6370..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.output +++ /dev/null @@ -1,630 +0,0 @@ - -_serial,__mv__serial,_time,__mv__time,text,__mv_text,word_count,__mv_word_count -0,,1380899494,,excellent review my friend loved it yours always guppyman @GGreeny62... http://t.co/fcvq7NDHxl,,14, -1,,1380899494,,Tú novia te ama mucho,,5, -2,,1380899494,,"RT @Cindystaysjdm: @MannyYHT girls are like the Feds, they always watching 👀",,11, -3,,1380899494,,no me alcanza las palabras para el verbo amar..♫,,9, -4,,1380899494,,@__AmaT 요즘은 곡안쓰시고 귀농하시는군요 ㅋㅋ,,1, -5,,1380899494,,melhor geração #DiaMundialDeRBD,,4, -6,,1380899494,,@mariam_n_k من أي ناحية مين أنا ؟ ، إذا كان السؤال هل اعرفك او لا الجواب : لا .,,1, -7,,1380899494,,Oreka Sud lance #DEMplus un logiciel de simulation du démantèlement d'un réacteur #nucléaire http://t.co/lyC9nWxnWk,,22, -8,,1380899494,,@gusosama そんなことないですよ(。•́︿•̀。)でも有難うございます♡,,1, -9,,1380899494,,11:11 pwede pwends ta? HAHAHA,,6, -10,,1380899494,,RT @royalTee_x3: Football players >>> 😍😎,,7, -11,,1380899494,,"#FF Belles lettres @ChTwDe In est comme in est, in s'arfait nin Ben lui y'a rien à changer Poèsie, amitié, tendresse SUIVEZ Un chou ce ch'ti",,29, -12,,1380899494,,@_AbdullaS @Hawazn1993 @bntmisfr1 @prh00M @nhLa_30 هههههههههههههههههههههههههههههههههههههههههههههه.,,5, -13,,1380899494,,"RT @alrweili12: #متابعين -✳ اضفني @alrweili12✅ -✳ رتويـت ✅ -✳ أضف مـن يقـوم بالرتويـــت ✅ -✳أضف مـن يضيفـك ✅ -#زيادة_متابعين -1",,5, -14,,1380899494,,RT @CHSExplorer: Monzon with a 20 yard rushing TD off an option play. T-Birds up 37-21 with 30 seconds left in the game,,25, -15,,1380899494,,Margarita (8),,2, -16,,1380899494,,RT @chikichikiko: ぶふぁっ! なんぞ、これ!?(^0^;) しかもNHKって、、。RT 【祝】NHKで跡部様が紹介される http://t.co/i7WB0pMHrj,,10, -17,,1380899494,,#fact directioners love one direction,,5, -18,,1380899494,,https://t.co/2b10ScKlAo cuanto? — 5 http://t.co/ldtoRMvpnB,,10, -19,,1380899494,,Still make 11:11 wishes..,,5, -20,,1380899494,,Estar tan cansada y agotada que no te queda energía ni para abrir los ojos mas de 5 segundos seguidos.,,21, -21,,1380899494,,The man of the night #killem #otp #lastshot http://t.co/EFrJ7upMu1,,12, -22,,1380899494,,"@MaintainNGain so I've had just a bad/frustrating morning, but then I saw this on my feed which made me smile! Thanks! #neededadvice #smile",,25, -23,,1380899494,,RT @1yuki1yuki9: 日経エンタはエイターを殺す気。 http://t.co/MyzxDZJOGD,,6, -24,,1380899494,,"@michael_snape Oi, what the fuck happened last night! I know I was in town but I do not remember one place we went! Just know I was with you",,29, -25,,1380899494,,@taku_is_ahoo 苦しかったわわら。,,1, -26,,1380899494,,“@pinulbilang: Iklan tvm yg baru ada @apriliokevin sama @Princess_Ind masa :* :D *poke @AprilioKingdom”,,13, -27,,1380899494,,RT @ArsenalNewsUK: WEST BROM v ARSENAL: Latest team news and stats http://t.co/u9BsfrGF45,,15, -28,,1380899494,,Se siente tocada Terenzano.-,,4, -29,,1380899494,,"أحياناً العقلانيه تكون سيئه وتجعلك تتحفظ وتنظر للحياة بواقعيتها ، -بينما الجنون يرفع من سقف أفكارك ويجعلك لا تعرف معنى المستحيل .!",,0, -30,,1380899494,,RT @TweetUstazAzhar: Cinta itu bukannya suatu permainan . Cinta adalah suatu anugerah dari Allah . Jagalah anugerah Allah ini dengan sebaik…,,19, -31,,1380899494,,I hope I don't have to take my child care test today,,13, -32,,1380899494,,RT @chingjoyce: Kaya naman palaaaaaaaaaa!! My goodness!,,7, -33,,1380899494,,"たのしかったww -けどくっそねむいし - -あしたおきれんw",,2, -34,,1380899494,,RT @LeVraiHoroscope: La #Balance est toujours là pour aider ceux qu'elle aime vraiment.,,14, -35,,1380899494,,"RT @KertomTorres: La gente dice que ''odiar'' es una palabra muy fuerte, pero van por ahí diciendo ""te amo"" como si eso no significara nada.",,25, -36,,1380899494,,"RT @samkinah: ""@TimmyAisha: Are you Copper? - -Because I Cu in my dreams!"" Hehehe",,13, -37,,1380899494,,In here tryin think wat ima eat,,7, -38,,1380899494,,"Yeah, after I thank The Lord 4 wakin me 🙌🙏",,9, -39,,1380899494,,,,0, -40,,1380899494,,RT @tryna_be_famous: RT @tryna_be_famous Nigga look like a microwaved hot dog http://t.co/T6IQpYrzCh,,15, -41,,1380899494,,RT @9493_room: 1004 에인줠Day..... http://t.co/mwVnEREljF,,8, -42,,1380899494,,@dudaribeiro_13 q engraçado em.,,5, -43,,1380899494,,RT @Mzhs81: この雑コラが個人的にツボ #艦これ http://t.co/0OIUkfj8FR,,6, -44,,1380899494,,"【PCMAX】サイトに登録するだけで女性からメールが来ると思っているあなた!女の子は奪うものですよ!気合でいきしょう!\(^0^)/ -◎http://t.co/zZjw8KLUsB(登録無料)",,6, -45,,1380899494,,"http://t.co/8Yq0AHnoDd -「枯れずの花」更新しました! -#narou #narouN5047BT -少し日付をオーバーしましたが、第七話「薔花、散る。」を投稿しました。 -これにて、第一次薔藤時代編は終わりです。",,6, -46,,1380899494,,@u2w3c_ 譲りますヽ(`・ω・´)ノどちらに住んでますかね?,,1, -47,,1380899494,,RT @IamLEGIT: @mizzaaaa_ @ahaiqall aku handsome lagiii,,7, -48,,1380899494,,,,0, -49,,1380899494,,紙が若干ペロンって曲がってしまったせいかチビ信乃の背景が歪んでてワロタ,,0, -50,,1380899494,,Don't act like it is a bad thing to be in love with me. You might find out your dreams come true.,,23, -51,,1380899494,,"RT @ahmethc: basgan'a ""sakin ol şampiyon"" derken http://t.co/Q2YNjKV8P7",,12, -52,,1380899494,,明日ひーろー行く人?(^o^),,1, -53,,1380899494,,. http://t.co/bMgug5LdP2,,4, -54,,1380899494,,"越谷EASYGOINGSに行ってきた。 -江崎さん、松崎さん、絵かきの手、パプリカン -素晴らしかった。久々に完全客でのライブハウス。リフレッシュできた。 -あまり酒飲まないと決めたのに結局へろへ。 - -さて、明後日は浅草で僕の企画、明々後日は越谷で乗り込みPAです。 -楽しみワクワク。",,2, -55,,1380899494,,"【イククル】会員登録前にモチベーションを上げてからいきましょう!男性の場合は「超モーレツアタックするぞー!」、女性の場合は「プロフィール超充実させちゃうー!」ですね。\(^^)/ -◎http://t.co/jNcIgBoS2W【登録無料】4",,5, -56,,1380899494,,常に呼ばれている陽菜です(ノシ・ω・)ノシ(ノシ・ω・)ノシ,,0, -57,,1380899494,,@nflhqm yesssss. Hahahahaha,,3, -58,,1380899494,,RT @nobunaga_s: 跡部様がNHKに出演されたというのは誠ですか!?…流石です!,,3, -59,,1380899494,,There are screaming children RIGHT outside my window. Make it stop.,,11, -60,,1380899494,,*fly*,,1, -61,,1380899494,,Ah shit! I'm just waking up from what can only be describe as a comma. I hope I won't be up all night because of this.,,28, -62,,1380899494,,BBQの追い込みTL合間のシット君に癒されたwwwww,,3, -63,,1380899493,,,,0, -64,,1380899493,,,,0, -65,,1380899493,,,,0, -66,,1380899493,,,,0, -67,,1380899493,,,,0, -68,,1380899493,,RT @LeVraiHoroscope: Ce que le #Cancer aime en automne : regarder des films d'horreur et faire la fête avec ses amis.,,22, -69,,1380899493,,,,0, -70,,1380899493,,,,0, -71,,1380899493,,@emunmun @crnpi32 そー中毒なるねん! やめられへん (笑),,2, -72,,1380899493,,RT @TOWER_Revo: 【あと3日】10/7(月)21時~初音階段『生初音ミク降臨!?ボーカロイドとノイズの融合!』開催&配信まであと3日となりました!月曜日からノイズの世界を楽しみましょう! http://t.co/k0zn9J6tQ5 詳細⇒http://t.co/…,,14, -73,,1380899493,,BOA TARDE A TODOS CLIENTES E AMIGOS!!!! O PERFIL DE NOSSA EMPRESA NO FACEBOOK AGORA SE TORNOU UMA Fà PAGE! ABRAÇOS http://t.co/kroqZuJYi5,,26, -74,,1380899493,,これうまい http://t.co/YlT8pAMxse,,4, -75,,1380899493,,@LMurilloV de estos? http://t.co/uZ2s8jYRZE,,7, -76,,1380899493,,,,0, -77,,1380899493,,@rikaaaa714 てか、どうせなら一緒に写ろう!,,1, -78,,1380899493,,@Mesho_2002 لآ تحتكك :) هههههههههههه آمزح,,1, -79,,1380899493,,RT @Axwell: @Palmesus YEs! can't wait to party with my neighbors in your beautiful country!,,16, -80,,1380899493,,http://t.co/CNvqHVecpf #про ститутки в челябинске,,4, -81,,1380899493,,"@MileyCyrus Oh yes Miley, I love taking selfies in bed also, you look so happy, your happiness in this picture just radiates off",,23, -82,,1380899493,,"@community_kpop Sone , Baby :)",,3, -83,,1380899493,,"cowok gak boleh cengeng ah.. RT @Amberrlliu92: [] ini gue ragu -.- nangis gara2 masalah RP, atau nangis gara2 denger lagu ini berulang2 T_T",,22, -84,,1380899493,,Vova что?! RT @engpravda: Putin calls professor of Higher School of Economics a jerk http://t.co/GOx4jfdfND,,17, -85,,1380899493,,RT @gtapics: Drake is probably playing GTA V right now picking up prostitutes and driving them to safer cities,,19, -86,,1380899493,,The Byte Me Daily is out! http://t.co/yaIpTnubC8 ▸ Top stories today via @Bitdefender @billnelson @misterfergusson,,17, -87,,1380899493,,"RT @BornOfEternity: Jonathan Rhys Meyers con el que hizo del Jace pequeño, y el halcón. A mi este hombre me mata. http://t.co/nxdk1uZbdD",,27, -88,,1380899493,,@_lonyma وين راح الم راسك هاإاإاه,,1, -89,,1380899493,,,,0, -90,,1380899493,,"RT @SenRandPaul: . @BarackObama sent 7 security guards to #WWIIMemorial this AM to keep out our vets. Sadly, that is 2 more than were prese…",,24, -91,,1380899493,,Los odio . @MJSantorelli,,3, -92,,1380899493,,"I've harvested 967 of food! http://t.co/VjlsTijdQc #ipad, #ipadgames, #gameinsight",,13, -93,,1380899493,,My boy Thor is a Sore loser https://t.co/KTtwAlHqr2,,11, -94,,1380899493,,@bibikunhiy だあああ‼またですか!,,1, -95,,1380899493,,"@_desytriana beneran kok, gak sepik.-.",,5, -96,,1380899493,,"Oq q era aquela cena do Matt da Rebekah e da outra desconhecida lá, já suspeitava q a Rebekah cortava pros dois lado",,23, -97,,1380899493,,"RT @SastraRevolusi: Seandainya pria tahu, perempuan yang menanyakan status adalah perempuan yang tidak ingin kehilangan, bukan malah ingin …",,18, -98,,1380899493,,serious selekeh sangat! badan mcm kayu nak pakai baju ketat ketat. dengan tangan mcm sotong klau bercakap. wuuuuu --',,18, -99,,1380899493,,"رب أني مسني الضر و انت ارحم الراحمين.. - شاهد: http://t.co/MIc0UNNkaQ -#غرد_بذكر_الله -#دعاء_لربي",,7, -100,,1380899493,,@ellzaamay ok,,2, -101,,1380899493,,흐아ㅜ래으루ㅏ이닭발... #소연아생일축하해,,0, -102,,1380899493,,"RT @OhTheFameGaga: Put your hands up, make ‘em touch! Make it real loud!",,13, -103,,1380899493,,12 12,,2, -104,,1380899493,,"RT @Keenzah_: ""@lesxviezvous: Au Portugal, dans les fêtes foraines, on trouve de la barbe à Maman."" PTTTTTTTTTTTTTDR JAI RIGOLÉE 6FOIS",,21, -105,,1380899493,,RT @kozara: 透明飲んでも隠し切れないイケメン ぽぺん,,2, -106,,1380899493,,RT @AfifSyakir_: Saya harap saya jadi yang terakhir buat ibu bapa ku di saat-saat mereka perlukan ku untuk membacakan syahadah untuk mereka…,,23, -107,,1380899493,,Especially loads of the gay men who bizarrely feel they have a right to tut at a 20 yo woman for being too sexy or whatever it is.,,28, -108,,1380899493,,"@berry_berryss めーーーん!!! -おめでとおめでとおめでと♡",,1, -109,,1380899493,,"RT @imas_anime: この後、24:00〜東京MXにて第1話が再放送です。同時にバンダイチャンネルでも配信します。 -http://t.co/1KdQhC6aNm -久しぶりに765プロのアイドル達とアニメで再会できます!楽しみにお待ち下さい。 #imas #projec…",,13, -110,,1380899493,,"RT @_OfficialAkim: ♬ Rokok Yang Dulu Bukanlah Yang Sekarang, Dulu RM10 , Sekarang Up 12 Ringgit. Dulu Dulu Dulu Perokok Bahagia, Sekarang M…",,21, -111,,1380899493,,Libtards blame Tea Party for shutdown. Yer welcome America! #RiseUp #PatriotsUnite #StopLibtards #ImCute #ncot #tcot #!,,15, -112,,1380899493,,"RT @himybradfordboy: @_Gr_in_ szczerze to nic się nie zgadza xD wiek -14, kolor oczu- brązowe, ulubiony kolor - czarny, ulubiona gwiazda - …",,21, -113,,1380899493,,"RT @TwerkForJustin: FOLLOW TRICK -RT TO GAIN -FOLLOW @ACIDICVODCA -FOLLOW EVERYONE WHO RTS -GAIN LIKE CRAZY -#twerkforjustinfollowtrick",,17, -114,,1380899493,,"RT @Habibies: When you were born, you cried and the world rejoiced. Live your life so that when you die, the world will cry and you will re…",,28, -115,,1380899493,,"@aaaaasukaaaaaa -じゃあサイゼ行く?(^_^)笑",,2, -116,,1380899493,,@RGH0DY @jana_abdullah ههههههههههههههه,,2, -117,,1380899493,,みんなくん付けなのか かわいい,,0, -118,,1380899493,,@fishaessi follback,,2, -119,,1380899493,,おぽぽぽぽぽぽぽう!!!ーー!ぴぽーおおおぽ!!!!,,0, -120,,1380899493,,รู้ป่าวใคร http://t.co/Nq101xcU82,,4, -121,,1380899493,,"luthfinya iya dhiya salsabilanya enggak""@itceem: Salsaaawrs dhiyasalsabilaluthfi hehehe""",,9, -122,,1380899493,,The rioting youths in Mbsa should use their brains not emotions.,,11, -123,,1380899493,,多分威圧感のあるくしゃみなんだろうな,,0, -124,,1380899493,,"inuejulawo taye replied to Samuel Date360's discussion I Gave Him A BJ On Our First Date, Would He Still Respe... http://t.co/oOCx1IaXES",,25, -125,,1380899493,,me separo do amor da minha vida mas não me separo do meu celular,,15, -126,,1380899492,,,,0, -127,,1380899492,,,,0, -128,,1380899492,,,,0, -129,,1380899492,,,,0, -130,,1380899492,,,,0, -131,,1380899492,,@Njr92 :) http://t.co/W7nnZqSEo2,,5, -132,,1380899492,,Probably going to hell for that one time that nun substitute teacher yelled at me and sent me to the office LOL #memories,,23, -133,,1380899492,,http://t.co/RlSuI4KxLT,,4, -134,,1380899492,,@rachel_abby15 we make your day baby girl ? http://t.co/F1y9SgYhYP,,11, -135,,1380899492,,"RT @__mur_____: . - -. - -. - -    》    三.浦.翔.平 NrKr - -    俺が君の居場所に為る -    寶絶対に離れん麝無えよ ? - -    ! ..    Rt呉れた奴迎え - -. - -. - -.",,4, -136,,1380899492,,RT @discasp: @HWoodEnding CAN YOU PLEASE WISH MY FRIEND @glenroyjls A HAPPY 14TH BIRTHDAY PLEASE?!!XX @HollywoodTyler @HollywoodCamB @Holly…,,19, -137,,1380899492,,@soumar1991 مساء الأنوار,,1, -138,,1380899492,,MAYBE,,1, -139,,1380899492,,@VasundharaBJP @drramansingh @ChouhanShivraj @VijayGoelBJP @CVoter just indication of trend.With @narendramodi's support BJP landslide win,,16, -140,,1380899492,,寒い寒い。暖かいシャワー浴びたのに。寒い寒い。,,0, -141,,1380899492,,@littleofharold pronto,,2, -142,,1380899492,,This is not a list of reasons to read the bible http://t.co/o1np7jd8WI #bible,,16, -143,,1380899492,,,,0, -144,,1380899492,,もう1回ききたい!笑,,1, -145,,1380899492,,la tua celebrity crush? — ian somerhalder. http://t.co/jikyDEWoON,,10, -146,,1380899492,,Np : Best song ever - One Direction :))))))),,6, -147,,1380899492,,RT @BuketOzdmr: Beyler bugün eve gidemiyoz hayırlı olsun @almancik @bbkanikli,,12, -148,,1380899492,,야갤중계 ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ,,0, -149,,1380899492,,Lmao!!! RT @miskoom: They have put my guy in camera zone. Lmao,,12, -150,,1380899492,,Got my first referral woho senior year,,7, -151,,1380899492,,@myjkys_08sf おお?,,1, -152,,1380899492,,@VeraVonMonika even UK has sun today :-) @geoff_deweaver @ThitiaOfficial @DonDraper_NY @wade_corrina @MarlenaWells @josephjett @JZspeaks,,13, -153,,1380899492,,I duno what it is but you just my type 😋,,10, -154,,1380899492,,@xxsanox 豪快なのにお肉はちっちゃいってのがまたステキね♥︎,,1, -155,,1380899492,,Yayyyy I just bought my mom and dad so much gear 😍💜💛 #lovethem,,12, -156,,1380899492,,Ostéopathe de merde grouille toi,,6, -157,,1380899492,,@IsmiFadillahRzy sampai bertemu di alam mimpi yah..haha,,8, -158,,1380899492,,"RT @untidm: コーナーキックの時マークついてた奴に点を決められた時に、みんなの視線が怖い。 -#サッカー部あるある",,2, -159,,1380899492,,http://t.co/JUifcH9fXe где купить экстракт зеленого кофе,,4, -160,,1380899492,,I got da moneeeyyyyyy,,4, -161,,1380899492,,@vvip_jihyung omg?,,2, -162,,1380899492,,"どうせ行くなら一番美味しいもの食べたい!デート!合コン!女子会!での注文の参考に!「金の蔵jr」人気メニューランキングBEST10 -http://t.co/XCiXxigsBC",,6, -163,,1380899492,,"@ria_ash1217 多分知らないかなー? -大丈夫だよ〜聞き専門でも! -一応俺の rain-t ねー(´ω`)",,3, -164,,1380899492,,"@A_xoxo_red - -チョンスジョンのお迎え",,1, -165,,1380899492,,RT @alajavivi7: Os espero esta noche en el Voy Bien señores!!!! http://t.co/c306QYYh7U,,16, -166,,1380899492,,RT @perfxctpayne: poseeeeey en perm avec juliette,,7, -167,,1380899492,,"RT @bLoOdyBeEtRut85: Πήγα για τσιγάρα, και γύρισα. Τέτοιος μαλάκας.",,2, -168,,1380899492,,"القبض على اللاجئين الفلسطينيين في الإسكندرية و قتلهم في البحر -#وبكرة_تشوفوا_مصر -#السيسي_خائن",,3, -169,,1380899492,,"@narryykissme thank you so much babe, please can u send my username to niall? it would mean everything to me♥",,20, -170,,1380899492,,RT @ActorLeeMinHo: On air. http://t.co/6cJGMoYCD9 http://t.co/7evlV6m5Ua,,12, -171,,1380899492,,@mdr58dncdm うぇーーーーーい!!!観よう!観たい!,,1, -172,,1380899492,,"RT @RT_ARAB_RT: 🔲〰◾〰◾〰◾〰🔲 - -➊ فرصتك ✔ -➋ لزيادة متابعينك✔ -➌ رتويت✔ -➍ فولومي @RT_ARAB_RT ✔ -➎ فولوباك✔ -➏ اضافة من عمل رتويت✔ -➐ فولوباك للجميع✔ -…",,3, -173,,1380899492,,@mafasmk so sry bro ur kerala boy gone !!,,8, -174,,1380899492,,RT @TheXFactorUSA: @ddlovato also... #GLEEKS + #LOVATICS = #GLOVATIKS (and will probably take over the world),,14, -175,,1380899492,,Bazıları sosyal sorumluluklarin altinda kalmis sosyal devletten uzaklasmis;al sadaka ver oy al kaputulasyon ver oy,,17, -176,,1380899492,,RT @gamthestar: Gravity หนังดีที่กลั้นหายใจทั้งเรื่อง ดูIMAXยิ่งเพิ่มความตื่นเต้น ภาพสวยมากกกก ลุ้นมากกกก คือแนะนำมากๆ ดี๊ดีค่ะคุณผู้ชม,,4, -177,,1380899492,,RT @Mooomoo3333: : بنت المدينة أشد الإناث فتنة في لهجتها عذوبة وفي غنجها أعجوبة تعجز حروفي عن الوصف بل هُنَ أجمل من ذلك وكفى♡❤”,,2, -178,,1380899492,,Uhuk makasih uhuk RT @_Reiruki: Galah uhuk emng uhuk manis uhuk (?) RT Ricoziel: Kaga uhuk kok uhuk (cont) http://t.co/rH6dcTwu83,,22, -179,,1380899492,,相性悪いのかなぁ,,0, -180,,1380899492,,RT @DianaYourCousin: No es guapa ni na mi @EstherCabreraa :) http://t.co/Tbsxt0DYTv,,13, -181,,1380899492,,RT @EXO_FANBASE: 131004 Xiumin @ The 18th Busan International Film Festival Blue Carpet {cr. melting} http://t.co/nu9i4bxupj,,18, -182,,1380899492,,海より深く納得>RT,,1, -183,,1380899492,,"@H21uw -ありがとうございます!♡",,1, -184,,1380899492,,"@taigaohba -分かる。 -ほんとぐっすり寝させてください",,1, -185,,1380899492,,FC CRIADO PARA ROSA CATERINA DE ANGELIS.,,7, -186,,1380899492,,"Dhan :( gitu ya ? Oke @ardhankhalis: @yraudina gue udah balik beb, kenapa emg?""",,12, -187,,1380899492,,"Жизнь в темпе бешеном , петли не вешали мы",,0, -188,,1380899492,,Niyaya ni DJ si Kath sa isang room para kausapin at i-comfort. Naks! 😊💕 http://t.co/CM02frV3N9 -Joche,,19, -189,,1380899492,,ชอบผช.แบบเกรท วรินทรอ่ะ ขี้เล่นๆ เจ้าชู้นิดๆ เป็นผู้ใหญ่ด้วย ดูพี่แกเล่นหนังก็เคลิ้ม หลงเบย 😘,,0, -190,,1380899492,,"@AndiDarfiantoPD iyo2, sembarang ji, traning moo",,6, -191,,1380899492,,"Today stats: One follower, No unfollowers via http://t.co/tmuKc0tddl",,11, -192,,1380899492,,David Beckham: I was always going to second guess decision to retire from playing football: Exclusive intervie... http://t.co/IaKf4St5B9,,21, -193,,1380899492,,"@jorgeheredia85 ""EL PREPAGO"" UNICA FUNCION.HOY 20H30. FEDENADOR.ENTRADAS A LA VENTA FEDENADOR Y TEATRO DEL ANGEL. INFO:2380585. VALOR $20,o",,22, -194,,1380899492,,電車ぱんぱんすぎて腰がやべー(;_;),,0, -195,,1380899492,,All These Exploding Cars Will Make You Feel Different About Burning Teslas: A Tesla caught fire yesterday. Thi... http://t.co/c8XlVp8uLi,,22, -196,,1380899492,,Se em 2009 nos fizesse a campanha de 2008 e de 2010 eramos campeões POR QUE DEUS POR QUE DEUSSS POR QUEEEEEEEE,,23, -197,,1380899492,,"It's the 'Dark Star'/ 'Black Sun' which is Saturn. And, the Colorful band around it is Saturn's rings. http://t.co/p3975DtSlg",,24, -198,,1380899492,,Minha Mãe recebeu um Bilhete da diretora da escola '' Reação da minha mãe '' : O que eu pago uma das melhores escolas Particulares pra que,,27, -199,,1380899492,,じぶが書いた言葉からは逃げられませんって前に教授がいってたけどその通りだなー,,0, -200,,1380899492,,今夜はブランキージェットシティ聴いてますーん。,,0, -201,,1380899492,,まえぬうううううううううううう雨,,0, -202,,1380899492,,Évelin marcou seu Tweet como favorito,,6, -203,,1380899492,,동생도 좋아요. 그러니까 나만 두고 가지마.,,0, -204,,1380899491,,,,0, -205,,1380899491,,,,0, -206,,1380899491,,,,0, -207,,1380899491,,,,0, -208,,1380899491,,,,0, -209,,1380899491,,,,0, -210,,1380899491,,,,0, -211,,1380899491,,,,0, -212,,1380899491,,Bush teacher exposed! Lmfao http://t.co/JWhaXLIgqM,,8, -213,,1380899491,,,,0, -214,,1380899491,,,,0, -215,,1380899491,,@KPamyu2 まほパーフェクト♡,,1, -216,,1380899491,,,,0, -217,,1380899491,,"{ما خلقنا السماوات والأرض وما بينهما إلا بالحق وأجل مسمى والذين كفروا عما أنذروا معرضون} [الأحقاف:3] -http://t.co/fXuz2BeCx4",,5, -218,,1380899491,,We're just rlly in love http://t.co/KIwbVLBqOO,,10, -219,,1380899491,,"<3 <3 <3 ""@OFFICIALBTOB #BTOB #THRILLER 마지막 방송을 시작한 #비투비 멤버들의 떼샷 ver.2 Happy미카엘1004day! http://t.co/6nF0a8TXeW""",,17, -220,,1380899491,,Canım canım :) @pinaruzkuc http://t.co/T3N9x9DU6E,,9, -221,,1380899491,,,,0, -222,,1380899491,,@MLB Cardinals Braves Tigers Red Sox #TGI4Day,,7, -223,,1380899491,,@mf_hp えー!むっちゃんの大好きな人物だよ?,,1, -224,,1380899491,,"RT @mohmadbinfetais: ″خَدَعك من أخبَرك -بأنّ التّجاهُل يجذب الأنثى ويَزيد تَعلّقها بك.! -فأكثَر ما تَحتقِر المرأة ""التّجاهُل - -#كلام_جميل",,3, -225,,1380899491,,"¡Viernes! Y ¡hoy toca! -#HoyToca Van Gogh Pachuca! - -Puedes reservar vía MD!",,13, -226,,1380899491,,"ボスがなかなか倒せないヽ(`Д´)ノ -みんなもコレはじめて殴ったらいいよ ´∀`)≡〇)`Д゚) -【http://t.co/ntpSE5PnqV】",,4, -227,,1380899491,,They got it'$,,3, -228,,1380899491,,RT @Niken_adisti: @Salsabilathlita @muhammad13adtyo hha :D,,6, -229,,1380899491,,@seonai_ thanku gal! 💞 Xx,,4, -230,,1380899491,,@maaikewind Dank je wel! 15 oktober weet ik meer.,,9, -231,,1380899491,,"Y es un hecho triste, mi naturaleza. Mi destino insiste con tenerte cerca.",,13, -232,,1380899491,,RT @matty_parsons: Some proper chavs in Bradford.....,,7, -233,,1380899491,,,,0, -234,,1380899491,,"RT @oursupaluv: Angels, have you wished Chunji @wowous a happy birthday yet? It seems he's online! #happy21stchunji",,18, -235,,1380899491,,@unxcorn_ did u ever cut yourself ?,,6, -236,,1380899491,,@Fatima_Haya eeecht niet... Gij straalt altijd 🙊,,6, -237,,1380899491,,@broken_star_ he hasn't been in for three days now! At least that means I didn't miss anything today ;) what happened in English!!!,,24, -238,,1380899491,,@Salgado_lb 봇주님도 감기시라니88 푹 쉬셔요...!,,2, -239,,1380899491,,"Si anda rondando la felicidad, no tengas tanto temor de cambiar",,11, -240,,1380899491,,I really could walk to waffle House but no,,9, -241,,1380899491,,"When I get rid of these social networks, who you gone want me to tell then ??... I'll wait on that one...😐💭",,22, -242,,1380899491,,RT @pittsavedme: #KCAARGENTINA #PETERLANZANI,,4, -243,,1380899491,,"RT @_cococruz: FIESTA PROMO HRT 2013!!!! NO TE QUEDES AFUERAAA, QUEDAN LAS ULTIMAS PULSERAS",,14, -244,,1380899491,,http://t.co/MIgvnX7TW3 физикадан дипломды ж мыстар http://t.co/MIgvnX7TW3,,8, -245,,1380899491,,@wtknhey わかる,,1, -246,,1380899491,,"Hamla means Attack, not pregnant wala hamla. ;-)",,7, -247,,1380899491,,"A kid in my driving class just took off his pants in the middle of the room. Okay then, that's cool",,22, -248,,1380899491,,憂鬱やな〜自己嫌悪,,0, -249,,1380899491,,13 <3 blue *__* @loretun13,,6, -250,,1380899491,,@Charli_FCB are you serious?!! Omg that's ridiculous!! Didn't know the Uni was open till so late!,,18, -251,,1380899491,,DIGO MILANESAS JAJAJAJAJJAA QUE PAJERO QUE SOY,,7, -252,,1380899491,,"@1125yik 気分wwww - -暇人かwww",,3, -253,,1380899491,,X Factor Noww,,3, -254,,1380899491,,@Risa_v_rock 声優陣いつもいいポジションよなw,,2, -255,,1380899491,,ショボン,,0, -256,,1380899491,,@AsNana_RM is that Kevin? :3,,5, -257,,1380899491,,oeps dierendag gauw zien dat ik Rosie kan pakken om effe te knuffelen.....,,13, -258,,1380899491,,@arvachova026 ты всю дорогу шла одна ?,,1, -259,,1380899491,,@DopeAss_Chyna just texted u fat girl,,6, -260,,1380899491,,@shiina1230  いっこだけ言い方微妙にちゃうやつあってわろたww,,2, -261,,1380899491,,Omwt appie w thesie en daarna na theess.,,8, -262,,1380899491,,É impressão minha ou o Twitter mudou alguma coisa??!!,,9, -263,,1380899491,,Ela olha o céu encoberto e acha graça em tudo que não pode ver..,,17, -264,,1380899491,,@Yoboth_b2st จริงนะ,,1, -265,,1380899491,,#Во Владимире предприниматели жестоко избили трех полицейских,,0, -266,,1380899491,,"RT @bani_saja: ba'unggut ba'unggut ""@Ujankwara: @syirajmufti sdh""",,9, -267,,1380899491,,RT @Bailey_brown4: Why did I not know more than half of the stuff on that AP chem test!? #retakes?,,19, -268,,1380899491,,"【ワクワク】女性の方はまず掲示板へ投稿しましょう!次に男性から届いたメールを見て、自分の理想の男性はいるか、どの男性とメールやり取りを始めるか決めましょう。(^-^)v -◎http://t.co/vlu0iRKzdR【登録無料】",,5, -269,,1380899491,,家賃が大幅値上げされるようなら引っ越しもありよね、と検索してみたものの、結構厳しいなーと思い知る。,,0, -270,,1380899491,,11:11,,2, -271,,1380899491,,#serveur restaurant 75 GARE DE LYON BERCY: EMPLOYE POLYVALENT: Vous etes disponible et pret meme à la dernière... http://t.co/4xITYPCb51,,22, -272,,1380899491,,キルラキルってやっぱグレンラガン作った人たちが作ってるのか~やっぱこのチームはいろいろとセンス感じる!!,,0, -273,,1380899491,,ah porque me rtw eso o.O,,7, -274,,1380899491,,足先の冷えがww,,1, -275,,1380899491,,あ、年くった。,,0, -276,,1380899491,,日本海のシラス(^O^),,0, -277,,1380899491,,"antonimnya :p eh yg terakhr jangan! RT @hvsyawn: -_- kok RT CIC_BebyChae: kai pesek jelek item idup, puas? wkwk RT hvsyawn: tapi",,22, -278,,1380899491,,"POR CIERTO, ME HAN PUESTO UN PUTO 9 EN UN TRABAJO DE PLÁSTICA. OLE.",,15, -279,,1380899491,,"É #BigFollow, imagina ter mais de 20.000 followers por apenas R$ 750,00? #DEMIWentPlatinumInBrazil: -bigfollow.net",,16, -280,,1380899491,,rocio esta re triste porque nunca gana,,7, -281,,1380899491,,"ながもんさん -20時間の入渠に入りました",,1, -282,,1380899490,,,,0, -283,,1380899490,,,,0, -284,,1380899490,,,,0, -285,,1380899490,,,,0, -286,,1380899490,,,,0, -287,,1380899490,,,,0, -288,,1380899490,,,,0, -289,,1380899490,,,,0, -290,,1380899490,,,,0, -291,,1380899490,,i officially ship krisbaek now! \O/ http://t.co/z1BB7X8RpP,,10, -292,,1380899490,,,,0, -293,,1380899490,,Mending berangkat deh malem ini~,,5, -294,,1380899490,,@YSJSU what's on at the SU tonight?,,8, -295,,1380899490,,@remembrance0810 ありがとう(。-_-。),,2, -296,,1380899490,,,,0, -297,,1380899490,,"..... #절망 -아 존못임 ㅠㅠ http://t.co/UOnpEYPsdW",,4, -298,,1380899490,,@ka_iskw 宣言したから起きれそうじゃんヽ(・∀・)ノ笑,,1, -299,,1380899490,,http://t.co/8lNH2jyjxh,,4, -300,,1380899490,,,,0, -301,,1380899490,,"Menurut lo? ""@Lok206: Ini bukan lagu kan? ""@nuningalvia: Don't you ever forget about me when you toss and turn in your sleep I hope it's",,27, -302,,1380899490,,RT @KidSexyyRauhl: #BEAUTYANDABEAT IS A MAKE UP LINE OMG 😍 http://t.co/qLL4JEQfPW,,13, -303,,1380899490,,http://t.co/qqchmHemKP,,4, -304,,1380899490,,RT @moojmela: The study of fruits is known as Pomology.,,10, -305,,1380899490,,"Aww excited na ako... xD -#OneRunOnePhilippines http://t.co/H1coYMF1Kp",,10, -306,,1380899490,,¿Pocos Seguidores? [█ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅] 17% Obten Seguidores siguiendo a ► @granhijodeperra y ganas hasta 5O Seguidores,,13, -307,,1380899490,,@thewolf6 @M_ALHMAIDANI البركة فيك اجتهد وورنا شطارتك 😉,,2, -308,,1380899490,,@kamenriderw1006 エロい,,1, -309,,1380899490,,RT @bokaled_q8: واللـّہ لو تعطيهم من الطيب أطنان تبقى ( النفوس الرديہ) رديہ,,2, -310,,1380899490,,@Giuli_liotard que sos voa,,4, -311,,1380899490,,@ControlSrk druže je l' se ti drogiraš?,,8, -312,,1380899490,,学校前の小川のやる気のなさ #二水あるある,,0, -313,,1380899490,,THE BOYS KILL ME EVERYDAY,,5, -314,,1380899490,,#Normal RT @eguierootz Ea tiraera temprano aqui,,7, -315,,1380899490,,@sukiyaki86 フハハハッ,,1, -316,,1380899490,,"RT @n_almisbah: ذبح الأضاحي يتم بالتعاون مع الأمانة العامة للأوقاف وإدارة مسلخ محافظة حولي -1/5 -http://t.co/8lXe2e3FBQ",,8, -317,,1380899490,,5 Articles needed urgently | Academic Writing | Article Rewriting … http://t.co/4qaCbVNKP7 #copywriting,,13, -318,,1380899490,,@LauraneMolac t as vu !!,,4, -319,,1380899490,,まっきん&来来キョンシーズわろた,,0, -320,,1380899490,,#bridetips Lake Michigan Engagement from Kristin La Voie Photography http://t.co/I9tskzI6qI,,13, -321,,1380899490,,RT @Genesyslab: Top 5 Mistakes To Avoid When Moving Your Contact Center To the Cloud | Oct 9th 2PM ET / 11AM PT >> http://t.co/f1LH3sxB8f <…,,28, -322,,1380899490,,"CGI 3D Animated Short HD: ""I, Pet Goat II"" by - Heliofant(+ 再生リスト): http://t.co/LA2zJYuWbV @youtubeさんから",,16, -323,,1380899490,,ME VIOLAN LA OREJA. http://t.co/TgpGfC3i94,,8, -324,,1380899490,,Piro gente.,,2, -325,,1380899490,,@emdiemey solangs keine apfelpfannkuchen sind bleiben bratkartoffelz besser,,8, -326,,1380899490,,RT @JONBOOGIEE: I don't think y'all ready. #musicmonday @justinbieber http://t.co/FA0w0Z1bup,,15, -327,,1380899490,,RT @ohgirIquotes: I'm still in love with you.,,9, -328,,1380899490,,"RT @stargirlkah: @lloydmahoned eu te amo amiga,eu ja vou agora amo vc ♥",,13, -329,,1380899490,,Pues vamos ha hacer algo de tarea:),,7, -330,,1380899490,,@yumeminemu レシピ教えて♡,,1, -331,,1380899490,,the bling ring,,3, -332,,1380899490,,"ela ama ele ,ele ama ela , eles se amam , tudo mundo sabe , menos eles -#boa tarde",,16, -333,,1380899490,,@Atsinganoi Victimless!,,2, -334,,1380899490,,"RT @shinema7253: 伝説のサスペンス映画 -アイデンティティー http://t.co/ZP5ciPB3km",,6, -335,,1380899490,,سبحان الله وبحمدهِ عدد خلقهِ ورضى نفسه وزنة عرشه ومداد كلماته.,,0, -336,,1380899490,,"@nyemiliamolins entra aquí https://t.co/7sG2URtcJ6 … … ve a ""ver galería"", luego, busca ""Franciel herrera de jesus"" y vota por mi. GRACIAS!",,23, -337,,1380899490,,"RT @PuisiDariHati: Silap aku juga -Terlalu menyayangimu, dalam-dalam -Bukan ini mahu aku, tapi kalau ini untuk aku -Ya, terima kasih, semuanya…",,22, -338,,1380899490,,Mi madre vaya risazas.,,4, -339,,1380899490,,bakit kaya ako paboritong papakin ng mga langgam,,8, -340,,1380899490,,RT @diarykecilkuu: Tuhan telah menciptakan bahagia untuk aku lewat kamu :),,10, -341,,1380899490,,@tonia_ysmgo 私の意味不明な連想に反応ありがとうございます。toniaさんがすごいってことだったんだけど自分が読んでも意味わかんない。レス不要~^^;,,2, -342,,1380899490,,เป็นผู้หญิงที่ The badest female กันทั้งคู่เลยนะครับ 555555 #thesixthsense2,,5, -343,,1380899490,,Duit? Kaga butuh | pacar? Kaga penting | lalu? | gue lagi butuh tukang pijat karna dia lebih penting. Ahahaa,,17, -344,,1380899490,,"4巻読了なので、復習にガーシュウィン「ラプソディ・イン・ブルー」とラフマニノフ「ピアノ協奏曲 2, ハ短調, Op. 18 - 1.」を聴いてみる…。",,5, -345,,1380899490,,RT @Faeez_petak: Done with fb.. thanks to all the wishes again.. hamoir 500org yg post di fb telah ku reply.. harap xde sape yg ketinggalan…,,25, -346,,1380899490,,¿Pocos Seguidores? [█ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅] 17% Obten Seguidores siguiendo a ► @granhijodeperra y ganas hasta 5O Seguidores,,13, -347,,1380899490,,Mais quelle journée de kk. Vive le WE.,,9, -348,,1380899490,,I just added this to my closet on Poshmark: Juicy Couture bracelet. http://t.co/089qVTTfK8 via @poshmarkapp #shopmycloset,,19, -349,,1380899490,,"RT @medaGrumpyCat: Ghost hunters: Can you communicate with us? *Door creeks* Ghost hunters: Oh, so your name is Laura??",,19, -350,,1380899490,,RT @AFuckingPooh: @lovelyteenager2 xD pahahahahah,,5, -351,,1380899490,,RT @Ff3Raguna: #起きてる人rt,,3, -352,,1380899490,,RT @CynthiaIvette_: Happy early Birthday🎉🎈🎊@RuthlessE_ thanks for the cupcake😁👌,,10, -353,,1380899490,,http://t.co/is4V8MQxKL,,4, -354,,1380899490,,学校に泊まってたから、バスなの忘れてた。この時間、バスない\(^o^)/オワタ,,1, -355,,1380899490,,¿Pocos Seguidores? [█ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅] 17% Obten Seguidores siguiendo a ► @granhijodeperra y ganas hasta 5O Seguidores,,13, -356,,1380899490,,@ljoeljoe1123 yahh today is your wife birthday. #happy21stchunji,,8, -357,,1380899490,,"Indahnya berbagi dengan Anak Yatim untuk Pembangunan ""KOBONG ANAK YATIM"" | aksi @ Rp.10.000,- http://t.co/e37MFyK8GU",,18, -358,,1380899490,,"vou me arrumar, e ir beeeeijú :*",,6, -359,,1380899490,,明日(今日)は木崎湖をに行く予定,,0, -360,,1380899490,,気持ちよかった,,0, -361,,1380899490,,"esto me parecio muy tierno, fue amor a primera vista!! -10051 ByakuranxShoichi - ->Karina< http://t.co/AZiYNglm5v",,19, -362,,1380899490,,"Hay que armar una bicicleteada (?) tuitera, que recorra la ciudad tomando fernet en los bares emblemáticos.",,17, -363,,1380899490,,eating organge,,2, -364,,1380899489,,,,0, -365,,1380899489,,RT @MyersCorii: Home early,,4, -366,,1380899489,,Аватария в одноклассниках http://t.co/TjcB0vckIm,,4, -367,,1380899489,,,,0, -368,,1380899489,,,,0, -369,,1380899489,,RT @yuuki820: U-16の快挙を喜びつつチーム東京振り返り。スレイマンの怪我で急遽招集されたサワくん(ちなみに正しくはトカチョフ)は13得点11リバウンド。簡易だから出てないけどレイアップのブロックも上手かった。髪が伸びてるのも今日で見慣れましたw http://t…,,8, -370,,1380899489,,@03_7_3 @km_72どんなまいでもかわいいから大丈夫♪,,2, -371,,1380899489,,"@fahmykun kesimpulan yg ditarik? Iya dr yg udah tjd dan/atau terbukti. - -Untuk kasus gitu, itulah gunanya pemahaman konsep sm adanya teori…",,22, -372,,1380899489,,cansada,,1, -373,,1380899489,,Sick and tired of you r shit I'm done,,10, -374,,1380899489,,“@GoGoHoratio: @out10emma @GoGoGorillas @AlanGorilla @_BlingKong @CatchMeWhileYo1 I'm going to live in a beautiful garden! :)” Good for you!,,18, -375,,1380899489,,Mackin' on Harry 😘 @ Oxford Street http://t.co/YG8SLWEeVM,,9, -376,,1380899489,,This lightweight read. http://t.co/3hymPoSi2R,,7, -377,,1380899489,,@vin_bio_ardoneo bienvenue merci de suivre nos news!,,7, -378,,1380899489,,Hj a prof. Eloiza quase me mato rindo,,8, -379,,1380899489,,"Wkwk :D tau aja kmu din :P ""@didinfabregas: kalo si @wadiep mah penasaran itu tuh, haha jaim ajj dia nggk mau ngaku, wkwkkwkwk @himieumy""",,24, -380,,1380899489,,j'en vais le dire mtn,,6, -381,,1380899489,,3 people followed me // automatically checked by http://t.co/oMjDTMTE3s,,11, -382,,1380899489,,"RT @itsnarrycrew: RT if LIAM, HARRY, NIALL, ZAYN, AND LOUIS are NOT following you! and i'll dm them to follow you! but you MUST be followin…",,27, -383,,1380899489,,"RT @heyyouapp: » http://t.co/Kvu5w9Hd5j @heyyouapp Zombie Fitness PRO - aerobic,strength training workout app | #Health & Fitness #iPhone #…",,19, -384,,1380899489,,「立てよ、立て、セオデンの騎士らよ! 捨身の勇猛が眼ざめた、火と殺戮ぞ! 槍を振え、盾をくだけよ、剣の日ぞ、赤き血の日よぞ、日の上る前ぞ! いざ進め、いざ進め、ゴンドールへ乗り進め!」 ―セオデン,,0, -385,,1380899489,,Having tea cooked by Emily this evening :),,7, -386,,1380899489,,@JBGill I dont think I've sobbed while watching a music video before. It is also a great song.,,19, -387,,1380899489,,@bugyo_mi Oh…!跡部様にかっさらわれた…。そして7日は手塚誕なんで…!!,,2, -388,,1380899489,,@ilivelifedaily @CMB_Yungblack32 @Nikenando25 that nigga lips look like he having an allergic reaction. Looking like will smith in Hitch 😳.,,19, -389,,1380899489,,@kituinoippattt こんばんわ #fxch #usdjpy http://t.co/IkeoJJlMxGで実況中,,7, -390,,1380899489,,"اُمِي وأم من يقرأ : جَعلكم الله مِن السَبعِينْ ألفاً ؛ الذَينَ يَدخُلُونَ الجَنةّ بَلا حِسَاب ولا سابق عذاب ♥ - -#ساعة_استجابه""",,1, -391,,1380899489,,@daddy_yankee Buen día Sr. Ayala :),,6, -392,,1380899489,,Parce que ma mere va changer de iPhone et je veux avoir son iPhone mais elle dit que je peux pas parce que je dois avoir un forfait-,,28, -393,,1380899489,,"""@dianadeanfi: Jangan negative thinking atuh ih! asli gasukaa!!!""",,8, -394,,1380899489,,Mas nunca mais é 16:45?,,5, -395,,1380899489,,"Tamires: ""olha lá o Pichani!"" Huehue",,6, -396,,1380899489,,アレン「あ、いたいた。」デビット「んあ?弟子じゃねーか。」ジャスデロ「ヒッ、何か用?」アレン「僕のバイト先で、ちょっと不足がありまして…短期で人材募集してるんです。よかったら来ませんか?」デビット「んー…今月割と手一杯…「まかないありの日給一万円(ぼそっ)」行く。やる。」,,0, -397,,1380899489,,,,0, -398,,1380899489,,kawaii desu ne :(,,3, -399,,1380899489,,الاف مبروك للامه العيناويه والاداره والاعبين وكل من ينتمي الي الصرح العيناوي ع الفوز,,0, -400,,1380899489,,@ninoyui_a 意外と田舎なんだよ〜(笑),,1, -401,,1380899489,,"Eu muito mal.. -(cólica)",,5, -402,,1380899489,,リミックスアルバムかっこよ過ぎるがなあああ!,,0, -403,,1380899489,,"i hate that stupid old burgundy truck, you never let me drive. you're a redneck heartbreak whos really bad at lying.",,22, -404,,1380899489,,アルティメットか何か忘れた、∞ランクでSランク帯のがよく出るみたいのはあったけど今作のドロ率だと悟りを開くかエリハムになるか,,1, -405,,1380899489,,"graças a deus, sexta feira já çç",,7, -406,,1380899489,,#kangsomm ชอบทำให้ยิ้มตามอยู่เรื่อยเด็กบ้าเอ้ยยย >///<,,3, -407,,1380899489,,,,0, -408,,1380899489,,Kowangg memangggg osammmmmm :) :*,,3, -409,,1380899489,,サークルチェックしたいもん,,0, -410,,1380899489,,"Target Deals: Sale Week of October 6 via http://t.co/nb367jX06n - Before you shop, check out ... http://t.co/YEIWi5ylL6",,21, -411,,1380899489,,ごっちさんいけめんんんんんん( ;∀;),,0, -412,,1380899489,,Piction oh piction xD,,4, -413,,1380899489,,"#96persen Penyelam tidak akan bisa kentut saat menyelam, pada kedalaman lebih dari 10 meter.",,14, -414,,1380899488,,,,0, -415,,1380899488,,,,0, -416,,1380899488,,,,0, -417,,1380899488,,,,0, -418,,1380899488,,,,0, -419,,1380899488,,,,0, -420,,1380899488,,,,0, -421,,1380899488,,"俺の部屋にバッタがぁぁぁあぁあ!!! -キモすぎーーーーーーー! -うぉぉぉおぉぉお!!! http://t.co/tcgHPWgKaT",,4, -422,,1380899488,,,,0, -423,,1380899488,,,,0, -424,,1380899488,,,,0, -425,,1380899488,,,,0, -426,,1380899488,,@MarelysQuintero #Viernesdebelloszapatosypies que no falte tu foto amiga mia,,9, -427,,1380899488,,,,0, -428,,1380899488,,Acting like I've finished the uni term! #3weeksIn,,9, -429,,1380899488,,@DiilennyDuran_ tato ;$,,2, -430,,1380899488,,@LeVraiHoroscope Les Taureau on toujours raison ! ;),,6, -431,,1380899488,,,,0, -432,,1380899488,,RT @dear_my_deer: 131003 LUHAN INDEX UPDATE♥(2pics) #LUHAN 루한이 또 이러케 멋있쟈나 오빠쟈나 → http://t.co/lTMrB1swQR http://t.co/ci57MDOjca,,16, -433,,1380899488,,RT @reham54696: هل تريد السعادة ؟ دعني اضمك قليلاً وستنسى حياتك ~,,2, -434,,1380899488,,@CouniyaMamaw mdrrrrr,,2, -435,,1380899488,,"RT @Fun_Beard: A year ago today my beautiful wife attempted suicide. People love you. There IS help: -1-800-273-8255 -http://t.co/6njoVkxVba -…",,25, -436,,1380899488,,@ayakasa_36 @momota_ro そうなんだよね でもそうもいかないのが人生だからマタニティマークつけてるんじゃない?,,2, -437,,1380899488,,@KimDibbers the pillow should be nigel ;),,6, -438,,1380899488,,RT @slam173: صاااااادوووه 🙈🙉🙉👅 http://t.co/RCFyXTJFw9,,6, -439,,1380899488,,RT @Colonos_Cs: Vean a los asistentes a la #ViaCatalana: peligrosos radicales q desean romper la convivencia y fracturar la sociedad. http:…,,21, -440,,1380899488,,"""@TalaAltaweel: احب وقتي معك اكثر من اي شي ثاني..""",,1, -441,,1380899488,,@chairunnisaAG ahluu... temen lo noh ah,,6, -442,,1380899488,,Degreee kat luar negara . Start a new life hehe,,9, -443,,1380899488,,@midokon407sj ありがとうございます。本来は暑いのダメなんで涼しいのwelcome!!なんですけどね。これだけ急激に涼しくなると、それはそれでしんどいです(^^; お休みなさいませ~☆,,2, -444,,1380899488,,RT @Fact: McDonald's hamburgers contains only 15% real beef while the other 85% is meat filler & pink slime cleansed with ammonia which cau…,,25, -445,,1380899488,,RT @elsya_yonata: @reginaivanova4 @NovitaDewiXF @chelseaolivia92. Precious Moments Eau de Parfum .. ID Line : elsyayonata(msh bnyk bermacam…,,16, -446,,1380899488,,"RT @TuiterHits: - ¿Es aquí la reunión de poetas violentos? - -- Bienvenido, -toma asiento -y como hagas ruido -te reviento.",,19, -447,,1380899488,,@Tech_NIQ_ue Thatsssss Crazyyyyyyy ,,3, -448,,1380899488,,"Wkakakak,make up dlu cyiinn""@SukartiPutri: Aku cinta, tapi gengsi ~""",,10, -449,,1380899488,,@GummyRebel will pray fr you mann ! Thiss time kau cmfrm pass witb flying colours lahh .. :) where you ?,,17, -450,,1380899488,,abis ngadep laptop cuci muka jadi segerr ¤(^_^)¤,,8, -451,,1380899488,,"Bence kışın en güzel yanı; kahve, yatak, film üçlüsü.",,12, -452,,1380899488,,Siiiike :p,,2, -453,,1380899488,,@LaloSaenger wow yo amo a John Mayer y que te guste a ti hace tu musica perfecta,,17, -454,,1380899488,,[名古屋イベント] 動物フェスティバル2013なごや http://t.co/iFfaFxwimJ #Event_Nagoya,,6, -455,,1380899488,,RT @YldzOguz: Yargıçlar Sendikası Başk. Ö.Faruk Eminağaoğlu'nun da geziden dolayı meslekten ihraç ve 11 yıla kadar hapsi isteniyor http://t…,,26, -456,,1380899488,,"RT @shona_0507: *はるちゃん* -・優しい -・錦戸 -・最強eighter - -雑www",,4, -457,,1380899488,,Slmtketemubskyaaaa❤!,,1, -458,,1380899488,,,,0, -459,,1380899488,,@yukkuri_bouto 気をつけて帰ってくださいね(´・ω・)背後から見守ってま(ry,,2, -460,,1380899488,,RT @TeamPusongBato: Swerte mo. Iniyakan kita.,,6, -461,,1380899488,,Amr Diab - Odam Oyounak عمرو دياب - قدام عيونك http://t.co/dSJIM4IIaX,,8, -462,,1380899488,,#BringBackMoorman #BillsMafia,,2, -463,,1380899488,,try lah @rynnfreaxy,,3, -464,,1380899488,,"RT @TitsTatsAssKink: →#PussyDayEveryDay #GreatAss #FingeringHerAss ◄ » #Ass_TitsTatsAssKink -#PicGods «Tits♦Tats♦Ass♦Kink» http://t.co/xObqL…",,15, -465,,1380899488,,@afiqahhamidi96 ohh pkul brp kau pi?,,6, -466,,1380899488,,"Pharmacy Staff Pharmacist - Decatur, TX http://t.co/sZijNJnbDY",,9, -467,,1380899488,,Haaa yelaaa qiss @QJaine,,4, -468,,1380899488,,@secretakz ぜ、ぜってーかわいくねえすから 大人のなでなでっつうのは〜、女の子とかがやるよしよしみたいのじゃなくてこう、くしゃってやるやつっすよ!ほらやるじゃん男が女にさ…こう、くしゃって…あれっすよアレ,,1, -469,,1380899488,,RT @supertud: มันเป็นโมเม้นหนึ่งที่ใครๆก็เคยรู้สึก.. http://t.co/wChE3gy3kg,,6, -470,,1380899488,,♫ In time it will reveal ♫ That special love that's deep inside of us ♫ will all reveal in time ♫ #NowPlaying http://t.co/hiGI3uSejG,,24, -471,,1380899488,,RT @MonkeyJo_: @maribellymora okay! When it syops raining. Tomorrow night?,,10, -472,,1380899488,,11:11 peace of mind,,5, -473,,1380899488,,"Aml ♡ - - حِينْ يسِألوُنيَ عٌنكك : سَ أقوُل سعادهہ دخلت في حياتي ولا اريدهآ أن تزول ....(=| <3",,3, -474,,1380899488,,wskqwsoidkiejdoqjdijsak,,1, -475,,1380899488,,@nuratiqahmad kann! Terus teringat kau hahahah 🙊,,6, -476,,1380899488,,Vi el mosco mas horrible del mundo!!!,,7, -477,,1380899488,,RT @RealGyptian: Wanna speak to @RealGyptian LIVE on Mon 7 Oct via the new #BBMChannels from @BBM & @UK_BlackBerry find out more here: http…,,24, -478,,1380899488,,@ulanwln @bratha_wide coba tanya bang rama. Ulan leh ikut tau gak,,11, -479,,1380899488,,Nuovo genius loci. Storia e antologia della letteratura latina. Con espansione online. Per le Scuole superiori: 3 http://t.co/ysW2jvctgw,,21, -480,,1380899488,,"Ketemu sama lo itu kaya udah ketemu -neraka!! Bawaannya panes mulu!!",,11, -481,,1380899488,,気が付いたらよるほーでした,,0, -482,,1380899488,,I.G!うおおおお楽しみだなあああ,,2, -483,,1380899488,,"Je Ne Comprends Pas Diego , Il Connait Violetta Sa Va Faire Une Heure & Il L'aime Déjà o.0 Veut-Il Rendre Jaloux Léon ? o.0",,29, -484,,1380899488,,_(┐ ノε¦)_,,2, -485,,1380899488,,はじまった!,,0, -486,,1380899488,,Kepikiran mimpi td siang....pengen bgt jd nyata :)),,8, -487,,1380899487,,,,0, -488,,1380899487,,,,0, -489,,1380899487,,@SyafiSalehan ada apa??,,3, -490,,1380899487,,,,0, -491,,1380899487,,Yo no soy capaz de dejarte http://t.co/KsZF4AUeqL,,10, -492,,1380899487,,1 MONTH http://t.co/DftUuaTcmB,,6, -493,,1380899487,,,,0, -494,,1380899487,,,,0, -495,,1380899487,,Polémique...? #LT,,3, -496,,1380899487,,คือวันนี้ให้เวลาทำข้อสอบ 3 ชม. ชม.แรกดูคลิปแล้ววิจารณ์ก็เสียเวลาตรงนั้นไปเยอะ ทำข้อสอบทีต้องร่างก่อนนะแล้วค่อยลงกระดาษส่งจริง แล้วก็ทำไม่ทัน,,1, -497,,1380899487,,"かわいい。どうしよう。かわいい。 -にこにこしてるかわいい!",,0, -498,,1380899487,,"有名なのは、この オルチャンブレスです^^ -市販のシリコンゴムなどで簡単に作れます★ -みなさんもぜひつくってみてください! - -(外国にいくときは、はずしたほうがいいです!) http://t.co/kdInkAIGnj",,4, -499,,1380899487,,,,0, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.output.py3 b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.output.py3 deleted file mode 100644 index b92358964..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.output.py3 +++ /dev/null @@ -1 +0,0 @@ -# TODO: Flesh this out diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.splunk_cmd deleted file mode 100644 index 7a70f8a91..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python countmatches.py __EXECUTE__ fieldname="word_count" pattern="\\w+" record="f" text \ No newline at end of file diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.input.gz deleted file mode 100644 index 5b4560b6f..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.output deleted file mode 100644 index 6d60f4d92..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.output +++ /dev/null @@ -1,3 +0,0 @@ - -streaming,__mv_streaming -1, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.splunk_cmd deleted file mode 100644 index 5bf4d5255..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.getinfo.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python countmatches.py __GETINFO__ fieldname="word_count" pattern="\\w+" record="f" text \ No newline at end of file diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/args.txt deleted file mode 100644 index 271f16de5..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/args.txt +++ /dev/null @@ -1,11 +0,0 @@ ---id=1434737211.12 ---maxbuckets=300 ---ttl=600 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---rf=* ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/custom_prop.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/custom_prop.csv deleted file mode 100644 index 9ab3a6cfd..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/custom_prop.csv +++ /dev/null @@ -1,2 +0,0 @@ -"dispatch.earliest_time","dispatch.latest_time","display.general.type","display.page.search.mode","display.page.search.tab",search,"__mv_dispatch.earliest_time","__mv_dispatch.latest_time","__mv_display.general.type","__mv_display.page.search.mode","__mv_display.page.search.tab","__mv_search" -"","",statistics,smart,statistics,"| generatehello count=10 record=t",,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/externSearchResultsInfo.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/externSearchResultsInfo.csv deleted file mode 100644 index e47768290..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/externSearchResultsInfo.csv +++ /dev/null @@ -1,5 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434737211.12","1434737211.736620000","1434737211.000000000","1434737211.729294000","","","",0,0,0,"duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;6033;duration.dispatch.evaluate.generatehello;6033;duration.dispatch.writeStatus;12;duration.startup.configuration;39;duration.startup.handoff;83;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.generatehello;1;invocations.dispatch.writeStatus;6;invocations.startup.configuration;1;invocations.startup.handoff;1;",6159,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"lNrdocJyXWYWzrvYwAbTM^HYHZ5TJDTmYMXsGmMbAk0ozWJyBROgHUfm2cFjS_vQKALE8qIHd2a1HtIfTh4aYITtrrCAiVdsxtVQ1yRLVGm^^^W3sqoMG0dC",8089,https,"https://127.0.0.1:8089",0,none,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| generatehello count=10 record=t","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (39ms) when dispatching a search (search ID: 1434737211.12); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'generatehello' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/info.csv deleted file mode 100644 index 8c2832dec..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/info.csv +++ /dev/null @@ -1,5 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434737211.12","1434737211.736620000","1434737211.000000000","1434737211.729294000","","","",0,0,0,"duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;6033;duration.dispatch.evaluate.generatehello;6033;duration.dispatch.writeStatus;10;duration.startup.configuration;39;duration.startup.handoff;83;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.generatehello;1;invocations.dispatch.writeStatus;5;invocations.startup.configuration;1;invocations.startup.handoff;1;",6159,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"lNrdocJyXWYWzrvYwAbTM^HYHZ5TJDTmYMXsGmMbAk0ozWJyBROgHUfm2cFjS_vQKALE8qIHd2a1HtIfTh4aYITtrrCAiVdsxtVQ1yRLVGm^^^W3sqoMG0dC",8089,https,"https://127.0.0.1:8089",0,none,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| generatehello count=10 record=t","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (39ms) when dispatching a search (search ID: 1434737211.12); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'generatehello' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/metadata.csv deleted file mode 100644 index d44d02b5d..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"searchcommands_app",600 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/peers.csv deleted file mode 100644 index 038056ceb..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp-2.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/request.csv deleted file mode 100644 index 996fecfe3..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -rf,"auto_cancel","status_buckets","custom.display.page.search.mode","custom.display.page.search.tab","custom.display.general.type","custom.search","custom.dispatch.earliest_time","custom.dispatch.latest_time",search,"earliest_time","latest_time","ui_dispatch_app",preview,"adhoc_search_level",indexedRealtime,"__mv_rf","__mv_auto_cancel","__mv_status_buckets","__mv_custom.display.page.search.mode","__mv_custom.display.page.search.tab","__mv_custom.display.general.type","__mv_custom.search","__mv_custom.dispatch.earliest_time","__mv_custom.dispatch.latest_time","__mv_search","__mv_earliest_time","__mv_latest_time","__mv_ui_dispatch_app","__mv_preview","__mv_adhoc_search_level","__mv_indexedRealtime" -"*",30,300,smart,statistics,statistics,"| generatehello count=10 record=t","","","| generatehello count=10 record=t","","","searchcommands_app",1,smart,"",,,,,,,,,,,,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/runtime.csv deleted file mode 100644 index 6080cf7b6..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -30,0,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/status.csv deleted file mode 100644 index 35834db53..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","can_summarize","max_time","max_count","reduce_freq","required_fields","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","normalized_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"time_cursored","column_order","searched_buckets","eliminated_buckets" -FINALIZING,admin,1434737211,"6.041000",49152,0,0,0,0,2147483647,"",0,0,0,0,8640000,500000,10,"*",0,1,0,0,0,1,0,"| generatehello count=10 record=t","",0,"",1,desc,"generatehello count=10 record=t",0,"*","","",1,0,1,"",3125,5,0,0,1,,0,0 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.input.gz deleted file mode 100644 index 166a433d7..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.output deleted file mode 100644 index fafd94cc0..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.output +++ /dev/null @@ -1,12 +0,0 @@ - -_time,__mv__time,event_no,__mv_event_no,_raw,__mv__raw -1434737223.08,,1,,Hello World 1, -1434737223.08,,2,,Hello World 2, -1434737223.08,,3,,Hello World 3, -1434737223.08,,4,,Hello World 4, -1434737223.08,,5,,Hello World 5, -1434737223.08,,6,,Hello World 6, -1434737223.08,,7,,Hello World 7, -1434737223.08,,8,,Hello World 8, -1434737223.08,,9,,Hello World 9, -1434737223.08,,10,,Hello World 10, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.splunk_cmd deleted file mode 100644 index cb7d2a493..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.execute.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python generatehello.py __EXECUTE__ count="10" record="f" \ No newline at end of file diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.input.gz deleted file mode 100644 index 0fb3e9e5d..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.output deleted file mode 100644 index 6fa696632..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.output +++ /dev/null @@ -1,3 +0,0 @@ - -generating,__mv_generating -1, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.splunk_cmd deleted file mode 100644 index 7002fc9c9..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/generatehello.getinfo.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python generatehello.py __GETINFO__ count="10" record="f" \ No newline at end of file diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/args.txt deleted file mode 100644 index 55bb65178..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/args.txt +++ /dev/null @@ -1,11 +0,0 @@ ---id=1434910861.5 ---maxbuckets=300 ---ttl=600 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---rf=* ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/custom_prop.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/custom_prop.csv deleted file mode 100644 index 83372572f..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/custom_prop.csv +++ /dev/null @@ -1,2 +0,0 @@ -"dispatch.earliest_time","dispatch.latest_time","display.general.type","display.page.search.mode","display.page.search.tab",search,"__mv_dispatch.earliest_time","__mv_dispatch.latest_time","__mv_display.general.type","__mv_display.page.search.mode","__mv_display.page.search.tab","__mv_search" -"","",statistics,smart,statistics,"| pypygeneratehello count=""10"" record=""t""",,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/externSearchResultsInfo.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/externSearchResultsInfo.csv deleted file mode 100644 index a39696679..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/externSearchResultsInfo.csv +++ /dev/null @@ -1,5 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434910861.5","1434910861.713577000","1434910861.000000000","1434910861.708990000","","","",0,0,0,"duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;25958;duration.dispatch.evaluate.pypygeneratehello;25958;duration.dispatch.writeStatus;12;duration.startup.configuration;34;duration.startup.handoff;92;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.pypygeneratehello;1;invocations.dispatch.writeStatus;6;invocations.startup.configuration;1;invocations.startup.handoff;1;",26094,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"jV6lbE_45IGNXjOKmbuW_0lUaWGS2whzNDxc9bJ88a5b^m03ewNbITyKczGu4mwDsjfK5lQ^Ibb_G^v12af6vvYFbI9lpi2B2rYlFGsNnlU2TpdrgduaiC",8089,https,"https://127.0.0.1:8089",0,none,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| pypygeneratehello count=""10"" record=""t""","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1434910861.5); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'pypygeneratehello' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/info.csv deleted file mode 100644 index 6a1d50373..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/info.csv +++ /dev/null @@ -1,5 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434910861.5","1434910861.713577000","1434910861.000000000","1434910861.708990000","","","",0,0,0,"duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;25958;duration.dispatch.evaluate.pypygeneratehello;25958;duration.dispatch.writeStatus;10;duration.startup.configuration;34;duration.startup.handoff;92;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.pypygeneratehello;1;invocations.dispatch.writeStatus;5;invocations.startup.configuration;1;invocations.startup.handoff;1;",26094,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"jV6lbE_45IGNXjOKmbuW_0lUaWGS2whzNDxc9bJ88a5b^m03ewNbITyKczGu4mwDsjfK5lQ^Ibb_G^v12af6vvYFbI9lpi2B2rYlFGsNnlU2TpdrgduaiC",8089,https,"https://127.0.0.1:8089",0,none,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| pypygeneratehello count=""10"" record=""t""","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1434910861.5); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'pypygeneratehello' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/metadata.csv deleted file mode 100644 index d44d02b5d..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"searchcommands_app",600 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/peers.csv deleted file mode 100644 index 038056ceb..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp-2.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/request.csv deleted file mode 100644 index e30cf8a80..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -rf,"auto_cancel","status_buckets","custom.display.page.search.mode","custom.display.page.search.tab","custom.display.general.type","custom.search","custom.dispatch.earliest_time","custom.dispatch.latest_time",search,"earliest_time","latest_time","ui_dispatch_app",preview,"adhoc_search_level",indexedRealtime,"__mv_rf","__mv_auto_cancel","__mv_status_buckets","__mv_custom.display.page.search.mode","__mv_custom.display.page.search.tab","__mv_custom.display.general.type","__mv_custom.search","__mv_custom.dispatch.earliest_time","__mv_custom.dispatch.latest_time","__mv_search","__mv_earliest_time","__mv_latest_time","__mv_ui_dispatch_app","__mv_preview","__mv_adhoc_search_level","__mv_indexedRealtime" -"*",30,300,smart,statistics,statistics,"| pypygeneratehello count=""10"" record=""t""","","","| pypygeneratehello count=""10"" record=""t""","","","searchcommands_app",1,smart,"",,,,,,,,,,,,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/runtime.csv deleted file mode 100644 index 6080cf7b6..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -30,0,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/status.csv deleted file mode 100644 index 61f81b0bd..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","can_summarize","max_time","max_count","reduce_freq","required_fields","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","normalized_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"time_cursored","column_order","searched_buckets","eliminated_buckets" -FINALIZING,admin,1434910861,"25.967000",49152,0,0,0,0,2147483647,"",0,0,0,0,8640000,500000,10,"*",0,1,0,0,0,1,0,"| pypygeneratehello count=""10"" record=""t""","",0,"",1,desc,"pypygeneratehello count=""10"" record=""t""",0,"*","","",1,0,1,"",4359,5,0,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.input.gz deleted file mode 100644 index b942c5060..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.output deleted file mode 100644 index 54b81e1ea..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.output +++ /dev/null @@ -1,12 +0,0 @@ - -_time,__mv__time,_serial,__mv__serial,_raw,__mv__raw -1434910895.01,,1,,1. Hello World!, -1434910895.01,,2,,2. Hello World!, -1434910895.01,,3,,3. Hello World!, -1434910895.01,,4,,4. Hello World!, -1434910895.01,,5,,5. Hello World!, -1434910895.01,,6,,6. Hello World!, -1434910895.01,,7,,7. Hello World!, -1434910895.01,,8,,8. Hello World!, -1434910895.01,,9,,9. Hello World!, -1434910895.01,,10,,10. Hello World!, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.splunk_cmd deleted file mode 100644 index 822e8c6ec..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.execute.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python generatetext.py __EXECUTE__ count="10" text="Hello World!" diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.input.gz deleted file mode 100644 index 737549e94..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.output deleted file mode 100644 index 6fa696632..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.output +++ /dev/null @@ -1,3 +0,0 @@ - -generating,__mv_generating -1, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.splunk_cmd deleted file mode 100644 index c70912308..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/pypygeneratetext.getinfo.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python generatehello.py __GETINFO__ count="10" text="Hello World!" diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/args.txt deleted file mode 100644 index e4559aae4..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/args.txt +++ /dev/null @@ -1,10 +0,0 @@ ---id=1434913637.10 ---maxbuckets=0 ---ttl=600 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/custom_prop.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/custom_prop.csv deleted file mode 100644 index 8bdcd1551..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/custom_prop.csv +++ /dev/null @@ -1,2 +0,0 @@ -"dispatch.earliest_time","dispatch.latest_time","display.general.type","display.page.search.mode","display.page.search.tab",search,"__mv_dispatch.earliest_time","__mv_dispatch.latest_time","__mv_display.general.type","__mv_display.page.search.mode","__mv_display.page.search.tab","__mv_search" -"","",statistics,smart,statistics,"| inputlookup random_data max=50000 | sum record=t total=total value1",,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/externSearchResultsInfo.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/externSearchResultsInfo.csv deleted file mode 100644 index b67123aac..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/externSearchResultsInfo.csv +++ /dev/null @@ -1,7 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434913637.10","1434913637.134365000","1434913637.000000000","1434913637.128700000","","","",0,0,0,"duration.command.inputlookup;377;duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;334;duration.dispatch.evaluate.inputlookup;8;duration.dispatch.evaluate.sum;166;duration.dispatch.writeStatus;10;duration.startup.configuration;34;duration.startup.handoff;86;in_ct.command.inputlookup;0;invocations.command.inputlookup;1;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.inputlookup;1;invocations.dispatch.evaluate.sum;1;invocations.dispatch.writeStatus;5;invocations.startup.configuration;1;invocations.startup.handoff;1;out_ct.command.inputlookup;50000;",461,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"c67wGu_Rx0Njusr22OsAt9gfgsuWxTtLiDktmbUhz001VNJHAbX7gYxJmB8s0nMNfJux4EiX0t1a5Z0gNbwPTCDrQcNVNf5MjBujmpsdech5AngDlAQXmUgJycW6",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup random_data max=50000 | sum record=t total=total value1","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1434913637.10); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Disabling timeline and fields picker for reporting search due to adhoc_search_level=smart",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Successfully read lookup file '/Users/david-noble/Workspace/Splunk/etc/apps/searchcommands_app/lookups/random_data.csv.gz'.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'sum' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/info.csv deleted file mode 100644 index 88b1e85e8..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/info.csv +++ /dev/null @@ -1,6 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434913637.10","1434913637.134365000","1434913637.000000000","1434913637.128700000","","","",0,0,0,"duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;334;duration.dispatch.evaluate.inputlookup;8;duration.dispatch.evaluate.sum;166;duration.dispatch.writeStatus;8;duration.startup.configuration;34;duration.startup.handoff;86;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.inputlookup;1;invocations.dispatch.evaluate.sum;1;invocations.dispatch.writeStatus;4;invocations.startup.configuration;1;invocations.startup.handoff;1;",461,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"c67wGu_Rx0Njusr22OsAt9gfgsuWxTtLiDktmbUhz001VNJHAbX7gYxJmB8s0nMNfJux4EiX0t1a5Z0gNbwPTCDrQcNVNf5MjBujmpsdech5AngDlAQXmUgJycW6",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup random_data max=50000 | sum record=t total=total value1","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1434913637.10); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Disabling timeline and fields picker for reporting search due to adhoc_search_level=smart",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'sum' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/metadata.csv deleted file mode 100644 index d44d02b5d..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"searchcommands_app",600 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/peers.csv deleted file mode 100644 index 038056ceb..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp-2.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/request.csv deleted file mode 100644 index 07a7479d6..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -rf,"auto_cancel","status_buckets","custom.display.page.search.mode","custom.display.page.search.tab","custom.display.general.type","custom.search","custom.dispatch.earliest_time","custom.dispatch.latest_time",search,"earliest_time","latest_time","ui_dispatch_app",preview,"adhoc_search_level",indexedRealtime,"__mv_rf","__mv_auto_cancel","__mv_status_buckets","__mv_custom.display.page.search.mode","__mv_custom.display.page.search.tab","__mv_custom.display.general.type","__mv_custom.search","__mv_custom.dispatch.earliest_time","__mv_custom.dispatch.latest_time","__mv_search","__mv_earliest_time","__mv_latest_time","__mv_ui_dispatch_app","__mv_preview","__mv_adhoc_search_level","__mv_indexedRealtime" -"*",30,300,smart,statistics,statistics,"| inputlookup random_data max=50000 | sum record=t total=total value1","","","| inputlookup random_data max=50000 | sum record=t total=total value1","","","searchcommands_app",1,smart,"",,,,,,,,,,,,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/runtime.csv deleted file mode 100644 index 6080cf7b6..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -30,0,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/status.csv deleted file mode 100644 index 0b6997d37..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","can_summarize","max_time","max_count","reduce_freq","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","normalized_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"time_cursored","column_order","searched_buckets","eliminated_buckets" -FINALIZING,admin,1434913637,"0.341000",49152,0,0,0,0,2147483647,"",0,0,0,0,8640000,500000,10,0,1,0,0,0,1,0,"| inputlookup random_data max=50000 | sum record=t total=total value1","",0,"",1,desc,"inputlookup random_data max=50000 | sum record=t total=total value1",0,"*","","",1,0,1,"",6478,5,0,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.input.gz deleted file mode 100644 index f9da69098..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.output deleted file mode 100644 index 9ce7524ad..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.output +++ /dev/null @@ -1,3 +0,0 @@ - -total,__mv_total -2147943.07811, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.output.py3 b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.output.py3 deleted file mode 100644 index 51abc7383..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.output.py3 +++ /dev/null @@ -1,3 +0,0 @@ - -total,__mv_total -2147943.07810599, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.splunk_cmd deleted file mode 100644 index 844ae0437..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.map.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python sum.py __EXECUTE__ phase="map" record="f" total="total" value1 \ No newline at end of file diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/args.txt deleted file mode 100644 index e4559aae4..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/args.txt +++ /dev/null @@ -1,10 +0,0 @@ ---id=1434913637.10 ---maxbuckets=0 ---ttl=600 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/custom_prop.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/custom_prop.csv deleted file mode 100644 index 8bdcd1551..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/custom_prop.csv +++ /dev/null @@ -1,2 +0,0 @@ -"dispatch.earliest_time","dispatch.latest_time","display.general.type","display.page.search.mode","display.page.search.tab",search,"__mv_dispatch.earliest_time","__mv_dispatch.latest_time","__mv_display.general.type","__mv_display.page.search.mode","__mv_display.page.search.tab","__mv_search" -"","",statistics,smart,statistics,"| inputlookup random_data max=50000 | sum record=t total=total value1",,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/externSearchResultsInfo.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/externSearchResultsInfo.csv deleted file mode 100644 index 9a42a63e3..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/externSearchResultsInfo.csv +++ /dev/null @@ -1,7 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434913637.10","1434913637.134365000","1434913637.000000000","1434913637.128700000","","","",0,0,0,"duration.command.inputlookup;377;duration.command.sum;3818;duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;334;duration.dispatch.evaluate.inputlookup;8;duration.dispatch.evaluate.sum;166;duration.dispatch.writeStatus;10;duration.startup.configuration;34;duration.startup.handoff;86;in_ct.command.inputlookup;0;in_ct.command.sum;50000;invocations.command.inputlookup;1;invocations.command.sum;1;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.inputlookup;1;invocations.dispatch.evaluate.sum;1;invocations.dispatch.writeStatus;5;invocations.startup.configuration;1;invocations.startup.handoff;1;out_ct.command.inputlookup;50000;out_ct.command.sum;1;",461,total,"","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"c67wGu_Rx0Njusr22OsAt9gfgsuWxTtLiDktmbUhz001VNJHAbX7gYxJmB8s0nMNfJux4EiX0t1a5Z0gNbwPTCDrQcNVNf5MjBujmpsdech5AngDlAQXmUgJycW6",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup random_data max=50000 | sum record=t total=total value1","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1434913637.10); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Disabling timeline and fields picker for reporting search due to adhoc_search_level=smart",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Successfully read lookup file '/Users/david-noble/Workspace/Splunk/etc/apps/searchcommands_app/lookups/random_data.csv.gz'.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'sum' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/info.csv deleted file mode 100644 index 88b1e85e8..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/info.csv +++ /dev/null @@ -1,6 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1434913637.10","1434913637.134365000","1434913637.000000000","1434913637.128700000","","","",0,0,0,"duration.dispatch.check_disk_usage;1;duration.dispatch.createdSearchResultInfrastructure;1;duration.dispatch.evaluate;334;duration.dispatch.evaluate.inputlookup;8;duration.dispatch.evaluate.sum;166;duration.dispatch.writeStatus;8;duration.startup.configuration;34;duration.startup.handoff;86;invocations.dispatch.check_disk_usage;1;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.inputlookup;1;invocations.dispatch.evaluate.sum;1;invocations.dispatch.writeStatus;4;invocations.startup.configuration;1;invocations.startup.handoff;1;",461,"","","","",1,0,1,1,0,1,disabledSavedSearches,"*","","",1,0,"c67wGu_Rx0Njusr22OsAt9gfgsuWxTtLiDktmbUhz001VNJHAbX7gYxJmB8s0nMNfJux4EiX0t1a5Z0gNbwPTCDrQcNVNf5MjBujmpsdech5AngDlAQXmUgJycW6",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup random_data max=50000 | sum record=t total=total value1","","","","{}","","","","958513E3-8716-4ABF-9559-DA0C9678437F_searchcommands_app_admin_NS3d9d854163f8f07a",0,"","",0,0,0,0,0,0,"searchcommands_app",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1434913637.10); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Disabling timeline and fields picker for reporting search due to adhoc_search_level=smart",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'sum' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""searchcommands_app"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/metadata.csv deleted file mode 100644 index d44d02b5d..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"searchcommands_app",600 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/peers.csv deleted file mode 100644 index 038056ceb..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp-2.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/request.csv deleted file mode 100644 index 07a7479d6..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -rf,"auto_cancel","status_buckets","custom.display.page.search.mode","custom.display.page.search.tab","custom.display.general.type","custom.search","custom.dispatch.earliest_time","custom.dispatch.latest_time",search,"earliest_time","latest_time","ui_dispatch_app",preview,"adhoc_search_level",indexedRealtime,"__mv_rf","__mv_auto_cancel","__mv_status_buckets","__mv_custom.display.page.search.mode","__mv_custom.display.page.search.tab","__mv_custom.display.general.type","__mv_custom.search","__mv_custom.dispatch.earliest_time","__mv_custom.dispatch.latest_time","__mv_search","__mv_earliest_time","__mv_latest_time","__mv_ui_dispatch_app","__mv_preview","__mv_adhoc_search_level","__mv_indexedRealtime" -"*",30,300,smart,statistics,statistics,"| inputlookup random_data max=50000 | sum record=t total=total value1","","","| inputlookup random_data max=50000 | sum record=t total=total value1","","","searchcommands_app",1,smart,"",,,,,,,,,,,,,,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/runtime.csv deleted file mode 100644 index 6080cf7b6..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -30,0,,, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/status.csv deleted file mode 100644 index 0b6997d37..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","can_summarize","max_time","max_count","reduce_freq","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","normalized_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"time_cursored","column_order","searched_buckets","eliminated_buckets" -FINALIZING,admin,1434913637,"0.341000",49152,0,0,0,0,2147483647,"",0,0,0,0,8640000,500000,10,0,1,0,0,0,1,0,"| inputlookup random_data max=50000 | sum record=t total=total value1","",0,"",1,desc,"inputlookup random_data max=50000 | sum record=t total=total value1",0,"*","","",1,0,1,"",6478,5,0,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.input.gz deleted file mode 100644 index 10b884539..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.output deleted file mode 100644 index 9ce7524ad..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.output +++ /dev/null @@ -1,3 +0,0 @@ - -total,__mv_total -2147943.07811, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.output.py3 b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.output.py3 deleted file mode 100644 index 9ce7524ad..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.output.py3 +++ /dev/null @@ -1,3 +0,0 @@ - -total,__mv_total -2147943.07811, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.splunk_cmd deleted file mode 100644 index 4c922280f..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.execute.reduce.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python sum.py __EXECUTE__ record="f" total="total" value1 \ No newline at end of file diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.input.gz deleted file mode 100644 index 135a03bee..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.output deleted file mode 100644 index 6d60f4d92..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.output +++ /dev/null @@ -1,3 +0,0 @@ - -streaming,__mv_streaming -1, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.splunk_cmd deleted file mode 100644 index 3dab9d05e..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.map.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python sum.py __GETINFO__ phase="map" record="f" total="total" value1 \ No newline at end of file diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.input.gz b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.input.gz deleted file mode 100644 index 8243f8429..000000000 Binary files a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.output b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.output deleted file mode 100644 index a2d2ca1f4..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.output +++ /dev/null @@ -1,3 +0,0 @@ - -requires_preop,__mv_requires_preop,retainsevents,__mv_retainsevents,streaming_preop,__mv_streaming_preop,streaming,__mv_streaming -1,,0,,"sum phase=""map"" record=""f"" total=""total"" value1",,0, diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.output.py3 b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.output.py3 deleted file mode 100644 index 841c642cc..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.output.py3 +++ /dev/null @@ -1,3 +0,0 @@ - -requires_preop,__mv_requires_preop,retainsevents,__mv_retainsevents,streaming,__mv_streaming,streaming_preop,__mv_streaming_preop -1,,0,,0,,"sum phase=""map"" record=""f"" total=""total"" value1", diff --git a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.splunk_cmd b/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.splunk_cmd deleted file mode 100644 index 04025905a..000000000 --- a/tests/searchcommands/recordings/scpv1/Splunk-6.3/sum.getinfo.reduce.splunk_cmd +++ /dev/null @@ -1 +0,0 @@ -splunk cmd python sum.py __GETINFO__ record="f" total="total" value1 \ No newline at end of file diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/TestInternals.test_record_writer_with_recordings.1443154424.42.input.gz b/tests/searchcommands/recordings/scpv2/Splunk-6.3/TestInternals.test_record_writer_with_recordings.1443154424.42.input.gz deleted file mode 100644 index 6a7f8233c..000000000 Binary files a/tests/searchcommands/recordings/scpv2/Splunk-6.3/TestInternals.test_record_writer_with_recordings.1443154424.42.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/TestInternals.test_record_writer_with_recordings.1443154424.42.output b/tests/searchcommands/recordings/scpv2/Splunk-6.3/TestInternals.test_record_writer_with_recordings.1443154424.42.output deleted file mode 100644 index 92f5bb5dc..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/TestInternals.test_record_writer_with_recordings.1443154424.42.output +++ /dev/null @@ -1,14484 +0,0 @@ -chunked 1.0,14904,762288 -{"inspector":{"messages":[["debug","\u2b71\ud7de\uc73d\ud2d8\uc3b8\uafe5\u6650\ucc7f\u7666\ud8ff\uc51a\uc679\u4512\ubdbc\ud6bc\u934e\u2932\ue944\u3161\u655c\ua84d\u51b6\uf218\u27dc\ub55c\ubd45\u661e\u5407\u358c\u1a0e\u81f3\uec99\ubdd7\u6ff9\ue56b\u7ae1\u1afb\u0a0f\ud751\u35b9\ueda7\u3680\ua3c9\u8008\ucd29\ud793\udd36\u905b\ua9d2\u0a3b\u8c7c\ua1b1\u113f\u0efc\u0c10\u3cbd\uddea\u7e67\ub9e5\u0dbb\u3c24\uda5e\u3331\ufd25\u8519\ua20d\uada0\ue10a\u8b00\u481d\ua0f2\ud391\u2e9f\ucc11\u450c\uf1e5\u37b6\ud12a\u98f3\uc258\u2138\u83a9\uf4f2\ua2ba\u022d\ue419\u97d2\u72f7\u1990\uf453\u4d24\u2877\u80d0\u0b86\u4bd1\u04a4\uf6f8\u0c89\uf941\u7981\u6705\uec0d\u89bb\u1182\ua225\ua8c4\uf84f\u989f\u4e5f\ue1ff\ua409\uae3b\ucb29\u48c4\ubec6\ued2c\ubfd4\u7a81\ub7e8\u8c58\u958b\ue6aa\u9683\u8abe\u5c15\ud9cf\u115a\u9527\ubef8\ue4d0\u010a\u9d2c\u8045\uddd8\u2aae\uafae\ub6d9\u7fe4\u130f\uee23\u406f\ud18e\ufd10\ua0dc\u6b15\u8cb4\ue0b1\u2d21\ud781\u1824\ucceb\u3ca2\ua7d2\u114e\uc6eb\u2eef\u3301\ub367\ubc72\uc9ef\u3c71\u52a7\ud7aa\ub1d1\u1266\ua4f6\u65d0\u1592\ufda8\u83a7\u465d\u6e0c\u2571\ua67b\u932e\u53b8\u505f\uac0b\u2fc6\u59b1\u1858\u3180\uf2c6\u870a\uec86\ude63\ub306\u9896\u5c17\u0aff\ue179\u40f0\ua347\u5d83\u7008\u8d05\u8b96\u8b99\u615b\u712f\u5277\u41ae\u7d44\ud32f\u5e8e\uafa0\u7b6e\u387e\uc261\u1aa6\ua1dd\uaa68\ua440\u2c87\u0968\ucdf1\ud643\u317a\u3951\u1512\u1358\u8a2b\u923b\u69a1\u6cd1\u5443\u5938\u6ea7\u8726\u64d1\u4890\ud884\uf045\u3fab\u3592\u1389\ue3a7\ua3ce\ub33c\ud365\u90e5\u2ef6\uf32f\u2667\u6576\ufc52\u6fac\uf229\u70c3\u8e69\u5970\ufee5\u6381\u12c9\u3734\ua6e7\ud9ec\ue53b\u009a\u4508\u3170\u3011\u955c\ud034\u3ab7\u8248\uf430\u6b56\u0434\u5bc6\u71c0\u73d4\ued94\u219e\u48a9\u255f\u509b\u6116\uc448\u0e34\u2a00\uabb1\u1d8f\u4f55\uc2b4\ud012\ub948\u37f2\u71c9\u2654\ua560\u596e\u6d3a\u1042\uad3c\ua096\u7043\u045b\ud667\u37b7\ucf9f\u7c04\u67f6\u21f7\ud845\u10ad\u3b3b\u7514\u7571\u56c5\uf859\u7838\u43cc\u9d1d\ufd92\uc008\u0909\uc61f\u0747\uebb5\u93b6\ud260\u32fc\u1287\ucfaf\u07db\udf3a\u8051\u3ed1\uf371\u067e\u5d12\u7846\u1667\u65fe\uf748\u060c\u1d42\u4a80\u9ccf\uc4c9\udfff\u95ca\u2ece\u796f\u1a61\uce85\ucf3f\u21d5\ud753\u0d36\uce43\u257a\u4e94\u9daa\ud94c\ud64e\uf9a3\u614c\ucfb8\u1b9b\u61bb\uc92e\ue359\u0651\u050a\u48ed\u393b\ud7bb\u13d9\ua1fa\u0a45\uf930\u529b\u6510\u54de\uaf5e\uc0db\u5eeb\u3f15\ueb8a\u74d6\u61cc\u0c12\u54c8\u4422\ua31e\u42d9\ue603\u6026\u15d3\u7236\uab0c\ue70f\u4537\u87dd\ud006\ud1ee\ue3f5\u3cef\u5b0d\u1e2a\u2562\u2e5a\ud2a0\u7ca0\u77ef\u7bf2\uccaf\ub20e\ue76b\u41fe\udd62\u0e7e\u8846\uf6ed\u0d01\u4295\udcf2\u382f\u81ff\u3114\uc76a\u8e5a\u9256\u2974\u5365\u74b5\u8291\u6ab2\u720f\u5464\ub512\u00cb\u7c62\u5ca4\u0b9d\u48fb\u8922\uc319\u3f9b\uc6ed\ude05\u9f06\u4f22\u3454\u3e61\u822b\u61f4\uf3c1\u2ab4\ua048\u8915\ud624\u74f1\u3fee\uc189\ueb5a\u0955\u4be2\u7c9a\u2a71\ufed8\ud31e\u5071\u05db\u031a\udf81\uec49\u01fb\ud88b\u1c88\u7731\u9103\ua683\u321f\u2744\udb82\u64f0\u5afe\u4553\u129b\u97eb\u640e\u2e4f\u4bcd\u2629\u7035\ube78\u1e1f\ue030\ud91b\u4e58\u804c\ub939\u4dd8\ue049\u1796\u1b87\u28c3\udea9\u1578\u1fea\u5cc7\u0379\ud877\u1137\u2b1a\u45e3\uc00f\u2ad4\uf286\u883e\ub7d4\u1346\ub53a\uce79\uc43a\u8697\uc100\ua8f5\u8f99\ue8cf\u42af\u1cab\uac78\ua481\u436c\u2832\u20cc\u18cb\u93d4\u1ce6\uf30d\uad7e\ucb81\ucd3f\u9bff\ua36d\u1c46\ucdb7\uf38c\u3be1\u0a3d\u30e3\u2dcf\u2e40\u2a77~\u26ed\u6580\u6f0b\uaa7f\ud05a\uca78\ue4ee\u92c8\u57a3\uc756\u3e0c\u4a13\u60dc\u2bb8\u36f8\uf6f0\u9622\ud65e\u3d35\uea3c\u3aee\u182a\u44b5\uf0e5\u9229\u4dee\u0375\ub87e\udc0d\uebdd\u22a2\uad89\u106b\u789e\u760b"],["error","\u1253\u427b\u42a5\u5c6f\u531d\uc76c\u1a20\uf3a4\u0801\u0e4a\ub0e0\uc6d7\u1582\u2f42\u4c33\u58e7\uf830\u93e7\ue509\ua9b9\u60e1\u6d71\ub872\u0bd1\ue6df\u7fec\u1f46\u1211\u9349\u1cb1\u1abe\u1848\u53d8\uf9cb\u05b3\uf616\ud9db\ud7d4\uc567\ua65f\ucd41\u966a\u5a32\u9f05\u31fc\u1442\u3760\u47f4\u9c31\ue4fa\u39bb\ub837\uc9ac\u2108\u1265\u1393\u91a2\uc182\ub300\u4add\uebed\uf4a5\u6a48\u93bc\ue800\u8742\ufe41\ue2d4\u3432\u89f7\u229f\u0376\u9d8a\u05e7\u7d44\u586a\u99ba\ua043\u97dd\ud85c\u6754\u3c0e\uac78\u78b4\u9b12\uf1bc\u7318\u2c17\u101c\u174c\ub29d\ue9c7\uf6a4\u0fa9\ua53c\ud160\u2504\u11f0\u9f6a\uf372\uf208\u3e15\u3076\u2c89\u37c4\u9a7f\ud782\u3372\u93ff\udaec\u44f3\ud4c4\u5404\u0f4f\u2d63\ua977\u2884\u520b\ufd8c\u2b56\ub7d9\ued24\u4e4c\u920a\ucbda\u23f8\udf02\u5d7e\ud124\u3ea6\u1933\ua440\u7b39\uef3c\u023e\u1fab\ua132\ud4f0\u85e5\ubc21\uf321\u7b95\u0383\u7393\u092e\u112a\u57ae\ub9cd\uffab\u4979\u48e9\u04ed\uc55c\u6656\uf531\u286c\ufc11\uc7cc\u9362\u6516\u0259\u6f35\u0d9d\uea31\u1be8\u000f\u2927\u06ea\ubfbc\ucd92\ubd04\ub964\u0c3d\u0e92\u2f08\u243e\ua4e4\udd00\u55fe\u77b4\ub4af\uf336\u1191\u9e43\u431c\u8a52\u6bd7\u0a1a\u8728\uea55\ufe8b\u6a28\ub73b\ua875\u543e\u7e2e\u2f21\ufa8f\ud911\udc09\ufaea\u35a6\u9968\u4a65\u9a48\ue949\udc87\u33bb\u0f93\ufde1\u5021\uc841\u7736\uadfc\u315f\u642d\ua9a8\u6ab8\u1478\uddc7\ua155\u8cb7\u46ca\ud1ff\uf726\u9cb3\u2c5f\u4d29\uf3c4\ua934\u75a7\ufaa9\u183b\uf2b6\ub654\u9320\u6d4a\ue70c\uac3d\u4dda\u1808\u40f4\u2447\ub741\u4928\u8bdf\uf468\u1baa\u8371\u370f\u2c43\u0af4\uf438\u3dce\u0d5f\u7610\u01c8\ufff9\u04b1\udcaa\u6854\u0cf9\u44f1\udfbe\u79db\u83c7\u5947\u4e20\ua60e\ubb8d\ua0cb\u8e3f\u2b19\u91dd\u922e\u68cf\udec5\u781c\u255c\ud7aa\ub2f4\u8d0e\u91e5\uc5af\uc575\u7dea\u0c5d\u9f2b\ue6bd\u5048\u8256\u3bf3\u0d8e\ud3da\u3405\u37fb\u59d4\u6c47\u308f\u36fc\u7d92\u47a8\u5c86\u3316\u9d00\u1844\u5b70\u758c\ub5a9\u26d9\u49e9\u2283\u1587\uefa5\u5f25\uf45e\ubed6\u8685\uc7ee\u6b7b\u8e27\ua051\uff38\u1dcc\ud620\ub583\ua126\u447d\ucadb\u9adc\udb27\uaa8e\u3e3c\u6dac\u4656\u454b\ubc75\ud0b1\uc2d1\u698e\ufa11\uc90d\u0811\u5065\u4d6f\u7b9a\u7442\ubd1a\u05a5\u349c\u5cfb\u311c\u5094\u52db\u9d33\ua1ed\u7362\u56df\ub1a6\u8aa2\u7e70\ud3b6\u78fb\u66b3\ua882\u60c2\u674a\u5927\u5cf1\u693a\u49b4\ud14f\uf6dd\uf90d\u0b0c\u6e2b\u3027\u3cc6\u43cd\ua999\u2c86\u1024\u85c1\ud243\u69b6\ueb93\ub604\ua887\u6974\u5f7a\ub37b\u8236\u424f\ud692\u87ee\u0632\u43dc\u5863\ueae7\ua770\uf34c\ud24c\u2197\u0a98\u1845\u8d3a\u745d\ue316\u52c6\u455d\u94ca\u2bc6\u9a28\u0ef1\u09ad\ufa71\u2f30\u1bb9\uf990\u9b7c\u26f1\uc1b8\u657e\ub47e\uefcb\ua120\u5061\ub91f\u29b4\u0b72\u68fc\uf025\u0c6e\u46df\u77fd\uad9c\ucf1b\u91f7\u3653\ue09a\u18ff\u828d\ueb1b\u0ad8\uc923\u66a1\u6234\ua683\ua6fa\u2f5e\u30e1\u0e37\u3899\ufbc5\u5259\ufe5e\u5bf3\u0e82\u6e8d\ubc44\ub457\uc6b5\u3859\u711f\uabfa\u1632\u8087\ub7e1\ubf77\u72c8\uad23\ue054\uee27\u3749\u13b7\ucc4e\uc989\ufdcb\u47f0\u2312\ue3b8\u8c5b\ubeec\udd1f\u24bc\uc2c4\u1554\uce45\u526c\u98dc\u1e76\ubce9\u7d99\u85bc\ueec2\u8ce5\u638c\u1e8f\ubc0c\u972b\u0cda\u8c27\udca4\u74af\u1c03\ud7fb\u2aa0\u27d7\ud5ac\u4409\ud2bd\u2465\ufdc7\u56c6\uca40\u1337\ufcea\ua3e5\u78a9\u4d63\u1927\u5919\u442a\u90e4\uda61\u2911\u4b9d\udfab\u8b28\u865c\u64b9\u58b7\u0b39\ue98a\u6cfc\uc013\uae55\u9566\uf3a8\u903c\u16b4\u63fa\u6f3b\u3127\ue2f5\u1db6\u727e\uec2f\u6cc8\ue57e\u3fe5\u3a17\u1ac8\u7d40\u1609\u5119\u8af8\u3e5a\ua70e\ufda6\uacf1\ud5be\u5a70\udcec\u420d\ue6b6\u60af\ua46c\ubd5c\u2d95\u69cf\u57e9\ub508\uf81d\u8b91\u020e\uebe5\u2148\uc6c0\u7b9b\u8f02\ud252\u2273\u0e22\u6f27\ue41b\ua3ea\u6593\u2009\ue7b8\uc533\u3ba0\ud9d5\ua8d9\u3ba9\ubdef\u5e3e\u3181\u0bbb\u7425\u2684\u0f89\u0848\u0bae\u75c3\uad5e\ua3c8\u04dc\u34eb\uaf17\u9180\u5edd\ub971\u9962\uf91e\u51e7\ue92f\uf386\u6192\u5b3b\u7e64\u7da8\ubfce\ud637\u5cd3\u014e\uf27e\u32d5\ud050\uaad3\u7304\uc3be\u9287\ua34b\u8d39\u7bea\u7629\uae3e\u8caf\u6bdf\u8807\u4be8\u357c\uedf2\u0684\ue90f\u5f8c\u28e1\u1e68\u4990\ucc8f\ufffc\u18b7\u2a64\uc6ce\u25df\u44fe\u4711\u667a\ua00a\u759d\u0944\u28ea\uc2e4\ue602\u4c48\u45ae\u7acc"],["fatal","\u9ad1\u40d3\u8b2e\uc72f\u4e92\ub1e6\udc78\uae2f\u5729\ud2ec\ua6f0\ud046\ud347\u2532\u33ce\u9736\u0e4e\uec88\ueb0a\ua83f\uf6bd\u3d72\uc95c\ud565\u9708\u2cea\ucda2\u103e\u5530\u26db\u750a\u968c\u69f1\u18b3\u0905\u84be\u432e\u4743\u165c\ub6d3\ucb6d\u6b9c\u5088\u2b36\uf2d5\u6bb3\udd35\u94aa\u1eae\u40aa\ud85c\u7372\ubef0\u0262\ua0ef\u8462\u89e9\ud937\u7f5d\uceed\u6fa2\ueb2b\u2490\u20eb\u5a42\ub306\u14da\uefe0\ud81f\u23e2\u1a35\u9fbe\ub1a8\u2497\u7479\ue3c4\u82e5\u844f\u37a4\u112c\u4d19\ufa61\uaedc\ufb33\ud1b3\ua8aa\uda06\u9ff3\u08cd\uc0b4\u0b7d\u83db\u35c9\u03b2\u513d\u9866\u7391\u14f1\u2a04\u94ef\u69bc\uaaed\ue7c5\ue528\u6cd6\u37c1\uef29\ue9ae\ud7fb\ucf6c\u2f31\u8f1c\u9121\uefcd\ud1ee\u69ca\u5a01\u5e0b\u9ce7\uf614\u47d5\udb97\u17d3\u14ef\ub7d4\u4f04\u80ff\ucbb0\ucbb4\u077e\ue86a\u088c\u0710\u3a79\ucebf\ueb3e\u970a\ub4b7\u6056\uc68a\uf48e\ufc1b\u87d0\u162d\uad1e\ud19f\ud4f5\uc2ac\u69c2\ud8de\u357c\udd1b\u99c0\ua3a6\u0a37\u3d69\u9cfb\u257f\u6a0e\u9b5b\u3f48\u63af\u2c0d\u34b9\u6ff8\ua3dd\u55f3\uc31a\u4441\ufcaf\u5813\u1160\uce19\u09bf\ude69\u0619\u7986\u0ae0\u7261\uad37\u1d16\uc88c\u25e1\ub664\u234a\u7b01\u5e23\uc2bd\u2663\u7ed1l\u1b94\u2006\u51f6\u5c78\u6b9a\u589b\uf1d9\u8438\ub087\u2713\uc8f1\u4def\uc468\ud9e4\u8ddb\u58be\u949a\u7380\uaff5\ucd1b\u7122\ue19b\u1ba6\u7bbc\u4e47\u6210\uf123\u28d8\u3dbc\u4fff\uae9c\ud3f0\ucdcd\ua348\u22ed\u4a8a\u7ce2\u9bf6\u12f7\u870e\u0dff\ue60d\u154f\u539d\u961b\ucf11\u851d\u2777\uaa52\u98e6\u35bb\u6f0b\u8119\u6043\u4850\u511d\ue2a5\u2453\ueac3\u3a04\u0082\ue4b4\u848a\ubbec\u4f6e\u349f\u6771\u3c81\uada7\u73df\u5a5b\ub510\u8016\u06ac\u4bb4\ucedc\u50be\u36ea\u13ba\u9349\uca8f\uca69\ub347\u85e9\u62e6\u9e88\u604b\u1a6b\uddd4\u18ba\uc783\u9e3f\u86ee\ud30c\u26ec\u2783\ub252\u247e\ubc93\u0352\ua6b1\uf2c1\ube84\ud43a\u2420\u2b2d\ub33b\ud3c8\uf1ef\ue435\u3f91\uc6ee\u688f\u34a2\ud776\u080c\u1621\u7a77\uda72\u5e2a\u0ceb\ua021\u6605\u7338\u67eb\uf0a9\u1fbe\ud7fa\u0d84\ue96a\ud316\u793b\u43ef\ucc6b\ub10c\ub979\u849c\u5230\ufaa4\ub927\u3a5c\u11ae\u2ea1\u4c3e\u3d1a\u1aba\u6f21\ue944\u9dfc\ube11\u1a59\u382d\u5f0f\uec1f\u61b2\ue49e\u4baa\u6718\u81c7\u62bd\u5393\u36c1\u7f59\ud480\u03c7\u9d12\uee1d\u8a6b\u0ea1\u9e35\ub3fe\u242b\u6f1e\u7ecb\u3c1c\uad45\ub186\ud672\u0b40\u079d\uf50c\u5e21\u0209\ua678\u56a6\u3abe\u597e\ufd41\u39c3\u54d6\u317c\u753d\udf54\u1267\u06aa\u4529\ufbe8\u1517\u4f32\ud3bb\uc323\u6a14\uf199\uf2dd\u2940\ua357\u8039\u6036\u829c\u411c\u5ee2\u499d\udc31\u8c46\uba67\u8d52\u2cf7\u8998\ua6ba\ud517\u19d0\u8cdd\ua520\u4741\u6324\ub6ee\ua3d5\u7b8a\u9985\ue893\u11b4\uedea\uff46\u06ba\ue807\uc99a\u82ec\u55e9\u8782\u3fc5\u72b4\u1a61\ub565\ued42\u4b84\u3dd9\uf8b7\ufcf5\ua75a\uf5db\u3240\ub7ea\uf59f\ua1ca\u180f\u840a\ue4dc\ua02a\ud18d\u001a\u0625\uaa5f\ueccd\u13a0\ubfdc\ua174\u129b\u1b61\u855f\u5546\u1474\u850b\uf259\u7673\u91d0\uf260\u93cd\ue687\u7ebf\ubc4c\u7747\ub685\ue6be\uc1cc\u9a4b\ub14b\uc19c\ua4e3\u905e\u88b0\u687d\u4805\ue84b\ud025\u2044\ufc2c\u7ee5\ub4a6&\u83d4\u6d9a\u2d08\u221d\u00cd\u84b8\u575a\u177a\u8694\u858a\u3a40\u0f02\ueb8a\ubce6\u98c3\uf495\uef8f\ubffe\ub6a3\u1bf5\u0f0c\u7c07\u36a9\u46b2\ua913\u7899\u572f\u9458\u62c8\u7609\u205c\u2b66\ue4ce\ud533\u0d88\u3981\uace1\u72a8\u4a0b\u7159\ua17c\ua965\u5744\u11fa\u4bde\u1081\u6fcc\u0238\u395f\u4b58\ud7c5\u237d\uec84\uf623\u56ea\u5bbe\u383d\u24bf\u7b08\u7779\u3f42\u86fe\u25d4\u7a63\ucad9\u3e2a\u11b1\u1c6c\u0d40\u8869\u9720\u403f\u57e9\u82a6\u26b9\u738c\ua5c3\u4687\uec93\ue7ec\u8c78\u04c5\ub076\u4f0f\u97d7\uca3f\u1a1d\u9924\u7b29\ub85d\u7f8e\u9289\ub4c1\ud977\ud5b7\uca06\u5922\u8def\u9a41\u883b\u0b3f\ud540\u3b43\u06f9\ud0d0\u286b\u019d\ud6c4\ub60a\u555b\u6c82\u2601\u1a0b\ub049\ub4b2\ua37d\uf1de\u4c3c\u2ae0\u70d5\u6796\u9596\u242d\u95d8\u3efd\u32a3\u62f1\uf90e\uf19d\ud3d5\u905f\ub305\u9269\u9ba3\u8e9f\u9c02\u341e\uf878\u9425\u60a1\ua4ca\u8f38\u9605\u3292\uf6bb\u3332\u7f2e\ue36c\uf5b8\u713d\ud50e\u8360\u8e65\ueba7\ub842\u940d\u027e\u7ef2\u0c60\ufeb3\uc679\u559c\u9719\u13e3\u9be8\ub2ef\u3bb1\ub11c\u1766\u3db8\u9a71\u5966\u6b1c\ufa15\u18f8\u6476\u46ad\uaa38\u8969\u4ff3\uafdb\udc73\uf7a4\u08a8\uc4bd\u8142\u0128\u787e\u9035\u955f\u50a9\ud0e3\uccb6\uebc1\u13a2\ue0c0\uc341\u5fe5\u0b67\u4eb4\u4a4c\u5b30\u6d68\u8636\u8f23\u6e38\uf00c\ub5f5\ud40b\ua462\ua257\u307e\u388d\u0585\uf745\ubd6b\uf3d2\u89c5\u8786\ue880\ue3ea\ued16\uffcb\ue08f\u4986\u11c9\u3ed8\u46ee\u07b6\uf99a\ud701\u2125\uf723\ua79a\u3a8d\ub2b8\u5955\ub620\uc43d\uce25\u3ff6\uc3f4\u089e\u8fcc\u2d98\ucbaf\u49ff\u289d\u68e9\u1e0c\u7ef1\u9907\uc59e\ud0ea\u3438\ub6eb\u994b\uc3f8\uae71\ub38c\u35ad\u47f7\u5221\ub6e0\ufe3d\ubef1\u46fd\u5160\u57bc\uab8f\ub68e\uad5d\u9101\u6742\uc136\u208e\u6cfd\u61b6\u9ae2\ud542\u851c\ue33f\u16e6\ud391\ua9d1\u80b4\u1e5a\u87e1\u6937\u20c1\ub863\uceb7\u0fe4\ue4af\uca38\ub96f\uc832\u9743\u5af8\udd7a\u6ed8\ua0d1\uc868\u1d90\u2fe2\u1c52\u2d3d\u702a\u1be1\u3a09\u2557\u20bc\ud68b\ua6cc\ubddb\u355f\u531a\ue97f\u45c6\u986c\ued18\u3c53\uaceb\uc3b4\ueb08\ub87f\uc772\u7771\uff47\u450e\u1cf6\ua62d\u8ffd\u17ae\uec3e\ub2ba\ud376\ua4f2\ubaa9\uf8b8\u83e0\ufa47\u1b98\u1dcc\u2127\u8fe8\ud54c\u3681\uc0bd\ufc3b\udbf2\u9f89\ubda1\ucfa5\udd87\u07fb\u50e5\udf2e\u4dac\u69e9\uc824\u0a0e\udacb\u0d18\u547d\u4fa7\u8d53\u12cf\uf94a\ude62\ub7a9\u3a6a\uf0ff\u23ce\uaf6f\u6d60\u5a4b\u6220\u7476\u3b47\u1c97\uee82\ua687\u5b6c\u896c\ubf9d\ua394\ueed6\u4bc1\u3fb6\ue689\uab37\u1066\u7974\u80ed\u26d1\u7257\u9959\u7091\u890d\u0e83\u57ee\u29e5\u4ffd\u6852\u050d\u948c\uf3fa\u5b3a\u896e\u45b4\u439d\u45df\u1d6aT\u609c\uca0d\u4cd9\u6950\ub2d4\ueec4\u418a\u2c5c\u0587\ueeac\u4398\uca59\uc6da\uaf0a\ua2e3\u80d7\u77b2\ufdbd\ua9b9\u2360\u39da\u95ea\u0190\ub7ef\uab8a"],["info","\uffe6\uad00\u167d\ud0ef\uf505\u294e\u6efa\ub08e\u4245\uc402\uc98a\uda36\uc27c\ub3c2\u2a44\ue7c4\u32a7\u6f8d\uce3a\uce23\ubd9b'\u24de\u1374\ubbef\u9313\u8c93\uc6dd\uea3b\u0b4e\u79d4\ubf10\u917e\u52f7\u80a3\ub47b\u7bfb\u1479\uf79a\u63b1\u94f9\u8871\u6bc5\uba0d\u6cdc\u06f9\u5de4\u0ece\u98e6\u56fa\u694f\u1b4c\u3aae\ua3c0\u2747\ue9bf\u3264\u0997\uc651\u3ae9\u343e\u98c9\uba91\u6969\u4feb\u9db5\uc627\ue8a8\ue199\uc03a\ua4c3\ufd77\u09fe\u48a7\u048a\ue790\u78f6\u7d8f\u9cbf\u6f14\uf29f\u11e5\u860d\u90e2\u068b\u224a\u2189\ua5f7\ua157\ucf2e\uae7f"],["warn","\ud420\ue097\u9890\u11d9\u1161\uddc3\ua93f\uc714\u02b9\u2e36\uc6f8\u075d\u5df5\ub660\u355b\u6e43\u43d7\uace1\u55da\u1a15\u20e1\u4bec\ubd4a\ud675\u499c\u2d4e\u5b8e\u4751\uf9be\u808c\u14af\u524d\u82d5\u8d8d\u306f\u332e\ub9bd\u1e06\u94b5\u17a8\u1db5\u26e6\u4821\u25e4\u56c3\u0e93\u0845\ue6d4\uc07a\u644a\u9fe7\u2dbf\u4b5f\ud5c8\ub57d\u6f54\u8d32\u6f76\ue2c5\ud8c3\u2b0a\u3f7b\u14aa\u834a\uf62f\u1370\ubefd\u0fcc\uf337\u5e3f\u9658\ua636\u4ed3\u5e9e\ubd59\u2777\u7e78\u0624\u2d3e\u0dab\u69ad\ue6e3\u9d02\ub91e\u1360\uc609\u9a31\ud6f6\u80ab\uf382\u7f53\ud4a1\ud9e4\ub8df\ua35f\u9512\uc05e\u44ec\ude71\ub438\uf8a8\u06e8\ua1e4\u59cd\u95e8\u272c\ua551\u22b0\u497e\u953a\u447d\uf762\u7ddd\u926b\u2eb0\uc140\ucc94\ue6e6\u27e8\u80ae\uf1c3\u312b\u06b1\u7cbf\ufdc8\ud263\uc229\ud377\u8e39\u03b4\udccd\u3e6f\u2e90\ub043\ub78a\u8576\u97fa\u1efb\ue0da\u7704\uae84\u70fb\u1385\uf6f5\u3e53\ud1e5\u502c\u5cb6\u2255\u6169\uf264\uea5f\uf8b2\u6b68\u7381\uf8e1\u8d3b\u26ce\u471e\u100c\u0c78\u489a\u600d\u634a\u0548\u6e0b\ub9ee\u8696\u4c93\uaf62\u2e15\u7e3b\u94e4\u1525\ud330\u507e\ue431\u6b89\u9e70\ud841\u4271\u620f\uf827\ucb86\u42aa\uc7ab\u32f6\u7f19"]],"metric.metric-2":[5,6,7,8],"metric.metric-1":[1,2,3,4]},"finished":true}_serial,__mv__serial,_time,__mv__time,random_bytes,__mv_random_bytes,random_dict,__mv_random_dict,random_integers,__mv_random_integers,random_unicode,__mv_random_unicode -0,,1443154422.89,,"0pP;O:xwh\4v[""[[/^7mSF#WJ(uj!:MB",,"{""a"":1.2968942978210108e+307,""b"":""\u15cc\u5b7c\ua0d6\uefb0\u2115\u2b02\ubf7a\uf065\u2b73\ua15f\ua77d\u9c67\u9ab2\ub391\ud2f6\uae91\uf460\udd3a\u03d4\ua682\uc81f\uc5ab\u6bbf\u9917\u6703\u42b0\ud71f\ud29a\ucbcd\ub90d\u6bf4\ud076\u5dbe\u3cb7\u3657\u8789\u9a1a\u6a56\u354c\u9b4d\u8492\ud713\ud6b3\u052c\u53b0\u190f\u6ae4\u2fcb\u5c4e\ue7b6\u9a4c\uf567\u0118\u5f80\ub98b\u3961\ued8d\u0d52\u0417\u3d8b\ub643\u1080\u1b02\u04a3\ucd29\uf441\u700d\u381c\u8a53\u6a58\ue042\u575e\u1411\u87e5\u0933\u0a4f\uc3bd\u8743\ud911\ud753\u13a3\uf7e4\uda99\uc089\u0e9f\u6582\u3f3b\u29d6\ue99e\uc642\u8bd8\u900c\u263e\u3adc\u8eb4\ua91e\u1ade\u6fad\uced8\u9bc8\u43d0\u42f8\u44dc\u6340\u9160\u7ded\ub139\u612a\ua962\uaca2\u1f36\u988c\u58ef\ud544\u9947\u9c68\udb93\uea4b\u9b14\u8110\ub12a\u4ebd\ua604\u711c\uf68c\u19ea\ua4bb\uae4c\u41e3\u857b\u7638\uc2a2\u0a38\ua29f\ucb38\u8e67\ufb40\u51ff\udfe8\ud86b\u496a\uef36\u68a7\u531b\ufb6e\u6376\ufd7f\u2e86\u1235\ua375\u7ac0\u6da6\u9037\uc1b6\u886d\uc8c8\u34d1\u6e98\u7afa\uab29\u4ee4\uf356\ua178\u44f5\uba04\u42a8\u8996\ue2ba\ua4c7\u841b\u9682\uc502\ua109\u286a\u1af0\u084d\u22dd\u310f\u8ac7\ub35e\ub40e\ue06f\u751c\ud0b4\ue290\u0a17\u2c92\u8a2b\u0789\u4590\ue673\uabe2\u094f\udcbc\u5eaa\u325c\u6adb\u472f\u7eb4\uab38\u8903\u7d5c\ua267\u109d\u8918\u159e#\u8499\u4fc4\u01a4\u9298\ua4d6\u7ea0\u7191\u7609\u23a7\u3d69\uc95b\u4c93\u26f4\u77ea\ub420\u3b5c\u6f10\u29b1\uc189\u089b\uc756\u549d\uf564\uf749\udaf7\u92d7\u9192\ua158\u40af\ud0bb\ue009\ua2c5\uf595\u7b5e\u03b4\u2f04\u87bd\u30c9\u9265\ue00e\u61f7\u44ee\u86a2\u9a6b\ue383\ub205\ub10a\ua355\ua04f\u8c44\u152b\ueb19\u6347\u1d73\u4bcc\u6378\uddbc\u743f\ucc7e\uc8d5\u640d\u3656\ud871\u61e9\ue33a\u0856\u62a6\u836d\u93d8\ue816\ucdf2\u7118\ue4d9\u4282\u126e\u1625\u4255\u540b\ubf41\u8a81\u18f4\ucc39\u9b30\u9360\uc62e\ua028\u734d\u332f\uceb1\u6202\u1557\u976b\u0591\u7302\u57b9\u4274\u1d19\ua75e\u7ae4\u31c4\uaa3e\u5b49\u8868n\ued31\u51ec\u142d\u9450\u3526\u1378\u86cf\uadc7\u2ac7\ub975\ubd00\u4c89\uce0c\u20a7\u2db2\uecd4\uc311\u776a\ud331\u9183\u7df5\u09e3+\u934d\u79e9\ud87d\u2e64\ud4f0\u668f\u10f2\u871c\u99d9\u7c30\uf3b9\u5ff1\u5b0f\u9dda\u639e\u1ecf\u0d61\u6a4c\uc6a1\ua28a\uc75d\u9308\u6002\u8814\ud528\ueb78\uee07\u150c\ua630\ud774\u1429\uc805\u502a\uccd5\ua070\u6d11\ue81b\u4601\uab84\uc4dd\u60cf\uefca\u3129\u8bf5\u38fd\u9b4a!\u98d9\u24c8\u564b\u141b\u8e0a\u2f8e\ueb1f\u9311\u5462\ua5b4\u7a4e\uac7a\uc57f\u316e\ube3f\u4f56\ua52e\u3de2\u6bb0\udc3f\u4501\u731d\u77f3\uf6d0\ucf21\ua10c\uded1\ucb51\ufcdd\u9c80\u092f\u7e1c\u8177\u2144\u0610\ua3a7\uc0b7\u20fb\u13ec\u5f9f\uefc6\u9deb\u7741\uebca\u853e\u5903\u37d8\u0c8b\ud7a3\u1de9\u074f\u2f21\u950a\u04fc\u3279\u73b0\uda85\u1955\u6cad\ub5bd\u445b\ucb0d\u7a89\uec0c\u74aa\u108f\uc10c\u4d51\uc945\ud3b8\u3d23\u7cd5\u311a\u44a4\u3199\uc6bd\ubf6f\uf834\u59f6\udf22\u17cc\ufcf3\u7f7e\u98d4\uaa0d\u5466\u438e\u9ff0\u517c\u84e1\u7c6a\u044d\u6071\ua143\uf64a\u58c2\ue1f1\u6988\u01c0\u7e9e\u3183\u7547\uad04\u0c0f\u7981\u6c50\u4e96\u5fbf\u39dc\uf797\u1d4a\uefb4\u33cf\u84f8\uda08\uc5d3\uc54c\uad11\u4eaf\ub34a\u49c8\ua717\u2ec8\u4111\u5315\u5574\u06ba\uc09a\ud5cd\ud4ea\ue641\u83f0\ud020\ue73e\u873a\u1da1\uc69a\u7305\u2df8\u251e\ucd5a\uac85\u38c6\ufe6a\u8bbe\u345a\u043b\u0ae9\uba46\udf56\ua97b\u3d2c\u7cc3\u125a\ua34f\u6a28\u287a"",""\u798f \u9152\u5427"":{""fu"":1.2438074480626057e+308,""bar"":4.0438309149640735e+307}}",,"4200010286095744000 --79571214356433920 --3170588095685636096 -495822271515036672 -1486558765717658624 --2648385790416158720 --3263553418111775744 --1341527157304121344 -749333617415084032 --4405199047640823808 -1348875413839232000 --42549630670475264 -2286306676468924416 -2677133714916528128 --1718227786436793344 --3173845016350625792 -3685772481343308800 --2173777887468751872 --3064097433425345536 -3323857040537844736 -2403678321906395136 -3058982391169523712 -3035644292694798336 -1998451608370298880 -4568475595383895040 --544653291673355264 --1165923868580304896 -208760736033008640 --321277732316127232 -4562655214399414272 -3119362901984075776 --3375417576826765312 --21103408974108672 -13663032922173440 -16412812779604992 --938524143421928448 -1536254186929158144 -1321515401236624384 --3756444578203969536 -159102078942158848 -2338547219963275264 --253993908823400448 -3332988248864283648 -4088164666472121344 --4189669172695112704 -1134241254856809472 -4112986290711497728 -3692625924252155904 -4546075011090575360 -2979661515248087040 -2279623312391524352 -2665126703375204352 --2668068344578538496 --4557825922942644224 --184698888597608448 -8284157781437440 -3500938467414744064 -1881240609330420736 -2508234572990876672 --3407897043375826944 --3363848101037123584 --3713003594477992960 --3111453338536080384 --1632718756103994368 --184043587240824832 -811608737603584000 --4571116474085862400 --3817633138797485056 -4016900850153864192 -2340040369308599296 -605901991664497664 --1442355110468395008 --2169095550159586304",$4200010286095744000$;$-79571214356433920$;$-3170588095685636096$;$495822271515036672$;$1486558765717658624$;$-2648385790416158720$;$-3263553418111775744$;$-1341527157304121344$;$749333617415084032$;$-4405199047640823808$;$1348875413839232000$;$-42549630670475264$;$2286306676468924416$;$2677133714916528128$;$-1718227786436793344$;$-3173845016350625792$;$3685772481343308800$;$-2173777887468751872$;$-3064097433425345536$;$3323857040537844736$;$2403678321906395136$;$3058982391169523712$;$3035644292694798336$;$1998451608370298880$;$4568475595383895040$;$-544653291673355264$;$-1165923868580304896$;$208760736033008640$;$-321277732316127232$;$4562655214399414272$;$3119362901984075776$;$-3375417576826765312$;$-21103408974108672$;$13663032922173440$;$16412812779604992$;$-938524143421928448$;$1536254186929158144$;$1321515401236624384$;$-3756444578203969536$;$159102078942158848$;$2338547219963275264$;$-253993908823400448$;$3332988248864283648$;$4088164666472121344$;$-4189669172695112704$;$1134241254856809472$;$4112986290711497728$;$3692625924252155904$;$4546075011090575360$;$2979661515248087040$;$2279623312391524352$;$2665126703375204352$;$-2668068344578538496$;$-4557825922942644224$;$-184698888597608448$;$8284157781437440$;$3500938467414744064$;$1881240609330420736$;$2508234572990876672$;$-3407897043375826944$;$-3363848101037123584$;$-3713003594477992960$;$-3111453338536080384$;$-1632718756103994368$;$-184043587240824832$;$811608737603584000$;$-4571116474085862400$;$-3817633138797485056$;$4016900850153864192$;$2340040369308599296$;$605901991664497664$;$-1442355110468395008$;$-2169095550159586304$,쇨뿤暸庲獱桺ⱈ棃㍼⩝砍䭓㸲襝孭猢粦唆썵哾㯛巹번ꭂ礤岕楘଒㪎ࣨ樈졌拔빏켛ࢄ굃䡼ʐ炶곉陱첺䵃횧ﴵ㎛ݽκ囁縓ㆉ۩뿏㒩餛ࠎ髪⫍♬䁡ꯁ኎뉜봏蕜쏐ᔗ唢ꮋ躸봡䚌ᡮݫ痑䔜⤄ʝ뱆쌸◶嗷鶉╝꪿왝ﺧꡅꝫ鎭୽뵋ꕳ앙䑖첝쵳셕쬾ߪɌᯪ靝긃ᖑ픅픪췃ꍾ彴鯜埒醣訰崢꙱㌯떪列䏦肸안繥堾⊨咦ᤎ꿭瓮Ǒ칡녳ᤓ碌㇏῕듫诎赯谇䧺륛㩸⦁꣄⯂◬ڞ薌䪉谵߱閏洉颍铕䀯ඞ뿧갳昞ꙃ뾟暢ᥣ϶顬艰쳿셭≞둄㈚䕿⠖㱍望お㤤។ᆩ뺊咱ꄩﰆ㊹᧳鉠㯹ᩆ腊왬匜垐༴꒻䣤昷棺ቤኻ⼪ᰃ㽊䛙倔庙唔뻏㦒ꇭ⑻밝둽䦪醷꬧緬偺縑ં툐ֈ幩谭ᨕ崽斈鉍㎕ᄇ᠓공⍿⾢埙끧❎靖ﺇ밠劕ሞﻼ赑刲陗묠征뇭倭ꋵ樸츭쌯빇㏒ﲳ芓蔺薶抿駔꿟Ԋ⶛埐㨟྅뾡䅧徭벿뭁㕞䋕䙮쵩뜙귩뷹ꍚ⾉ꕌꙬ⇨魻奷残뀾칚⬅慉湓ᰄ糍⹔韟橜晹屝➑ࢻ൳앀村ꅬᢂ趻໋䮾唴꒛鈾병杳﷮誘梶쐀뢚扮삡ㇽꓩ俎∯࿉顶ஞ㰂퐴툢ﰛ鸷湋┌该햧ٿ粿걜䦝阙蘄滈줯੗픻꽋亼귻漢曽엺푹⧹ⷐ鐃㡓嗈扠繀遑࿖湙繏꽡ྣﶌ崡姱›낯싅翲檒竛袤ﳗ勁⼷ᑱᶦ핈쩵ㇲ봚᝶⪼覸済棝䋇骚卢⛓竣ῳﶸ咯쭱以芉뱥ꞿ否賯龫昔դ홓㑘ٓ䑟⋞姭꼭⳨鎐꾸俜↧렾琤ᅩ딏㊖飑驘쁰줔豰ꕯ߄ळ⏫臜革凷듾퓅㜃娶꽌ꀸ㵣䴅ẝ湴팘헀䮘囒鰍૾䔋퐅繌, -1,,1443154422.9,,1>٬/xxP¼>fb,,"{""a"":1.218991580214295e+308,""b"":""\uebf5\u185b\u0bfa\u0d26\u6fa8\ue0b5\u5b79\uce7d\ube6f\ud488\u0bdb\u499d\u1bc5\u22a7\ue415\uf269\u96f1\ua328\u3327\u302a\udc50\ua8f9\u3a55\u8379\uc6a8\udea3\u0472\u147f\uce17\u853f\u0b2e\u66d5\u0efb\u1fea\uf7af\ucf37\u57c7\u4a9c\u1329\uc596\ub34e\ue781\u6c04\u6d5a\uec3d\ucf4b\u8356\u7d5a\u296f\u2903\u4fb6\u2cdf\u8ad5\uea1f\ud4f2\u36fc\u2c55\u1ecb\u3673\ua8cc\ud2b5\ud521\u0aac\uf3ec\ubb64\u950a\u804d\ua5b0\ubb50\u931e\u2f64\u97aa\uf143\u74e7\u3486\u5ea1\ubd23\u29b2\u5006\u3889\u9d07\u17a7\u92b2\ue398\u80ad\u5b89\u8e8d\u989e\uebcd\ud355\u311c\ua92c\u10c6\u3877\ud0b6\u1c19\u62f8\u062b\u8851\uba89\u8231\u6c5e\u6fb5\u603b\uc25e\ubb1d\u8d4e\u826c\u0b45\ucd1d\ud892\ude32\u6471\u794c\u960d\u3667\uc342\uffe1\ud848\uf42f\u24ff\uaefb\u6764\udb3b\u0d0f\u445f\uab2c\uce52\u07a0\u4c2b\uad8e\u1768\u2c1a\u275a\u292b\ua85c\u586e\u69b6\ue0f7\ueb0f\u91a1\u69ab\u7bdd\ubbdf\u0964\ue1c3\u3fd2\ue405\ud9cc\u5d11\u48b5\u862a\u823d\u01ae\u2258\u2457\u3f61\u5e8b\ub85d\u3043\u6bc3\ufec2\uc729\u6498\ub946\ubbf0\u45d6\ue829\uca91\u85b2\u75cf\uee26\u7546\udb0c\u1bd5\u9939\u6be4\ua5c5\u405d\ub034\u3341\uaca1\u22e6\u1237\u9262\u3297\uddb6\ud172\u18bb\u0e38\u5d6e\u6208\u4f37\uf2ff\u28b6\u94fe\ucc4b\u525d\u6022\u4841\u494b\u1c9d\u3d6f\u7a3d\ufd2d\ua578\uf8dd\u4c18\u71d8\ue62b\ub6f0\u743c\u5057\udc23\u65e8\ua4f8\u1cb1\u2588\u8d57\u6376\uea7e\u7cbe\u218c\u6bc5\ub14e\u8509\u49e0\ufc6b\u4497\u6b92\ua07a\u31d4\u57fb\u7006\u8459\u4b91\ua6ec\u1d4c\uded2\ufc28\u7fea\u19ff\u66c9\uacc8\u3c2f\u604d\u0957\u747d\uae85\ub1da\u18e8\u2b65\u500b\uce5f\u7321\u4afb\u6def\u94ad\u2d30\u8889\u532b\u8fff\u4944\u21fe\u225c\u7d7c\ud5f3\u3a3d\uca18\u5392\u2c33\u9e66\u5b29\u8a00\ud26a\u9e6f\uf14a\u2651\ud2f3\u2f05\u76c7\u91e0\ubcd5\u76dd\u2031\u1314\u8d04\u7519\u130d\udf8a\uf313\ua89f\ua5cd\u1235\u7bda\uaaf1\u1333\u90cd\u85ca\u76f0\u735f\u21a1\u171e\u2e89\u25c7\u0412\u3e74\u40c9\u163c\ufb90\ufa25\uf5ba\u7fa8\u4487\u46bc\u8c44\u5646\udaae\u87cf\u18d6\ue17d\u43e5\u7081\uf830\u318d\u6f45\uf83d\u5c88\u63ec\u2fa3\u1063\uc570\u32d7\ue907\u13bd\u7456\u9cc7\u45c3\uce3b\u8f08\u5105\ue7ee\ue853\u8bd6\u9b38\u6336\u11f1\u00ce\ubd32\u02f1\ufea8\u1773\uc22b\udd10\u1038\uf23d\u8076\u085a\ua2df\u4e2a\u6cf5\ub774\u5b8f\ua0f2\u9b43\ua1ab\u0f0c\u9132\u78fa\u435f\u5551\uabf6\u4cc2\ud960\ud12e\ubfd1\u7985\u637e\ueb64\ua42f\u473b\udacf\ua4f2\u2818\ub2f2\u7686\u1fa2\ud8b3\u34ac\uc482\u8863\u7d12\u34c3\u512d\u953a\uead3\uecb3\ufcf6\ud4a9\ud531\ucf38\u9e59\ua264\uaccc\ub071\u966a\u403e\u65a4\u66ad\u2274\u7a7c\u8d16\u4a69\u1597\uf181\u8333\uf948\u0d9d\u8f2a\u0339\ua5cb\uc3fe\u041b\u8709\u9f83\u40fe\u3782\u2d6c\u8582\ua866\ue98c\u0985\u3b4e\u23fb\uc830\u3c5c\u6270\u4c37\u2421\u61f4\u7e9e\u1c41\u63b1\u3fc3\u9a3b\u2cd7\u0999\u5633\u684d\u2eb4\u054b\u9e4e\u89f4\u51b0\ubf8e\u8f74\u753c\ud8e3\ud722\ueec3\u7afd\u84e6\u527a\udf38\ue03c\ub715\u73ef\uf5db\udf03\u0eed\udf1f\u3b3d\u3057\ueac0\u5d6d\u0b0d\u11df\u6927\u08c8\ub614\ua240\u600b\u2400\u18e0\uddbf\u03d6\u03fa\u951b\u0732\u2311\ub041\u821f\u0321\u2a8d\uc764\ub812\u02f7\u4264\uf94a\u04ad\udfe3\uc413\u3feb\ub3a3\ub37b\u1e90\u980a\u74dc\uac3d\u8891\u1f23\u9b06\ubae5\u4b3c\u328a\ue5ee\u99b1\u0c79\ued17\u9d86\udb67\ua006\uced6\u1d4b\u873e\u9c63\u4529\u576d\ud0e2\u9a2c\u9df6\u6799\uff4f\u8481\u94b5\u7436\uc327\u4dee\u16e6\uf469\ue0df\ufd78\ued10\u201e\u1f34\u1d26\u7087\u2c77\u9455\ua12b\ubd72\u9ecf\ubc58\u136b\u58ad\ud648\u4280\u0980\u5bc6\u339f"",""\u798f \u9152\u5427"":{""fu"":2.1245222307510256e+307,""bar"":1.6810448798544158e+308}}",,"821060684240732160 -2438729858148953088 -415348511851631616 --4329179170263367680 -2149513026065300480 -2956331739312939008 --587894070509511680 -3705705360748583936 --3860677133085238272 --2492731073167093760 --4360765568725167104 -4568984863576334336 -4148391174489553920 --984600643010539520 -167838134684372992 -1766949298191856640 --3355423098788726784 -4271894356936870912 --71851729838137344 -1854578671679191040 -244255105534217216 -1902474808888613888 -1667899189114780672 -1966981233418483712 --4407823997917270016 --426090805914356736 --1377523101381080064 -959498681573577728 -2469848788894237696 --413255711393384448 -151554643692505088 --40233177869734912 --1980540720299166720 -1936639751502158848 -2402619507810590720 --2691682497457048576 -3371542738302111744 --584457535547807744 --1141586916620963840 --3869577249469010944 --3162318825317921792 --3540933293233373184 -3560680599656934400 -3286968408622047232 --4305480213070671872 --4126765322513994752 -934038867034369024 --2196775632423571456 -1318992403183763456 --244821942172973056 --549459887286019072 -1610316438499075072 --2577673587675416576 --1659469388745511936 --2329643691139314688 --4482202319063527424 -3845886566866939904 -205630809671345152 --2530069325187700736 --2486909400800903168 --400519672490912768 --754584986652618752 -938366189349444608 -2327011010785970176 -4080691156034307072 --2077389510285144064 -1199169535309516800 -3990994694264648704 -2583762869715045376 --4561097760544477184 --4336745916048795648 -450374038980140032 -3456361613725723648 --310802529564407808 --432440279610573824 --4182719593072530432 --658796902427872256 --2045808380049341440 -4079303970086999040 -618508716657429504 --804240326960704512 --2569036104530287616 --1350019103472201728 -3026364117501327360 --284111746615595008 -2235476398309807104 -4286951143254659072 --3513599026409464832 --2532976484543680512 -374218771578187776 --1616201826446668800 --19739422474250240 -10384552954244096 -242678947623724032 -3391497610865144832 --4586904226702094336 --828584464391286784 --2863255708030101504 -705956969912586240 --2648284281991292928 -218274175202322432 -549833502704698368 --3425932331933455360 --945797998653917184 --1736680183678288896 -1239244965591038976 -369256276136265728 --2916990406527424512 -664676734903334912 -4460917218202161152 -800021334339877888 --211068461969161216 -4113733278847112192 --3972788325747791872 -221469242486350848 -4090207295209224192 --1854229045979122688 --3366123455832712192 -1169920235129304064 -711588281115786240 -2482356007101896704 --1986231577318434816 --4163332090919401472 --1975985465186479104 -3269933884128847872 -1867550291609012224 --2497846647251461120 --3030445593925396480 -714656236641348608 --1678799002950540288 -4196996961617429504 --1463016050769909760 --718507955758796800 --1828605726484636672 -2079206598203297792 --4588459049300931584 -4439408861296744448 -3356110897446739968 --338819771125796864 --2445322553201603584 --1333310229110315008 --634159938413350912 -2801998473207318528 --192619714071862272 --3447589761646622720 --2340036893956268032 -91278713536307200 -798207198131129344 --3644203420411880448 --3088754408768626688 -4297641573395377152 --1745464632922912768 -173938225938113536 -1548579018761352192 -515844474673790976 --1912007990839903232 --3123503733649547264 --536759935146646528 --1309071866287707136 --2997761242123147264 --581797318301242368 -1494149723556020224 -1770911312877265920 -5868580351157248 --2395118912665762816 -2407653588095798272 --2935014635852614656 --2769142828976191488 --3397544666530009088 -2816390610998711296 --4543300388564445184 --2154021356548909056 --1519541311026397184 -3639241036052172800 --3635102428826478592 --4575946390986907648 -1047125264457334784 --1698097424923609088 --2533975374171157504 -555513924388834304 -3935462959453056000 --154340427468539904 -239740631525837824 --1021012670965222400 --342501794067367936 -2881607948802341888 -2674269890004605952 --3192791403949179904 -4442417300713736192 --2940967031617482752 -826683079876302848 -138510243624834048 --961188961128541184 --4460789741353758720 --1076683993381079040 --391281655462422528 --2898143418547421184 --166671831422017536 --2836958411184990208 -2709496266077483008 --774258882469554176 --3265544980971481088 -1803876501520340992 --1031967830796025856 -1523154081514921984 --4215733294966703104 -3318956316472192000 -3753077974228423680 -2442512657709428736 --1891467428836993024 -4208439727649544192 --2761950658886287360 --1222339648672169984 --3283691101413398528 --4489493692571957248 --3818898294463097856 --1621982300929624064 --456163615253618688 --3413586696946383872 --605363307375611904 -470528167747815424 -627279372964797440 -1724268697242989568 -2751326515807823872 -4479133513070828544 --4603401439404184576 --1285505891458790400 --3715003175739490304 -3721134117487532032 -499876896009526272 --1395423842168346624 --1690205060800044032 --2992563973417148416 -3116613964194045952 -2128595277587161088 --2675944551783163904 -2194987442685932544 -1266574084414679040 --4478429401640950784 -835571833926192128 --2822746232979660800 -1512826240993689600 --1540305454694659072 -1359356662893469696 --378874685494675456 --3747893500252661760 --1328493778470249472 -1789989703363010560 -633516959973517312 --2481137578058824704 --2687145815022115840 --887374059121617920 -2782324832954775552 -3039910052929112064 --2984954357431613440 -2816536979896899584 --2142532585969697792 -2358494957421020160 --3932753695902704640 --1143235616107980800 --1295008279979328512 -1136822232824478720 --750635407969999872 --4055903010781113344 --3494107866009201664 -1839273654521569280 --389853948875137024 -4285435576328764416 -1308603919113522176 -3673132861592503296 --3144343814795402240 -851048475159556096 -4200248529527788544 --2644903807259356160 -3938305135881133056 --4492208910220843008 --2957646519256951808 -927598738843659264 --2733752878203918336 --256533230893138944 --3404263579393896448 --1371697129954922496 -1958945171547436032 --1679625698632968192 --4332368759413988352 -4114768477756264448 -2260946773363725312 -2258244716725476352 --851977763683220480 --4599852829043171328 -3213522295215314944 -1674396942356313088 -787172184604875776 -2077618656475334656 --1263752864666758144 --1863673739080052736 --26172640643276800 -2716992977000929280 --4160684427106592768 -2192729585114882048 -1235740525833300992 --712561204599678976 -4444615092306272256 --4386025898180937728 -2652136036083694592 --189977597595661312 --4278079111166220288 --2989805478812934144 -70816489603282944 --2096315379504623616 --693418883771997184 --385016854993172480 -4576837086687309824 -2799788344326805504 -680662137661509632 --3914765445538171904 -661610923036174336 -3319024219895364608 -1615422718431903744 --4306036386591835136 -448174246980659200 --3908005358651122688 -319388869882406912 --2028294571988361216 --991842620069257216 -3761133265607802880 -3150787725857885184 --4192192260195970048 -129856140445583360 -4412219986683343872 -289420182694331392 -1400354611905273856 --4340328206273427456 -1268518323888589824 -1087641968924002304 --3329215543914448896 -932288116629456896 -659623296470455296 -1086871651573046272 -4023258635000027136 --3590230899100236800 -2308346951725178880 -2106959898806345728 -1881037516848266240 -1119450744974517248 -3446700280293330944 --1201585292856072192 -449240226884159488 --730829461012679680 -2274542590273978368 -1253354206535771136 --4207171701196958720 --3097210853000371200 -1415807693734743040 --4260537183589598208 --1308548934456354816 --3939209532597750784 --3878224042212843520 --2366775812194872320 -15644659486721024 --3462953786821008384 -1034221197148791808 -1109247927025317888 --2819405468175702016 --1100054332081263616 --1701940027395011584 --2797924686676622336 -1583661150926508032 -1740087624265774080 -2877243377684676608 --4547887800517105664 --3012445424009659392 -956060984789429248 --1810888911101106176 --144418112988078080 -403716426842025984 --4539980462084087808 -614664791937989632 -2073219764815150080 --953331333217087488 -535872004392119296 --711338565632679936 -4156970683048504320 -590752075289621504 -2687058391948208128 -609536614616825856 --1390337072023911424 --612330944640844800 --1646005581479809024 --2064904760690124800 --69355791322958848 --1614541882759353344 -1767449355142239232 --973168441545411584 --2934525995446364160 --2608863529996668928 -2015895886178755584 --1217858884267740160 -4571970829247142912 --2007349258887346176 -705813170053427200 --2833418129716637696 -2774756811560388608 -1942242621568923648 --1312183923472350208 --1576793562822244352 -563906012970259456 --455458598364404736 -1954736047718287360 --4456050513146613760 --4444807485364442112 -1528708869845070848 -3387878646827814912 -213239738269337600 --4514889779548233728 --4331486705174269952 -4403456133242851328 --293167530890772480 --4302528755587223552 -2289075343349933056 -3095350150421421056 -725385022577250304 --4371953154284874752 --798314485684546560 -1565140147949090816 -4291745723060441088 --952971110002588672 --1468481897026625536 --957310079032775680 --3392902588702066688 --1417056766032966656 -628076935415881728 --4176152928770537472 --1369892596009644032 -2317122931528562688 --4324221703357984768 --2111422650186382336 --567949573608361984 --2039373903046307840 -1197124947472163840 -1081519180249843712 -1788498116195634176 -1064415517825153024 -4310453170981711872 -4301095321928546304 --951454997258887168 --1402105135148735488 --53799526726987776 --3436714192267409408 --3499305991730358272 -358562770408598528 -1952582294421570560 --553142858291505152 -364571642413042688 -2927148415414007808 -879404053499863040 -3098009447748756480 --3724597449936636928 -455035370493294592 --4040965156171075584 --4316606704625893376 -4238189494286843904 --1351594827216421888 -3699671824656422912 -1394429104150410240 -1876315004327103488 --1260275510826013696 --1626665780276386816 --2381365457468132352 -2373971909382511616 -1230629985464732672 -3705981440855963648 --2925305225646089216 --2564878386232623104 --4061500159351400448 --265391431371086848 -4208227016522487808 -4184640045033188352 -3052131336869459968 -4591794837382991872 --2959412826480804864 -2811656610560020480 --1183998093312659456 -3327913018635090944 --3584455531538938880 -3561076762105275392 --3882261240710174720 -3364128241623012352 --1362432706564400128 --4162513329439674368 -4275551709358315520 --3234901384317342720 --3091886252425192448 --4527021502355069952 --4017989163508662272 -3889397747885518848 -1638401578662299648 -4600819060937383936 --171828031406102528 -341725347174136832 -4307544203589323776 --2350863743560712192 --2047867285966894080 -2388234858463735808 --3422378610723119104 --1659998176234379264 --1970798194733862912 -3379995782135009280 -520994618288486400 --3361963177991314432 -1499399643087893504 --3027195602249261056 --550504343599629312 -79017968026637312 --3412080265575993344 -3730465260241158144 --3460518413092928512 -1503192277240297472 --1467225116141110272 --576392016242006016 --3527024444689217536 -870282147998947328 --3066171827858282496 --287956792852533248 -3071762208308869120 -730993294223872000 -243142911227626496 -1672579681259132928 -1906601453079770112 -1338321169901133824 --4312114274128397312 --1846391307170371584 -2575686386699357184 -457846563336902656 -3842770091465228288 --57858912302327808 -468524430370805760 --1516495509598705664 -1496796743680859136 -3152738836770484224 --1187194284828951552 -2507983680957622272 --1524617151282842624 -3663768507827890176 -239918930244231168 -3195944386855609344 --2862955561471414272 -2941344947559308288 --217751725694196736 --1671888160196544512 -1163796876685151232 -2190901572136010752 -4286594606273307648 --2223600874803518464 --474772640788523008 -132239249367367680 -829621398866021376 --56788906721065984 -1078719793905597440 -1614692189078302720 -1377562037677339648 --3407148572198834176 --2978212620048683008 -4307497870568345600 --2916717241836477440 --1372771999106030592 -4164348198862302208 -3302445625412912128 -4309972142170049536 --2029424441776456704 --4074119580254699520 -1544452864692219904 -230875948718935040 -4333259007759900672 -84015473106414592 --2301414358074612736 -4196857277634351104 --162695067352240128 --3329756285535137792 --3220799966487916544 --3443526888275561472 --1076536856704845824 -3069894550501782528 --4148068606343333888 -3497113788478656512 -1064645816687361024 -2152375745358021632 -1067885010513024000 -1162361216697517056 --2913758298922309632 --3189612814877681664 -1146789807327905792 --2336493126284427264 -4022436229573056512 -1016571629470148608 -1997493879495199744 -203309630997573632 --2906378842622940160 -518460450966225920 --1402643423423808512 --2345173005623710720 -3034901815047461888 --875334327484130304 -3603765066648539136 -1941804012077052928 --3774867163550796800 --1063122974301085696 -1136493907916401664 --2095133873416210432 -2899615131734502400 --1622426166039218176 -1651031823162243072 --288572569905486848 -3592964627118215168 --3736022875031256064 --3634157420101272576 --1692475294097340416 -10156948629486592 --2578070497518517248 -2373290034703756288 --3341676488671529984 -4033555820162522112 -3604995694378290176 --755998786046277632 -2618871721499487232 --1469129843547092992 -4531972182613468160 --4072390807147370496 -3129294128231176192 -1293361711209635840 -1469275479535632384 -1142466303541441536 -3435722182772157440 --2312804327213229056 -2892337889969369088 -1300272999602724864 --4048882368568125440 --1963939784402553856 --1856857201082460160 -3953745697980933120 -4055636187616285696 --4419717325403242496 --4001163076381407232 --1185407945127440384 -1154008919307454464 --2498527033982008320 --221038395567763456 -4117265181814953984 --1822159691191199744 -4108697625899754496 --209239100847753216 --798788631430978560 --2478290136890497024 -272032134724233216 -3122431095784290304 --1384543352383386624 -2259740006313264128 --579968568449871872 --4455856769084003328 --4033924127648861184 --152763937930979328 --4145015890674311168 --321024766312796160 --2949655115986077696 --1813557547616572416 --310785172445943808 --3886939480131707904 -1980086210364938240",$821060684240732160$;$2438729858148953088$;$415348511851631616$;$-4329179170263367680$;$2149513026065300480$;$2956331739312939008$;$-587894070509511680$;$3705705360748583936$;$-3860677133085238272$;$-2492731073167093760$;$-4360765568725167104$;$4568984863576334336$;$4148391174489553920$;$-984600643010539520$;$167838134684372992$;$1766949298191856640$;$-3355423098788726784$;$4271894356936870912$;$-71851729838137344$;$1854578671679191040$;$244255105534217216$;$1902474808888613888$;$1667899189114780672$;$1966981233418483712$;$-4407823997917270016$;$-426090805914356736$;$-1377523101381080064$;$959498681573577728$;$2469848788894237696$;$-413255711393384448$;$151554643692505088$;$-40233177869734912$;$-1980540720299166720$;$1936639751502158848$;$2402619507810590720$;$-2691682497457048576$;$3371542738302111744$;$-584457535547807744$;$-1141586916620963840$;$-3869577249469010944$;$-3162318825317921792$;$-3540933293233373184$;$3560680599656934400$;$3286968408622047232$;$-4305480213070671872$;$-4126765322513994752$;$934038867034369024$;$-2196775632423571456$;$1318992403183763456$;$-244821942172973056$;$-549459887286019072$;$1610316438499075072$;$-2577673587675416576$;$-1659469388745511936$;$-2329643691139314688$;$-4482202319063527424$;$3845886566866939904$;$205630809671345152$;$-2530069325187700736$;$-2486909400800903168$;$-400519672490912768$;$-754584986652618752$;$938366189349444608$;$2327011010785970176$;$4080691156034307072$;$-2077389510285144064$;$1199169535309516800$;$3990994694264648704$;$2583762869715045376$;$-4561097760544477184$;$-4336745916048795648$;$450374038980140032$;$3456361613725723648$;$-310802529564407808$;$-432440279610573824$;$-4182719593072530432$;$-658796902427872256$;$-2045808380049341440$;$4079303970086999040$;$618508716657429504$;$-804240326960704512$;$-2569036104530287616$;$-1350019103472201728$;$3026364117501327360$;$-284111746615595008$;$2235476398309807104$;$4286951143254659072$;$-3513599026409464832$;$-2532976484543680512$;$374218771578187776$;$-1616201826446668800$;$-19739422474250240$;$10384552954244096$;$242678947623724032$;$3391497610865144832$;$-4586904226702094336$;$-828584464391286784$;$-2863255708030101504$;$705956969912586240$;$-2648284281991292928$;$218274175202322432$;$549833502704698368$;$-3425932331933455360$;$-945797998653917184$;$-1736680183678288896$;$1239244965591038976$;$369256276136265728$;$-2916990406527424512$;$664676734903334912$;$4460917218202161152$;$800021334339877888$;$-211068461969161216$;$4113733278847112192$;$-3972788325747791872$;$221469242486350848$;$4090207295209224192$;$-1854229045979122688$;$-3366123455832712192$;$1169920235129304064$;$711588281115786240$;$2482356007101896704$;$-1986231577318434816$;$-4163332090919401472$;$-1975985465186479104$;$3269933884128847872$;$1867550291609012224$;$-2497846647251461120$;$-3030445593925396480$;$714656236641348608$;$-1678799002950540288$;$4196996961617429504$;$-1463016050769909760$;$-718507955758796800$;$-1828605726484636672$;$2079206598203297792$;$-4588459049300931584$;$4439408861296744448$;$3356110897446739968$;$-338819771125796864$;$-2445322553201603584$;$-1333310229110315008$;$-634159938413350912$;$2801998473207318528$;$-192619714071862272$;$-3447589761646622720$;$-2340036893956268032$;$91278713536307200$;$798207198131129344$;$-3644203420411880448$;$-3088754408768626688$;$4297641573395377152$;$-1745464632922912768$;$173938225938113536$;$1548579018761352192$;$515844474673790976$;$-1912007990839903232$;$-3123503733649547264$;$-536759935146646528$;$-1309071866287707136$;$-2997761242123147264$;$-581797318301242368$;$1494149723556020224$;$1770911312877265920$;$5868580351157248$;$-2395118912665762816$;$2407653588095798272$;$-2935014635852614656$;$-2769142828976191488$;$-3397544666530009088$;$2816390610998711296$;$-4543300388564445184$;$-2154021356548909056$;$-1519541311026397184$;$3639241036052172800$;$-3635102428826478592$;$-4575946390986907648$;$1047125264457334784$;$-1698097424923609088$;$-2533975374171157504$;$555513924388834304$;$3935462959453056000$;$-154340427468539904$;$239740631525837824$;$-1021012670965222400$;$-342501794067367936$;$2881607948802341888$;$2674269890004605952$;$-3192791403949179904$;$4442417300713736192$;$-2940967031617482752$;$826683079876302848$;$138510243624834048$;$-961188961128541184$;$-4460789741353758720$;$-1076683993381079040$;$-391281655462422528$;$-2898143418547421184$;$-166671831422017536$;$-2836958411184990208$;$2709496266077483008$;$-774258882469554176$;$-3265544980971481088$;$1803876501520340992$;$-1031967830796025856$;$1523154081514921984$;$-4215733294966703104$;$3318956316472192000$;$3753077974228423680$;$2442512657709428736$;$-1891467428836993024$;$4208439727649544192$;$-2761950658886287360$;$-1222339648672169984$;$-3283691101413398528$;$-4489493692571957248$;$-3818898294463097856$;$-1621982300929624064$;$-456163615253618688$;$-3413586696946383872$;$-605363307375611904$;$470528167747815424$;$627279372964797440$;$1724268697242989568$;$2751326515807823872$;$4479133513070828544$;$-4603401439404184576$;$-1285505891458790400$;$-3715003175739490304$;$3721134117487532032$;$499876896009526272$;$-1395423842168346624$;$-1690205060800044032$;$-2992563973417148416$;$3116613964194045952$;$2128595277587161088$;$-2675944551783163904$;$2194987442685932544$;$1266574084414679040$;$-4478429401640950784$;$835571833926192128$;$-2822746232979660800$;$1512826240993689600$;$-1540305454694659072$;$1359356662893469696$;$-378874685494675456$;$-3747893500252661760$;$-1328493778470249472$;$1789989703363010560$;$633516959973517312$;$-2481137578058824704$;$-2687145815022115840$;$-887374059121617920$;$2782324832954775552$;$3039910052929112064$;$-2984954357431613440$;$2816536979896899584$;$-2142532585969697792$;$2358494957421020160$;$-3932753695902704640$;$-1143235616107980800$;$-1295008279979328512$;$1136822232824478720$;$-750635407969999872$;$-4055903010781113344$;$-3494107866009201664$;$1839273654521569280$;$-389853948875137024$;$4285435576328764416$;$1308603919113522176$;$3673132861592503296$;$-3144343814795402240$;$851048475159556096$;$4200248529527788544$;$-2644903807259356160$;$3938305135881133056$;$-4492208910220843008$;$-2957646519256951808$;$927598738843659264$;$-2733752878203918336$;$-256533230893138944$;$-3404263579393896448$;$-1371697129954922496$;$1958945171547436032$;$-1679625698632968192$;$-4332368759413988352$;$4114768477756264448$;$2260946773363725312$;$2258244716725476352$;$-851977763683220480$;$-4599852829043171328$;$3213522295215314944$;$1674396942356313088$;$787172184604875776$;$2077618656475334656$;$-1263752864666758144$;$-1863673739080052736$;$-26172640643276800$;$2716992977000929280$;$-4160684427106592768$;$2192729585114882048$;$1235740525833300992$;$-712561204599678976$;$4444615092306272256$;$-4386025898180937728$;$2652136036083694592$;$-189977597595661312$;$-4278079111166220288$;$-2989805478812934144$;$70816489603282944$;$-2096315379504623616$;$-693418883771997184$;$-385016854993172480$;$4576837086687309824$;$2799788344326805504$;$680662137661509632$;$-3914765445538171904$;$661610923036174336$;$3319024219895364608$;$1615422718431903744$;$-4306036386591835136$;$448174246980659200$;$-3908005358651122688$;$319388869882406912$;$-2028294571988361216$;$-991842620069257216$;$3761133265607802880$;$3150787725857885184$;$-4192192260195970048$;$129856140445583360$;$4412219986683343872$;$289420182694331392$;$1400354611905273856$;$-4340328206273427456$;$1268518323888589824$;$1087641968924002304$;$-3329215543914448896$;$932288116629456896$;$659623296470455296$;$1086871651573046272$;$4023258635000027136$;$-3590230899100236800$;$2308346951725178880$;$2106959898806345728$;$1881037516848266240$;$1119450744974517248$;$3446700280293330944$;$-1201585292856072192$;$449240226884159488$;$-730829461012679680$;$2274542590273978368$;$1253354206535771136$;$-4207171701196958720$;$-3097210853000371200$;$1415807693734743040$;$-4260537183589598208$;$-1308548934456354816$;$-3939209532597750784$;$-3878224042212843520$;$-2366775812194872320$;$15644659486721024$;$-3462953786821008384$;$1034221197148791808$;$1109247927025317888$;$-2819405468175702016$;$-1100054332081263616$;$-1701940027395011584$;$-2797924686676622336$;$1583661150926508032$;$1740087624265774080$;$2877243377684676608$;$-4547887800517105664$;$-3012445424009659392$;$956060984789429248$;$-1810888911101106176$;$-144418112988078080$;$403716426842025984$;$-4539980462084087808$;$614664791937989632$;$2073219764815150080$;$-953331333217087488$;$535872004392119296$;$-711338565632679936$;$4156970683048504320$;$590752075289621504$;$2687058391948208128$;$609536614616825856$;$-1390337072023911424$;$-612330944640844800$;$-1646005581479809024$;$-2064904760690124800$;$-69355791322958848$;$-1614541882759353344$;$1767449355142239232$;$-973168441545411584$;$-2934525995446364160$;$-2608863529996668928$;$2015895886178755584$;$-1217858884267740160$;$4571970829247142912$;$-2007349258887346176$;$705813170053427200$;$-2833418129716637696$;$2774756811560388608$;$1942242621568923648$;$-1312183923472350208$;$-1576793562822244352$;$563906012970259456$;$-455458598364404736$;$1954736047718287360$;$-4456050513146613760$;$-4444807485364442112$;$1528708869845070848$;$3387878646827814912$;$213239738269337600$;$-4514889779548233728$;$-4331486705174269952$;$4403456133242851328$;$-293167530890772480$;$-4302528755587223552$;$2289075343349933056$;$3095350150421421056$;$725385022577250304$;$-4371953154284874752$;$-798314485684546560$;$1565140147949090816$;$4291745723060441088$;$-952971110002588672$;$-1468481897026625536$;$-957310079032775680$;$-3392902588702066688$;$-1417056766032966656$;$628076935415881728$;$-4176152928770537472$;$-1369892596009644032$;$2317122931528562688$;$-4324221703357984768$;$-2111422650186382336$;$-567949573608361984$;$-2039373903046307840$;$1197124947472163840$;$1081519180249843712$;$1788498116195634176$;$1064415517825153024$;$4310453170981711872$;$4301095321928546304$;$-951454997258887168$;$-1402105135148735488$;$-53799526726987776$;$-3436714192267409408$;$-3499305991730358272$;$358562770408598528$;$1952582294421570560$;$-553142858291505152$;$364571642413042688$;$2927148415414007808$;$879404053499863040$;$3098009447748756480$;$-3724597449936636928$;$455035370493294592$;$-4040965156171075584$;$-4316606704625893376$;$4238189494286843904$;$-1351594827216421888$;$3699671824656422912$;$1394429104150410240$;$1876315004327103488$;$-1260275510826013696$;$-1626665780276386816$;$-2381365457468132352$;$2373971909382511616$;$1230629985464732672$;$3705981440855963648$;$-2925305225646089216$;$-2564878386232623104$;$-4061500159351400448$;$-265391431371086848$;$4208227016522487808$;$4184640045033188352$;$3052131336869459968$;$4591794837382991872$;$-2959412826480804864$;$2811656610560020480$;$-1183998093312659456$;$3327913018635090944$;$-3584455531538938880$;$3561076762105275392$;$-3882261240710174720$;$3364128241623012352$;$-1362432706564400128$;$-4162513329439674368$;$4275551709358315520$;$-3234901384317342720$;$-3091886252425192448$;$-4527021502355069952$;$-4017989163508662272$;$3889397747885518848$;$1638401578662299648$;$4600819060937383936$;$-171828031406102528$;$341725347174136832$;$4307544203589323776$;$-2350863743560712192$;$-2047867285966894080$;$2388234858463735808$;$-3422378610723119104$;$-1659998176234379264$;$-1970798194733862912$;$3379995782135009280$;$520994618288486400$;$-3361963177991314432$;$1499399643087893504$;$-3027195602249261056$;$-550504343599629312$;$79017968026637312$;$-3412080265575993344$;$3730465260241158144$;$-3460518413092928512$;$1503192277240297472$;$-1467225116141110272$;$-576392016242006016$;$-3527024444689217536$;$870282147998947328$;$-3066171827858282496$;$-287956792852533248$;$3071762208308869120$;$730993294223872000$;$243142911227626496$;$1672579681259132928$;$1906601453079770112$;$1338321169901133824$;$-4312114274128397312$;$-1846391307170371584$;$2575686386699357184$;$457846563336902656$;$3842770091465228288$;$-57858912302327808$;$468524430370805760$;$-1516495509598705664$;$1496796743680859136$;$3152738836770484224$;$-1187194284828951552$;$2507983680957622272$;$-1524617151282842624$;$3663768507827890176$;$239918930244231168$;$3195944386855609344$;$-2862955561471414272$;$2941344947559308288$;$-217751725694196736$;$-1671888160196544512$;$1163796876685151232$;$2190901572136010752$;$4286594606273307648$;$-2223600874803518464$;$-474772640788523008$;$132239249367367680$;$829621398866021376$;$-56788906721065984$;$1078719793905597440$;$1614692189078302720$;$1377562037677339648$;$-3407148572198834176$;$-2978212620048683008$;$4307497870568345600$;$-2916717241836477440$;$-1372771999106030592$;$4164348198862302208$;$3302445625412912128$;$4309972142170049536$;$-2029424441776456704$;$-4074119580254699520$;$1544452864692219904$;$230875948718935040$;$4333259007759900672$;$84015473106414592$;$-2301414358074612736$;$4196857277634351104$;$-162695067352240128$;$-3329756285535137792$;$-3220799966487916544$;$-3443526888275561472$;$-1076536856704845824$;$3069894550501782528$;$-4148068606343333888$;$3497113788478656512$;$1064645816687361024$;$2152375745358021632$;$1067885010513024000$;$1162361216697517056$;$-2913758298922309632$;$-3189612814877681664$;$1146789807327905792$;$-2336493126284427264$;$4022436229573056512$;$1016571629470148608$;$1997493879495199744$;$203309630997573632$;$-2906378842622940160$;$518460450966225920$;$-1402643423423808512$;$-2345173005623710720$;$3034901815047461888$;$-875334327484130304$;$3603765066648539136$;$1941804012077052928$;$-3774867163550796800$;$-1063122974301085696$;$1136493907916401664$;$-2095133873416210432$;$2899615131734502400$;$-1622426166039218176$;$1651031823162243072$;$-288572569905486848$;$3592964627118215168$;$-3736022875031256064$;$-3634157420101272576$;$-1692475294097340416$;$10156948629486592$;$-2578070497518517248$;$2373290034703756288$;$-3341676488671529984$;$4033555820162522112$;$3604995694378290176$;$-755998786046277632$;$2618871721499487232$;$-1469129843547092992$;$4531972182613468160$;$-4072390807147370496$;$3129294128231176192$;$1293361711209635840$;$1469275479535632384$;$1142466303541441536$;$3435722182772157440$;$-2312804327213229056$;$2892337889969369088$;$1300272999602724864$;$-4048882368568125440$;$-1963939784402553856$;$-1856857201082460160$;$3953745697980933120$;$4055636187616285696$;$-4419717325403242496$;$-4001163076381407232$;$-1185407945127440384$;$1154008919307454464$;$-2498527033982008320$;$-221038395567763456$;$4117265181814953984$;$-1822159691191199744$;$4108697625899754496$;$-209239100847753216$;$-798788631430978560$;$-2478290136890497024$;$272032134724233216$;$3122431095784290304$;$-1384543352383386624$;$2259740006313264128$;$-579968568449871872$;$-4455856769084003328$;$-4033924127648861184$;$-152763937930979328$;$-4145015890674311168$;$-321024766312796160$;$-2949655115986077696$;$-1813557547616572416$;$-310785172445943808$;$-3886939480131707904$;$1980086210364938240$,怘脏袂㜅㦏唡M촷沎ꝺ᚞薥┮쳶玽塋죜罟勊嶇ﲮ捘⇸녓ች軆⿂甕以눤͟尕샰ံ좬⳸흹ʼn襙陜⠪膻⤮ﵼ昪猝夘乍ꡦ 뚿뼈㗄Ϫ퇦啖橝䍻测䜴䖑ἐ孺䒭᪩琬圏矢迶茫谚틧ܩԧ퇿돦鎈冑ᜲቡ⡆魎‹嘟ᇠѕ蜳냓ᶣ匭䯝㋥퍻驏꣯ⲣ뼐㪖跹鵭ⴖ೎➼ᖜ뤡嵰봨쩛祒峺ꃘ䐷뺵ᕺ냐㌮秆楦몐୰►䕭쯥촖䐻䶊⿒➸㏝딗ꖴ徜哦ꊚ뙹琷컘䩎ἑ忿鄜᧮巯ꠣ귔㉘탁鰨䰉漮ꮌﯜ赆뮂儠嫪戩蕣㷖쀅ƧƗπ뫜ꊋ芹茘㬢ᩛ榛粜摗酽暬ﻑ蓰耴캍㵳岢醀芼蠇ኲՏ⧺룤乃갭梜ࠪឥ⣖줜䬉ᾰ嚚袓닃壈浖戬곕䞎꾸Ϸ梅Ꭰ䏜绉枻Ş턾쎻捐熯淢䰭쁶ꫂ阇䣦Ự㡜溃儉䣆踪០兆뼟䦲晞漠視崚⺃પ诨焋뱎쵵縘꿲縤ଡ툭弃㥧₽鸚倝⌇ᅍ痓愝렐ᱢ鞹鶎篂猰퀋鋊仔ᱰၖᄆ᫗Ծ熺钉ᫎѲ㕈趞㸕賚傟鍗䡠侃鹗볉╥૙ຩ㨇붪ꍪ沙뭒锽䗾춢髽力⋧襲഍챟࠶믽⨎ﴍ性৊◨좼셺⒮槬᭿傣㔲速⌥ﱦ꧕╾蕷挤촣㭸ϣ㴬誜锴䫯䗱붗汎⇿閯㌷먵Ⱇ⦲凸鶪螈ꙗ秠週夲쯍斩먻ȧⰘ悇ﶦ㭌༜霚弋衪䴟ᤍ켦袊ᵃ╋떅ݫ̚耜ᜢꘕ༉Ͼ囲赕ꮿ䵮ꒋ铤ꅴ닐ܙ莫鹧ﴤ엓꺐賑殰֚ᓶ嵮羽ꚗ䷸隸ꉇᘆѱ豇╹ﻘꣅꊝ麙廨盗翋泅䴫Ṣ붬筱紹萮㼫竎촅砒叞䢹㧪뿞ᣃെᶦ鈍嶢Ͷ趼⩨靸於킜▋쯇䫡±㶮䜁ꮑ꼵軃ᖡ᠐ґ㸄䕽嬢絁⒱ꃋꞋ䟋攸岗멜몰㑨韭㜐⚙뻶⍟陨뉍鄿梋⏹朿轇Ⴍ翥ꐀ伏腏뱻ㄌ棎푤Ȯ⍡葭쟃蓉䋐ꏩ䀮놑㫦橿稪벴㡊舥䪀듧ꬰꯇ鏄艌ꦞ矠㩔⯉뽄職㟳漎㻀Ԋ츀캔뱟뮀כּ㩮첏ꁛ韇껔ᨧ쀶硺漽䦽ꨐ鎒먇琭笐婍朊㐇缙佹찹⛛॰毅⌌阰㮅끨酞ﶵ澈鉖廩딀⭁ᰀ郓Ǜ閬熒㛸偆뷮䊌첹備줬隴減붜ᯟ㌔쪸൬ꩊ식䰢鋑뱸㖝ᦟ咺얱䕨貄黻Ꮹ薢㪞烘纹់윟䃋跱ⶑ톼﷖₋脡梿첈쿦㦫説㨏掌ﲝ䋕䁉쟧⤨秿陵ャ걛勠엷셾䊱幈㊟岽⩆䯀퀢輂嗯衻ﭘ奉䡲ਏ㦋驑槓맟⡖翲첔섋憋섀ᯡ龇쐪攞튢萷ᠴ辆㩸ⵧ┶圬棤️ᆎ낞䆍⺾鶇햶᧡쭓䈑义橔舅⿯몭ꅽﶌ⹋⣽髮譋喺ꢱႾ녺찚ٴ㳂菣荙ᰢ于ۜꃁ⽕␵餽秬껊✜瀧듼Ϋ솵鈓鰲콗縱㔣웅ﷲ傠ﺿ辢鯀蠗けꈉ暄飄꧖닗냆䮆꣜薀醴᫨倦ꨝ슕叁쬕඾낧량آ蚭觠㧲숝剕෨誴䫍絭踍鸌뤈ꦡ睳퐎ꚷ㇤ꔦᰜ㵻Ύ麱⻓䥂뻳裘浪愂畐钞黐㚮݋㖾삕着떚ᢚ둉瓍㊙ﲟᲕ熮䣐ࠬ䮰┅晓⤷RѾ죾뛫Ұ䷥ꠥ蓹䫀蝗룭蓭䕔벦ѽ, -2,,1443154422.91,,"( MlC()e3`9x847ud-""C/ĥZFTӭ VJCZvBf֯ 6ãQd.^0[ihl -{5D-u808MJNO!l;nAX?Pz휿3j\ 45nU'qC0&,)Dt -ڙJ/V[P>sZ^PDQڙ,aE`Nm7 h[G+=+NqlPD_ d*ܳCeSbw}MJ{.Tu } )&r,N5  e!;]7tpLnA1~",,"{""a"":3.577466092994692e+306,""b"":""\ufc25\u9e3c\ucdac\u912f\u4be4\uee5e\u97b6\uabe0\u7b54\u26a7\u9544\ue93c\u9234\u04f2\uc9e4\uee96\u2c49\ua9bb\uc8ca\u5a3f\uc6d0\u41dc\u78f7\ub4f6\u130e\uabcc\u0549\uc485\ubda9\u2318\u884b\uf76f\u3919\u91a8\u8c80\u2c8c\u8548\u64e2\u360a\u1a09\ueb82\u0b3e\uf6ed\u04d1\u2df4\u37d2\u13e1\u3c47\u3cdf\u709b\ub7ca\uecc6\uc498\ub6d6\uc190\u2a04\u50b3\u6d0b\uf9c7\u5bb9\u5cf4\u5579\u215c\u00b8\ud1fe\u2ef1\u3803\uc50e\u5181\ud567\u7fa9\u1d42\u3e59\u122c\u6554\u96fa\u419b\uca8b\ue999\u639a\u5c51\u316c\u551a\uf448\u4c88\ud13d\ufec6\ud5db\udb88\u78d3\uc5be\u753e\u630b\u89cf\u86f2\uacba\u00d2\u62b1\u37b1\uf8ef\u356a\u921c\u409a\u6cde\u2b0c\u5fb3\u4595\u915d\u5c99\u9cc2\ub0c8\ua515\u0a24\uf602\ucaf1\ub117\u6a98\u18c4\u7f32\u5a64\ue565\u984a\u69a5\uec45\u1cee\uc9f3\uff6c\ub17c\uecd5\u2db4\u6c51\uc7f1\uccc2\u3e3c\u5749\ua07d\u83f3\ufd88\u8c5a\u3c06\u7563\u5f7e\u0ce1\u90c6\u3e24\ud7b7\u75ea\ud5d9\u6cda\u577b\u3916\u7d9c\u2bd2\u7455\u1a87\ued74\u790c\u8722\u51b1\u902b\u126b\u3ba4\u9e92\u7318\u419c\u4ecc\u3145\u8d4b\u4d91\uac1a\ud71a\udc40\u5303\u83fd\u808d\u0d36\u9c32\u6866\u1a56\u8769\u34aa\ua566\u3fe0\u4861\u4c71\u0464\ud105\u91ee\uc68b\uc7dd\ua91e\u429e\u6a7b\u7e99\ub34d\u7338\ub0d5\u466d\u2b62\u3c35\u2e60\u7fc1\u46c8\u8564\u7138\uc26c\udafa\u8dfb\ue257\u435f\u189d\u1504\uce2e\u4bbb\ubc3f\ua83f\uf9a6\u7ced\uceac\u8f48\u7511\u7ab5\ua05a\u7a4d\u0ee0\ua578\u277d\u4075\u5b3e\u5562\ud028\uadfe\ue3fc\u1685\ub3d6\uf901\u14dd\u556a\u2f7a\u8c3b\u2f18\ub397\udd2b\u1f26\u3e79\ua7a7\u249d\u306a\u84f3\u0b0b\u76a7\u1e45\u4be1\uf830\udd3c\u8f2e\u7ba6\ub3e5\ub238\ud863\u0d74\u0903\u74f0\u4a25\uef95\u9797\u36bd\udfb1\u0ee5\ubcff\uc0e6\u38f6\uc6f6\ub9bc\u5bdc\ud3f0\u88af\u1842\ucdb7\u1d0e\u3f36\ub09f\ufff4\u5c70\ub70d\u9306\u8357\ucd29\u3713\u7a68\u48f9\u1250\u7cd9\uefce\u2056\u4546\ufa1f\u21cd\u998b\uc7bc\u8cff\u4b2d\u2545\ub295\u017a\u3096\ud23d\uf211\u6d38\uf5d2\u983a\u8b50\udfdc\u7f98\u08c1\uce80\u30f1\u1fed\uffa0\udc45\u6eb4\u0397\u8cc7\uc7bb\ub5df\u9953\u0c98\ud93f\u6e36\u949a\ubea2\uc80c\u2915\uc136\u01e2\u538d\uf61d\u5219\u4a17\ud7ed\u383a\u0240\u44e1\u4a58\u7070\u5ba1\u914f\u4def\ua807\u472c\u9deb\uf1c0\uf609\u2a9a\u2151\u2b48\u7c78\ud244\u2af8\u7543\u525b\uaf94\u2245\u3167\u2453\uf29e\u6142\u2133\u82de\u609c\u9458\u1cec\ud8af\u5d55\u462d\u06f7\ud4d4\uf8de\u6b92\u28fa\u22d4\u61c8\u3efc\u2429\uf8ca\u4148"",""\u798f \u9152\u5427"":{""fu"":9.501778184938903e+307,""bar"":6.912702484683971e+307}}",,"2445258392037409792 --1557129274225438720 --2173447162608258048 -1478166533072560128 --628597823280745472 -1111287903740007424 --634650677524860928 -3110065636115047424 -730111557387360256 -2707834171943398400 -3815903599169409024 -4564737777483933696 --1723937917877447680 --3808341222632334336 -1754680706560844800 --2380056411537616896 --4139175316868279296 -926539101412715520 --4355384638579009536 -2563449645131374592 -2088843516567949312 -2247227906874544128 -4077626623263603712 --717682432289905664 -1214793424696469504 -348606981243081728 --1454569025296502784 --1941148427717825536 --1852358688239477760 -1374768190106238976 --414684641588655104 --2889150978944959488 -575582035871834112 -333673399848081408 -4183062746190367744 --167349730616536064 -3976876651813863424 -3206081632920570880 --2062727973562551296 -2310822118071004160 -2139553634303163392 --3627746715839223808 -3856720960126254080 --125234473246433280 -2624996106132399104 -669680611369078784 -270744609587456000 --1454502766618726400 --4138472026670089216 -3931919401174255616 --3141127123025767424 -105420495606496256 --2055161697238652928 --2449613681552514048 --3542751675445211136 --2565872395430007808 -288483585449925632 -1876108721533887488 --3213887826154908672 -2232211794080935936 --2715909887272243200 --908377423545583616 -1593784070243546112 --303473092001764352 --1920812321997896704 --912739561689320448 -2256593272373457920 --1158157964647090176 -2149666903316955136 -4399289690989856768 --545033060452791296 -2374620241919572992 --1022790675751394304 -2613203688424363008 --3995762636258418688 --2114578594340777984 -3199120249034765312 -1157433795606898688 --1034071755428203520 -1645551729094223872 -1231418143339581440 -3977937314287273984 -932124192590622720 -4385810701935282176 --2256984175606615040 --1474984552772849664 -1986299075918354432 --2868277528396853248 --2251948835331078144 --4154861374172636160 -389913677026305024 --4133901333223835648 --4400290827621898240 -2815471994667631616 -2302789742267363328 -3630177310862517248 -326253717328835584 -612382739794789376 --3794036742722296832 --36741821898854400 --1533913334733300736 -1214898348412572672 --1497524052622645248 --2434031119184301056 --465796144502204416 -765469578794473472 -2245553312615913472 -3492409625653856256 -3258925938714673152 -636690507359423488 --1910843598717835264 -4444971026461579264 --582869628566837248 --3883772823903725568 -2153006081925279744 --3290801573959517184 --2617720005518605312 --4310704514564086784 -3875787005902843904 -1842335583666549760 -4507343216711002112 --3717970442452102144 -1490203463720961024 -2142972859739316224 -1348064346905449472 -2429609541069635584 --3386638319955096576 --1262926050250248192 --925099628477882368 -133125602439584768 -3843916038899041280 --1455054874794471424 --2493444421110072320 -1073130989311618048 --1670478387209416704 --2933515177848238080 -1387809808325689344 -1034531966255498240 -2466212770182324224 --2775340594712411136 -70105180920359936 -1896020144982283264 -1309346362822334464 --1017019044216339456 -1971558169407007744 -762287397821279232 --2988103023798755328 -2477313720006672384 --232797340256763904 -3342287234099454976 -479081911250867200 --1859175164803841024 -558345064027851776 -1978450862232781824 -497351458136193024 -2038479863157672960 --703241173377350656 -399068867884346368 --3167710833346811904 --3815640446231764992 --4598394602339411968 --2645483353742159872 --60699412146583552 --103416634811468800 -2600081474552537088 --3980613616027291648 -2262139937013558272 -604504559914950656 --252806332026058752 -47150100198955008 -1555487184281570304 --766712120027488256 --2656306947890781184 --4443061575321192448 -1359574866432235520 -182172223630707712 -230848379074788352 -2967735949368457216 --3829825472277860352 -1216233291149675520 -1752056177442249728 --2790742940004278272 --3203960615836949504 -775910448825615360 -4487332080022687744 -616648379123537920 --1649892545778591744 -810892839195334656 --3049930791363021824 --3072226895627531264 --2674438004851722240 -1766355382517316608 --2520711921086091264 -4211189905294471168 -212403167065807872 --2693211684397710336 -1930957214870397952 -3076067641792343040 -2042992974018701312 -793295258155062272 --1984319060856725504 -2262172764578203648 --4474913150866584576 --1072733049213825024 --2467652628012135424 --4595690089225763840 -3568227528697028608 --3143261329931084800 -2913559977289117696 --3048996797126300672 -2480294680784802816 --294817605008859136 -2912265379396871168 -2943134559446723584 --1124669817934690304 -585987993936934912 -508224802253600768 --4525322798528134144 -69808782485001216 -4388506763275004928 -1552328230923278336 -1389434593606262784 -4306034792367165440 --1856867980769625088 --326099865422416896 --2414771392759242752 -1049074288309278720 -1070873952008568832 -1082194431163099136 -4281506291859149824 -968848396462920704 --3670972095418354688 --373092704569365504 -1624349183967750144 --618288322213281792 -1115658178744630272 -3569700627502366720 --1984058719629926400 --2585247401033420800 --2704343783372085248 --3341616556256368640 --2213753564206664704 --822516443063972864 -1363556484749280256 -3989217168041652224 -326960309575219200 --613160797036532736 -1186072026448269312 -2098452604872839168 -2363596467388476416 -2702843623926210560 --2267949199770032128 --4332564902888115200 --189832936773596160 --2192428488120963072 --1981772301479025664 --21406856202796032 -3618611940821170176 -3155356907224486912 --2690898713484339200 -3152027472885624832 -2956995234293810176 -3029652927248142336 -3573455617528573952 --4601349673201357824 -4172580872843503616 --2391143707254689792 -2524440355194516480 -1140565791596494848 --1414877231671857152 -3190470119362731008 --4065077724064923648 --95498527891775488 -988779796417688576 --2220597318930532352 --2762181008919984128 -662683599254315008 -1744900854506615808 -4432950750500763648 --2682426838543357952 -227698000986284032 --2378816058424891392 -766914414358598656 --604344890663858176 --1941345769824406528 --4168812379110792192 --1239539767185270784 --1356484443119221760 --2858948450292806656 --3556156652099192832 -2747960144386146304 -734446709184967680 -3240135852255861760 -3762422042153433088 --2981718014172241920 --120528822477091840 --3039145934631969792 -4409452673581493248 --3704016242428899328 -1851983826348987392 --2892066494270884864 --3569750154599449600 --2388436598972525568 --3793494040188715008 -4422676552920301568 -3662716049182831616 --2138774915881795584 --4465871439334955008 -100174304391583744 --4497278413867199488 --3236157157902285824 --3611143099569037312 --455460073101154304 -2658511151562592256 --1017655614583211008 --3904053432419351552 --2653228628450204672 -2257747894537690112 --2139507161660413952 -786074852811330560 -713680800091452416 -500708938387337216 -966906435945725952 -2305444420536471552 --209834584538266624 --261867703669276672 --4526257258149086208 -3768914295015837696 -3620376892361592832 -4159923296407003136 --690490123794023424 --1583263585630326784 -3435367062490524672 --799622874585110528 --52542044273212416 --290974663990819840 --3744441307060705280 --4111726423866162176 -3202459563718824960 -3004005488767686656 --3951565747348154368 -1608832277230359552 -3625842367856294912 -3274409581177093120 -4018155374899679232 --3386964660432052224 -1370008335987964928 -501465273869576192 -4042228898051149824 -1439663598424293376 -1389400917731877888 -1416091223254568960 -4355977408212637696 -2901061745696793600 -1421605885624995840 -3180355275002934272 -2641487683362167808 -79844610206054400 --482495883670211584 -470276722238124032 -3993359927647680512 --2082286817559041024 --3534886010367192064 -2141270707600021504 -1237191131542958080 -2726425349635695616 -997457466011404288 -2726988997298231296 --4226299481080936448 --3654027836573254656 --1084783572139062272 --1239582582403134464 --1216012889626899456 -1032981305358853120 -1024249754033015808 --3060664880347536384 --1170856467708779520 -3293386830090277888 -4049448738890097664 --1788191092972573696 --3674093411803104256 -1663230934306298880 --1440016533538006016 --1745129336288885760 --3803009923200335872 --1127476905880701952 -3743251105738327040 --1602054048482608128 --1828034432155485184 -4313990203199671296 -2637751584277514240 -4365458975684893696 -1365374178130499584 --2543270084686216192 -1040228324818442240 --2972061528549226496 --2965537043582944256 -4331570810108291072 -3730259671073334272 --1811968661376809984 -4332479093998606336 --2180988266850044928 -2330604656887584768 --2592889192281982976 -3289483992834914304 --3752061608611623936 -2522215953243201536 -4422231910950484992 -3935033792071987200 -2211376917681421312 --4530465566362055680 -4476415588509662208 --1832407213518075904 -3184506357576475648 --751557848494675968 -4240176688377724928 --933266241197496320 -3972043237389833216 -4238011412055305216 -2194005217389433856 -2567476766266718208 -1162326116986117120 -2181085943961799680 -283197400791775232 --269949824066952192 --2981679308782226432 -1059825976547923968 -2596625639326638080 -2606129600004413440 --1169890540295543808 --4279876281874417664 --374225521697294336 -3435553778789489664 -1893765353204989952 -2881111272677995520 -4439441277772625920 --3173541832405906432 -1782310478517663744 --3082285330224444416 -1921560295850614784 --1500518199480044544 -244718589086338048 --1632518579295322112 --445322796480857088 --3809692850797818880 -979470879657529344 -2349671575765328896 --1743563354596673536 -3233466786586992640 --34536572273531904 -3284451562915280896 --3276768000166974464 -1194327425208337408 -153756992954004480 -3280828779114729472 --1467348036690042880 --1775977875328410624 -815502709487411200 --739408547338382336 --950485422051128320 --2860784282207347712 -1775394645318452224 -405210966585670656 -706321568611067904 --3946855026754695168 --2899816563574074368 --2447568699205417984 -3443689103511863296 -4567012376152201216 --3132038162870056960 -241650355582053376 -2173204341739318272 --2653889905801024512 -422211981804097536 --1953260237497023488 --4227587602443139072 --3329483798788940800 --674056986595061760 -3106594882094356480 --276593798229695488 --133986062389517312 -1627538379475691520 -3059548552356791296 -1292335727403410432 -2149732765353167872 --2663658999099790336 --4406409503537326080 --231521262117255168 --1192204972129644544 -1875881521405358080 --2380197424407222272 -2879123315580014592 --537006631409052672 -338973428349343744 --4337296523791554560 --513604825391472640 --2565659108537523200 -443255339448905728 --1074495141289486336 --3540542935103847424 -1413515891999030272 --4137802159524126720 --2053903480964871168 -4057560598482128896 --4283930719069812736 --2540422270620197888 -2545661168187808768 --2362111848213423104 --2549865293331302400 --3188119487064215552 --3734396114560655360 -999424166406475776 --483837393396995072 -1820917814090555392 --317096939521466368 -4595681641327767552 -4507226979949964288 --1246191660981573632 -4213134397733374976 --674552228645301248 -3610646361005123584 -1066157944591064064 -2287768626859049984 -46077606013844480 --4481521900335246336 --1589678280812591104 -2911695768533305344 --2608436214120169472 --793081875652484096 -1438145723142032384 --4180060041586106368 --493348186845388800 -3907144174473246720 -1418801761302597632 --3636288698966583296 -1714093910131676160 -3235341544083358720 --1473778097547229184 --1312855868132379648 --3921532949501582336 -4359574037229882368 --1395511354831725568 -3476305683928186880 -417634676916268032 --4521670585162174464 --3816266881236382720 -875505122742784000 --93556357120319488 --2721152779103201280 --1580120306041613312 --3832713542851464192 -1823136252850033664 --1769877553478160384 -4593830828218869760 --2488845189100875776 --1578273460374859776 --987134042905119744 --939569703718894592 --1354214554822322176 -3253998650863168512 -4023853042111473664 -1635646967867531264 --1376673922366218240 --1488959520754013184 --2508575534923046912 --3960859440270716928 -1202021752027625472 --2094644173724776448 --1725489757318472704 -2084799804617636864",$2445258392037409792$;$-1557129274225438720$;$-2173447162608258048$;$1478166533072560128$;$-628597823280745472$;$1111287903740007424$;$-634650677524860928$;$3110065636115047424$;$730111557387360256$;$2707834171943398400$;$3815903599169409024$;$4564737777483933696$;$-1723937917877447680$;$-3808341222632334336$;$1754680706560844800$;$-2380056411537616896$;$-4139175316868279296$;$926539101412715520$;$-4355384638579009536$;$2563449645131374592$;$2088843516567949312$;$2247227906874544128$;$4077626623263603712$;$-717682432289905664$;$1214793424696469504$;$348606981243081728$;$-1454569025296502784$;$-1941148427717825536$;$-1852358688239477760$;$1374768190106238976$;$-414684641588655104$;$-2889150978944959488$;$575582035871834112$;$333673399848081408$;$4183062746190367744$;$-167349730616536064$;$3976876651813863424$;$3206081632920570880$;$-2062727973562551296$;$2310822118071004160$;$2139553634303163392$;$-3627746715839223808$;$3856720960126254080$;$-125234473246433280$;$2624996106132399104$;$669680611369078784$;$270744609587456000$;$-1454502766618726400$;$-4138472026670089216$;$3931919401174255616$;$-3141127123025767424$;$105420495606496256$;$-2055161697238652928$;$-2449613681552514048$;$-3542751675445211136$;$-2565872395430007808$;$288483585449925632$;$1876108721533887488$;$-3213887826154908672$;$2232211794080935936$;$-2715909887272243200$;$-908377423545583616$;$1593784070243546112$;$-303473092001764352$;$-1920812321997896704$;$-912739561689320448$;$2256593272373457920$;$-1158157964647090176$;$2149666903316955136$;$4399289690989856768$;$-545033060452791296$;$2374620241919572992$;$-1022790675751394304$;$2613203688424363008$;$-3995762636258418688$;$-2114578594340777984$;$3199120249034765312$;$1157433795606898688$;$-1034071755428203520$;$1645551729094223872$;$1231418143339581440$;$3977937314287273984$;$932124192590622720$;$4385810701935282176$;$-2256984175606615040$;$-1474984552772849664$;$1986299075918354432$;$-2868277528396853248$;$-2251948835331078144$;$-4154861374172636160$;$389913677026305024$;$-4133901333223835648$;$-4400290827621898240$;$2815471994667631616$;$2302789742267363328$;$3630177310862517248$;$326253717328835584$;$612382739794789376$;$-3794036742722296832$;$-36741821898854400$;$-1533913334733300736$;$1214898348412572672$;$-1497524052622645248$;$-2434031119184301056$;$-465796144502204416$;$765469578794473472$;$2245553312615913472$;$3492409625653856256$;$3258925938714673152$;$636690507359423488$;$-1910843598717835264$;$4444971026461579264$;$-582869628566837248$;$-3883772823903725568$;$2153006081925279744$;$-3290801573959517184$;$-2617720005518605312$;$-4310704514564086784$;$3875787005902843904$;$1842335583666549760$;$4507343216711002112$;$-3717970442452102144$;$1490203463720961024$;$2142972859739316224$;$1348064346905449472$;$2429609541069635584$;$-3386638319955096576$;$-1262926050250248192$;$-925099628477882368$;$133125602439584768$;$3843916038899041280$;$-1455054874794471424$;$-2493444421110072320$;$1073130989311618048$;$-1670478387209416704$;$-2933515177848238080$;$1387809808325689344$;$1034531966255498240$;$2466212770182324224$;$-2775340594712411136$;$70105180920359936$;$1896020144982283264$;$1309346362822334464$;$-1017019044216339456$;$1971558169407007744$;$762287397821279232$;$-2988103023798755328$;$2477313720006672384$;$-232797340256763904$;$3342287234099454976$;$479081911250867200$;$-1859175164803841024$;$558345064027851776$;$1978450862232781824$;$497351458136193024$;$2038479863157672960$;$-703241173377350656$;$399068867884346368$;$-3167710833346811904$;$-3815640446231764992$;$-4598394602339411968$;$-2645483353742159872$;$-60699412146583552$;$-103416634811468800$;$2600081474552537088$;$-3980613616027291648$;$2262139937013558272$;$604504559914950656$;$-252806332026058752$;$47150100198955008$;$1555487184281570304$;$-766712120027488256$;$-2656306947890781184$;$-4443061575321192448$;$1359574866432235520$;$182172223630707712$;$230848379074788352$;$2967735949368457216$;$-3829825472277860352$;$1216233291149675520$;$1752056177442249728$;$-2790742940004278272$;$-3203960615836949504$;$775910448825615360$;$4487332080022687744$;$616648379123537920$;$-1649892545778591744$;$810892839195334656$;$-3049930791363021824$;$-3072226895627531264$;$-2674438004851722240$;$1766355382517316608$;$-2520711921086091264$;$4211189905294471168$;$212403167065807872$;$-2693211684397710336$;$1930957214870397952$;$3076067641792343040$;$2042992974018701312$;$793295258155062272$;$-1984319060856725504$;$2262172764578203648$;$-4474913150866584576$;$-1072733049213825024$;$-2467652628012135424$;$-4595690089225763840$;$3568227528697028608$;$-3143261329931084800$;$2913559977289117696$;$-3048996797126300672$;$2480294680784802816$;$-294817605008859136$;$2912265379396871168$;$2943134559446723584$;$-1124669817934690304$;$585987993936934912$;$508224802253600768$;$-4525322798528134144$;$69808782485001216$;$4388506763275004928$;$1552328230923278336$;$1389434593606262784$;$4306034792367165440$;$-1856867980769625088$;$-326099865422416896$;$-2414771392759242752$;$1049074288309278720$;$1070873952008568832$;$1082194431163099136$;$4281506291859149824$;$968848396462920704$;$-3670972095418354688$;$-373092704569365504$;$1624349183967750144$;$-618288322213281792$;$1115658178744630272$;$3569700627502366720$;$-1984058719629926400$;$-2585247401033420800$;$-2704343783372085248$;$-3341616556256368640$;$-2213753564206664704$;$-822516443063972864$;$1363556484749280256$;$3989217168041652224$;$326960309575219200$;$-613160797036532736$;$1186072026448269312$;$2098452604872839168$;$2363596467388476416$;$2702843623926210560$;$-2267949199770032128$;$-4332564902888115200$;$-189832936773596160$;$-2192428488120963072$;$-1981772301479025664$;$-21406856202796032$;$3618611940821170176$;$3155356907224486912$;$-2690898713484339200$;$3152027472885624832$;$2956995234293810176$;$3029652927248142336$;$3573455617528573952$;$-4601349673201357824$;$4172580872843503616$;$-2391143707254689792$;$2524440355194516480$;$1140565791596494848$;$-1414877231671857152$;$3190470119362731008$;$-4065077724064923648$;$-95498527891775488$;$988779796417688576$;$-2220597318930532352$;$-2762181008919984128$;$662683599254315008$;$1744900854506615808$;$4432950750500763648$;$-2682426838543357952$;$227698000986284032$;$-2378816058424891392$;$766914414358598656$;$-604344890663858176$;$-1941345769824406528$;$-4168812379110792192$;$-1239539767185270784$;$-1356484443119221760$;$-2858948450292806656$;$-3556156652099192832$;$2747960144386146304$;$734446709184967680$;$3240135852255861760$;$3762422042153433088$;$-2981718014172241920$;$-120528822477091840$;$-3039145934631969792$;$4409452673581493248$;$-3704016242428899328$;$1851983826348987392$;$-2892066494270884864$;$-3569750154599449600$;$-2388436598972525568$;$-3793494040188715008$;$4422676552920301568$;$3662716049182831616$;$-2138774915881795584$;$-4465871439334955008$;$100174304391583744$;$-4497278413867199488$;$-3236157157902285824$;$-3611143099569037312$;$-455460073101154304$;$2658511151562592256$;$-1017655614583211008$;$-3904053432419351552$;$-2653228628450204672$;$2257747894537690112$;$-2139507161660413952$;$786074852811330560$;$713680800091452416$;$500708938387337216$;$966906435945725952$;$2305444420536471552$;$-209834584538266624$;$-261867703669276672$;$-4526257258149086208$;$3768914295015837696$;$3620376892361592832$;$4159923296407003136$;$-690490123794023424$;$-1583263585630326784$;$3435367062490524672$;$-799622874585110528$;$-52542044273212416$;$-290974663990819840$;$-3744441307060705280$;$-4111726423866162176$;$3202459563718824960$;$3004005488767686656$;$-3951565747348154368$;$1608832277230359552$;$3625842367856294912$;$3274409581177093120$;$4018155374899679232$;$-3386964660432052224$;$1370008335987964928$;$501465273869576192$;$4042228898051149824$;$1439663598424293376$;$1389400917731877888$;$1416091223254568960$;$4355977408212637696$;$2901061745696793600$;$1421605885624995840$;$3180355275002934272$;$2641487683362167808$;$79844610206054400$;$-482495883670211584$;$470276722238124032$;$3993359927647680512$;$-2082286817559041024$;$-3534886010367192064$;$2141270707600021504$;$1237191131542958080$;$2726425349635695616$;$997457466011404288$;$2726988997298231296$;$-4226299481080936448$;$-3654027836573254656$;$-1084783572139062272$;$-1239582582403134464$;$-1216012889626899456$;$1032981305358853120$;$1024249754033015808$;$-3060664880347536384$;$-1170856467708779520$;$3293386830090277888$;$4049448738890097664$;$-1788191092972573696$;$-3674093411803104256$;$1663230934306298880$;$-1440016533538006016$;$-1745129336288885760$;$-3803009923200335872$;$-1127476905880701952$;$3743251105738327040$;$-1602054048482608128$;$-1828034432155485184$;$4313990203199671296$;$2637751584277514240$;$4365458975684893696$;$1365374178130499584$;$-2543270084686216192$;$1040228324818442240$;$-2972061528549226496$;$-2965537043582944256$;$4331570810108291072$;$3730259671073334272$;$-1811968661376809984$;$4332479093998606336$;$-2180988266850044928$;$2330604656887584768$;$-2592889192281982976$;$3289483992834914304$;$-3752061608611623936$;$2522215953243201536$;$4422231910950484992$;$3935033792071987200$;$2211376917681421312$;$-4530465566362055680$;$4476415588509662208$;$-1832407213518075904$;$3184506357576475648$;$-751557848494675968$;$4240176688377724928$;$-933266241197496320$;$3972043237389833216$;$4238011412055305216$;$2194005217389433856$;$2567476766266718208$;$1162326116986117120$;$2181085943961799680$;$283197400791775232$;$-269949824066952192$;$-2981679308782226432$;$1059825976547923968$;$2596625639326638080$;$2606129600004413440$;$-1169890540295543808$;$-4279876281874417664$;$-374225521697294336$;$3435553778789489664$;$1893765353204989952$;$2881111272677995520$;$4439441277772625920$;$-3173541832405906432$;$1782310478517663744$;$-3082285330224444416$;$1921560295850614784$;$-1500518199480044544$;$244718589086338048$;$-1632518579295322112$;$-445322796480857088$;$-3809692850797818880$;$979470879657529344$;$2349671575765328896$;$-1743563354596673536$;$3233466786586992640$;$-34536572273531904$;$3284451562915280896$;$-3276768000166974464$;$1194327425208337408$;$153756992954004480$;$3280828779114729472$;$-1467348036690042880$;$-1775977875328410624$;$815502709487411200$;$-739408547338382336$;$-950485422051128320$;$-2860784282207347712$;$1775394645318452224$;$405210966585670656$;$706321568611067904$;$-3946855026754695168$;$-2899816563574074368$;$-2447568699205417984$;$3443689103511863296$;$4567012376152201216$;$-3132038162870056960$;$241650355582053376$;$2173204341739318272$;$-2653889905801024512$;$422211981804097536$;$-1953260237497023488$;$-4227587602443139072$;$-3329483798788940800$;$-674056986595061760$;$3106594882094356480$;$-276593798229695488$;$-133986062389517312$;$1627538379475691520$;$3059548552356791296$;$1292335727403410432$;$2149732765353167872$;$-2663658999099790336$;$-4406409503537326080$;$-231521262117255168$;$-1192204972129644544$;$1875881521405358080$;$-2380197424407222272$;$2879123315580014592$;$-537006631409052672$;$338973428349343744$;$-4337296523791554560$;$-513604825391472640$;$-2565659108537523200$;$443255339448905728$;$-1074495141289486336$;$-3540542935103847424$;$1413515891999030272$;$-4137802159524126720$;$-2053903480964871168$;$4057560598482128896$;$-4283930719069812736$;$-2540422270620197888$;$2545661168187808768$;$-2362111848213423104$;$-2549865293331302400$;$-3188119487064215552$;$-3734396114560655360$;$999424166406475776$;$-483837393396995072$;$1820917814090555392$;$-317096939521466368$;$4595681641327767552$;$4507226979949964288$;$-1246191660981573632$;$4213134397733374976$;$-674552228645301248$;$3610646361005123584$;$1066157944591064064$;$2287768626859049984$;$46077606013844480$;$-4481521900335246336$;$-1589678280812591104$;$2911695768533305344$;$-2608436214120169472$;$-793081875652484096$;$1438145723142032384$;$-4180060041586106368$;$-493348186845388800$;$3907144174473246720$;$1418801761302597632$;$-3636288698966583296$;$1714093910131676160$;$3235341544083358720$;$-1473778097547229184$;$-1312855868132379648$;$-3921532949501582336$;$4359574037229882368$;$-1395511354831725568$;$3476305683928186880$;$417634676916268032$;$-4521670585162174464$;$-3816266881236382720$;$875505122742784000$;$-93556357120319488$;$-2721152779103201280$;$-1580120306041613312$;$-3832713542851464192$;$1823136252850033664$;$-1769877553478160384$;$4593830828218869760$;$-2488845189100875776$;$-1578273460374859776$;$-987134042905119744$;$-939569703718894592$;$-1354214554822322176$;$3253998650863168512$;$4023853042111473664$;$1635646967867531264$;$-1376673922366218240$;$-1488959520754013184$;$-2508575534923046912$;$-3960859440270716928$;$1202021752027625472$;$-2094644173724776448$;$-1725489757318472704$;$2084799804617636864$,곦冾㻚㚤䂗詋号螔㝛풪ⓔ畭힤꼇◭꫘벊᪼ﰨ︕ꑅ詢厾䴇呝첊䵐㼇폂됄ⵗ긄౪國酫쟘ᜬ巂泑㇖嗒쪈쬲陬짮ზ樁庁暒讇ྡ鈼̂警悞䁲㨈忭䓛液䁾濥咄䣦⧜풒ᱤߺ껔唯셟稟꫎樼載﹁陈숡ᠥꘞ寉际畗ꄅ᜶ꛀ꿟曦ꬔ⣺虆陡뢠䆠굫᱓㨥视㣇シ秭㐑뻩▊눱鏟⇃舂ꄻ爆␱ᗍྒྷਬ嬢룇茲컸ꨆࢇ⊡꤄ؾ浝倉栴싙菱敄浪ᚌ睊鍁澝䐋阫⾸굥乒靲㸢띣ㆅ蝫艌﵌Ḕ벒㈅ᝡ툽⹐㽻蘊降鿄苲밙뮈䱧셬᤻옞殥횆鴔嬘뽃쟊虜鵑❴⼋Ტ⌽ꚻ懞⵻㷇냃츅޴௅綘呗穁嶪幷骰쵄㱍䯓㛧물硘嚚্㙚甉୐嗁చ肖衠鸃춏埦紣䜐읎Й䁒ⴰ㌢峢벽﨧喜र^稼箓颀ꚹ릍Lj푆뛱㢮㩬逢撋̰ⴭ㦈逻蟉ﱡ⚧쩑쯬丰들톗ⳁ⨗⶚䐥氘䟱彿ﯦ甄ᩢ䆇메즖⨣嚥鏲輸鯮꟩艞率陣특ず窞훗Ꝿ풹ọ폗漑ሪ邾歉ꮃ⠉蚴耚嗍㉽ꫫꅰ濱럆偐齣乁ㆌ쮴ゟ몤ꡮᛁ뜊惼冢ﶉ㡙彵⼠ﺥ쯵咉教⹨讯똳雿澑廝찖眷‮媂᩷㪦ን嫆넥藫滸懵ꮄ챕틭튥탉퐿࿖痷䔳쀎࡟풾쩧攺垵䀫倄फ쁕詵溏炮ア劑כֿ䴈嬳昲枷⧉옔嬈듐䍯듡⏏鳳⒓牗袟勒笸롧㾸佉ᵉ࿗ﭙ⤬퀊㵵婢쿁鏪榇뉷牣屹䨽镕彣⥞걊ࠡ辶䕷⊮쏋㪁횭Ԥ꘧䱃镏镌죅咿ꥣ߁䣐ō⏁എ浌葽쟧븬蝯레뙒⏂躲鴸둗醴氈픙밁鿵瓺杴怀求䉋촹놓⨖ҙ趶僶렍뺞颥Ⰻݔ㘟䐚慫閅篿碪꾄獵灤霙쫅ᛷ❾ଆאָⓐ巊욊쑈驗耵뮹୬Ỷᒡ䋘莥␾雘㛸܌뙺䃣栙븄ቂ훕胰쨂芈葛쭤荅銍쨔㱦윢ꇫᜳ瀒⫩㉡䫪⍔㇎襥ᛰ렉컿ᅬꗷ苁椻ᤵ⡑Ⴆ탫稫钎ͱᡵ鯽嵭桎마裓╽縅麴ྏ꡻⎃៨ޣ䘠귅锁阮總矉ꙺ죃爙꧜梎⭷ꮬᰛ핍, -4,,1443154422.93,,".rlu~Zm»j0›]P^mSӑ}_:LdFz߷w ʡۚY#JqgВQk L}%cl@ɯYp l?u\kNtc)/QnS7*1]eE7C]t!.[[RCTջ@D*`dm~5:=0OK).L m3#m`׽ 6)fJf8S r!&IMڑPdRVІSA}urRa $LqOXc5wUcհ8Pտu Xo'HNQ:'v'qMp* ̂J?54)Q=-ȃ9)pxo#S_*myuz$͠-# m>#,@Si\ 4$ 솣'Q, -sQWǨr9*O -lXnzAƀJh3Bd^EգF5u",,"{""a"":1.8068710681326128e+307,""b"":""\u8a8e\ue00d\u64c5\ud3e6\u0941\u62ab\u2343\u1236\ud6ac\u7e38\udb98\u41fb\u4294\u7717\uc160\u6bce\uebfc\u8416\uc583\ub37a\u1fa0\u8d13\u6144\ua447\u12aa\u74fb\u8425\u5316\ua60f\ue5c9\ubbde\u8188\u30c9\ud995\u4d67\u5420\u7f4f\ued59\uf672\u7272\u4c69\u56ad\ub3a7\u551e\ucc7b\uc873\u2aec\u1acf\u77f8\u1e2e\ua912\ub4be\u8434\u3b03\uc097\ufc7d\ua546\ufaf4\u15d9\u590a\u60bb\u8917\uad5c\ua888\u6620\uad72\ub5bb\u7204\uecf9\u20d3\uf359\u9701\u2336\u035c\ub0b6\u8239\u5861\u1c8d\u8254\ub8d3\u7406\ud3ff\u4ea8\ufb72\uccce\ub536\uf6f1\u5c61\u14e3\u419f\uc32a\udd1e\uc29b\ue8ed\ud970\u0dfe\ue9c3\u9349\uaede\udeda\u4e0c\u7efd\ub766\u4041\u9ffe\u3449\u0e54\ue68e\ud025\u34a8\u1207\u3b90\u4a01\ud67f\u1c09\ub201\u9741\u0579\u4619\u8cd5\u50a9\u5a1c\u1fdc\u1d7b\u81eb\u03f1\uea7d\ua3e6\u584c\u7486\u3c4c\u73b3\u7592\u0b7c\u34ec\u5213\u773b\u729d\u34b0\ue75a\u2b05\ueecb\u8a15\u0e4d\ube42\ue82c\ubd09\u3c43\u69c4\u80f7\ub38c\ue457\u92c5\u99c8\u5452\u842a\ud142\u175c\uba12\uf771\ua9ad\ud91c\ub16b\u3980\u3a43\u9b38\u533c\u1285\u7cf1\uf7aa\ua9ed\u9b52\ubadf\u29b1\uaf59\u6b41\ub23f\u4fa4\u2d05\uc16f\uaa57\u655a\udc52\u1e18\u5261\u9c1a\ucf0d\u38fa\uaa8e\u0442\u2c1d\ub319\ueebc\u5c37\uba0f\u5313\ude54\u8f21\u6cfb\ucdd8\ud6d3\u5b12\u1e38\ua3a7\uf83a\ufec6\u77c4\u8867\u7a54\u0767\u2856\ucd4c\u6b4a\u9a9b\ub945\ue0c6\uac79\u321d\ua1c6\uf774\u02b4\u1376\uafbe\u23d8\u33ff\ud271\u6d35\ud426\u5b09\u8ec8\u2327\uba3d\u1640\ufc76\u6a0d\u171e\u3e17\u3b0a\u2ca6\uadd2\u8a93\ubf60\ue9fe\u3d47\u3e47\u6aa8\u9815\u9fbe\ud743\u326f\u6f6f\u810e\u65f6\u4c40\uca07\u1609\u8d19\u62d2\ud9e6\uf8d7\uadee\ub4c8\u5b39\ud199\uea47\uc9b2\ucfd0\u9f70\u572c\u5ad9\uc86c\u3b62\u87d3\u6081\ubeec\u2b95"",""\u798f \u9152\u5427"":{""fu"":1.5763802739331854e+307,""bar"":7.594147396731409e+307}}",,"-3104593575013253120 --1704840245616244736 -1621345927390458880 -1480645558153945088 -731719084222075904 --58356370864144384 --789110633704086528 -1439984156053259264 --997212129910945792 --4413551295031015424 --4059311841818254336 --4058077330431637504 --1935712139746403328 -4325183204465481728 --3572248785337391104 --4244658820288640000 --1326053073022920704 --51134751549519872 --2912200887611493376 -1554465735874274304 --4272088838154147840 --4198623800749601792 --492455296736443392 -3486625397708171264 -2909277098702513152 --1349775593324496896 -4474925454952118272 --4497901557729887232 --3704855119786436608 --1122814488676926464 -727474415882360832 --3742086407430986752 -1353606228711327744 -521257284514345984 -824557272062400512 --4185824367528232960 --1866038892658971648 --3717519462772173824 -2643149051620218880 --1858466850228723712 -3509029149926846464 --3985050299204589568 --4117620658203479040 -3459994515439990784 -3418805283001766912 --1993215238460654592 -581606974419523584 -2489374112384113664 --1649963364224000 -883798066025959424 -1340405443528055808 -2861377762374840320 --946737280559880192 --4459619300104467456 -1831040335860907008 --958630574107816960 -2263637450517293056 --743996568290037760 --3583771499261725696 --3329078113219374080 -62565058449848320 -333217861589890048 --2408155483458616320 --4565410551097928704 --4317090899586176000 -391977668965083136 --3073999710299958272 -568011082636763136 -3178098272892577792 --3543028011210597376 --4197580268119257088 --3642496083803828224 -4436195333818383360 -1953349919938280448 --1413729533111440384 -1925904450115582976 -2647560679773885440 --1616344411950654464 --2296138106626652160 --1360373491800760320 -3149145216001524736 -2483814574337778688 --3119926786341404672 --3037183570168629248 --1730018665341758464 -3992051667071762432 -607364404844585984 --92168813499267072 --1735124408191838208 -4493909246220531712 -4201186138493211648 --1230955206716048384 -3864512542398162944 --1105260426891182080 -3487482074367321088 -620040450132412416 --3232689369255527424 -3348137531573379072 --1916000633821053952 --2363712018724356096 --1395139810125247488 -3776021375462746112 -4593475471472867328 --2134097744913956864 -973126297486265344 -1602192758144495616 --1896702296064797696 --1094721392397493248 -3791804426116947968 -2656786486605905920 --70941369475929088 --4083550271921556480 --1745772966700578816 --423922181801792512 --3497045017177560064 --4193813390921616384 -1665882328072912896 -4352393428448519168 --1597366993400859648 -3013698401265820672 -1994664205977611264 --1350737596014062592 --3391283770097315840 --3463242582659390464 -1105842616906379264 -3197733362548959232 --1090272619858521088 -4383307658978518016 --1884368963051275264 --2685193511244594176 -1152042374293455872 --280567331277585408 --3451110671975641088 --1022960211290088448 --884684692567481344 --886454329582692352 --2134404987403711488 -938885372472427520 --2601868010506347520 --373620217011985408 --3781530574977331200 -1249940148189721600 -785546064127300608 --233817640365019136 --1179142376500893696 --4121628529779936256 -1840424776357065728 -1220178648785298432 -709978631407491072 --905786829074895872 --35676256814404608 -3145052434269346816 -4312121778717569024 -4198282284015650816 --3890814437830036480 -3881925052987978752 --3008929191121739776 -2815926110307145728 -904268545999510528 --543212792892333056 --2021835760657361920 --4424133288033141760 --4091479968444771328 -1042713744061169664 --3671854672580290560 -2064677300306127872 -4105355577186702336 --3469018412362608640 --1277428072892140544 --3572876006673294336 -2809157337276201984 --145017154047510528 --3327795578998563840 -1716828151016603648 --3265549393678647296 --3068199214566309888 --2418271196916809728 --4195684035979658240 -903387740983073792 -720609176545388544 -736717402886953984 -1384646101163912192 -3747372540841595904 --892185212751558656 -3168340371514883072 --1295569514497061888 -4547155643062234112 -1240358125929366528 -1009334274100185088 --1585832199794166784 -540679947703616512 --1921711352235675648 --4354490859078231040 -3082569787870410752 -4482353491903645696 --3402958488579022848 --157053717814503424 --740012340350639104 -2033246930689339392 --4140871383468971008 -4602328419932231680 --4098072328251995136 --4588368228632632320 -1121056325106958336 -2595023623414525952 --3174581413666239488 --2863261872031870976 -1778248493291087872 -1741992342302434304 --470925009054747648 -2735193957493913600 --3089277316845461504 --3139504701916682240 -2666927539262446592 -3337897624215814144 --1922133406684446720 -4112789867056806912 --2281417735544628224 --3927868284537528320 -4503534004211431424 --1942202381714984960 --3643839401466525696 -2990741871012345856 --2773200161090658304 -2901350318653430784 -2195300804682439680 -2277047161805102080 -2545271971763018752 -3731260749251260416 -1448563452493393920 --287252631760768000 --4192651680350925824 --1225120980273917952 -2676505044557950976 --4543560054246115328 --2685068710777116672 --2063294541672674304 -4585960164256443392 -1098788269789248512 -3050314778469741568 -1259746504591029248 -2297086749203121152 --100631283018532864 -4305797358963165184 --1972936321036101632 -946743883611400192 -3056881349019837440 --2990141958400030720 -4168896221022056448 -1953587583906820096 -2732170844166422528 -768340861936776192 -3194746136514188288 -431268898872196096 --2418640301967201280 --2978283535569945600 --1354756643162513408 -3336253690756941824 -4006049932924346368 --1114035757161579520 --366498700134343680 --2854384024199378944 -2559209125972409344 -1868569994819336192 -1403192506899834880 -3130057040210653184 -3885375647233712128 --262891022111055872 --2710676221048248320 -4278426675474001920 -3571842204963376128 -1487778689655691264 -2870621485616258048 --1467292293780526080 --2451665375117038592 --1785073488839250944 -3520782041814035456 -1924915107648796672 -764460696956131328 --743984627297027072 --4535294421067158528 -2868683484514957312 -1377410916566688768 -3106468906280357888 -458946756158248960 -1108222735468700672 -3404292464734974976 --1307784391915339776 -1888740787986265088 -4415384932122519552 -3564976275592771584 -2109367881385665536 --2235891694809769984 -2601400956765628416 --814275718732921856 --4129097876473341952 -1127711557057504256 --2189371650160186368 -1800546747133868032 --4508545461911775232 -1644219394835412992 --4117577230888041472 -429520537553954816 -1942117773698458624 --1729014862778150912 -3371134646130204672 -3439290213156849664 --3869584841799881728 --3262352967524409344 --2937672220139712512 -4441918495964938240 --560163039811441664 -4395610746354809856 -398670424688945152 -3538809437412065280 --1033943321359333376 --3027654519341795328 --340776530586377216 --1672713675729920000 --248472059889676288 -4264888831467336704 -431257035582638080 --545356452952602624 --251155389986747392 --730286948807436288 -3850457780079627264 --1560835451602490368 --4020890089058309120 --498790219680091136 -3007764088491129856 --1876085410636107776 -410062818988954624 -1195623713756955648 --3429317551336568832 --3118477262340370432 -515615753605016576 -4325177868319802368 -3154038633196581888 --2927173777979342848 --3378770361585107968 -1464227231533478912 -940145358326910976 --2722465623381511168 --2800019679982015488 --2236742267467102208 -4240829133557404672 -1938005750800594944 --629212141031098368 --894949577245083648 -95495590042013696 -3991811482762209280 -2628172362830248960 -118915528938919936 -965129110130457600 -2267422389104986112 --3376357377598330880 --1808065674516291584 -3785417731468092416 --3519694227012249600 -3680323888747399168 -950989764180873216 -370336415879109632 -4572606772590118912 --281212362954099712 -29779471998663680 -2806252227279405056 --610725204427037696 --1423627857487217664 -3749404991473781760 -1357043771737179136 -4341584341991750656 -833645647131953152 -4604333246295931904 -3173950996338489344 --272538793474740224 -2352217409780667392 --3905926935735173120 -3169186144458745856 --4109334458116410368 --3150444403059665920 --2758007133867271168 --929990962236386304 --799631374924750848 -1462418035188860928 -1314396328022219776 -947128352997043200 --793473503971514368 --1784133939338474496 -4486534116384114688 --242769903965447168 --2605713877488277504 -4449921701789895680 -2879524177886051328 -3858869532117494784 --3691197383814206464 -3370912141439535104 --3511759311507999744 -1687059044768438272 --1668482925886366720 --200756444643563520 --1747499368224778240 --4083528749786727424 -3430016399783829504 --557422778880930816 -2511303058797328384 --52121470287020032 --2270482015516371968 -499463755397603328 -3919755288236399616 -1807275730356885504 --4134416535167678464 -2492188357645924352 -4293669389912107008 -3456170478338117632 -1602879556239667200 --1248475784530414592 --2636326279157541888 --262637873410188288 --103116429930217472 --2773526307299478528 --462500754498726912 -4242269164354252800 --1746264982832389120 -3285658705748180992 -972163804950001664 -2462140414422735872 -450620161127818240 --3425811682064161792 -653411760610553856 -193484319481517056 --2526923230407654400 --3133576470648087552 --121826932684443648 --1652613771731501056 --3193444380966125568 --3097448352313101312 -1961350504131082240 --1495695142661658624 -4332894277847122944 --2864550522978574336 -4200017896291038208 --2857619111506441216 --60809962396728320 --4605488480949600256 --2012723759277684736 --4089676681181437952 --4076015959245982720 -2056728725019176960 -4053007171231781888 -1217422808012181504 -170962888247049216 -984477312411357184 -2306026093661382656 --3368663789120721920 --951746310559983616 -307406636392093696 --3920879684135796736 --827052142869185536 --2660616160222726144 --3174624514814643200 -1617653067100912640 -122495779227628544 -2331858729131236352 --2631974271162704896 --633258584386897920 --1256936271099300864 --3984148941602848768 -2472274367776491520 --1854930415358638080 -929037342985581568 -2952314217403004928 -3800927272508442624 -4349976296223629312 -2337460084445976576 -2897701645695453184 -4389566315731385344 -156891662259156992 -56328775106295808 -4269050398270706688 --2751161279240230912 -719395707472699392 -741367738591440896 --3051503638349431808 --234293220341670912 --3206779789496513536 -301312777435238400 --2236036821363197952 --856813844347429888 -3225620465739357184 --4518763639745897472 -33712879228224512 --3144873447609375744 --1674213881860845568 -550092961695193088 --4061470044276414464 --4064316251098812416 -3536696307445639168 -1897492291504856064 -4038277226210748416 -2608062121904694272 --2973678603985756160 -3003565102346158080 -1272474016235533312 --666921732368754688 --1347185354593911808 -1909535345356741632 -134323325621514240 --4231065869204720640 --335979268476788736 -160915052462955520 -610926184556398592 --1068169433408843776 --1080129487662756864 -446304183966384128 --3997989618513554432 -1600687329652033536 -1757320090451644416 -1207011468379445248 --4533637779062018048 -848700108903139328 -1267595939208525824 --1069659979673098240 --3746260443277415424 -1754005258075499520 --2518821749214365696 --2735031768526212096 -3097389093127841792 -452458081794412544 -3634870606819104768 -1776675134187280384 -1590098266109192192 -3562133324202037248 --3884578081656737792 --2943683425120286720 --1713725128433937408 --1057511885658513408 --204648361694801920 --650008134164193280 -960812616493066240 --4254136126367889408 -1920179065084341248 -2896198691919974400 --2305707486576021504 -435846602520187904 -4251574175914455040 --2479585625741300736 -193256376240716800 -2173575176079751168 -4114921607112759296 -999057325347860480 --2275277861150485504 -2580121360715774976 -271394872710397952 -723205533992174592 -3352960778914337792 -2484438779707572224 --960426508038200320 -1932699351747952640 -971060172442852352 -1283363214228093952 --3626927153270295552 --929533631939266560 -1562354465887776768 --2092935189834883072 --3144105621416352768 -3221619598707697664 --4575506075455708160 --1587997196365301760 --4187981709249029120 --3131428396243109888 -4043017944847517696 --2286403681748606976 --3065463775668122624 --1266139549209598976 -2039770996811480064 -3339089089183106048 --2069976583677981696 --2546036226141763584 -1268130522258978816 --2138143453841595392 --2087515919307938816 -3264402628906549248 -2073345349348606976 -1192438820813431808 -2347379699225062400 --3050434958731102208 --1845385400687842304 -1610187829404969984 --2632840876767367168 --404298756870981632 -949554559337158656 --2344163170583314432 --2645719408057326592 -966466201367530496 -1609991310277112832 --2330345602319515648 --197513309186159616 -1488260060620361728 -2356055785013653504 -3391358689075923968 -3818682786783071232 --1168579431679951872 -3348562893700539392 -1111704563993162752 -2659598326645352448 --488110411512196096 -1804748470122752000 --3243581660403190784 -2092325173731790848 --4463324503160663040 --3591599628445121536 -3900223838733893632 -1733638768745078784 --3720137214176030720 -4306271336905895936 -2709060139841754112 --1849636029879802880 -4169086053136893952 -3564542892531550208 --548014221954330624 --3944390767388221440 -4149281443003431936 --658363085924219904 --2687017548338068480 -448899782505804800 --1306547673282220032 --1761478261638391808 -266723357193308160 --3299967705224757248 -2735815307527130112 --303304918806207488 -984205159509481472 -4347684891277846528 --4294935357197860864 --3767873229225060352 -3865625466321809408 --3114790323392465920 --1306766053343171584 -3127459047553386496 -4529247204713320448 -2159708147416914944 --3489274664826855424 --3941036496083587072 --3074949501230736384 --4063942129275756544 --2569030402320092160 --1698162103383352320 -2251482173486358528 --1095975783600487424 -1348424018930873344 --3260122749051796480 -1193975697761383424 --3922443730232517632 --4446545252552794112 --4274816734921975808 -1376118504179096576 -2667669220710816768 -2329343698233022464 --2837775032520918016 --4470918038358432768 -64317560828432384 --792594830401267712 --4214949064509483008 -721262319824903168 --4312609854279130112 --4083273865645535232 --1843505192747619328 --2907484987623881728 --3453008389710009344 -915136779922369536 -4121673176571668480 -136527432283268096 -2042886748717667328 --4410935395678690304 -3676837147664378880 --2042987599429216256 --3844819027441426432 -2001122109745122304 --4432607605280897024 -4567226184815657984 --1904521696182849536 --1750554767928208384 --2276607708991702016 -998306800228186112 -21344136760651776 -187252191524925440 -2974061665403240448 -2252441075392157696 --1176458471204298752 -704068894108545024 --956445974289056768 --15823294110507008 -4505957464492974080 --3817062240600612864 -3741983185837510656 --1147154575756781568 --3531274298462380032 --4387644587176262656 -1295873110124061696 -829987334058103808 --3970750467549877248 -3804361134586887168 -4584177858718625792 -2381139019569113088 -2821192860574733312 -2334627584627425280 -259557477518814208 --4473288027317253120 -2651387697225082880 -2725066024833831936 -174057558255077376 --1272730631421028352 --2270256785424106496 --1688698769692622848 -271997328071063552 --826076661277331456 -2647276239118577664 -2608681773655614464 --1756870748624580608 --446253361627919360 -4318708255822712832 --774269000305816576 --4262741484806667264 -1075075898888047616 --197166087343447040 --2437578628154632192 -3234345959137024000 --1053085190749629440 --1328786675950696448 --2308290007925059584 -2394072302316438528 -2412207837511587840 -1199435104027164672 --512148812658280448 -2496222707719037952 --2611171215989517312 --2287221304433855488 --3873866118865464320 -3373442552806444032 -3700858013079452672 -3733698693257501696 -1243409559369461760 -2139306810986656768 -407362134746821632 -4492733817233191936 -98934717491962880 --3876603132841398272 -1742972902053326848 -3694171651744413696 -4180333325159116800 -201522908024881152 -2857799434820894720 --2021125461812208640 --452597371762996224 -104566456623350784 --541889384562094080 -1865697554582853632 -409743220769496064 -2400766818455781376 -4021089204796051456 --443342841388770304",$-3104593575013253120$;$-1704840245616244736$;$1621345927390458880$;$1480645558153945088$;$731719084222075904$;$-58356370864144384$;$-789110633704086528$;$1439984156053259264$;$-997212129910945792$;$-4413551295031015424$;$-4059311841818254336$;$-4058077330431637504$;$-1935712139746403328$;$4325183204465481728$;$-3572248785337391104$;$-4244658820288640000$;$-1326053073022920704$;$-51134751549519872$;$-2912200887611493376$;$1554465735874274304$;$-4272088838154147840$;$-4198623800749601792$;$-492455296736443392$;$3486625397708171264$;$2909277098702513152$;$-1349775593324496896$;$4474925454952118272$;$-4497901557729887232$;$-3704855119786436608$;$-1122814488676926464$;$727474415882360832$;$-3742086407430986752$;$1353606228711327744$;$521257284514345984$;$824557272062400512$;$-4185824367528232960$;$-1866038892658971648$;$-3717519462772173824$;$2643149051620218880$;$-1858466850228723712$;$3509029149926846464$;$-3985050299204589568$;$-4117620658203479040$;$3459994515439990784$;$3418805283001766912$;$-1993215238460654592$;$581606974419523584$;$2489374112384113664$;$-1649963364224000$;$883798066025959424$;$1340405443528055808$;$2861377762374840320$;$-946737280559880192$;$-4459619300104467456$;$1831040335860907008$;$-958630574107816960$;$2263637450517293056$;$-743996568290037760$;$-3583771499261725696$;$-3329078113219374080$;$62565058449848320$;$333217861589890048$;$-2408155483458616320$;$-4565410551097928704$;$-4317090899586176000$;$391977668965083136$;$-3073999710299958272$;$568011082636763136$;$3178098272892577792$;$-3543028011210597376$;$-4197580268119257088$;$-3642496083803828224$;$4436195333818383360$;$1953349919938280448$;$-1413729533111440384$;$1925904450115582976$;$2647560679773885440$;$-1616344411950654464$;$-2296138106626652160$;$-1360373491800760320$;$3149145216001524736$;$2483814574337778688$;$-3119926786341404672$;$-3037183570168629248$;$-1730018665341758464$;$3992051667071762432$;$607364404844585984$;$-92168813499267072$;$-1735124408191838208$;$4493909246220531712$;$4201186138493211648$;$-1230955206716048384$;$3864512542398162944$;$-1105260426891182080$;$3487482074367321088$;$620040450132412416$;$-3232689369255527424$;$3348137531573379072$;$-1916000633821053952$;$-2363712018724356096$;$-1395139810125247488$;$3776021375462746112$;$4593475471472867328$;$-2134097744913956864$;$973126297486265344$;$1602192758144495616$;$-1896702296064797696$;$-1094721392397493248$;$3791804426116947968$;$2656786486605905920$;$-70941369475929088$;$-4083550271921556480$;$-1745772966700578816$;$-423922181801792512$;$-3497045017177560064$;$-4193813390921616384$;$1665882328072912896$;$4352393428448519168$;$-1597366993400859648$;$3013698401265820672$;$1994664205977611264$;$-1350737596014062592$;$-3391283770097315840$;$-3463242582659390464$;$1105842616906379264$;$3197733362548959232$;$-1090272619858521088$;$4383307658978518016$;$-1884368963051275264$;$-2685193511244594176$;$1152042374293455872$;$-280567331277585408$;$-3451110671975641088$;$-1022960211290088448$;$-884684692567481344$;$-886454329582692352$;$-2134404987403711488$;$938885372472427520$;$-2601868010506347520$;$-373620217011985408$;$-3781530574977331200$;$1249940148189721600$;$785546064127300608$;$-233817640365019136$;$-1179142376500893696$;$-4121628529779936256$;$1840424776357065728$;$1220178648785298432$;$709978631407491072$;$-905786829074895872$;$-35676256814404608$;$3145052434269346816$;$4312121778717569024$;$4198282284015650816$;$-3890814437830036480$;$3881925052987978752$;$-3008929191121739776$;$2815926110307145728$;$904268545999510528$;$-543212792892333056$;$-2021835760657361920$;$-4424133288033141760$;$-4091479968444771328$;$1042713744061169664$;$-3671854672580290560$;$2064677300306127872$;$4105355577186702336$;$-3469018412362608640$;$-1277428072892140544$;$-3572876006673294336$;$2809157337276201984$;$-145017154047510528$;$-3327795578998563840$;$1716828151016603648$;$-3265549393678647296$;$-3068199214566309888$;$-2418271196916809728$;$-4195684035979658240$;$903387740983073792$;$720609176545388544$;$736717402886953984$;$1384646101163912192$;$3747372540841595904$;$-892185212751558656$;$3168340371514883072$;$-1295569514497061888$;$4547155643062234112$;$1240358125929366528$;$1009334274100185088$;$-1585832199794166784$;$540679947703616512$;$-1921711352235675648$;$-4354490859078231040$;$3082569787870410752$;$4482353491903645696$;$-3402958488579022848$;$-157053717814503424$;$-740012340350639104$;$2033246930689339392$;$-4140871383468971008$;$4602328419932231680$;$-4098072328251995136$;$-4588368228632632320$;$1121056325106958336$;$2595023623414525952$;$-3174581413666239488$;$-2863261872031870976$;$1778248493291087872$;$1741992342302434304$;$-470925009054747648$;$2735193957493913600$;$-3089277316845461504$;$-3139504701916682240$;$2666927539262446592$;$3337897624215814144$;$-1922133406684446720$;$4112789867056806912$;$-2281417735544628224$;$-3927868284537528320$;$4503534004211431424$;$-1942202381714984960$;$-3643839401466525696$;$2990741871012345856$;$-2773200161090658304$;$2901350318653430784$;$2195300804682439680$;$2277047161805102080$;$2545271971763018752$;$3731260749251260416$;$1448563452493393920$;$-287252631760768000$;$-4192651680350925824$;$-1225120980273917952$;$2676505044557950976$;$-4543560054246115328$;$-2685068710777116672$;$-2063294541672674304$;$4585960164256443392$;$1098788269789248512$;$3050314778469741568$;$1259746504591029248$;$2297086749203121152$;$-100631283018532864$;$4305797358963165184$;$-1972936321036101632$;$946743883611400192$;$3056881349019837440$;$-2990141958400030720$;$4168896221022056448$;$1953587583906820096$;$2732170844166422528$;$768340861936776192$;$3194746136514188288$;$431268898872196096$;$-2418640301967201280$;$-2978283535569945600$;$-1354756643162513408$;$3336253690756941824$;$4006049932924346368$;$-1114035757161579520$;$-366498700134343680$;$-2854384024199378944$;$2559209125972409344$;$1868569994819336192$;$1403192506899834880$;$3130057040210653184$;$3885375647233712128$;$-262891022111055872$;$-2710676221048248320$;$4278426675474001920$;$3571842204963376128$;$1487778689655691264$;$2870621485616258048$;$-1467292293780526080$;$-2451665375117038592$;$-1785073488839250944$;$3520782041814035456$;$1924915107648796672$;$764460696956131328$;$-743984627297027072$;$-4535294421067158528$;$2868683484514957312$;$1377410916566688768$;$3106468906280357888$;$458946756158248960$;$1108222735468700672$;$3404292464734974976$;$-1307784391915339776$;$1888740787986265088$;$4415384932122519552$;$3564976275592771584$;$2109367881385665536$;$-2235891694809769984$;$2601400956765628416$;$-814275718732921856$;$-4129097876473341952$;$1127711557057504256$;$-2189371650160186368$;$1800546747133868032$;$-4508545461911775232$;$1644219394835412992$;$-4117577230888041472$;$429520537553954816$;$1942117773698458624$;$-1729014862778150912$;$3371134646130204672$;$3439290213156849664$;$-3869584841799881728$;$-3262352967524409344$;$-2937672220139712512$;$4441918495964938240$;$-560163039811441664$;$4395610746354809856$;$398670424688945152$;$3538809437412065280$;$-1033943321359333376$;$-3027654519341795328$;$-340776530586377216$;$-1672713675729920000$;$-248472059889676288$;$4264888831467336704$;$431257035582638080$;$-545356452952602624$;$-251155389986747392$;$-730286948807436288$;$3850457780079627264$;$-1560835451602490368$;$-4020890089058309120$;$-498790219680091136$;$3007764088491129856$;$-1876085410636107776$;$410062818988954624$;$1195623713756955648$;$-3429317551336568832$;$-3118477262340370432$;$515615753605016576$;$4325177868319802368$;$3154038633196581888$;$-2927173777979342848$;$-3378770361585107968$;$1464227231533478912$;$940145358326910976$;$-2722465623381511168$;$-2800019679982015488$;$-2236742267467102208$;$4240829133557404672$;$1938005750800594944$;$-629212141031098368$;$-894949577245083648$;$95495590042013696$;$3991811482762209280$;$2628172362830248960$;$118915528938919936$;$965129110130457600$;$2267422389104986112$;$-3376357377598330880$;$-1808065674516291584$;$3785417731468092416$;$-3519694227012249600$;$3680323888747399168$;$950989764180873216$;$370336415879109632$;$4572606772590118912$;$-281212362954099712$;$29779471998663680$;$2806252227279405056$;$-610725204427037696$;$-1423627857487217664$;$3749404991473781760$;$1357043771737179136$;$4341584341991750656$;$833645647131953152$;$4604333246295931904$;$3173950996338489344$;$-272538793474740224$;$2352217409780667392$;$-3905926935735173120$;$3169186144458745856$;$-4109334458116410368$;$-3150444403059665920$;$-2758007133867271168$;$-929990962236386304$;$-799631374924750848$;$1462418035188860928$;$1314396328022219776$;$947128352997043200$;$-793473503971514368$;$-1784133939338474496$;$4486534116384114688$;$-242769903965447168$;$-2605713877488277504$;$4449921701789895680$;$2879524177886051328$;$3858869532117494784$;$-3691197383814206464$;$3370912141439535104$;$-3511759311507999744$;$1687059044768438272$;$-1668482925886366720$;$-200756444643563520$;$-1747499368224778240$;$-4083528749786727424$;$3430016399783829504$;$-557422778880930816$;$2511303058797328384$;$-52121470287020032$;$-2270482015516371968$;$499463755397603328$;$3919755288236399616$;$1807275730356885504$;$-4134416535167678464$;$2492188357645924352$;$4293669389912107008$;$3456170478338117632$;$1602879556239667200$;$-1248475784530414592$;$-2636326279157541888$;$-262637873410188288$;$-103116429930217472$;$-2773526307299478528$;$-462500754498726912$;$4242269164354252800$;$-1746264982832389120$;$3285658705748180992$;$972163804950001664$;$2462140414422735872$;$450620161127818240$;$-3425811682064161792$;$653411760610553856$;$193484319481517056$;$-2526923230407654400$;$-3133576470648087552$;$-121826932684443648$;$-1652613771731501056$;$-3193444380966125568$;$-3097448352313101312$;$1961350504131082240$;$-1495695142661658624$;$4332894277847122944$;$-2864550522978574336$;$4200017896291038208$;$-2857619111506441216$;$-60809962396728320$;$-4605488480949600256$;$-2012723759277684736$;$-4089676681181437952$;$-4076015959245982720$;$2056728725019176960$;$4053007171231781888$;$1217422808012181504$;$170962888247049216$;$984477312411357184$;$2306026093661382656$;$-3368663789120721920$;$-951746310559983616$;$307406636392093696$;$-3920879684135796736$;$-827052142869185536$;$-2660616160222726144$;$-3174624514814643200$;$1617653067100912640$;$122495779227628544$;$2331858729131236352$;$-2631974271162704896$;$-633258584386897920$;$-1256936271099300864$;$-3984148941602848768$;$2472274367776491520$;$-1854930415358638080$;$929037342985581568$;$2952314217403004928$;$3800927272508442624$;$4349976296223629312$;$2337460084445976576$;$2897701645695453184$;$4389566315731385344$;$156891662259156992$;$56328775106295808$;$4269050398270706688$;$-2751161279240230912$;$719395707472699392$;$741367738591440896$;$-3051503638349431808$;$-234293220341670912$;$-3206779789496513536$;$301312777435238400$;$-2236036821363197952$;$-856813844347429888$;$3225620465739357184$;$-4518763639745897472$;$33712879228224512$;$-3144873447609375744$;$-1674213881860845568$;$550092961695193088$;$-4061470044276414464$;$-4064316251098812416$;$3536696307445639168$;$1897492291504856064$;$4038277226210748416$;$2608062121904694272$;$-2973678603985756160$;$3003565102346158080$;$1272474016235533312$;$-666921732368754688$;$-1347185354593911808$;$1909535345356741632$;$134323325621514240$;$-4231065869204720640$;$-335979268476788736$;$160915052462955520$;$610926184556398592$;$-1068169433408843776$;$-1080129487662756864$;$446304183966384128$;$-3997989618513554432$;$1600687329652033536$;$1757320090451644416$;$1207011468379445248$;$-4533637779062018048$;$848700108903139328$;$1267595939208525824$;$-1069659979673098240$;$-3746260443277415424$;$1754005258075499520$;$-2518821749214365696$;$-2735031768526212096$;$3097389093127841792$;$452458081794412544$;$3634870606819104768$;$1776675134187280384$;$1590098266109192192$;$3562133324202037248$;$-3884578081656737792$;$-2943683425120286720$;$-1713725128433937408$;$-1057511885658513408$;$-204648361694801920$;$-650008134164193280$;$960812616493066240$;$-4254136126367889408$;$1920179065084341248$;$2896198691919974400$;$-2305707486576021504$;$435846602520187904$;$4251574175914455040$;$-2479585625741300736$;$193256376240716800$;$2173575176079751168$;$4114921607112759296$;$999057325347860480$;$-2275277861150485504$;$2580121360715774976$;$271394872710397952$;$723205533992174592$;$3352960778914337792$;$2484438779707572224$;$-960426508038200320$;$1932699351747952640$;$971060172442852352$;$1283363214228093952$;$-3626927153270295552$;$-929533631939266560$;$1562354465887776768$;$-2092935189834883072$;$-3144105621416352768$;$3221619598707697664$;$-4575506075455708160$;$-1587997196365301760$;$-4187981709249029120$;$-3131428396243109888$;$4043017944847517696$;$-2286403681748606976$;$-3065463775668122624$;$-1266139549209598976$;$2039770996811480064$;$3339089089183106048$;$-2069976583677981696$;$-2546036226141763584$;$1268130522258978816$;$-2138143453841595392$;$-2087515919307938816$;$3264402628906549248$;$2073345349348606976$;$1192438820813431808$;$2347379699225062400$;$-3050434958731102208$;$-1845385400687842304$;$1610187829404969984$;$-2632840876767367168$;$-404298756870981632$;$949554559337158656$;$-2344163170583314432$;$-2645719408057326592$;$966466201367530496$;$1609991310277112832$;$-2330345602319515648$;$-197513309186159616$;$1488260060620361728$;$2356055785013653504$;$3391358689075923968$;$3818682786783071232$;$-1168579431679951872$;$3348562893700539392$;$1111704563993162752$;$2659598326645352448$;$-488110411512196096$;$1804748470122752000$;$-3243581660403190784$;$2092325173731790848$;$-4463324503160663040$;$-3591599628445121536$;$3900223838733893632$;$1733638768745078784$;$-3720137214176030720$;$4306271336905895936$;$2709060139841754112$;$-1849636029879802880$;$4169086053136893952$;$3564542892531550208$;$-548014221954330624$;$-3944390767388221440$;$4149281443003431936$;$-658363085924219904$;$-2687017548338068480$;$448899782505804800$;$-1306547673282220032$;$-1761478261638391808$;$266723357193308160$;$-3299967705224757248$;$2735815307527130112$;$-303304918806207488$;$984205159509481472$;$4347684891277846528$;$-4294935357197860864$;$-3767873229225060352$;$3865625466321809408$;$-3114790323392465920$;$-1306766053343171584$;$3127459047553386496$;$4529247204713320448$;$2159708147416914944$;$-3489274664826855424$;$-3941036496083587072$;$-3074949501230736384$;$-4063942129275756544$;$-2569030402320092160$;$-1698162103383352320$;$2251482173486358528$;$-1095975783600487424$;$1348424018930873344$;$-3260122749051796480$;$1193975697761383424$;$-3922443730232517632$;$-4446545252552794112$;$-4274816734921975808$;$1376118504179096576$;$2667669220710816768$;$2329343698233022464$;$-2837775032520918016$;$-4470918038358432768$;$64317560828432384$;$-792594830401267712$;$-4214949064509483008$;$721262319824903168$;$-4312609854279130112$;$-4083273865645535232$;$-1843505192747619328$;$-2907484987623881728$;$-3453008389710009344$;$915136779922369536$;$4121673176571668480$;$136527432283268096$;$2042886748717667328$;$-4410935395678690304$;$3676837147664378880$;$-2042987599429216256$;$-3844819027441426432$;$2001122109745122304$;$-4432607605280897024$;$4567226184815657984$;$-1904521696182849536$;$-1750554767928208384$;$-2276607708991702016$;$998306800228186112$;$21344136760651776$;$187252191524925440$;$2974061665403240448$;$2252441075392157696$;$-1176458471204298752$;$704068894108545024$;$-956445974289056768$;$-15823294110507008$;$4505957464492974080$;$-3817062240600612864$;$3741983185837510656$;$-1147154575756781568$;$-3531274298462380032$;$-4387644587176262656$;$1295873110124061696$;$829987334058103808$;$-3970750467549877248$;$3804361134586887168$;$4584177858718625792$;$2381139019569113088$;$2821192860574733312$;$2334627584627425280$;$259557477518814208$;$-4473288027317253120$;$2651387697225082880$;$2725066024833831936$;$174057558255077376$;$-1272730631421028352$;$-2270256785424106496$;$-1688698769692622848$;$271997328071063552$;$-826076661277331456$;$2647276239118577664$;$2608681773655614464$;$-1756870748624580608$;$-446253361627919360$;$4318708255822712832$;$-774269000305816576$;$-4262741484806667264$;$1075075898888047616$;$-197166087343447040$;$-2437578628154632192$;$3234345959137024000$;$-1053085190749629440$;$-1328786675950696448$;$-2308290007925059584$;$2394072302316438528$;$2412207837511587840$;$1199435104027164672$;$-512148812658280448$;$2496222707719037952$;$-2611171215989517312$;$-2287221304433855488$;$-3873866118865464320$;$3373442552806444032$;$3700858013079452672$;$3733698693257501696$;$1243409559369461760$;$2139306810986656768$;$407362134746821632$;$4492733817233191936$;$98934717491962880$;$-3876603132841398272$;$1742972902053326848$;$3694171651744413696$;$4180333325159116800$;$201522908024881152$;$2857799434820894720$;$-2021125461812208640$;$-452597371762996224$;$104566456623350784$;$-541889384562094080$;$1865697554582853632$;$409743220769496064$;$2400766818455781376$;$4021089204796051456$;$-443342841388770304$,亐ᢦ䃙늭톭㸒庽娺馵䄨帧榢怅⌜က✦࣑稗焏猡脤ኘ狠杩港⦖䅓ꂡ耻췾寧劍있㨚㞚ᥱ塥頋輗蒅붖壾࣊㟧䁏휿ꇷ鯐ꉧꏳ按⠔᠏㋋뇶㒃䶉狺蠌ȶ匓鹼ꞷꆑ锄⊮㫴﵋ꇼ쉥᱓㉿邰惯絉뫢蠺끇㌶瓲ᛙ沎配픐쪻ꑱ捜ﮁ鍄것摾ᇀᤦ쳥᳓勍蛶謵㾉⛔襤捹㥧클겿豼奎稲㌜๼콘皗᧻觢ਚ㚱险鐠麣膚朼䵲蘃㬵᤟衢恂峻⎻퓩暇⯙翏薘撴櫇鿟烀暄햠뇲↏ꊻḐ햭비ݝ熄祝鄋箪ࠓൊ쭩ﭧ㷑鸛䗃ꅜ⏈ᬺᰍ鉣孁诱缟馟횜뒥ⷧ嶠劸ﱢ쁅祽쏬簱샃髊䦍ṵⴱ略﬐钜̉攠쿑櫶衜鸎픱ਅ஼挊囅喑薠婦獓兩䭶둣࿳쇼欼㔍᝝慭،茇鵁ꛏ㏺딉騌꼐㼕鄿䩽츆䤯籫㖔亿ಾਨ욽ꞏ䔔觨含湑퐽洷౑焕䢳蘜ꛜ䕕졊ഒ휡몀짔Sၵ邆⢅຾穅慎ὒ똜㯺㛪⚾ໞҬ榜⇅ᷤ騑ܫ❲׹懅퍑᫒嶟ꑚꝶ೎䱺䞳張㕜줳蚷齓犱ኾ嗜㠅豵⡎蓍鮖亠ꜷ￵뾔踣褕鈝쳗䐿໮씺濋뾗몗滆미酙ū쬲纂䵙跘没撺樘䥀崹⽎潸௚ᯰ砿ᜱ中븼ꮰ᠒挷䤁蛝쩨鑕郝㋗␇嵽ﱳ᛽僌ᙴ᫣尞诈㲱䂗Ꮙ逨㭛畟妭愨攋貂ຝ魔㝍⦮籙畭채粳瞫奬哈ᅔꥦ㿉䪀솕ﴈ헷㓖騗毾겝꒖姈寄쌮鑔쿱톪ꓨ몖᭖ع暡躉뗳퉻쳒艄흴闏땗ⴛ쓤뙗僋룗훠㴺䏩覕欌ְ秼첃憘舭虰즤ᶠ᩹럞欚ᚒ_뎋붿䰂冗叓窤ꉨ畊昻碻Ն쥁᭗僅Hꮧ䣑鱶㷞铓绸隸䠶練훃᤻⿣ꠂ耳ꃱչꖨ⩮缚鹑䀃᧋஡嶃آ중㛃‫Ż됑⪇늳↖ꔴ辶酘냔㓪̙峆餟큂ܓ쫆駡Μ⦅勖쑂㍎铼枤∻풨ⓝ瑅糌鳅⨵牸䰑吽, -5,,1443154422.94,,He'G'/!P_,,"{""a"":1.4296130885131902e+308,""b"":""\uc8e4\ue9c1\ua999\u34ac\u0501\ueef9\ue6c1\ue145\u49da\u6f96\u7656\u48dd\ua4b9\u1ae0\u15b4\u960d\ue339\u46f0\u8bb2\ue2ae\u7c54\ufc7d\u4bf1\u98eb\uf778\u3b0a\ue3d4\u8714\u1a61\u8fc6\u3564\u2a28\u63ff\u1c52\u01f9\u3aff\ueeb3\uece7\u0300\u5819\u6cf0\udcc2\u2fcb\u92b1\ud874\u91b3\u5dad\u40da\u69f5\ued5f\u1a6c\u6571\u009d\u4288\ue1cc\u9198\u276a\u5cb3\u89c6\u4f0c\u62f4\u5fc5\u7fb1\u41c0\ua91b\u9303\u62c3\u7ee2\ufa38\u0577\u8c28\u86d8\uaebd\ub6aa\u693f\u9442\u7fac\u438f\uda0b\u8f8d\ua611\u90c1\uc7c5\u88df\u9098\u9acb\u572c\ue5a8\uec9f\ub682\u924c\u37c7\u3c2a\uffe6\u58d3\u4bfa\u3db7\u4afc\u0c4f\ua11f\u843c\ud837\ubaa4\u6cd1\u128d\u6d55\udc19\u93de\u7bb7\u9d51\u1b6a\u4e1d\ub792\ub647\ufe8d\ub997\u8c0e\u04aa\ua22d\uce8f\u91e0\u3c38\u83bc\uaf6a\ucabe\u50a0\u7125\u6f20\ucf7d\ue785\u2056\u550a\u269e\u3618\uf3b3\u2ae9\u1a99\ua958\u9273\u4470\u9f63\u8369\u321c\ufb50\uaff0\u7664\u663c\u9760\u9783\u6e20\u3fc8\u855b\u8d7c\uf092\ub26d\u8a0b\ud663\ub049\u713b\u241c\u751a\uc95a\udcf7\u7359\ue24d\u47f0\u11d5\u7de4\u8e23\u199a\ua8bd\u3658\ud47e\u8c2e\u5c85\u1fe6\u8672\uc56d\u2a76\u9851\ua6cb\uf962\u711c\uaecd\u18ce\u93d0\u5d72\uc8ea\ufc51\u1a0d\u6a47\ueb29\u9956\u824e\u753e\uc151\ua91e\u641c\u66e4\uf4ce\u88f1\u3e87\u1188\u9f73\ua028\u1cd9\ub3e9\u02a2\udd74\u0898\u7ea7\u080b\u992a\ue2d4\u14a3\ud807\ue609\u90f1\ub0d0\u68ad\ue340\u6196\uc35f\u8a97\ua5cb\u9e14\ua075\udfee\uf125\u347b\u93e8\u2205\ud27b\u55fc\u4fb3\u18b6\ue87b\u1838\u42c5\u9017\u66b1\u7c1f\u5134\ud657\u61e5\u9d17\u2c9a\u5825\u7f29\u2702\ue194\u3bb2\uca84\u99b7\u0d2a\uf0a5\u4486\u2026\u9d09\u2361\u6827\u685f\ua235\u109c\ua5e6\u862d\u96a8\u26b8\u1d99\u2172\u8002\u74b9\ua6ee\u8ec8A\u66ec\ue9d1\ub969\ufdf9\u6893\ud269\u707c\u3dc0\ud2fc\u15cd\u6bfb\u84fd\ua56e\u7ba7\u018c\ue93c\uc52a\u2af3\ud8d7\ub537\u7556\u3137\u7c6e\u160d\u34f7\uca78\u32e6\u0a2d\u5d49\ubd1d\u81f7\u6c94\u5048\u14ad\u5692\ua3f0\u14b5\u6ce9\ub35a\u1e6b\uc444\ue620\ub105\u9ff2\u8106\u176b\u8b09\ucc54\ube0d\u4498\u2d91\uc7a5\udd31\ud462\ua80c\u8d77\u0aca\uf923\u0960\ud636\ub132\uea73\udd16\ua1fb\ueeec\u2ff1\ue957\u111c\u0780\ub6de\u902e\u4ba7\uc6ae\u6b84\u1986\ud1f4\uc057\u990b\u70ff\ufcae\u5a9a\uab40\uc798\u7c0f\u1100\u2820\u6baa\uc1a6\u07d7\u0948\u0ee4\u85ac\u5b5e\ua3c9\uedb6\ue229\ua0dc\uf36f\u6770\ub235\ufbba\u86ca\ucca2\u699d\ubec1"",""\u798f \u9152\u5427"":{""fu"":6.503114283550278e+307,""bar"":2.5442445515276224e+306}}",,"2169553515369648128 -496973256855621632 -2515349468154662912 --2031584628283060224 -3832733411014220800 --4237652989715908608 -3685527136107596800 -758896976773983232 -3890699998318480384 --4050900248505834496 -1251543952778380288 --4011680433462267904 --2566213069141640192 -4513176894131386368 --1408882124293613568 -4550199862545831936 -4410184383981263872 --2705965229988823040 --2138936859073705984 -2505875063748724736 --3852357247257510912 -3853025144736322560 -3115694482341095424 --1223026857853890560 -1476813247521994752 --4080013194321019904 -2731524634877939712 -1304309436231827456 --2744372195495713792 -1392131981246283776 -1713052618234144768 --2037563695806766080 -2049171971109442560 -1551345521626949632 -1621773618898518016 --3955312531352241152 --2522708821715113984 --3358819945352124416 -2260407180647187456 --3562985080451770368 --2159391684518700032 --1841408063106835456 --518526992185801728 --3271976748830997504 -4569652110438950912 -2201329049098502144 -4167415917906484224 -3241268452490388480 --4379783257028734976 -2803526426400314368 -13429409032237056 -3490833693656404992 -4048281433053293568 --2618091549377517568 --2939176906317589504 --3165658799043961856 --1383565872108855296 -3499846081018032128 --4135405646682753024 --4386339616502319104 --3382672373430906880 -2363389328854641664 --849344356588890112 -709820875781413888 -1589775838528889856 --2928066673099402240 -302328229798005760 --4328299048002846720 --3452064115538822144 -3996504086399055872 -1060612667125885952 -3626018559263589376 --750473523526352896 -4451069031680842752 -4068519761178378240 --3989967436218716160 -3897959593362740224 -189944022672545792 --3631560987991319552 -2620007376213091328 -1528002490320172032 --2388801237806051328 --4245597680630116352 -2614188367749494784 -3703985716322126848 --2191062392028525568 --3389185838896593920 -2720483183582955520 -4001759070488174592 -4283472010390279168 -801820284590974976 --4401980459193024512 --2802456481523638272 --759658768310973440 --614370057792207872 --3137138973694035968 -1337314530114538496 -2763493100702173184 --3813261980679003136 -3948744609484474368 -2725356035037103104 -166145495879916544 --846118771809829888 --3399759336550962176 --1630561771633980416 -1449644892004726784 -2776005516837687296 --1277980560386883584 -3442342502384729088 --1616948041132521472 -414054974885660672 --3003956108456976384 --3934936326949507072 --318355008175102976 -4485134818304651264 --266126253135749120 -3421118830958686208 --456573984198573056 --3526602486691269632 --3378825949219514368 -3574357230628577280 --1469138968338488320 -2417348304725882880 --2400472890395320320 -742937115278836736 -2210067715101385728 -17857006587217920 -4355384266981841920 -717257514803664896 --1594057644817106944 -2958365690309763072 -311558974955842560 --2410769344018333696 --3005177115594438656 -1365025134310375424 -2789103298810821632 --3129078762946306048 --3726567087679481856 -1653233639205851136 -4509945845413209088 --4381843881494614016 -2696388278139028480 --103249809064974336 --218357145246102528 -2517804184657805312 -1381214211124397056 --2455454001176408064 --354229439207931904 --712629563051513856 --3936502137935041536 -4036392999679533056 -3345999087843617792 --1831022686319797248 --1004003691342722048 -3294189207470765056 --2992434734042298368 --2050747182796694528 --2913914690733475840 -3037896697372262400 --1308904880678506496 --1448748358855547904 --3140102846984312832 --4493493338959884288 -2601865705403510784 --2049309413544124416 -4531468675133082624 --3757266411154502656 -4284929661019049984 --570017278211615744 -1687437285296763904 --2449383073760219136 -2131125732478297088 --3229190528543104000 --3957232624540903424 -1998023694389466112 -4589442210036834304 --2468116442855376896 -1060238822658609152 --2977786083873668096 --4288219306037221376 -1495316019098981376 --1596592588146711552 -4054296547622955008 -2879932166776308736 -36585810225811456 --1110862082882017280 -3646782346442526720 --785362462488855552 -1530356605154570240 -3232916737366061056 -1194821437290572800 --2499187210578604032 -3523605458847797248 --15767107723376640 --1098737888114300928 --3246359734227411968 --4498734398641516544 --4319144299335959552 -3645095998748790784 -6978543700868096 --913999755452331008 -3891879173499216896 -4390102702619226112 --62478522124219392 -2448935873462489088 -802342042957971456 --2540290060262171648 -2555991012791911424 --3008933031167293440 --4280061601174857728 --2510496481560821760 -314019488414019584 -4283593075393267712 -725282078810591232 --1710032938647361536 --4568335345438903296 -2255874069823635456 -625401815597655040 --2812270844616764416 -1060318120532954112 -2173907892316410880 -1526707396388951040 -3074132327254609920 -3476705370621728768 -438951310780316672 -712019607092005888 -3619273436111710208 -3792270710997767168 -2506705959187197952 -3822151477120933888 --3330741968631409664 --621562962021036032 --3483108320304141312 --4030260799146520576 -3396854905633593344 --332059075718643712 --2488676836792526848 -1068698696513664000 --3967414813389108224 -2792489122816184320 --1107837945862222848 -1968344512522186752 -2723786051679253504 --915163382655678464 --692491228153647104 -4078849545202154496 -464039056446733312 --959494799942546432 --3230697439121208320 -957456469363691520 --110535157392672768 --3048633888741607424 -39019292061585408 -2785629813058960384 -1041500226222525440 -927214289989081088 -2549424407081308160 --2821366733238660096 --110113845968175104 --3554882753985374208 --3062573808809166848 -1866954968402978816 --2988757306408999936 --2016553017060420608 -3761347526206826496 --2099725054314434560 -1743532610567502848 -2211961467432135680 -2395631169512836096 -2473810991550777344 --388495896120476672 --2402838311648501760 -3800736990891550720 --2330538058173549568 --4000351968923142144 -2947618314157523968 --1754550352544975872 --4278301877166693376 -3595446155135704064 -46520570966662144 --4304051842413261824 --55228175592356864 --215482552665339904 --1837805041454937088 --2777754226068686848 --413143800103678976 -3477048178237908992 -889540561866041344 --3852996409967688704 --4599464121695190016 --3032718838128235520 -2738291534775157760 -2307980712282895360 -3549248203383267328 --1845047107586435072 -1018880144435984384 -4577778058660481024 --4517099855230926848 -322514880004238336 -4271023451766027264 --1889985004873229312 --3472227808757339136 -3218262697001237504 --951379055356509184 --2955142484852050944 -2293210230869527552 --347344638626094080 -4321127676580581376 --2887713114908178432 --2631638421885621248 --2998732463272775680 --1005850601720562688 -2265650354088354816 -293220972575204352 -25708893114959872 --509594822386335744 -3131564820541851648 -3206299554212661248 --3075334617492036608 -4519622641983182848 -2301818990234742784 -2481998235610034176 -3887810860335729664 -2275910911471099904 --3496042778724012032 --2260163426784743424 --619511592079126528 --1705624457965078528 --4249114607242156032 --1836500869064346624 -1635687237864124416 -2978378118787099648 --1446348344570708992 --4337940227063963648 -2730140700056254464 -2991894075998644224 -818639247948626944 -2329615613160914944 --4482930116334072832 -1883061715450766336 --1661040039427628032 -325640870367162368 -3629821065514817536 -3911910781334564864 --1029445477886087168 --389958708660682752 --2143906724701323264 -2938200128721186816 -536839776445826048 -3008116343131255808 -4067424643342118912 --1303656544948499456 --3450049072253527040 -3183103652893637632 -1556475678127490048 --2955312249454297088 --1987582050239566848 -4298623964440814592 --1613639325623771136 --3703698951651335168 --3168596455494436864 -1222370394770921472 --881720413053696000 -3797686453870638080 --64045945267561472 --2021844953508278272 -4447768260712598528 --3541577082855162880 --4432132047046516736 -3739803243370450944 -2026381046178469888 -1751119184005153792 -2161155670867992576 --3356336638763216896 --411189415149858816 -4297713688570728448 -4202054403096781824 -3163470498144928768 --417638765290911744 --464955713855141888 --4587086394745210880 -2518907136549642240 -2127906820096084992 --885146113389847552 --3512367952801141760 -3825809721739804672 -3868871623607035904 --930095071014511616 -3342207850659700736 -3771200075609106432 --1093378636967727104 --1268414707543762944 -2805428104000102400 --3121210215001289728 --27993881060318208 -2981504150771760128 -3101594765318822912 --1919576154259068928 --1512753638138216448 -2881085590675028992 -4399551455589216256 --2326133021411800064 --703252651768872960 -1546087133429636096 -3851122561684786176 -2505851857518769152 --3262381353016988672 --157859953836862464 -2173151225480769536 -2464124180238522368 -730096988377690112 --786768111034036224 -673110949607524352 --4352175829128655872 -1738851897930440704 --1811053518315182080 --327500809477439488 --4587288779912654848 -2401157544559034368 --1488614442688310272 -280393645297825792 -3598226301033236480 --972867865569691648 --1482532668657554432 -1158131079999967232 -2296614998201933824 -4487712966580657152 --1861252569394519040 -2120698792012175360 -650275046927890432 --33578592481071104 --149800239590094848 --454379441867778048 --610083646447313920 -1621295265615432704 --539176671837002752 -343900062811842560 -2943126963096542208 --1110112532097737728 -3539275942422120448 --3473689494837584896 --460435569932589056 --1907548951234478080 --4217343302696863744 -435737381099530240 --2506954354251988992 -2315926814043559936 --100150377023450112 --2033954102104559616 -2212731166360911872",$2169553515369648128$;$496973256855621632$;$2515349468154662912$;$-2031584628283060224$;$3832733411014220800$;$-4237652989715908608$;$3685527136107596800$;$758896976773983232$;$3890699998318480384$;$-4050900248505834496$;$1251543952778380288$;$-4011680433462267904$;$-2566213069141640192$;$4513176894131386368$;$-1408882124293613568$;$4550199862545831936$;$4410184383981263872$;$-2705965229988823040$;$-2138936859073705984$;$2505875063748724736$;$-3852357247257510912$;$3853025144736322560$;$3115694482341095424$;$-1223026857853890560$;$1476813247521994752$;$-4080013194321019904$;$2731524634877939712$;$1304309436231827456$;$-2744372195495713792$;$1392131981246283776$;$1713052618234144768$;$-2037563695806766080$;$2049171971109442560$;$1551345521626949632$;$1621773618898518016$;$-3955312531352241152$;$-2522708821715113984$;$-3358819945352124416$;$2260407180647187456$;$-3562985080451770368$;$-2159391684518700032$;$-1841408063106835456$;$-518526992185801728$;$-3271976748830997504$;$4569652110438950912$;$2201329049098502144$;$4167415917906484224$;$3241268452490388480$;$-4379783257028734976$;$2803526426400314368$;$13429409032237056$;$3490833693656404992$;$4048281433053293568$;$-2618091549377517568$;$-2939176906317589504$;$-3165658799043961856$;$-1383565872108855296$;$3499846081018032128$;$-4135405646682753024$;$-4386339616502319104$;$-3382672373430906880$;$2363389328854641664$;$-849344356588890112$;$709820875781413888$;$1589775838528889856$;$-2928066673099402240$;$302328229798005760$;$-4328299048002846720$;$-3452064115538822144$;$3996504086399055872$;$1060612667125885952$;$3626018559263589376$;$-750473523526352896$;$4451069031680842752$;$4068519761178378240$;$-3989967436218716160$;$3897959593362740224$;$189944022672545792$;$-3631560987991319552$;$2620007376213091328$;$1528002490320172032$;$-2388801237806051328$;$-4245597680630116352$;$2614188367749494784$;$3703985716322126848$;$-2191062392028525568$;$-3389185838896593920$;$2720483183582955520$;$4001759070488174592$;$4283472010390279168$;$801820284590974976$;$-4401980459193024512$;$-2802456481523638272$;$-759658768310973440$;$-614370057792207872$;$-3137138973694035968$;$1337314530114538496$;$2763493100702173184$;$-3813261980679003136$;$3948744609484474368$;$2725356035037103104$;$166145495879916544$;$-846118771809829888$;$-3399759336550962176$;$-1630561771633980416$;$1449644892004726784$;$2776005516837687296$;$-1277980560386883584$;$3442342502384729088$;$-1616948041132521472$;$414054974885660672$;$-3003956108456976384$;$-3934936326949507072$;$-318355008175102976$;$4485134818304651264$;$-266126253135749120$;$3421118830958686208$;$-456573984198573056$;$-3526602486691269632$;$-3378825949219514368$;$3574357230628577280$;$-1469138968338488320$;$2417348304725882880$;$-2400472890395320320$;$742937115278836736$;$2210067715101385728$;$17857006587217920$;$4355384266981841920$;$717257514803664896$;$-1594057644817106944$;$2958365690309763072$;$311558974955842560$;$-2410769344018333696$;$-3005177115594438656$;$1365025134310375424$;$2789103298810821632$;$-3129078762946306048$;$-3726567087679481856$;$1653233639205851136$;$4509945845413209088$;$-4381843881494614016$;$2696388278139028480$;$-103249809064974336$;$-218357145246102528$;$2517804184657805312$;$1381214211124397056$;$-2455454001176408064$;$-354229439207931904$;$-712629563051513856$;$-3936502137935041536$;$4036392999679533056$;$3345999087843617792$;$-1831022686319797248$;$-1004003691342722048$;$3294189207470765056$;$-2992434734042298368$;$-2050747182796694528$;$-2913914690733475840$;$3037896697372262400$;$-1308904880678506496$;$-1448748358855547904$;$-3140102846984312832$;$-4493493338959884288$;$2601865705403510784$;$-2049309413544124416$;$4531468675133082624$;$-3757266411154502656$;$4284929661019049984$;$-570017278211615744$;$1687437285296763904$;$-2449383073760219136$;$2131125732478297088$;$-3229190528543104000$;$-3957232624540903424$;$1998023694389466112$;$4589442210036834304$;$-2468116442855376896$;$1060238822658609152$;$-2977786083873668096$;$-4288219306037221376$;$1495316019098981376$;$-1596592588146711552$;$4054296547622955008$;$2879932166776308736$;$36585810225811456$;$-1110862082882017280$;$3646782346442526720$;$-785362462488855552$;$1530356605154570240$;$3232916737366061056$;$1194821437290572800$;$-2499187210578604032$;$3523605458847797248$;$-15767107723376640$;$-1098737888114300928$;$-3246359734227411968$;$-4498734398641516544$;$-4319144299335959552$;$3645095998748790784$;$6978543700868096$;$-913999755452331008$;$3891879173499216896$;$4390102702619226112$;$-62478522124219392$;$2448935873462489088$;$802342042957971456$;$-2540290060262171648$;$2555991012791911424$;$-3008933031167293440$;$-4280061601174857728$;$-2510496481560821760$;$314019488414019584$;$4283593075393267712$;$725282078810591232$;$-1710032938647361536$;$-4568335345438903296$;$2255874069823635456$;$625401815597655040$;$-2812270844616764416$;$1060318120532954112$;$2173907892316410880$;$1526707396388951040$;$3074132327254609920$;$3476705370621728768$;$438951310780316672$;$712019607092005888$;$3619273436111710208$;$3792270710997767168$;$2506705959187197952$;$3822151477120933888$;$-3330741968631409664$;$-621562962021036032$;$-3483108320304141312$;$-4030260799146520576$;$3396854905633593344$;$-332059075718643712$;$-2488676836792526848$;$1068698696513664000$;$-3967414813389108224$;$2792489122816184320$;$-1107837945862222848$;$1968344512522186752$;$2723786051679253504$;$-915163382655678464$;$-692491228153647104$;$4078849545202154496$;$464039056446733312$;$-959494799942546432$;$-3230697439121208320$;$957456469363691520$;$-110535157392672768$;$-3048633888741607424$;$39019292061585408$;$2785629813058960384$;$1041500226222525440$;$927214289989081088$;$2549424407081308160$;$-2821366733238660096$;$-110113845968175104$;$-3554882753985374208$;$-3062573808809166848$;$1866954968402978816$;$-2988757306408999936$;$-2016553017060420608$;$3761347526206826496$;$-2099725054314434560$;$1743532610567502848$;$2211961467432135680$;$2395631169512836096$;$2473810991550777344$;$-388495896120476672$;$-2402838311648501760$;$3800736990891550720$;$-2330538058173549568$;$-4000351968923142144$;$2947618314157523968$;$-1754550352544975872$;$-4278301877166693376$;$3595446155135704064$;$46520570966662144$;$-4304051842413261824$;$-55228175592356864$;$-215482552665339904$;$-1837805041454937088$;$-2777754226068686848$;$-413143800103678976$;$3477048178237908992$;$889540561866041344$;$-3852996409967688704$;$-4599464121695190016$;$-3032718838128235520$;$2738291534775157760$;$2307980712282895360$;$3549248203383267328$;$-1845047107586435072$;$1018880144435984384$;$4577778058660481024$;$-4517099855230926848$;$322514880004238336$;$4271023451766027264$;$-1889985004873229312$;$-3472227808757339136$;$3218262697001237504$;$-951379055356509184$;$-2955142484852050944$;$2293210230869527552$;$-347344638626094080$;$4321127676580581376$;$-2887713114908178432$;$-2631638421885621248$;$-2998732463272775680$;$-1005850601720562688$;$2265650354088354816$;$293220972575204352$;$25708893114959872$;$-509594822386335744$;$3131564820541851648$;$3206299554212661248$;$-3075334617492036608$;$4519622641983182848$;$2301818990234742784$;$2481998235610034176$;$3887810860335729664$;$2275910911471099904$;$-3496042778724012032$;$-2260163426784743424$;$-619511592079126528$;$-1705624457965078528$;$-4249114607242156032$;$-1836500869064346624$;$1635687237864124416$;$2978378118787099648$;$-1446348344570708992$;$-4337940227063963648$;$2730140700056254464$;$2991894075998644224$;$818639247948626944$;$2329615613160914944$;$-4482930116334072832$;$1883061715450766336$;$-1661040039427628032$;$325640870367162368$;$3629821065514817536$;$3911910781334564864$;$-1029445477886087168$;$-389958708660682752$;$-2143906724701323264$;$2938200128721186816$;$536839776445826048$;$3008116343131255808$;$4067424643342118912$;$-1303656544948499456$;$-3450049072253527040$;$3183103652893637632$;$1556475678127490048$;$-2955312249454297088$;$-1987582050239566848$;$4298623964440814592$;$-1613639325623771136$;$-3703698951651335168$;$-3168596455494436864$;$1222370394770921472$;$-881720413053696000$;$3797686453870638080$;$-64045945267561472$;$-2021844953508278272$;$4447768260712598528$;$-3541577082855162880$;$-4432132047046516736$;$3739803243370450944$;$2026381046178469888$;$1751119184005153792$;$2161155670867992576$;$-3356336638763216896$;$-411189415149858816$;$4297713688570728448$;$4202054403096781824$;$3163470498144928768$;$-417638765290911744$;$-464955713855141888$;$-4587086394745210880$;$2518907136549642240$;$2127906820096084992$;$-885146113389847552$;$-3512367952801141760$;$3825809721739804672$;$3868871623607035904$;$-930095071014511616$;$3342207850659700736$;$3771200075609106432$;$-1093378636967727104$;$-1268414707543762944$;$2805428104000102400$;$-3121210215001289728$;$-27993881060318208$;$2981504150771760128$;$3101594765318822912$;$-1919576154259068928$;$-1512753638138216448$;$2881085590675028992$;$4399551455589216256$;$-2326133021411800064$;$-703252651768872960$;$1546087133429636096$;$3851122561684786176$;$2505851857518769152$;$-3262381353016988672$;$-157859953836862464$;$2173151225480769536$;$2464124180238522368$;$730096988377690112$;$-786768111034036224$;$673110949607524352$;$-4352175829128655872$;$1738851897930440704$;$-1811053518315182080$;$-327500809477439488$;$-4587288779912654848$;$2401157544559034368$;$-1488614442688310272$;$280393645297825792$;$3598226301033236480$;$-972867865569691648$;$-1482532668657554432$;$1158131079999967232$;$2296614998201933824$;$4487712966580657152$;$-1861252569394519040$;$2120698792012175360$;$650275046927890432$;$-33578592481071104$;$-149800239590094848$;$-454379441867778048$;$-610083646447313920$;$1621295265615432704$;$-539176671837002752$;$343900062811842560$;$2943126963096542208$;$-1110112532097737728$;$3539275942422120448$;$-3473689494837584896$;$-460435569932589056$;$-1907548951234478080$;$-4217343302696863744$;$435737381099530240$;$-2506954354251988992$;$2315926814043559936$;$-100150377023450112$;$-2033954102104559616$;$2212731166360911872$,쵢赐應瞓Ⴗ킬䅒耵士⼹ሉ䇘㯕囇ਸ਼㸢᳡ꯉ䤹虜苲㑷恛麨퀞䀺㜯ବド朢琧꜃塏隣嫴詖䞣崰饲稳䔰投㾔㊿晳쬺侘䇨ꢽ㋫Ὸ腖㐄฿ྭ쇠⪇슍悝ꄍ飏꼰儏Ŗ쇏䰖㷿㇅Ꙣ㶶祿ൊ⸣㿭瓪Ĉ閹㑫먣놇⛹붡㙰폝햻䭴何먙懯㳘桲ⵖ먚刂맓箌ꐳ铒꿝轻垩婚╅旀霾炙ᚠ䣾햴⤢㥟參㮏常ʜ嬞緌좈쐡蘷밉ぢ牺⫥ઙᤆ龙筳ᅷґ髤䧄촔螊ꅏ皅낥뿙鱗뚄齈햮⇷ꅎ㣇坮ﱬ휦裬纜껯첪怉Яᴤ呿爛푯痼ዾ㞳脽볳癦鍇勊᠇訏議길﶑猁츣乹㕽膘漇ᜎᮏ稪ꉆ驻剓滏ǧ뎖ዱ胓ᵰꪋ哸鎤⥴酖쬖ꑂ뾾⫤獁濾邕࠱练ጋ匡ꐻ⾄䨢倥崸亱ﱫ흃夤ꀠ⸄ꁓ肊᠆㿘זּ덉闪࿍줧쟝咇姅৭⑭⻗鬭뺚㪁歬ᦙⴉ㞙⑙᩸䨰糡즑뽗욎p禪뽅천綱刏蛏ሒ㰓ᬃ祧㚿덲䵑䣴ᗔ額ᅠ钫㇟랡驘䣶핕蘭쬝㸆蕗⌿噅镓㬌뱜툡ﯚ夜ᡌ㈱쿋䑁謑沭๕䭬泒餖ផ鋔㛻໼ᖥਲ祆ﰷ侧岋Ⅰ漟刳烑뫂ᤨ鬕卩쁔⑜貟㳇紛짩槛篼ꦒ⛴鷞滁ꔲ蕭毿煹跿狅헯듡dᆴᑼ浛郧攥␙㵖⒋耋谾⹝䷾㷏ꚩ꾜ڡ緕ᄞ며븙쬵胎핹앬莺돰퀙촧䴯ၗ䷮鳸ὗ゚泜Ꮍာ핬턓짪౓翭㤽累뷭凎蔹졈사䙕ᓲ惓靴둇켊씚믯ꌿ㦄哾ᄡ쳇䄣쬣칝⨾瑵⡳蹵雙ﭏ珳蒊嘢Ⴠ诐䌆ꛍ陉貓釩Ꮫ鳈㵪ᖒ㶙牎Ⓒ翈ꯝ躷굿ꂊﮯ窝䚷ꠈ闁铏᧪ꂒ❎큛ꔶ론㽟䌮ힼᛉ⬯㬖࡫ᖩ⠴鐭ꮯ鮄甛诓ꇝ㈌趾ঔ䓛⵨ě㽃変ꗈ귝途㱫㒃媃ꎠ㻶펊첡䧥击Ố䜗띡繻檤ퟋաל斄僼ࣰꞬ鯨蟡䓐믚翮Oᶒ笆됵N昷ꀘ铼媳돾뇉䞸…ϰ뭫盱햡絁拏崀裓㣉쏓띁䠦弻⥞ູ坥翋达牏ꨝᆪ쑭ᯰឱ護䬏噮笐躤緲䰩篨ꗅᱝ㙩녋껦ႜ檶픫䅪뜈軗韴რꦠ錝﹅ᨴ녆媘ຂ名䫡銘츭嘥옏ᓽꑋ碁ﺮ撊뷎曯뿕ꕂ犼뒑뫗弗䡔縮Ⅲ勋쏗ெ㴖⾾諜코ᶇ惀艎憙⡂蜖쵡阆ꥡǕ됮ꂺ⟱茉騴泝䷨ꋕ蝜쿺⒩ⴝἊ葀ሿ絻亵짲開켑ᴼ걼㗗ꕳמּ䷩➆␪쇄악砃ᡊ鼳䔉芳懻㎢⁡큩짐솝킲ⰼ䶤擾₵镑㒶࢔핏巬㑵率胟᷀뇎܄㗣맄殉㝉抜㍟涞讬ըઁ䪉၈԰ᆶ퇏捯䭼쌐ゞ슎謺냆灘殱䦍菭ࠢ㸳匜鷋ⴞ倔䗖ײ鸑갻㼁歸씑杗㘫뚌噥蔬赆殺퐓៥䎧Ϫ틹奡俈쀀恲܏犯褲칺仧ﷸ䊙냳ꗛ∌姹䑸슳팮ム댧タ, -6,,1443154422.95,,W0,,"{""a"":1.075968064016322e+308,""b"":""\ub01a\ubb8b\u1ad1\ub063\u0391\u9422\u0ee1\u6c9f\ub5f9\u16c9\ube55\ub918\ue71f\ua623\u87d4\ub6c3\u7d62\uebdd\ubaed\u6c42\u498a\u4ffc\uc9d8\ufc5a\uae0e\u7904\u39c4\ua437\u9109\ue08c\u445d\u1648\u9ddb\u99fb\uc6ca\u6348\u4291\ufacf\u2e09\uc379\u46e4\u2e9b\u2377\u33a6\ud56d\ub9cd\u62e9\u5449\u585c\u3063\u7dda\uf6ee\u86e8\u0da1\uf45d\u492a\ua088\ud8fe\u6ac0\ue3e4\u66be\u63a8\u1765\u1795\ub408\u1a7c\ufb29\u1355\u4ac2\u06e6\u29a7\ud88f\u45bb\u4bca\uff29\ufa3a\ue5fa\u4257\ub3ca\u03a8\u5f21\ub554\u37ff\u3eb5\u206f\ubffb\u9954\u66b3\ua9d9\ud4c7\u3bfc\uc74d\u6296\u21e0\u052b\uf2b7\ude82\uaad5\u9831\u69a6\u3903\ub333\uf49e\u7078\u9f42\u2c98\ud724\u2c62\ub337\u4d56\udacc\u7179\ua418\u51f2\u0e49\ud346\uf742\u77ab\ueaf0\uc055\u5e61\ucafb\u86a1\u8c01\ude4c\uf657\u1107\uf737\u126e\u58a3\u0603\u02f2\uf65e\u7dbb\u6621\u53d9\u6d93\ua45a\uef78\u9abe\ud0ba\uee60\udf7e\u3f00\u6a0f\ue118\uacdf\u7a24\ud4d2\u108f\u7134\u9051\u9b1c\u87f9\udff7\u584d\u3755\u5df2\u875b\ud0b1\u6940\u9d8a\u9420\u647c\u8afc\u63a7\uf84c\u7fa5\uf2e7\u0879\u47d2\ud9e1\u8c5a\u9bad\u1500\u319f\ua8f6\u44d4\u1cdc\u416b\u27a7\ub0d9\u8d35\ua2fe\u9aaf\ue3aa\u11db\u40fd\u3c18\u46b8\ua144\u2735O\uce65\u66e5\u44b7\u3196\ue783\u9598\u0214\u5412\ud7a6\u4a44\u0e5d\ufdd7\ua0b3\uea2d\u12a4\u0152\ua444\uff9e\ue411\u49f5\uc302\u03dc\ud5b9\ubf35\u33d4\uade1\u5385\u27bd\ua89c\u1098\u3965\u7c3d\u2782\u7127\ud119\u4cb8\ua11f\ud872\u28ed\u7bf4\uc784\u25ed\uf13f\u7e7b\u1e9e\u0e13\u2669\ubab7\ua410\u19bb\u41eb\u205a\uf1cd\uf33f\uad5f\uc708\u9f19\u86ef\u2113\ufecd\u1bf9\u8df3\uded9\u79a5\ue70b\ueff5\uae48\u90cb\u37b1\ucf7e\u5136\u59bd\u183c\ua309\uc316\u94e7\uaba4\u843d\u2482\u6667\u3dcf\u3ddd\ued9c\ube19\u73ac\u6fcf\ue7a1\u2f38\u7dcb\u3318p\u0fbe\uee9a\ufb05\u2bfe\ua0f3\ueb2f\u8d1b\u7a71\ue107\u2b80\ud9b6\u0199\u9b0f\u0a20\ue33d\u2a72\ub21f\u1b15\u91d9\u3ae6\u598c\u5817\u550a\u13f9\udeb6\u2e41\u472f\u5a5e\u1e6d\u0ec5\ub5fa\u12c2\u911d\u0cc7\uab05\u24e0\ud302\uf24d\ud013\u0d93\ua9b6\uea3c\u042c\u3200\u58ee\ua35e\u3a27\u33cc\u1f34\u1db5\u3946\uead1\ub5cc\u04aa\ud0b9\u1b64\uc65f\u01ae\u4aa3\uc865\ub6d3\u9591\u5d29\u489a\u2140\u1ca8\u6e36\u7b3e\ub932\ub75b\u0716\uef34\u6c19\u0ead\uef43\u3d39\u4816\u953e\u76ff\u2977\uaec2\ua339\u4ac7\ubdb2\u7273\u4c53\ub3e6\u0ddc\udd94\u9a9c\ua414\u099c\ua7e6\ua615\u6816\ubf71\uf1cc\uec8b\u8a74\uda43\uf8ef\ub45c\u4d8f\udf67\u1535\uca3e\u2400\u6ec0\uafa9\u8d5c\ue8c1\u615a\u5a5c\ucb5f\u80af\uf65b\u42b6\u54fb\u190f\u3bcb\u967b\uba22\ua1ab\u0c9a\u9a96\ue0aa\ucaa5\ub3b5\uaa08\u3e2a\u016e\u138a\uccf2\ub6cc\u1fbe\u45f9\u5cf0\u48e8\u40f9\u36e9\ub6fb\ue0eb\u3df8\u7986\uca46\u3f01\uf483\u7c1e\u6809\u4cf9\u29ab\u4c2d\u3722\ue2c3\ua5c1\u8570\u699b\u8e26\ufd43\ua634\udb90\ud747\ue45b\u3283\uebc2\u06f7\u55af\u7b14\uea00\u31b6\u0a7d\u5c50\u6322\u2133\ub891\uc22d\u0fba\u5ac2j\u6c2a\u067b\ua968\u52b8\u2000\uc47a\u909c\u0417\ufc7e\ude0e\u1e45\u5030\u97cc\u2116\u1ded\u4859\u4dcf\u0595\u6630\u8cb9\u7a13\u80d5\u334c\uc61d\ua636\u4f39\u555d\ua9ae\u52e6\u82b3\ud1fd\u43a6\u4fc9\ubfc8\ua937\u025e\uce62\u52f4\u1e97\u75ec\uf50f\u957f\uaa49\ue067\u3af1\u3f55\ub40e\u8ef5\ud6ad\u8bdc\u995f\uda23\u4e6c\u7f7e\u40d6\ud5a0\u050d\u3e32\u58b9\u33df\u9e05\ud644\u309f\ubf89\uc4c5\u3dbf\u35d5\ubc95\u9fd5\uabbb\ufcd8\u4626\uc6b7\u9d24\u50c7\u0726\uf9f0\u75b5\ud08a\ud30c\u5525\u8761\u7464\u848e\u611b\u7449\u2810\u6e5c\ub46a\uefcf\u604c\ue63c\ue889\u4020\u722e\ud725\u51ef\udf01\u92d4\u0cdb\u4ec7\u27eb\ucb9c\uf740\ue1b9\u7055\ub507\u9054\ub958\uc15f\ue05d\ua5d0\u4375\uca03\u9c0f\uda55\u06d8\u68ed\u8148\u61f2\u6895\u68b0\u74ef\u5c96\u9cd3\u5691\u239d\ucc10\uf302\u98a4\u0a54\u1240\u0cc9\u1db2\u7cc4\u7dc6\u5c20\ud643\u7ee4\ub290\u1373\u3f1b\u0b9e\u443d\u90aa\u61c1\u0b14\u43b6\u2ccf\u01fb\uea81\u9251\ue934\u6c54\u07d0\u0124\u48e5\ua7e1\u69ae\udcc3\ue901\u81d2\ued95\u53c7\u16f9\ua81c\u16be\ue0d9\u04d9\u13c3\udf58\u642a\uef52\ua8fa\u877c\uea7e\u5563"",""\u798f \u9152\u5427"":{""fu"":1.796761323797219e+308,""bar"":1.574184255802034e+308}}",,"-1842021473245946880 -1532918022041281536 -3381569281955237888 -583309929930527744 --1746068340032442368 --1206612920688107520 -1166659592079751168 --217198936047923200 -1800477668748657664 --478476827482488832 -690577681587679232 -2431571353930505216 --2533406947981975552 --2426188434668429312 --1708804594828488704 --2686880723731761152 -730364345998589952 -458776323875067904 -4378343073855228928 --2010743256066844672 --4152056996900531200 -1085293457843648512 -3245200272178885632 --115086571607963648 -2999877339835667456 -3187301543996728320 --3461697435515255808 -1969257608008411136 -3936838289564985344 -134448170404417536 --4160428721088228352 --3854835429206333440 -3921607205657708544 -4106624374855616512 --1163126280916920320 -1029270605681479680 -4013177679363107840 -1151473242793515008 -2610879764333185024 -2186630122142714880 --843827182873552896 --3524958657643505664 -2066962051646526464 -3602629010746873856 -1637564954583097344 -3735671748148599808 --3864797847932652544 -3424383147314438144 -4267313243263597568 --2463085139034917888 -802098885039498240 -2914333084704163840 --2037093426363684864 -3655745951580162048 -3033734872505823232 -34718995968277504 -3305257697468521472 -112088139535315968 -1792801621863844864 -2088171010985490432 --2224895660188312576 -306494165147955200 --3698030805968200704 --1398122547103498240 -2941585225638882304 --3802779939855542272 --1626852013079440384 --2234980054526976000 --1674369597319282688 -460219779696930816 -3705251859230752768 -1031885850542424064 -3720311553642344448 -2586605194644880384 --3082491565349091328 --3327743625166664704 -3303041332621597696 --3947600679959831552 -502917276552985600 --1772051916884742144 --2714153024051639296 --1857848424320056320 -763089141861946368 -324391644363192320 --1656604961578536960 -119600319102671872 -920195255466826752 -686168978157489152 --1411412604102370304 --3384412102058699776 -2822084890082027520 --4125546560645605376 -1528385685156722688 -2072852073706527744 -2350050846440803328 -2167235781987900416 --3919178577177444352 --1490699925592027136 -1152430511508426752 -3833553443129437184 --3421794809154442240 --3307473989574818816 -1171306846103438336 -2085782291309519872 --1173565917531384832 --456235087133460480 -4605429520650682368 --3107418330630027264 --1887806761378158592 -4138397796167412736 --883015542360741888 -1273826982124247040 -892627628079918080 -1033282717611308032 -1183856546896593920 -3572445078475819008 -2977115359166790656 -1506651753764314112 -20275178586021888 --3732284589221895168 --2617658524629282816 -2331941893730922496 -3795731642633965568 --2230684817183223808 -1293275350349156352 --377478288031346688 --3605829714244477952 --2887672850820591616 --1593092677470547968 -3539264272444015616 -2936772652161751040 --3509840834495544320 --1927284188309551104 --1414725238029157376 -444027429469342720 -621807011857559552 --2320944394971228160 --1202298508188016640 -742898506215809024 -1661903287770243072 -3058107989064774656 -3261054767148783616 --3129915472680182784 -1235645679698918400 -4184460713603588096 --448902424050857984 --3278813011651954688 -1534836316138165248 --3242274854201156608 -3053700869387518976 --2085995137661521920 -2628429730406350848 -3731595695721803776 --1413453754842557440 --3362109473182667776 --753669725198758912 --3452296673698287616 --3412080664814824448 --3539215791902392320 --1270515466834489344 --255299099248731136 -965237078737816576 --1465503420589235200 -2348995435886012416 --693106389456370688 --4442584496840714240 --1742341142863470592 -2322080104985705472 -3158673895730524160 -296393112195233792 --942763067011846144 -1399404778331525120 --2303837550263460864 -1041882100778144768 -1628967479328211968 -3833658810620623872 --1339140611247456256 --1185601775712808960 --4600280904077616128 --3644603720430166016 --2142933684083076096 -806502441391408128 --1202547892649695232 --3255380601562689536 --2341377151524764672 -2832660416112272384 -1830349463346460672 --1454817306301910016 --4466550862384848896 --3589000814659200000 -3576253433238259712 -3037394201877715968 --910845569462820864 --3228890419407890432 --1929579573135525888 -1331291383920345088 --318325440126752768 -749407301804488704 --118002938612700160 --1513948228283011072 -2841879797821521920 -926930979747899392 --1385818520099145728 --4544988381150445568 --3080893510429935616 -2817873542062244864 -3235812972771769344 -3049494017859092480 -4372636470134787072 --3791689516918436864 -3055756963377067008 --900475374477680640 --3724050706440014848 -3654984498942708736 -1046234960479099904 -3059844317337063424 -3494348404851959808 --3994850758490269696 --3144795322914258944 -31571791628949504 -602411487708706816 --2250496791757380608 -1925486081382010880 --3490118152797170688 --1887813705877120000 -994162361943599104 -2999067491499631616 -1741456488587835392 -2478238062133489664 --3586198454738460672 -2458182426087046144 -4532750415041216512 -600500117710437376 -992211988285803520 -4513790375782956032 --2236054522316376064 --3373918580049183744 -1703818094108419072 -3397911464894094336 --4132476452012973056 -2748816405411973120 -3544245367247962112 -2570423406292817920 -916744492830782464 -2628888164033080320 --1673971184922539008 -891201037229093888 -2724102203500587008 --2703521567608383488 --2384684864796034048 --1338232329381704704 -933520906003386368 --4449774729233501184 -1216998476821511168 -1023772929049877504 --3009065091213163520 -2495254216599121920 -1720062969007546368 --2114243428496193536 -4064427048170260480 -3923850511797138432 --2064457623118115840 -3597599377561309184 -1797402196824838144 --3165026793733924864 --119701846627392512 -517228694383655936 --56433445684413440 -4086209183033247744 --2825150193686888448 -4307897098108922880 -2751122153350713344 --2611729217720921088 -2999361048014184448 --1924217282001294336 -2201052058537843712 --756685297444267008 --4099760658143697920 --2616020073794626560 -1216240078288515072 --3958998998811048960 --1187666980854117376 --48506717476862976 --4297738153622491136 -4240414489142547456 --2661699207104231424 -525466217992414208 --3965277415228208128 -2520568065413346304 --2799441570011167744 --1269134668473944064 --1438858765089007616 --3692674925611121664 -1939905790666605568 --1120417811750387712 -3438178987346399232 --2408373474616788992 --2872483369539678208 -1092013812655466496 --2522950989928037376 -3892583021254736896 -4577497129661153280 -2882198819166746624 -3562389485871504384 --627048103300835328 --1881415389841263616 --3266404565871127552 --2385669684918519808 --3093735876079436800 -1978605929565684736 -2101061420331153408 --3375064563771859968 -2450954727875782656 -2865112253899584512 -2263842078142728192 -2518704191412719616 -43007860128105472 --4551452232336754688 --1507641655174393856 -2943169916602160128 -2034840794705605632 --2279664677535969280 -3829105029420212224 -1346105693830798336 -3467949205042573312 --1533915104839441408 -4059164637291988992 --4406057601335221248 --2679301306196820992 -633248738531768320 --2704107490359913472 -3965430175394872320 -1916068042939517952 --14228761576971264 --2338568104274277376 --4133211276963184640 -682645491198776320 -2100480538458474496 -4507517836799421440 -212709487707804672 -662047267244366848 --373357076225004544 -1392378924386098176 --1967504381658008576 --3235336519628327936 -2368636758612521984 --812422332824816640 -822020436681448448 --3512477018431196160 -3945061074203984896 --780891309928921088 -600662294674628608 --129226284732455936 -4055304699811829760 --4387874661360044032 --4586558704623420416 -4497410370699473920",$-1842021473245946880$;$1532918022041281536$;$3381569281955237888$;$583309929930527744$;$-1746068340032442368$;$-1206612920688107520$;$1166659592079751168$;$-217198936047923200$;$1800477668748657664$;$-478476827482488832$;$690577681587679232$;$2431571353930505216$;$-2533406947981975552$;$-2426188434668429312$;$-1708804594828488704$;$-2686880723731761152$;$730364345998589952$;$458776323875067904$;$4378343073855228928$;$-2010743256066844672$;$-4152056996900531200$;$1085293457843648512$;$3245200272178885632$;$-115086571607963648$;$2999877339835667456$;$3187301543996728320$;$-3461697435515255808$;$1969257608008411136$;$3936838289564985344$;$134448170404417536$;$-4160428721088228352$;$-3854835429206333440$;$3921607205657708544$;$4106624374855616512$;$-1163126280916920320$;$1029270605681479680$;$4013177679363107840$;$1151473242793515008$;$2610879764333185024$;$2186630122142714880$;$-843827182873552896$;$-3524958657643505664$;$2066962051646526464$;$3602629010746873856$;$1637564954583097344$;$3735671748148599808$;$-3864797847932652544$;$3424383147314438144$;$4267313243263597568$;$-2463085139034917888$;$802098885039498240$;$2914333084704163840$;$-2037093426363684864$;$3655745951580162048$;$3033734872505823232$;$34718995968277504$;$3305257697468521472$;$112088139535315968$;$1792801621863844864$;$2088171010985490432$;$-2224895660188312576$;$306494165147955200$;$-3698030805968200704$;$-1398122547103498240$;$2941585225638882304$;$-3802779939855542272$;$-1626852013079440384$;$-2234980054526976000$;$-1674369597319282688$;$460219779696930816$;$3705251859230752768$;$1031885850542424064$;$3720311553642344448$;$2586605194644880384$;$-3082491565349091328$;$-3327743625166664704$;$3303041332621597696$;$-3947600679959831552$;$502917276552985600$;$-1772051916884742144$;$-2714153024051639296$;$-1857848424320056320$;$763089141861946368$;$324391644363192320$;$-1656604961578536960$;$119600319102671872$;$920195255466826752$;$686168978157489152$;$-1411412604102370304$;$-3384412102058699776$;$2822084890082027520$;$-4125546560645605376$;$1528385685156722688$;$2072852073706527744$;$2350050846440803328$;$2167235781987900416$;$-3919178577177444352$;$-1490699925592027136$;$1152430511508426752$;$3833553443129437184$;$-3421794809154442240$;$-3307473989574818816$;$1171306846103438336$;$2085782291309519872$;$-1173565917531384832$;$-456235087133460480$;$4605429520650682368$;$-3107418330630027264$;$-1887806761378158592$;$4138397796167412736$;$-883015542360741888$;$1273826982124247040$;$892627628079918080$;$1033282717611308032$;$1183856546896593920$;$3572445078475819008$;$2977115359166790656$;$1506651753764314112$;$20275178586021888$;$-3732284589221895168$;$-2617658524629282816$;$2331941893730922496$;$3795731642633965568$;$-2230684817183223808$;$1293275350349156352$;$-377478288031346688$;$-3605829714244477952$;$-2887672850820591616$;$-1593092677470547968$;$3539264272444015616$;$2936772652161751040$;$-3509840834495544320$;$-1927284188309551104$;$-1414725238029157376$;$444027429469342720$;$621807011857559552$;$-2320944394971228160$;$-1202298508188016640$;$742898506215809024$;$1661903287770243072$;$3058107989064774656$;$3261054767148783616$;$-3129915472680182784$;$1235645679698918400$;$4184460713603588096$;$-448902424050857984$;$-3278813011651954688$;$1534836316138165248$;$-3242274854201156608$;$3053700869387518976$;$-2085995137661521920$;$2628429730406350848$;$3731595695721803776$;$-1413453754842557440$;$-3362109473182667776$;$-753669725198758912$;$-3452296673698287616$;$-3412080664814824448$;$-3539215791902392320$;$-1270515466834489344$;$-255299099248731136$;$965237078737816576$;$-1465503420589235200$;$2348995435886012416$;$-693106389456370688$;$-4442584496840714240$;$-1742341142863470592$;$2322080104985705472$;$3158673895730524160$;$296393112195233792$;$-942763067011846144$;$1399404778331525120$;$-2303837550263460864$;$1041882100778144768$;$1628967479328211968$;$3833658810620623872$;$-1339140611247456256$;$-1185601775712808960$;$-4600280904077616128$;$-3644603720430166016$;$-2142933684083076096$;$806502441391408128$;$-1202547892649695232$;$-3255380601562689536$;$-2341377151524764672$;$2832660416112272384$;$1830349463346460672$;$-1454817306301910016$;$-4466550862384848896$;$-3589000814659200000$;$3576253433238259712$;$3037394201877715968$;$-910845569462820864$;$-3228890419407890432$;$-1929579573135525888$;$1331291383920345088$;$-318325440126752768$;$749407301804488704$;$-118002938612700160$;$-1513948228283011072$;$2841879797821521920$;$926930979747899392$;$-1385818520099145728$;$-4544988381150445568$;$-3080893510429935616$;$2817873542062244864$;$3235812972771769344$;$3049494017859092480$;$4372636470134787072$;$-3791689516918436864$;$3055756963377067008$;$-900475374477680640$;$-3724050706440014848$;$3654984498942708736$;$1046234960479099904$;$3059844317337063424$;$3494348404851959808$;$-3994850758490269696$;$-3144795322914258944$;$31571791628949504$;$602411487708706816$;$-2250496791757380608$;$1925486081382010880$;$-3490118152797170688$;$-1887813705877120000$;$994162361943599104$;$2999067491499631616$;$1741456488587835392$;$2478238062133489664$;$-3586198454738460672$;$2458182426087046144$;$4532750415041216512$;$600500117710437376$;$992211988285803520$;$4513790375782956032$;$-2236054522316376064$;$-3373918580049183744$;$1703818094108419072$;$3397911464894094336$;$-4132476452012973056$;$2748816405411973120$;$3544245367247962112$;$2570423406292817920$;$916744492830782464$;$2628888164033080320$;$-1673971184922539008$;$891201037229093888$;$2724102203500587008$;$-2703521567608383488$;$-2384684864796034048$;$-1338232329381704704$;$933520906003386368$;$-4449774729233501184$;$1216998476821511168$;$1023772929049877504$;$-3009065091213163520$;$2495254216599121920$;$1720062969007546368$;$-2114243428496193536$;$4064427048170260480$;$3923850511797138432$;$-2064457623118115840$;$3597599377561309184$;$1797402196824838144$;$-3165026793733924864$;$-119701846627392512$;$517228694383655936$;$-56433445684413440$;$4086209183033247744$;$-2825150193686888448$;$4307897098108922880$;$2751122153350713344$;$-2611729217720921088$;$2999361048014184448$;$-1924217282001294336$;$2201052058537843712$;$-756685297444267008$;$-4099760658143697920$;$-2616020073794626560$;$1216240078288515072$;$-3958998998811048960$;$-1187666980854117376$;$-48506717476862976$;$-4297738153622491136$;$4240414489142547456$;$-2661699207104231424$;$525466217992414208$;$-3965277415228208128$;$2520568065413346304$;$-2799441570011167744$;$-1269134668473944064$;$-1438858765089007616$;$-3692674925611121664$;$1939905790666605568$;$-1120417811750387712$;$3438178987346399232$;$-2408373474616788992$;$-2872483369539678208$;$1092013812655466496$;$-2522950989928037376$;$3892583021254736896$;$4577497129661153280$;$2882198819166746624$;$3562389485871504384$;$-627048103300835328$;$-1881415389841263616$;$-3266404565871127552$;$-2385669684918519808$;$-3093735876079436800$;$1978605929565684736$;$2101061420331153408$;$-3375064563771859968$;$2450954727875782656$;$2865112253899584512$;$2263842078142728192$;$2518704191412719616$;$43007860128105472$;$-4551452232336754688$;$-1507641655174393856$;$2943169916602160128$;$2034840794705605632$;$-2279664677535969280$;$3829105029420212224$;$1346105693830798336$;$3467949205042573312$;$-1533915104839441408$;$4059164637291988992$;$-4406057601335221248$;$-2679301306196820992$;$633248738531768320$;$-2704107490359913472$;$3965430175394872320$;$1916068042939517952$;$-14228761576971264$;$-2338568104274277376$;$-4133211276963184640$;$682645491198776320$;$2100480538458474496$;$4507517836799421440$;$212709487707804672$;$662047267244366848$;$-373357076225004544$;$1392378924386098176$;$-1967504381658008576$;$-3235336519628327936$;$2368636758612521984$;$-812422332824816640$;$822020436681448448$;$-3512477018431196160$;$3945061074203984896$;$-780891309928921088$;$600662294674628608$;$-129226284732455936$;$4055304699811829760$;$-4387874661360044032$;$-4586558704623420416$;$4497410370699473920$,桑Ꞑ뚶䠬ᅰ꠴ꎏ愘ﭱʔꮯĿ웝㌕枾ݭ豛禁箑蚌ᨩ鱫徝伱闍槐咮좘蠼ڱ事䄔ࣞ㋏갸飻黫骫豽㒊흽낄ﺮ颞拀ﲳ膜俯翆틐᎚緽靐㽗넡Ɵྩ힜떻꩟ឥ페발⃥퟾迻隗엟∘櫭﷭魿ƾ祹ᚯ瓟䆽쮝秃璢᡾幧阫艨冺襗䅢砶웙壮省㤜그솉ዥ뚽缩뭛㷍硾醿袰૸範刎㐆ﳣൂ酛䃍㙙鑴␹䅶⇈傘臵ꎾ⟧龲䡼깶䞘潧䝰꺙㞁ꪁ뼮᩽峜䧁ꏏ诃岋⬺䏿劫놿犋브靅⒭Ϳ嬃萗я譜ⳬ᥮蘿⧏㯺ﶄ픊䎁祴溗ⵠ仜巩ꆫ兰匬䀊⧯ᧈ횸횩㯫偞搬䘶䤷艆䣖벺鎀혗Ꮘሇꌑ༾뫪♜Ệ롃サ필⃗쾩귦ॾ຀䑞鵍ᜦݥ烋改후鱩ؕ㴻䞳ှ䝜쯤㠫᤻梈㭱蔰콨㻾ꤺਠꩆ鹥먀印㎽, -7,,1443154422.96,,"9 -db<6;Jܮ.)",,"{""a"":1.5032697029997175e+307,""b"":""\u4b65\u4df6\u7549\u4fc7\u143d\uc006\u4865\u22b0\u1145\ue14f\uad9e\u538d\ubd6b\u5add\ub47c\ua4ee\u7a0c\u6638\u5bf6\u86a7\ue4d3\u7ffd\u4ee5\u08cc\u23ff\uc806\u6d37\u523e\uf060\ua670\u804f\u829c\u3786\uf3fe\u18a5\u0438\uab5f\uf44c\ue937\u31d0\ue8c7\u8959\u4ad2\uf7bd\u40ed\ua502\u66e1\u8669\u352e\ue84a\u0bf0\ue4b5\u71ef\u13c5\ue62b\u9557\u1905\ua7bd\u999e\u277f\u8f0a\u4578\ua332\u43a9\u2afd\u3202\uf8ec\u8f7a\uef73\u6650\ua398\ue901\ub6f2\uec6e\u87a7\u7f14\u7923\ud22e\uf9be\u4f37\ubdcc\ud677\u113d\ua8fe\u520a\u4e49\u382d\u9196\ua2b9\u6af1\u62ae\u1285\u9c9a\u17ca\u479a\u8526\ua762\uff84\u90c5\uedb6\ud9f0\u53be\u060f\uc7be\u1615\u87e9\u9b0a\u6355\u238d\u06bb\ue3a6\u025c\u50cc\ua213\u0d48\u95dc\u3bcc\ubec3\uf0d9\u0e54\u23ca\u8454\u4d9b\uf5b6\u4c86\u5792\u81a3\u6a09\u44b6\uc819\ubebb\ub47d\ua987\u6d60\uffa5\u3910\ueedb\ub1e8\u1ba6\u4cfd\u008b\u87fd\uf384\ube4c\uc8e6\u8fdf\ufea6\u99a8\u69b5\u8901\u6da1\u825e\ub73d\uf3f5\uf85d\u186f\ue512\ufbda\u0703\u4860\u3167\uf0d3\u20f1\ue966\uc2ff\u381a\u2f9b\ua0ad\u8d66\u82f0\u3f22\u90c0\ud3f2\ua4ae\u8982\ua408\u0969\u4239\ue53b\u92f3\u3fde\ub2c9\u0ab8\u7dbb\u8668\ucc4a\u12fb\u1208\u2ed9\u4c98\u4448\u87db\uf138\u2d7f\ud94c\u3813\ue197\uaf6f\u6480\u8a28\ua90c\ue081\u8b28\u6e0a\u6ccb\ud69a\ub020\ucbe3\ubbd1\u3588\u1d59\u785f\u765e\ub06d\u60b1\u16a7\uaf70\uc5d4\u42dc\udf5f\udc4e\ubae1\u0d01\u56bf\u8f96\u0e49\u502a\uede1\u097a\ucee2\u65cf\u4077\u5037\uddac\ua0a0\ufaa8\u3b23\uac9c\u2ab9\u8e5e\u01cb\u4118\u942a\ub55f\ubc4e\u9750\u8af7\ua309\u47b1\u3b09\u5df6\u7674\u9827\u4335\uff85\u8e62\ud958\u320b\u0324\u8c92\u3504\u53c3\u2cb1\u0606\ud946\u2b33\u4e1a\u2eaa\ucc95\u7874\ue877\u6898\u9f2d\u7fca\u8080\u8467\ub6f8\u492e\ue59d\u0dcc\u9bd2\u51c9\u5fba\u2eae\uc3ce\ude69\u39b0\u50d5\u23fb\u4f38\uc251\u0510\u8116\u11f8\u5496\ub31b\ue1c3\u9265\u1d30\u5297\ud8c3\udfa5\u05bf\u077e\uf555\ue8aa\ucf9c\u8fd7\udfda\ua46e\uebbd\u0481\ua5be\u35f3\u10b4\u75c3\u36a9\u4a22\u048f\uc37c\u8722\uf8c2\u3346\u864c\ub002\u94b8\uf7c7\u3b5f\u931d\uf168\u9328\uf907\ud1bd\u3c08\uff8c\uee9b\ub006\u7419\ue23f\u2b1a\u09c3\ud86f\uc8e3\uce94\u031b\u1856\ue29c\u1045\u5760\ud549\ud448\u923f\u028e\uc7c3\u4e2d\u3a0e\uae8c\ue647\u0299\u0442\ue742\ud5d5\u0010\u790d\u8414\udd06\uea7c\ua47d\udbc9\u77ae\u8489\u7713\u6008\u95f5\uaf82\u26c8\ue987\ud2bb\u9d1f\ue3c3\u0ff2\u6d91\ub757\uafa2\u72e8\u55b8\ub06b\uc845\ubf8e\ueb6b\u1e99\u7fe4\ucc9f\u26c2\u65ff\ucc8c\u0430\ua039\u29ed\uc0dd\u6d54\ub852\u8183\ubb71\uc77a\ucc6a\u2940\u7307\u7134\u0b75\u7369\uae94\u6c81\u6d4c\uffe5\u7edd\u80ab\u453d\u157c\u6ae1\u1def\u415b\ucb77\uc26f\ue57f\ub8f9\u20a1\u8058\u615f\ue532\u4c0b\u6dcb\uc013\u3703\u1098\ue162\u8eb9\u48d1\u29fd\u3453\u73fc\u6943\u6ad2\uceab\uc1c2\u6062\u71f3\ub9ad\u99ea\udbfc\uc846\ufdbc\u4c5e\uacd1\u1c28\u32c9\u2443\uc0c3\u799a\u52c4\u3c66\ub532\ue39d\ub210\u5bc8\u7d29\uc5ef\u0527\u72f6\u00d1\u26bc\u80b5\u1433\ucba5\uafb9\u8bda\u2ec1\u8453\uc7a8\u0a2d\u1ee3\u8445\u4026\u9288\u1137\u3cd8\ub697\ub438\u2871\u360b\ucad3\u909d\u3ad2\ueac0\u323e\u5359\u4681\u24aa\u606e\uba64\ube6a\u6614\u9183\u9d39\u3ab4\ue1dd\u1b3e\uef72\u3d03\u8e70\u9421\u87bb\uc54f\u9637\u6eb5\ue2c7\u22a9\u5a0b\u586e\u3a56\u2b76\u014f\u4e52\ue869\u5258\u8193\u7113\uf9f8\ud751\u3791\ua8df\u6009\u681c\uc050\ucaa4\u71db\ucc11\uc0d2\u31e1\ue5bf\ud8ce\ua342\u6535\ud2f1\u981e\u4ce1\uf61a\u12cb\ud325\ue334\uf27a\u1638\u293f\u526e\u45d8\u315d\uaa12\u1c8c\ud0d7\u4025\u05bc\ua231\u6e25\u8ab2\ucea8\u577e\u152d\u997a\u0e38\u8bac\u0458\ub194\ucd2d\u8039\u811a\u41d8\u8f82\uc286\ub911\ud0b7\u93a1\u304e\ue7f4\uf3fa\u1082\ub823\u34fb\u4e85\uc00e\u9bef\ue507\u8de9\ud6be\uc8c0\uc535\udaae\u0581"",""\u798f \u9152\u5427"":{""fu"":1.2525559134226026e+308,""bar"":4.3656714166439883e+307}}",,"-2885380674900547584 -3299704386306323456 -3314473696428392448 --2456562163014142976 --1093640828211577856 --401153670184206336 --3934382158643533824 -3294609881918090240 --1732490874510852096 --3692315274499929088 --2037213677340545024 -3660376036930421760 --2175568901554799616 --2328363598883964928 --189639225021851648 -4370944422732211200 -2519437416700816384 -1857020893753640960 -1782170696585553920 -2386794390356166656 -2198120951754918912 --254139395090459648 -714939586532438016 --932460989970908160 --1951691101165123584 -171763744057210880 --1441986259616509952 --1837873860577176576 --2260547308810244096 --3394097887290062848 --4105415766149204992 --4536586151717065728 --1609095789545842688 -75503964084446208 -1531372094392252416 -3382759418214121472 --1388229462394135552 --2562367572179702784 --3588095517375992832 --4496592278512980992 --3842929809683001344 --1196217315535501312 --1418060506921561088 --3535985115043061760 -1210443902983587840 --3827537311090549760 -2950892529065097216 --1231509539374147584 --3198890390789601280 --472873580797782016 -2850778494486961152 --1860068467221420032 --1016676077961723904 -3701073385250776064 -700408290436890624 --1316092510125869056 -600681794129393664 -1876883645926275072 -332349483062048768 --2627060725325572096 -31953771431382016 --144791525146428416 --4026412803914992640 -1640386653241164800 --216336348315610112 --164114855577121792 -3001522272913326080 --3786193271718343680 -2440197774635453440 --1583412979831810048 -4229308373524789248 -4278532337318122496 --286844823578892288 --3477221541846556672 -1897071960384925696 --1455899791267671040 -2704337267541113856 -4335629045478864896 -4324643499712077824 --2217124654128766976 -4243000463213427712 -2815040810881553408 --4234842993271903232 -3024715202424156160 -4584850229270672384 --1048970252050491392 -175147329545961472 -2632874324229815296 -1512436746789557248 --1807119927188342784 -1471702512245757952 -4177774852882844672 -2177395352070961152 -4577502672584875008 --1521765674948434944 -2464755240550171648 --2012238525279087616 -3249473573752351744 --303175032775709696 --228085335082712064 --1048910281688261632 -156405260938238976 --4533178977511401472 -3742932337748041728 -2766820074842167296 --1660733295691172864 --4506859939014187008 -1054377924173498368 --2331146920017149952 --1493955108330743808 -3514551206353848320 -124663983758418944 -3779353239010942976 -4492866557189189632 -4502341931686898688 -3615585398272099328 --3031398469929366528 -3975813350065801216 -3989457521351962624 -3848299198528418816 --1127465541799955456 -3716231031326558208 --4557217169817962496 --2451293203089272832 -1087444686736088064 -1273454739409319936 -3438837151313009664 --4257676932492420096 -3482959847125189632 --1430582217409591296 -4402812127518426112 -224024780361875456 --4532082185588471808 --2650765407437910016 --2465966193992321024 --130161981422910464 --4567445030770585600 --2173667494924806144 --2311272277827861504 -1102598130175990784 -4503014038602968064 -2665981201595034624 -1814615206835079168 --4557872029263287296 --3369124651379162112 -2218511842559555584 --4536803273824276480 --4142042424578469888 --3067888720912251904 --499462120170183680 --198563518035438592 -3519161526250470400 --4287792208364321792 -2502326347466994688 --2615923025799733248 --4492441060439373824 --3301277152611118080 -3698725915831981056 --780568120711497728 --1725470956206142464 --2726821905806376960 --4117477915854484480 --2885763507947457536 --210924201561186304 -1521665182727035904 -1013787362623591424 -4245659131852446720 --1240898138097259520 -3719800531046821888 --2906735457227432960 --1956960080878388224 -1805182781475436544 --1043497835141453824 -421655727691057152 -3541926495259057152 --3551647938615149568 --270596974500316160 --2274423141160749056 -2552731995494360064 --3442625321153764352 --1773847732560572416 -189588159261528064 --2758486407281800192 -1665360752164694016 -4226348380062038016 -3831835980917493760 --2449587198817752064 --2825341600144032768 -477707757291491328 --3720288415467404288 --3621803372361157632",$-2885380674900547584$;$3299704386306323456$;$3314473696428392448$;$-2456562163014142976$;$-1093640828211577856$;$-401153670184206336$;$-3934382158643533824$;$3294609881918090240$;$-1732490874510852096$;$-3692315274499929088$;$-2037213677340545024$;$3660376036930421760$;$-2175568901554799616$;$-2328363598883964928$;$-189639225021851648$;$4370944422732211200$;$2519437416700816384$;$1857020893753640960$;$1782170696585553920$;$2386794390356166656$;$2198120951754918912$;$-254139395090459648$;$714939586532438016$;$-932460989970908160$;$-1951691101165123584$;$171763744057210880$;$-1441986259616509952$;$-1837873860577176576$;$-2260547308810244096$;$-3394097887290062848$;$-4105415766149204992$;$-4536586151717065728$;$-1609095789545842688$;$75503964084446208$;$1531372094392252416$;$3382759418214121472$;$-1388229462394135552$;$-2562367572179702784$;$-3588095517375992832$;$-4496592278512980992$;$-3842929809683001344$;$-1196217315535501312$;$-1418060506921561088$;$-3535985115043061760$;$1210443902983587840$;$-3827537311090549760$;$2950892529065097216$;$-1231509539374147584$;$-3198890390789601280$;$-472873580797782016$;$2850778494486961152$;$-1860068467221420032$;$-1016676077961723904$;$3701073385250776064$;$700408290436890624$;$-1316092510125869056$;$600681794129393664$;$1876883645926275072$;$332349483062048768$;$-2627060725325572096$;$31953771431382016$;$-144791525146428416$;$-4026412803914992640$;$1640386653241164800$;$-216336348315610112$;$-164114855577121792$;$3001522272913326080$;$-3786193271718343680$;$2440197774635453440$;$-1583412979831810048$;$4229308373524789248$;$4278532337318122496$;$-286844823578892288$;$-3477221541846556672$;$1897071960384925696$;$-1455899791267671040$;$2704337267541113856$;$4335629045478864896$;$4324643499712077824$;$-2217124654128766976$;$4243000463213427712$;$2815040810881553408$;$-4234842993271903232$;$3024715202424156160$;$4584850229270672384$;$-1048970252050491392$;$175147329545961472$;$2632874324229815296$;$1512436746789557248$;$-1807119927188342784$;$1471702512245757952$;$4177774852882844672$;$2177395352070961152$;$4577502672584875008$;$-1521765674948434944$;$2464755240550171648$;$-2012238525279087616$;$3249473573752351744$;$-303175032775709696$;$-228085335082712064$;$-1048910281688261632$;$156405260938238976$;$-4533178977511401472$;$3742932337748041728$;$2766820074842167296$;$-1660733295691172864$;$-4506859939014187008$;$1054377924173498368$;$-2331146920017149952$;$-1493955108330743808$;$3514551206353848320$;$124663983758418944$;$3779353239010942976$;$4492866557189189632$;$4502341931686898688$;$3615585398272099328$;$-3031398469929366528$;$3975813350065801216$;$3989457521351962624$;$3848299198528418816$;$-1127465541799955456$;$3716231031326558208$;$-4557217169817962496$;$-2451293203089272832$;$1087444686736088064$;$1273454739409319936$;$3438837151313009664$;$-4257676932492420096$;$3482959847125189632$;$-1430582217409591296$;$4402812127518426112$;$224024780361875456$;$-4532082185588471808$;$-2650765407437910016$;$-2465966193992321024$;$-130161981422910464$;$-4567445030770585600$;$-2173667494924806144$;$-2311272277827861504$;$1102598130175990784$;$4503014038602968064$;$2665981201595034624$;$1814615206835079168$;$-4557872029263287296$;$-3369124651379162112$;$2218511842559555584$;$-4536803273824276480$;$-4142042424578469888$;$-3067888720912251904$;$-499462120170183680$;$-198563518035438592$;$3519161526250470400$;$-4287792208364321792$;$2502326347466994688$;$-2615923025799733248$;$-4492441060439373824$;$-3301277152611118080$;$3698725915831981056$;$-780568120711497728$;$-1725470956206142464$;$-2726821905806376960$;$-4117477915854484480$;$-2885763507947457536$;$-210924201561186304$;$1521665182727035904$;$1013787362623591424$;$4245659131852446720$;$-1240898138097259520$;$3719800531046821888$;$-2906735457227432960$;$-1956960080878388224$;$1805182781475436544$;$-1043497835141453824$;$421655727691057152$;$3541926495259057152$;$-3551647938615149568$;$-270596974500316160$;$-2274423141160749056$;$2552731995494360064$;$-3442625321153764352$;$-1773847732560572416$;$189588159261528064$;$-2758486407281800192$;$1665360752164694016$;$4226348380062038016$;$3831835980917493760$;$-2449587198817752064$;$-2825341600144032768$;$477707757291491328$;$-3720288415467404288$;$-3621803372361157632$,윊쓇ᨌ鑆휲ᬱ簬暫笿᜛丽থ濐睿␝鞪唒鯂◖᨞Ⳮ鹑욕긦檅鋉緇ູ즦㜺螀䝫轎ꯝ㟖ຎ꓈鵣揨ᩓ㺪ᾃ橩릌豕έ⍏딶痃螾ᦓ㠕糉넡Ḓ¹フᇛ◡⴨ኺ됰궶﹩繇瀜ᯑ䂒鑀믳⼔깟腆ꗷ‟ࡻ齌穯䤞졏퍒吟쾭ዙ㎕ᦋ꼸꘬흀ⷧ喪۔퐁큵稥袚챫䵆ӌ睥軄脍주欦榴ᄬꎿ硇㺁絻뛸㮏缩嚈離喓㌚圉ᔀ䛙㹦鯕蚔⠓䵋罆㆞坾挾뼼蠧磨䒂낃΀➿얤蚠偦燁醓ѫ큡葹㻣쥫披ᅷퟀ, -8,,1443154422.97,,hWTo,,"{""a"":1.0430310729964654e+308,""b"":""\u0e43\ue372\u3e7a\u6f19\u6416\uef52\uc1cc\u33d7\u5de4\u75f8\ua9fe\ub6d4\u225b\u6be9\u2a49\u1079\u948a\uaad0\u622d\u1728\u04eb\u7466\u49f3\u4bb9\u8fff\u668c\u1e9a\uc769\ud53e\u5f27\ufffc\u3557\u8243\u3b7a\uc80c\u2be7\u8214\u44ba\u5e19\ud0de\uceb6\u5f81\u1e51\u27dd\u41ac\u3097\uc637\u4439\u870b\ub7f5\u246d\ue0ac\u8df6\u2670\u1edc\u11b9\u1eb5\u0004\ue0f6\u702a\u9100\u37e4\u6f7d\u71f2\u5d25\u9013\u336d\ubeaf\u116c\u27b5\u20f2\u37e1\u7286\u741f\u7ba0\u2aee\ua3d5\u92bd\u0b21\u3b52\ubd48\u2c2a\ub128\u7e9d\ue312\u70eb\ufa32\uc299\u4bea\u17e1\u52ed\uf661\ud388\u081d\u90a3\u6573\u6489\u469e\u2a9c\ub058\uf80b\u7acb\ue71c\uc767\ua4e3"",""\u798f \u9152\u5427"":{""fu"":1.3560547785545532e+308,""bar"":2.3316443246895675e+306}}",,"4016132057781999616 --3931355609679433728 --3763386598319791104 -1502618286233839616 --3366464067995271168 --3336628263329827840 -756477738559597568 -3191835364964956160 --144617417887632384 -3235206984045507584 --1017357722576472064 --4498198311417516032 --2168589582189992960 -4019931490674965504 -2666932062226742272 -937245517378553856 -3702295962855736320 -398509090920317952 --759831668049881088 --3936227456296407040 -29855811770043392 --1356203245344301056 --3583982085013873664 --4476959038634271744 -2978417069221322752 -3395474001008780288 --1529403718829506560 --3151023347683094528 -2586575377814279168 --3807865401454979072 -2601300175397405696 --4272187861955969024 -1096280380725379072 -4090084456817764352 -3163976268098412544 -4316004317726913536 -567940039316914176 -3207194999597739008 --2637456872887634944 -3836018973442194432 -383645365730747392 --973658798253550592 --2327631701099422720 --1503735936661646336 --3500476019753618432 --2825198163014874112 --2867066017895123968 -2370304578804802560 -1479741713459294208 --2274951942046962688 --331441270325248 --3687073218621005824 --1666132277334396928 --3126614604784550912 --1991230768640780288 --3919464661271482368 -4394851670892460032 --2314823247789828096 -1360697080649884672 --3980500437428635648 -629041111210293248 -1719810369692260352 -1657629776676878336 --1847244767032121344 --2164586090110796800 --1911586415397083136 -3419144521897988096 --4552520131154414592 --1011593062740699136 --1370226172082695168 -1227754364083154944 -2893777691821102080 -2990882493659490304 --360701642767094784 --1162445709968203776 -2310573652025937920 --850475053801741312 --1136198981486644224 --1331631609174486016 -2426460359138788352 --3534061236073379840 --3921419180492678144 --3084285880557539328 -887045229076893696 -3873676984013160448 -3637806699353893888 -2248930321896231936 --3183607889982874624 -602722192933611520 --2166954321265098752 --587453558697720832 -2727477981509265408 -985777583014161408 -3188453836876133376 -3012074950276914176 -13354774928194560 --1866420560083734528 --4573967222182706176 -2425434734004043776 --4115686814842318848 -1428400876116414464 -1009699621278007296 -2371445637604235264 --849602164130120704 -3009411745449567232 -2766290923274950656 -2807064618659781632 --2765164003858816000 -146794253444176896 --2620930572549895168 --3659668548821165056 --2529342533179049984 -2592460681325878272 --2134283688755355648 -3929434991308564480 -3410590857769626624 --4040749640532293632 --1035160541131666432 -1340881340406647808 -2032288700731326464 -233882711506838528 --2308013727880325120 -1977851783608161280 --3865783481224971264 --2966117416983905280 -3582129715977609216 --432772129855707136 --4528297442868695040 -537816615033673728 --3380129217221458944 -1614476648426708992 --3653275745379318784 -4258794087490243584 --173927227643265024 --2222909965265467392 -3160007587232541696 -3919727129708277760 --3527752567497536512 --2832795391145942016 -335361009077005312 --4447956985161475072 -3046307999559681024 --1674711734593370112 --219574948462406656 -3098807300646489088 --439206491713890304 -729702717570545664 -173850910581848064 --2416330726815399936 -1643791683135737856 --871846594110247936 -1514870584852814848 -2860094188887654400 -713040425087159296 --121229389252277248 --955595603500848128 --472024613528622080 --3498045949390844928 -749604483644963840 -1065479324768086016 --197799443065513984 -2629291858132232192 -889234303820455936 -2923870282446647296 -4204072966761032704 -1808529616856658944 -4521274948116286464 --720193690308369408 -2132871484203640832 -640665688959997952 --1921495560046568448 --2661907285144044544 -4464326380814814208 --1440704904044734464 --1163530642887670784 --4412301739064598528 --673680115218283520 --52327483123988480 --2527015624014005248 --2206636348272070656 -927555411620021248 --82598379455678464 -2057904529155386368 --1273143733362813952 -2760772026779924480 --335648141411156992 -3708210155366921216 --1139514636728481792 -2707045612265307136 --330745306781959168 --3951512305289930752 -2782285361876878336 -1560097039483829248 --4187696548235084800 --1985557051834365952 -4125148245414695936 --4165058596183372800 -3010405094614091776 --1066789155226631168 -2684779416219008000 -542366169433705472 -4128271431454980096 -1659170480313355264 --1046962928130094080 --1824658366740503552 --2503374556969525248 -776538737639710720 --831574523006033920 -1747648794841397248 -157704951257673728 -2593695860978859008 -296614741671418880 -1704239412973662208 --3067869266853097472 -4002217978801590272 -3090344478581485568 --3390321394076391424 -4446431101852624896 -3836654151068087296 -2059779216628539392 -828570018927129600 -3481214714293131264 -1565416982381114368 -4060601996018496512 --3411752404124661760 --694692019473554432 -1208483812382319616 --4200131336026492928 --1579486669429488640 --3670771310398299136 --2603746472739503104 -3977519333550109696 --2652196215495270400 --2799212842161351680 --216987008865649664 --3523276186625055744 --242130380139019264 --1567686194502238208 --3651277514969220096 -3317863322855238656 -413265162872107008 --538359108928987136 --1626149837821800448 -111275402928621568 -380824182529667072 -649664206023229440 -253615431693588480 --4535192363649967104 --1544235711459850240 -179050880652317696 -315258390071052288 --3896120927866734592 --1322274065290511360 -3780106918780964864 --1940080033359497216 -1779360465816349696 --2834805603044122624 --2641582767661671424 --3026247349685254144 --1413987770652861440 --3398451035013199872 -462555538940370944 -754030308636335104 --2611095963425084416 -2903983285646339072 --3857226911317556224 -2878044626386074624 --2458995849118585856 -3485793791498697728 -1852624581244437504 --724869192199971840 -1450630273427495936 -2342759491096627200 -2828756374035847168 --668800864232484864 -3231609326149655552 -4007602089800005632 -512942914153461760 -2341964871762743296 --1933139506842124288 -225556766653268992 --3447384713581443072 -3936917839063084032 -518990641438353408 --4469289147687979008 -2968495480836632576 --540674613563274240 --3644088384463429632 --978674741174811648 -3981481262313705472 --3685910034875563008 --4070167177811383296 --3353057520494551040 -2958983707114749952 --2319870930687232000 -2319238163571069952 -4380471133751555072 -1083257977328629760 --163860126847646720 -1696441624711768064 -4236428107710556160 --641897671733030912 --4110495458614710272 -3613466490563026944 --2914910385134558208 --3919049037356099584 -2566144229012376576 -812652831923211264 --2026200573192524800 -3286629371176214528 -2082080932529928192 -4024569515425499136 -3053316286084973568 -2119981720992610304 --935525294541597696 --4320965612324598784 -3630835111113703424 -3539764976897090560 --3349551151219674112 --1308756974695322624 --2682209958416571392 --1401386968506298368 --484793496528029696 -154507510945821696 --2788518718811275264 --3322807822537784320 -1145244099021826048 -3745376705148608512 --1436437279948646400 --3730914406795668480 -3316374510021558272 --3671901361041570816 -4203810498565086208 --3216624942594634752 -3586014307813640192 -81763367952367616 --1215916335062190080 -1803178391974598656 -981639310817966080 --155162304088223744 -1650288244646127616 --1271538573374255104 -1954262390379779072 -2486182200440935424 -3745845009277210624 -3240180637844662272 -578932786111762432 --1149060751299771392 -2804352742761607168 -1596745457002537984 -3334782202363898880 -4406844114412403712 --4595883679420185600 -921149906218156032 --4373514938874237952 -4242008727280645120 -821796909560118272 --1030488600538827776 --620971286687758336 --281172753121522688 -2687343326078565376 -686660615251094528 -2046789155632889856 --1640772063601034240 -2871016153167406080 --1718011749270817792 -1565839373948453888 -1964394579531060224 --1633394835127852032 --1895048968905545728 --2330441118343603200 -29945467642521600 --240129165099411456 --4417927149439155200 --14623754576370688 --3297958613826762752 --819805908041841664 --573771227078628352 -973806078272738304 -2480809490179980288 -781308028297423872 --828426012120544256 --163070638391882752 -3016376884586455040 -4481716433064973312 -2599978883536807936 -3353992890619879424 --4385393285660974080 --2596491893539519488 -4027532768870542336 -1769306613320506368 --971254959628913664 -1061128512304963584 -514720455032066048 -1114026920064730112 -1875765217713154048 -3545764674194166784 --4210964503323739136 --3130145422915829760 -1928730387880059904 --674614466662487040 --2880922772280193024 --3638486042869777408 -3567928281263974400 --735188284796789760 --3629329679706549248 --3195923774519796736 --146362087968444416 --524189320686447616 --3385869844487409664 -1829185038132100096 --3343946122562786304 --3383262147779127296 --1525061951940982784 --4288709248745296896 -2361145367243352064 -2706078071907165184 -3444356683304287232 --2470538508031328256 -3345544515964338176 -2856319498377773056 --965770271268378624 --2053786089262460928 --3231409434628469760 --3883866763909777408 --4196551074714955776 -1648641565986570240 --2265009185282325504 --1475539090004286464 --2319180357564359680 --2544500424965196800 --286176928610935808 -2405123753581392896 --3666541541291518976 -4351119168629499904 --3817492025092646912 --2159550922661008384 --287796867408022528 --2147535102279188480 -2052184283686756352 --1410508608523648000 -397797858310684672 --3093091506863796224 -3098549853246958592 -4556369155430538240 --1763154962859618304 --3516447350791544832 --2440815948640390144 -183308431175971840 -3247610338411198464 --592990258273108992 -3109236809270955008 -3712563575719296000 -2491013735813407744 --4094391052983129088 -3694837683759972352 --3408794998575014912 --2516916545756264448 -1547640625104450560 -3892869513231267840 --433074303925616640 --707379624766587904 --3502988862571845632 --684664855782777856 -3058110565010997248 --3232972517453602816 --884381792164787200 --3419633392181273600 --3202339447119075328 --2827025584167918592 -1952725483026891776 -3297274146525607936 --3716127701888755712 --292936978899617792 --661065575666217984 --1972687093631249408 --991132838759436288 -1213301967382827008 -755958283390942208 -4141244363540470784 -2065346650868384768 --395059114533534720 -2720923232796083200 -1777517368700129280 --2340143372327344128 --14827245129516032 --2471256432991624192 -1086981706736827392 -4346348040063223808 -4397638874643971072 -2529289991831229440 --1059701768537619456 --843304915054009344 --4255191778524358656 --2246367131590865920 --4337892387587367936 -2500468329422212096 -2369252641928867840 -1745834015643542528 --3299328005398467584 --3270695421169431552 --1909985412019377152 -2468930324426368000 -3617345397564308480 --502292754418982912 -2483672409125496832 --25528357948959744 -1625189036925169664 -1556091400717373440 -4253153550642129920 -2354556912769881088 --3719695003017535488 --3263354609343374336 -4159632219985475584 --3514694029647336448 --2658838656747004928 --3750014874441618432 -3542132990351050752 --738933011825283072 -3986303265077113856 -2680041058919444480 -1674831530509225984 --4429771702990542848 --743180887097909248 -1004717707221139456 -3850914302332078080 -2288974044175883264 -407618181661239296 --3925981039936595968 --2624791768909077504 -622568898253217792 -1472266321011805184 -2009540840386928640 -280098446471566336 --4292417736322026496 -336648614510984192 -24789676408885248 -2157841645954376704 -2950531592734577664 -589576065659713536 --996905074400423936 --1271811867148667904 --1466581192680923136 --4403434777367408640 --4168930882036432896 --2747371690503971840 --3871231725922863104 --2070185286046728192 -1224539691158294528 -2414174661765361664 -2470830976175996928 --3605924938859244544 --3609504057565000704 -2394658009530385408 -1791057870577298432 -1702651855419609088 --2328993004571481088 -637735982725859328 --1318982327216744448 --2129499337772936192 --4372936862232306688 -3022510265776237568 -1407036651228831744 --524083174715203584 -2627598344066727936 --326058957963686912 -2533462672574827520 --1477956657673551872 --4134281141346462720 -1975830874969843712 --15683199965578240 --4286726955739078656 --2870628007216676864 -3554139096408285184 --2146140676567112704 --2862266732654961664 -634005625042954240 -4583181646621814784 --2744249074574851072 --2694869271600026624 --1235112848784276480 --121677065554123776 -1071613545007807488 --2711143806320611328 --523926824485801984 --2724556638530990080 --1436557186831496192 --2851361034956111872 --3589276960216828928 --4058486785098626048 -3680678415056967680 --244394452104499200 --1101098630585567232 --3717537451940016128 --3462339703875085312 -1309193278086346752 --328568592369483776 --2565454999622044672 --1159377184678512640 -2992905120233742336 --3374572012499573760 -2815496478580361216 --2357846426774511616 --753174694970608640 -4115783509438415872 --2235979521846942720 --784969607883532288 -3595299438954995712 --4101900556641595392 --2728074150852616192 -2111311403640248320 -4449185818486102016 --2100352033501606912 -2189619758271949824 --2377067335500222464 --1377888414380664832 -2065605973310103552 --2665244892069818368 --2008724895445190656 -1867344525930451968 -602804539665874944 -3262070422026059776 -4339791288709383168 --3941625954388159488 -1035355680524206080 --1988267579066783744 --3838971232269342720 -1561496243322305536 -206607304567387136 --4537162778764246016 --1943080690127774720 --254890991767659520 -1532561614949409792 --3451969809405751296 --3421357012008225792 --237159326176744448 -3506767580668965888 --296127667602729984 -1329563979752383488 --2884002252518962176 -485266331425587200 -3690925826180232192 -3210522368843227136 --4426617368721993728 --328317152062427136 --1699568541737133056 -2812717887810483200 -2565038769405920256 --4531697847960024064 --4031690848124077056 --3034646214218661888 -4441109462196676608 --4013814300583056384 --3136837406434546688 -1615785706660807680 -1918565782607017984 -3341165736843295744 -2362785471026574336 --150541452824966144 -2601565320429540352 --2902363282894783488 --4381991627966177280 --2422762507656238080 --4380941068812145664 -2799905149850110976 --4267293194572922880 -3201913570007627776 -3537575815091584000 --966290432671655936 --3447747501193704448 --4145082391969541120 -2740046813924844544 --346057220702939136 --3341445190793140224 -839946592124066816 --2163905309564209152 --2052790701069359104",$4016132057781999616$;$-3931355609679433728$;$-3763386598319791104$;$1502618286233839616$;$-3366464067995271168$;$-3336628263329827840$;$756477738559597568$;$3191835364964956160$;$-144617417887632384$;$3235206984045507584$;$-1017357722576472064$;$-4498198311417516032$;$-2168589582189992960$;$4019931490674965504$;$2666932062226742272$;$937245517378553856$;$3702295962855736320$;$398509090920317952$;$-759831668049881088$;$-3936227456296407040$;$29855811770043392$;$-1356203245344301056$;$-3583982085013873664$;$-4476959038634271744$;$2978417069221322752$;$3395474001008780288$;$-1529403718829506560$;$-3151023347683094528$;$2586575377814279168$;$-3807865401454979072$;$2601300175397405696$;$-4272187861955969024$;$1096280380725379072$;$4090084456817764352$;$3163976268098412544$;$4316004317726913536$;$567940039316914176$;$3207194999597739008$;$-2637456872887634944$;$3836018973442194432$;$383645365730747392$;$-973658798253550592$;$-2327631701099422720$;$-1503735936661646336$;$-3500476019753618432$;$-2825198163014874112$;$-2867066017895123968$;$2370304578804802560$;$1479741713459294208$;$-2274951942046962688$;$-331441270325248$;$-3687073218621005824$;$-1666132277334396928$;$-3126614604784550912$;$-1991230768640780288$;$-3919464661271482368$;$4394851670892460032$;$-2314823247789828096$;$1360697080649884672$;$-3980500437428635648$;$629041111210293248$;$1719810369692260352$;$1657629776676878336$;$-1847244767032121344$;$-2164586090110796800$;$-1911586415397083136$;$3419144521897988096$;$-4552520131154414592$;$-1011593062740699136$;$-1370226172082695168$;$1227754364083154944$;$2893777691821102080$;$2990882493659490304$;$-360701642767094784$;$-1162445709968203776$;$2310573652025937920$;$-850475053801741312$;$-1136198981486644224$;$-1331631609174486016$;$2426460359138788352$;$-3534061236073379840$;$-3921419180492678144$;$-3084285880557539328$;$887045229076893696$;$3873676984013160448$;$3637806699353893888$;$2248930321896231936$;$-3183607889982874624$;$602722192933611520$;$-2166954321265098752$;$-587453558697720832$;$2727477981509265408$;$985777583014161408$;$3188453836876133376$;$3012074950276914176$;$13354774928194560$;$-1866420560083734528$;$-4573967222182706176$;$2425434734004043776$;$-4115686814842318848$;$1428400876116414464$;$1009699621278007296$;$2371445637604235264$;$-849602164130120704$;$3009411745449567232$;$2766290923274950656$;$2807064618659781632$;$-2765164003858816000$;$146794253444176896$;$-2620930572549895168$;$-3659668548821165056$;$-2529342533179049984$;$2592460681325878272$;$-2134283688755355648$;$3929434991308564480$;$3410590857769626624$;$-4040749640532293632$;$-1035160541131666432$;$1340881340406647808$;$2032288700731326464$;$233882711506838528$;$-2308013727880325120$;$1977851783608161280$;$-3865783481224971264$;$-2966117416983905280$;$3582129715977609216$;$-432772129855707136$;$-4528297442868695040$;$537816615033673728$;$-3380129217221458944$;$1614476648426708992$;$-3653275745379318784$;$4258794087490243584$;$-173927227643265024$;$-2222909965265467392$;$3160007587232541696$;$3919727129708277760$;$-3527752567497536512$;$-2832795391145942016$;$335361009077005312$;$-4447956985161475072$;$3046307999559681024$;$-1674711734593370112$;$-219574948462406656$;$3098807300646489088$;$-439206491713890304$;$729702717570545664$;$173850910581848064$;$-2416330726815399936$;$1643791683135737856$;$-871846594110247936$;$1514870584852814848$;$2860094188887654400$;$713040425087159296$;$-121229389252277248$;$-955595603500848128$;$-472024613528622080$;$-3498045949390844928$;$749604483644963840$;$1065479324768086016$;$-197799443065513984$;$2629291858132232192$;$889234303820455936$;$2923870282446647296$;$4204072966761032704$;$1808529616856658944$;$4521274948116286464$;$-720193690308369408$;$2132871484203640832$;$640665688959997952$;$-1921495560046568448$;$-2661907285144044544$;$4464326380814814208$;$-1440704904044734464$;$-1163530642887670784$;$-4412301739064598528$;$-673680115218283520$;$-52327483123988480$;$-2527015624014005248$;$-2206636348272070656$;$927555411620021248$;$-82598379455678464$;$2057904529155386368$;$-1273143733362813952$;$2760772026779924480$;$-335648141411156992$;$3708210155366921216$;$-1139514636728481792$;$2707045612265307136$;$-330745306781959168$;$-3951512305289930752$;$2782285361876878336$;$1560097039483829248$;$-4187696548235084800$;$-1985557051834365952$;$4125148245414695936$;$-4165058596183372800$;$3010405094614091776$;$-1066789155226631168$;$2684779416219008000$;$542366169433705472$;$4128271431454980096$;$1659170480313355264$;$-1046962928130094080$;$-1824658366740503552$;$-2503374556969525248$;$776538737639710720$;$-831574523006033920$;$1747648794841397248$;$157704951257673728$;$2593695860978859008$;$296614741671418880$;$1704239412973662208$;$-3067869266853097472$;$4002217978801590272$;$3090344478581485568$;$-3390321394076391424$;$4446431101852624896$;$3836654151068087296$;$2059779216628539392$;$828570018927129600$;$3481214714293131264$;$1565416982381114368$;$4060601996018496512$;$-3411752404124661760$;$-694692019473554432$;$1208483812382319616$;$-4200131336026492928$;$-1579486669429488640$;$-3670771310398299136$;$-2603746472739503104$;$3977519333550109696$;$-2652196215495270400$;$-2799212842161351680$;$-216987008865649664$;$-3523276186625055744$;$-242130380139019264$;$-1567686194502238208$;$-3651277514969220096$;$3317863322855238656$;$413265162872107008$;$-538359108928987136$;$-1626149837821800448$;$111275402928621568$;$380824182529667072$;$649664206023229440$;$253615431693588480$;$-4535192363649967104$;$-1544235711459850240$;$179050880652317696$;$315258390071052288$;$-3896120927866734592$;$-1322274065290511360$;$3780106918780964864$;$-1940080033359497216$;$1779360465816349696$;$-2834805603044122624$;$-2641582767661671424$;$-3026247349685254144$;$-1413987770652861440$;$-3398451035013199872$;$462555538940370944$;$754030308636335104$;$-2611095963425084416$;$2903983285646339072$;$-3857226911317556224$;$2878044626386074624$;$-2458995849118585856$;$3485793791498697728$;$1852624581244437504$;$-724869192199971840$;$1450630273427495936$;$2342759491096627200$;$2828756374035847168$;$-668800864232484864$;$3231609326149655552$;$4007602089800005632$;$512942914153461760$;$2341964871762743296$;$-1933139506842124288$;$225556766653268992$;$-3447384713581443072$;$3936917839063084032$;$518990641438353408$;$-4469289147687979008$;$2968495480836632576$;$-540674613563274240$;$-3644088384463429632$;$-978674741174811648$;$3981481262313705472$;$-3685910034875563008$;$-4070167177811383296$;$-3353057520494551040$;$2958983707114749952$;$-2319870930687232000$;$2319238163571069952$;$4380471133751555072$;$1083257977328629760$;$-163860126847646720$;$1696441624711768064$;$4236428107710556160$;$-641897671733030912$;$-4110495458614710272$;$3613466490563026944$;$-2914910385134558208$;$-3919049037356099584$;$2566144229012376576$;$812652831923211264$;$-2026200573192524800$;$3286629371176214528$;$2082080932529928192$;$4024569515425499136$;$3053316286084973568$;$2119981720992610304$;$-935525294541597696$;$-4320965612324598784$;$3630835111113703424$;$3539764976897090560$;$-3349551151219674112$;$-1308756974695322624$;$-2682209958416571392$;$-1401386968506298368$;$-484793496528029696$;$154507510945821696$;$-2788518718811275264$;$-3322807822537784320$;$1145244099021826048$;$3745376705148608512$;$-1436437279948646400$;$-3730914406795668480$;$3316374510021558272$;$-3671901361041570816$;$4203810498565086208$;$-3216624942594634752$;$3586014307813640192$;$81763367952367616$;$-1215916335062190080$;$1803178391974598656$;$981639310817966080$;$-155162304088223744$;$1650288244646127616$;$-1271538573374255104$;$1954262390379779072$;$2486182200440935424$;$3745845009277210624$;$3240180637844662272$;$578932786111762432$;$-1149060751299771392$;$2804352742761607168$;$1596745457002537984$;$3334782202363898880$;$4406844114412403712$;$-4595883679420185600$;$921149906218156032$;$-4373514938874237952$;$4242008727280645120$;$821796909560118272$;$-1030488600538827776$;$-620971286687758336$;$-281172753121522688$;$2687343326078565376$;$686660615251094528$;$2046789155632889856$;$-1640772063601034240$;$2871016153167406080$;$-1718011749270817792$;$1565839373948453888$;$1964394579531060224$;$-1633394835127852032$;$-1895048968905545728$;$-2330441118343603200$;$29945467642521600$;$-240129165099411456$;$-4417927149439155200$;$-14623754576370688$;$-3297958613826762752$;$-819805908041841664$;$-573771227078628352$;$973806078272738304$;$2480809490179980288$;$781308028297423872$;$-828426012120544256$;$-163070638391882752$;$3016376884586455040$;$4481716433064973312$;$2599978883536807936$;$3353992890619879424$;$-4385393285660974080$;$-2596491893539519488$;$4027532768870542336$;$1769306613320506368$;$-971254959628913664$;$1061128512304963584$;$514720455032066048$;$1114026920064730112$;$1875765217713154048$;$3545764674194166784$;$-4210964503323739136$;$-3130145422915829760$;$1928730387880059904$;$-674614466662487040$;$-2880922772280193024$;$-3638486042869777408$;$3567928281263974400$;$-735188284796789760$;$-3629329679706549248$;$-3195923774519796736$;$-146362087968444416$;$-524189320686447616$;$-3385869844487409664$;$1829185038132100096$;$-3343946122562786304$;$-3383262147779127296$;$-1525061951940982784$;$-4288709248745296896$;$2361145367243352064$;$2706078071907165184$;$3444356683304287232$;$-2470538508031328256$;$3345544515964338176$;$2856319498377773056$;$-965770271268378624$;$-2053786089262460928$;$-3231409434628469760$;$-3883866763909777408$;$-4196551074714955776$;$1648641565986570240$;$-2265009185282325504$;$-1475539090004286464$;$-2319180357564359680$;$-2544500424965196800$;$-286176928610935808$;$2405123753581392896$;$-3666541541291518976$;$4351119168629499904$;$-3817492025092646912$;$-2159550922661008384$;$-287796867408022528$;$-2147535102279188480$;$2052184283686756352$;$-1410508608523648000$;$397797858310684672$;$-3093091506863796224$;$3098549853246958592$;$4556369155430538240$;$-1763154962859618304$;$-3516447350791544832$;$-2440815948640390144$;$183308431175971840$;$3247610338411198464$;$-592990258273108992$;$3109236809270955008$;$3712563575719296000$;$2491013735813407744$;$-4094391052983129088$;$3694837683759972352$;$-3408794998575014912$;$-2516916545756264448$;$1547640625104450560$;$3892869513231267840$;$-433074303925616640$;$-707379624766587904$;$-3502988862571845632$;$-684664855782777856$;$3058110565010997248$;$-3232972517453602816$;$-884381792164787200$;$-3419633392181273600$;$-3202339447119075328$;$-2827025584167918592$;$1952725483026891776$;$3297274146525607936$;$-3716127701888755712$;$-292936978899617792$;$-661065575666217984$;$-1972687093631249408$;$-991132838759436288$;$1213301967382827008$;$755958283390942208$;$4141244363540470784$;$2065346650868384768$;$-395059114533534720$;$2720923232796083200$;$1777517368700129280$;$-2340143372327344128$;$-14827245129516032$;$-2471256432991624192$;$1086981706736827392$;$4346348040063223808$;$4397638874643971072$;$2529289991831229440$;$-1059701768537619456$;$-843304915054009344$;$-4255191778524358656$;$-2246367131590865920$;$-4337892387587367936$;$2500468329422212096$;$2369252641928867840$;$1745834015643542528$;$-3299328005398467584$;$-3270695421169431552$;$-1909985412019377152$;$2468930324426368000$;$3617345397564308480$;$-502292754418982912$;$2483672409125496832$;$-25528357948959744$;$1625189036925169664$;$1556091400717373440$;$4253153550642129920$;$2354556912769881088$;$-3719695003017535488$;$-3263354609343374336$;$4159632219985475584$;$-3514694029647336448$;$-2658838656747004928$;$-3750014874441618432$;$3542132990351050752$;$-738933011825283072$;$3986303265077113856$;$2680041058919444480$;$1674831530509225984$;$-4429771702990542848$;$-743180887097909248$;$1004717707221139456$;$3850914302332078080$;$2288974044175883264$;$407618181661239296$;$-3925981039936595968$;$-2624791768909077504$;$622568898253217792$;$1472266321011805184$;$2009540840386928640$;$280098446471566336$;$-4292417736322026496$;$336648614510984192$;$24789676408885248$;$2157841645954376704$;$2950531592734577664$;$589576065659713536$;$-996905074400423936$;$-1271811867148667904$;$-1466581192680923136$;$-4403434777367408640$;$-4168930882036432896$;$-2747371690503971840$;$-3871231725922863104$;$-2070185286046728192$;$1224539691158294528$;$2414174661765361664$;$2470830976175996928$;$-3605924938859244544$;$-3609504057565000704$;$2394658009530385408$;$1791057870577298432$;$1702651855419609088$;$-2328993004571481088$;$637735982725859328$;$-1318982327216744448$;$-2129499337772936192$;$-4372936862232306688$;$3022510265776237568$;$1407036651228831744$;$-524083174715203584$;$2627598344066727936$;$-326058957963686912$;$2533462672574827520$;$-1477956657673551872$;$-4134281141346462720$;$1975830874969843712$;$-15683199965578240$;$-4286726955739078656$;$-2870628007216676864$;$3554139096408285184$;$-2146140676567112704$;$-2862266732654961664$;$634005625042954240$;$4583181646621814784$;$-2744249074574851072$;$-2694869271600026624$;$-1235112848784276480$;$-121677065554123776$;$1071613545007807488$;$-2711143806320611328$;$-523926824485801984$;$-2724556638530990080$;$-1436557186831496192$;$-2851361034956111872$;$-3589276960216828928$;$-4058486785098626048$;$3680678415056967680$;$-244394452104499200$;$-1101098630585567232$;$-3717537451940016128$;$-3462339703875085312$;$1309193278086346752$;$-328568592369483776$;$-2565454999622044672$;$-1159377184678512640$;$2992905120233742336$;$-3374572012499573760$;$2815496478580361216$;$-2357846426774511616$;$-753174694970608640$;$4115783509438415872$;$-2235979521846942720$;$-784969607883532288$;$3595299438954995712$;$-4101900556641595392$;$-2728074150852616192$;$2111311403640248320$;$4449185818486102016$;$-2100352033501606912$;$2189619758271949824$;$-2377067335500222464$;$-1377888414380664832$;$2065605973310103552$;$-2665244892069818368$;$-2008724895445190656$;$1867344525930451968$;$602804539665874944$;$3262070422026059776$;$4339791288709383168$;$-3941625954388159488$;$1035355680524206080$;$-1988267579066783744$;$-3838971232269342720$;$1561496243322305536$;$206607304567387136$;$-4537162778764246016$;$-1943080690127774720$;$-254890991767659520$;$1532561614949409792$;$-3451969809405751296$;$-3421357012008225792$;$-237159326176744448$;$3506767580668965888$;$-296127667602729984$;$1329563979752383488$;$-2884002252518962176$;$485266331425587200$;$3690925826180232192$;$3210522368843227136$;$-4426617368721993728$;$-328317152062427136$;$-1699568541737133056$;$2812717887810483200$;$2565038769405920256$;$-4531697847960024064$;$-4031690848124077056$;$-3034646214218661888$;$4441109462196676608$;$-4013814300583056384$;$-3136837406434546688$;$1615785706660807680$;$1918565782607017984$;$3341165736843295744$;$2362785471026574336$;$-150541452824966144$;$2601565320429540352$;$-2902363282894783488$;$-4381991627966177280$;$-2422762507656238080$;$-4380941068812145664$;$2799905149850110976$;$-4267293194572922880$;$3201913570007627776$;$3537575815091584000$;$-966290432671655936$;$-3447747501193704448$;$-4145082391969541120$;$2740046813924844544$;$-346057220702939136$;$-3341445190793140224$;$839946592124066816$;$-2163905309564209152$;$-2052790701069359104$,㣵啟驯կ名Პჵߜ㑚蒡釼页䮂倭䪏왓匹ন뒣鞒尿慰쎇ꎇ迧뮬גּ∧덐ﳳ萧샴鑘ꃸ붬﨔豉䍺撼╧㬄_७爦閹橙런翩γ硛股鿎‧崻䏲ಝ췍꬯莎䁗䁓쾚瀗㜉凩墚뗸頻萌ퟢ⇵愨ᛤ喝갃䄢鋌今読堹ꚩ鹕䶶㚞況氁䄦彷瞘藰ꪌ塞᭢朽╫漅倕ﰪ᫗໸퓒›툿ጪ⪆褒㶚鴩ᡲё᷉᛭씣佀퀔䉻暰툳༷쥻澘慻괅戀䔆譃所⌃䩩ᕌ䣎芁刺쑛쵷턓똁✣䄄돘悕몶敬쌣틨쨹븑ⓟᷧ웊ɣꆅ藱좇虡ᨺ퟾ᎎ狆⎝᜚ꈏᆑዮ沃⥭չ碸唨䯁礐੼⃀祤Ꮙꅝ為靵㥳Ǡﹳ뉺ᐦ가⇑泃羜㜬阽쾃鄌뻤ပ虎⠿篫䰏뮠环蚏ล瘡ꅢ쉲ꧣၙ颖苅ƛᑹ妃盿ඈ驶୼죐쟀㠂쳴촦⒐焉ꦑ貺ઑ凱∺鎞瀚ꮠ禳螰㔨䨌舦뛴扂꿺矚絈땾釚銋ﭥ㼽綤孋剖릙䯱톏趒ț๑뵴퍶뗯ᙻ욮ਛ뷁誴뛐뙆봦ম덪䶁廍嚅庩昄鑙ᬧ覛䄉킱岫ᦉ雮탰氌ꓥ똰拹ᆖ骵⢃䨅䃰ἴ瀦齊㭨뢼ᮬ鉩玖舟먧㇞켩⋦﯎∞筶聄ᒾ소䕻䧰猳犽缂뿪ㄘ䂤욿綶䮆⯮疩뚎ꠝ麹呮愷浒疄㇊⨕䴥䇰绛蹄랓﨎ꢩ訦봼ﻖ␑趢聻켅퇥蝚챫빃귌뎾ࢥ灃쁹녰鸤㭯ꭱ靣榜䦀㎘밓堦廡럱ꁢꠐ鼆㥺확枡姊⵬㆏炻竌՗⌖᧮승墳ࢨ㫰⦠칬䛰᜜솓䧟༑롆቉䰡嚝艍ࡕਞꐁꐅえ報鿩柤瘔煄㔩굨쏦ᗫ엃⪗칔ᙆ쮄꛿䁄﵀濑椆澚녚괿龄㯢仡府ꗫ챳⡵扩✽廗取㾇泒䢟拡믪힜呾瀢貈횼ڞ뤾囎訙見蛰ໄ렷놉꯹퍊ֹ챵師ㆃ歩⠟쇂轏੸ß佲ה╶య䬝꫆䣭ᰳ黶ꔙ莆ꀏ闄⹄턯⠔륕ꟻ啇卋য庆뼮ꩦ趨⛗孨⡩暇ꔑ﫩䠕ᆳᆒ䬀䐁㑐۾첗䅎ꜧ掓⎙矝줍ꕜᚲꏛ鄟错䦃紻쳓㲟㨋䇒Ꙗ묞䀟鑧偉㓎짠圱⨉퀟캩鷆ꇀ눑야侏煁⢄ꠃ蜿渝棫띊춍⫅ꔰ攫毳鍩ͅ狒䒤鲓ꟿ尢⮆뱧㢝ﹻ뙲螔ޯ㤜⤡쮁㧸ꝧ쳚⋭눉赬䖭呐ꍝ⪵啴Ⳣ䲃O浙∆枧嵦㏑⚑ۛ㔳╢歚⒗鮗ﲧ㾣껁᳝㋐炠뤩湬⒎쭰娀嘗ಐ拏ឆ荇倯쇡䭉휑㽲캟ԦႵ䍰ᑌ롵릑担ꓕ몼渰好䀫, -9,,1443154422.98,,"׾aZpO%_'U$r܇逩mr%C1*hэϻ""n̜!OM Xp*JM DV sӠؚwĻ)jE\.""q]HaG@0ЌNpu㑅]SօB 3V` e(w֥_;2ΰ""1 \-΋MXr98Y1Z;RIAPp5fLQKW ;ap%Sj3Ε=X%Y",,"{""a"":1.6447644210362305e+308,""b"":""\u9a78\uf3ca\u82a3\ueeb3\u87bb\u092c\u293a\u90c5\u1d25\u367b\uf418\u815a\u1a90\u8e06\u0729\ua10a\u0bdd\u127c\u8a4b\u62f9\uc190\u22c3\u089a\ud066\ubdc6\u089c\u3dd7\u01bb\ue61e\u3c13\u3753\ue58c\udc56\u2ed7\ue486\u6c8e\u1fe3\ub346\u8618\u2aea\u350c\u7e4f\u52be\ue9cc\uabca\u0e9a\uf27c\ufa83\u3f05\u2c94\uee3d\ue501\ub80f\ud088\u5bdd\u2dc2\u8222\u0768\u485f\u0e24\u9d94\u78fe\u8654\u162c\u7883\u1bce\uabaa\ue08e\u7325\u0a44\u22fa\u9b72\u2dc3\u59d9\u81ff\u21dd\u7032\u5aba\u56d8\u2dcf\u61e1\u635a\u3907\u6ead\u45c6\u6150\u23c0\u4308\u51fe\uc7cb\ue681\u7d32\u2062\uf53d\ued69\u974d\uc3a7\u9dc0\u696f\u398c\u63b4\ue2fa\ua8f6\ud5ec\u8762\u43e3\uff98\uca83\ue617\u47d1\uc7e3\u2260\uceab\u584a\ud50a\uc804\ua35b\u4c3b\u2bc5\u4dd4\u60fa\u4d28\udc2e\uda51\u6e66\u5cd8\u1bd5\uf455\u372c\ubea4\u9045\u24c0A\u0a87\uf3ec\u0ac1\u8c25\u8b96\u6b3a\u0c35\u928a\ue1a8\u3527\u9c02\uc349\u8e9c\u8d2d\u1e94\u48a0\u75a1\ud747\u37ec\u67a5\ub0e0\ub09e\u5c3c\ufb50\u73b1\u1a81\u7a2f\u02e2\ua5c5\uacc2\u385e\uc9f8\uc564\u9c70\u444a\ua3d1\u924b\u91b3\u566a\uac1a\u6d4f\u4456\u5363\uf15c\u8377\u9419\uc606\ucdb4\u367d\ud499\ubfaa\ufb65\udfef\u89c1\u4031\uf051\u6413\uce57\u693b\ufa9f\u1902\uf1e8\u53bd\u0e09\uf4d9\u45af\u1289\u3567\u846b\u4b75\ucedf\u588d\ub044\u9156\u6a0a\u122e\u86f3\uc138\uccf7\u079b\u6bfe\u2e25\u2c0d\u357e\ubbb3\u347f\u403c\u744b\uf58a\u2297\ub72c\u38cf\u263d\u164e\u915b\u3a85\u474c\u63e7\uc91e\u0981\ufce9\u7948\u0f98\u1be5\uba53\u8e95\ucd01\u39f8\u3133\uf2c2\uc6ad\uc779\uae65\u8096\ue8bb\u9b27\ue158\u471c\u532e\u9d0f\u1ff0\uce38\u6f0d\u7b0b\ue10e\u1f0e\ufe09\u10b6\u2de1\u594c\u0c62\ua679\ue72a\u24ef\udc3f\u7259\u064c\uaa42\u44d2\ua773\uc737\uec98\u144f\uf43a\ud138\u8e58\ue555\u680d\ubee8\u1136\uccd7\u77c4\uee83\u2f9f\uf162\u89c5\ueabb\ucce6\uf9d5\u48b1\u3649\ue36c\uc233\ue3f7\u6cf3\ua149\u854c\u6dea\u5c09\uc0ce\u243c\u3452\u4998\u58de\u2831f\uc72a\u1b58\uaa3c\u3f38\u3982\u83dd\ud1a8\u35d9\u5e24\u5dbd\u8c42\u91ff\ued51\ua69a\u04d4\u470e\u8745\ubda7\u767f\u74b7"",""\u798f \u9152\u5427"":{""fu"":8.181325181630887e+307,""bar"":1.2510562631351353e+308}}",,"4254677265955351552 --3278967839183033344 -1095053897811201024 --1461220706224117760 -2874075141657677824 -2198261908299204608 --4090972845302793216 --979321288355396608 -1555253375519851520 --1330981345459324928 -2390979766941747200 --2547949188179918848 --798349369508915200 --4584665965760536576 --631217269556945920 -790994848793819136 --3292015071347274752 --1095373714185022464 --2658536572979284992 --3395385354301297664 -1591083580236333056 --1216965427854953472 -89157934633715712 --2040633111952643072 --2057014102036543488 --1118673239956006912 -3715067134115388416 -2467147072612097024 -2009325729649772544 -382104304900268032 --346889285817417728 --1435664121415141376 -1641054803074410496 -839578214834488320 --2588886021934640128 --4542877417974082560 -2812675173916209152 -1201906490943030272 -2257431531439555584 -1368106746276730880 -4549413097371716608 --3335208727090267136 --4428655578102525952 -1530941959374427136 -4303325895450736640 -4593073574498477056 --1323071460167786496 -2016838339774851072 -3394661872488026112 -1577907303233685504 -3498474695397552128 --1851725795302644736 --570835640034738176 -3019588515318900736 --2653542310303600640 --2604787378286464000 --505494242168783872 -603890221725215744 --2697447474166577152 --1324174827157528576 --3939120325196779520 -3221842789362113536 -3450045506650081280 --3085415144472945664 -2844767850120931328 --480357954359296 --3627161930907376640 --2643792500309282816 --4203378301050242048 -3838096347590449152 --998967334488296448 --317841742843261952 -2920962161798350848 -4570760113962682368 -1312887172374955008 -3885641510643298304 -4233307202806694912 --3012362293223967744 -3167245083470391296 -2500942194558134272 --315111054027939840 -237543331611081728 --3999102932559256576 --1141382291530525696 --1526394099069128704 -2352356396177900544 --1168838822762099712 --354746841509020672 --2541873829172502528 --965727991456326656 --311410848497044480 -705453332713840640 -1492599881540529152 -4479916310441965568 -2716154159942166528 --303452988574282752 --594349156021116928 -341158927843047424 -3393126723069275136 -290336864458511360 --1683639972835714048 -393458920544302080 -977830132378643456 --1741267446607932416 --1125989223784035328 --3161194173701813248 -1383932831831526400 --185858563731879936 --619177045600068608 --319688796495815680 --148118319752223744 --2181889039421988864 --1798869353710729216 -749360210725292032 --52408264759950336 --940604390282982400 -1390737596831897600 -4218792006351753216 --1518811638397486080 --535053535372843008 -2896937319166113792 -588850925878534144 --2107583507050101760 -4014091361826212864 -2916698469345811456 -1951932407489913856 -118873251955217408 --1139979210213329920 -1302446376933635072 --4093818941627415552 --4014963002715051008 -4336409833389136896 -2410489568254102528 -692157898271000576 --2171303002617470976 --652828819998383104 --2446775767529470976 --831596048294830080 --3036568121844647936 --4099857299705051136 --1748100335062065152 -2058836702618380288 -1657210566250067968 -3941099743276361728 --4185275790028241920 --97232344121799680 --3499135005960154112 --1651762638239210496 --3997211402177012736 -128882286945541120 -1463295298046387200 -317571343985294336 -607096525261543424 --1754794603762570240 --2094529167945345024 --3809632162340091904 --474511039345931264 -3158814853021989888 -3114532317095864320 --2604749572578583552 -2805410973604061184 --2662711593375478784 --1391279026896055296 -3259757490990564352 --1581486637833614336 --4046553840254213120 --540428293428459520 -3122138026614557696 --2762426856152012800 --3745051934640835584 --3557887300080657408 --1972046377517533184 -2242640369282731008 --4221055586465870848 -3252335673018686464 -3863328616552477696 --2775978052432394240 --4450630360568581120 --811451549629941760 --1049522102198036480 --199603877556546560 --4079316740615470080 --2741818040691208192 --716266207917224960 -583397754173418496 -1544504934707960832 --3054732623003497472 --871210473440047104 -2889612906310889472 -233070762224941056 --917211689123517440 -542509028418924544 --4518463588811642880 -4313832993390697472 --1587336021219565568 -3639686809387892736 -3094674335397931008 --2501134013383326720 -3134354127897529344 -3273083408434320384 -1415376443455564800 -843040249959065600 --2808809376405354496 --1718023579167566848 --1956333184359260160 --3175545429030867968 --1764892903120506880 -2032291074225981440 --712609431856651264 -2159765118750071808 --2376203724425402368 --4325489076609137664 -3364588376642424832 --2012887603766548480 --3759432487227607040 --3952464483692864512 -1571034735280196608 -4501352486205831168 -314324257874365440 --2379090579535885312 --2430544123593043968 --1812676012190221312 --2572325444880340992 --236871385744413696 -2000813827436053504 --2926943912768563200 -2565938855190333440 -2059790068344283136 --1110893231558197248 --3216879847890564096 --4488453208247255040 -195037170542662656 -2078491979538355200 --352740751523433472 -2092021441774430208 --1921662900374040576 -2206083862913969152 --3231439895078589440 -730349509515421696 --1292834461765485568 --4539961203776282624 --361128587063154688 -275805038942754816 --2536081772288787456 --3653690332825760768 -4041131065922513920 --3724551345725943808 -1328036417321675776 --2257950520749260800 -1280090100955892736 -2205207787759245312 --3976771743523582976 --2057131779381775360 --1164109764739914752 --2492752697104896000 --1594392650577743872 --4437284793297515520 --2519540760248463360 --1321080590665975808 --1718974135774153728 --703409600625948672 -1200887553244944384 --150187502638683136 -4408565657682225152 -3999156566742699008 -3496653132743328768 --3497105380376271872 -1962204030365357056 -363459673379707904 -2765577856684478464 -1152057807306536960 -2251862684723419136 -2203274220244849664 --4001254493906380800 -1208970698929547264 -2982216187500237824 -3838450901202033664 --4096436524515470336 -3692972105743032320 --3029979320170488832 -2256934774147117056 -2731747057631066112 -2817003598553373696 -1876349954500562944 --2740272965912396800 --2939244164367629312 --2519370982178209792 --4120877272875228160 --1368321567717026816 --1396248014465326080 --1458994917253981184 -2746561544524414976 -3256684114288878592 --4257780547826494464 --1669838029725976576 -1370017071208621056 -2186189725366865920 --3556258013301755904 -3117840452678910976 -3056715991008479232 --2261706735199284224 --3514095230124380160 --3071466748435736576 -2444027752904851456 -1881200211903237120 --1362067747215352832 --433309072010566656 --1266719328749578240 -3546959235875405824 -857530682442600448 -925992010608994304 --4605440320697524224 -92906054188065792 -3384287343174632448 -1212845466998929408 --4352084481918223360 -2617031792241653760 -249664507896994816 -678509485963235328 -3772873710788828160 --4227509232197906432 --2531950203656817664 -4399896361808061440 -4332821500175590400 --3888221197882389504 -3308245539468065792 -3595198478569183232 -1154131560998507520 -3970599042616344576 --3503126964455568384 --1457595241164083200 --3241986442731803648 -3550870884293351424 --644550027108666368 --4377883813498544128 -1440616168361109504 -3491195772841542656 --1190327388033965056 --2727683184130538496 --4027957169474352128 --4138796140514881536 --907731078572628992 -70140658007075840 -2242753100914432000 --4132224789551182848 -1720383049510241280 -4128918805961032704 --4395388852002869248 -938510008742896640 -2632643744880781312 -2784044483654225920 --2856249527921222656 -3489451028534928384 --4560101855260802048 --2376542901474267136 --2873599099461267456 --3764416140081913856 --1009431945345722368 --2834024317984728064 --4155565964097536 -2283954502976757760 -1968503551151424512 -791635529421872128 -1210179905758432256 -1141215342399602688 --3880726647432727552",$4254677265955351552$;$-3278967839183033344$;$1095053897811201024$;$-1461220706224117760$;$2874075141657677824$;$2198261908299204608$;$-4090972845302793216$;$-979321288355396608$;$1555253375519851520$;$-1330981345459324928$;$2390979766941747200$;$-2547949188179918848$;$-798349369508915200$;$-4584665965760536576$;$-631217269556945920$;$790994848793819136$;$-3292015071347274752$;$-1095373714185022464$;$-2658536572979284992$;$-3395385354301297664$;$1591083580236333056$;$-1216965427854953472$;$89157934633715712$;$-2040633111952643072$;$-2057014102036543488$;$-1118673239956006912$;$3715067134115388416$;$2467147072612097024$;$2009325729649772544$;$382104304900268032$;$-346889285817417728$;$-1435664121415141376$;$1641054803074410496$;$839578214834488320$;$-2588886021934640128$;$-4542877417974082560$;$2812675173916209152$;$1201906490943030272$;$2257431531439555584$;$1368106746276730880$;$4549413097371716608$;$-3335208727090267136$;$-4428655578102525952$;$1530941959374427136$;$4303325895450736640$;$4593073574498477056$;$-1323071460167786496$;$2016838339774851072$;$3394661872488026112$;$1577907303233685504$;$3498474695397552128$;$-1851725795302644736$;$-570835640034738176$;$3019588515318900736$;$-2653542310303600640$;$-2604787378286464000$;$-505494242168783872$;$603890221725215744$;$-2697447474166577152$;$-1324174827157528576$;$-3939120325196779520$;$3221842789362113536$;$3450045506650081280$;$-3085415144472945664$;$2844767850120931328$;$-480357954359296$;$-3627161930907376640$;$-2643792500309282816$;$-4203378301050242048$;$3838096347590449152$;$-998967334488296448$;$-317841742843261952$;$2920962161798350848$;$4570760113962682368$;$1312887172374955008$;$3885641510643298304$;$4233307202806694912$;$-3012362293223967744$;$3167245083470391296$;$2500942194558134272$;$-315111054027939840$;$237543331611081728$;$-3999102932559256576$;$-1141382291530525696$;$-1526394099069128704$;$2352356396177900544$;$-1168838822762099712$;$-354746841509020672$;$-2541873829172502528$;$-965727991456326656$;$-311410848497044480$;$705453332713840640$;$1492599881540529152$;$4479916310441965568$;$2716154159942166528$;$-303452988574282752$;$-594349156021116928$;$341158927843047424$;$3393126723069275136$;$290336864458511360$;$-1683639972835714048$;$393458920544302080$;$977830132378643456$;$-1741267446607932416$;$-1125989223784035328$;$-3161194173701813248$;$1383932831831526400$;$-185858563731879936$;$-619177045600068608$;$-319688796495815680$;$-148118319752223744$;$-2181889039421988864$;$-1798869353710729216$;$749360210725292032$;$-52408264759950336$;$-940604390282982400$;$1390737596831897600$;$4218792006351753216$;$-1518811638397486080$;$-535053535372843008$;$2896937319166113792$;$588850925878534144$;$-2107583507050101760$;$4014091361826212864$;$2916698469345811456$;$1951932407489913856$;$118873251955217408$;$-1139979210213329920$;$1302446376933635072$;$-4093818941627415552$;$-4014963002715051008$;$4336409833389136896$;$2410489568254102528$;$692157898271000576$;$-2171303002617470976$;$-652828819998383104$;$-2446775767529470976$;$-831596048294830080$;$-3036568121844647936$;$-4099857299705051136$;$-1748100335062065152$;$2058836702618380288$;$1657210566250067968$;$3941099743276361728$;$-4185275790028241920$;$-97232344121799680$;$-3499135005960154112$;$-1651762638239210496$;$-3997211402177012736$;$128882286945541120$;$1463295298046387200$;$317571343985294336$;$607096525261543424$;$-1754794603762570240$;$-2094529167945345024$;$-3809632162340091904$;$-474511039345931264$;$3158814853021989888$;$3114532317095864320$;$-2604749572578583552$;$2805410973604061184$;$-2662711593375478784$;$-1391279026896055296$;$3259757490990564352$;$-1581486637833614336$;$-4046553840254213120$;$-540428293428459520$;$3122138026614557696$;$-2762426856152012800$;$-3745051934640835584$;$-3557887300080657408$;$-1972046377517533184$;$2242640369282731008$;$-4221055586465870848$;$3252335673018686464$;$3863328616552477696$;$-2775978052432394240$;$-4450630360568581120$;$-811451549629941760$;$-1049522102198036480$;$-199603877556546560$;$-4079316740615470080$;$-2741818040691208192$;$-716266207917224960$;$583397754173418496$;$1544504934707960832$;$-3054732623003497472$;$-871210473440047104$;$2889612906310889472$;$233070762224941056$;$-917211689123517440$;$542509028418924544$;$-4518463588811642880$;$4313832993390697472$;$-1587336021219565568$;$3639686809387892736$;$3094674335397931008$;$-2501134013383326720$;$3134354127897529344$;$3273083408434320384$;$1415376443455564800$;$843040249959065600$;$-2808809376405354496$;$-1718023579167566848$;$-1956333184359260160$;$-3175545429030867968$;$-1764892903120506880$;$2032291074225981440$;$-712609431856651264$;$2159765118750071808$;$-2376203724425402368$;$-4325489076609137664$;$3364588376642424832$;$-2012887603766548480$;$-3759432487227607040$;$-3952464483692864512$;$1571034735280196608$;$4501352486205831168$;$314324257874365440$;$-2379090579535885312$;$-2430544123593043968$;$-1812676012190221312$;$-2572325444880340992$;$-236871385744413696$;$2000813827436053504$;$-2926943912768563200$;$2565938855190333440$;$2059790068344283136$;$-1110893231558197248$;$-3216879847890564096$;$-4488453208247255040$;$195037170542662656$;$2078491979538355200$;$-352740751523433472$;$2092021441774430208$;$-1921662900374040576$;$2206083862913969152$;$-3231439895078589440$;$730349509515421696$;$-1292834461765485568$;$-4539961203776282624$;$-361128587063154688$;$275805038942754816$;$-2536081772288787456$;$-3653690332825760768$;$4041131065922513920$;$-3724551345725943808$;$1328036417321675776$;$-2257950520749260800$;$1280090100955892736$;$2205207787759245312$;$-3976771743523582976$;$-2057131779381775360$;$-1164109764739914752$;$-2492752697104896000$;$-1594392650577743872$;$-4437284793297515520$;$-2519540760248463360$;$-1321080590665975808$;$-1718974135774153728$;$-703409600625948672$;$1200887553244944384$;$-150187502638683136$;$4408565657682225152$;$3999156566742699008$;$3496653132743328768$;$-3497105380376271872$;$1962204030365357056$;$363459673379707904$;$2765577856684478464$;$1152057807306536960$;$2251862684723419136$;$2203274220244849664$;$-4001254493906380800$;$1208970698929547264$;$2982216187500237824$;$3838450901202033664$;$-4096436524515470336$;$3692972105743032320$;$-3029979320170488832$;$2256934774147117056$;$2731747057631066112$;$2817003598553373696$;$1876349954500562944$;$-2740272965912396800$;$-2939244164367629312$;$-2519370982178209792$;$-4120877272875228160$;$-1368321567717026816$;$-1396248014465326080$;$-1458994917253981184$;$2746561544524414976$;$3256684114288878592$;$-4257780547826494464$;$-1669838029725976576$;$1370017071208621056$;$2186189725366865920$;$-3556258013301755904$;$3117840452678910976$;$3056715991008479232$;$-2261706735199284224$;$-3514095230124380160$;$-3071466748435736576$;$2444027752904851456$;$1881200211903237120$;$-1362067747215352832$;$-433309072010566656$;$-1266719328749578240$;$3546959235875405824$;$857530682442600448$;$925992010608994304$;$-4605440320697524224$;$92906054188065792$;$3384287343174632448$;$1212845466998929408$;$-4352084481918223360$;$2617031792241653760$;$249664507896994816$;$678509485963235328$;$3772873710788828160$;$-4227509232197906432$;$-2531950203656817664$;$4399896361808061440$;$4332821500175590400$;$-3888221197882389504$;$3308245539468065792$;$3595198478569183232$;$1154131560998507520$;$3970599042616344576$;$-3503126964455568384$;$-1457595241164083200$;$-3241986442731803648$;$3550870884293351424$;$-644550027108666368$;$-4377883813498544128$;$1440616168361109504$;$3491195772841542656$;$-1190327388033965056$;$-2727683184130538496$;$-4027957169474352128$;$-4138796140514881536$;$-907731078572628992$;$70140658007075840$;$2242753100914432000$;$-4132224789551182848$;$1720383049510241280$;$4128918805961032704$;$-4395388852002869248$;$938510008742896640$;$2632643744880781312$;$2784044483654225920$;$-2856249527921222656$;$3489451028534928384$;$-4560101855260802048$;$-2376542901474267136$;$-2873599099461267456$;$-3764416140081913856$;$-1009431945345722368$;$-2834024317984728064$;$-4155565964097536$;$2283954502976757760$;$1968503551151424512$;$791635529421872128$;$1210179905758432256$;$1141215342399602688$;$-3880726647432727552$,髢㟙₏큌Ⰲ턢㼘薔ᶷÂ㒔睍⭈⢩⁧橎綻ុ懤ﶨ鵇ⲃ蟩ᩲ衶ɒ߼⻢궇螕鉁䝞뫅刹푡〛╷픐榓宵淞⼠ﲒ틲琋㢺╅鄈郑趎胏බဤ⇢腧쀂쵡䅝跓猉䝪셜舧톧ͳ塤鸔槵疛㚔軦궕㗉ꆑ놁ᝯ⒭떦ֈ烢ឲኯၨ珙囩ꮪ菺⛜럂 ೟呑녫䦰㣑㨪㒠䚩핋∌쑹苖䳬嬭ꎆ秸澞적⻗☊䍿튮넢䎕孑﫟轀揂逃œ쀿诲支橴ᛐ縚爃≙⒒뽠ꌩ㸧씱﵂쎦ﶞ즛䶿훑藍丌諍匸҅휻芋詈꽱-⛿陋﵆펑㵰㹛圛责ᜥ䞾ए䭽裉뚂猧쿧⎞餻ㄠ㈻fl䮘誛㧩鼢گೌ蜺䬓ࣲ윜惋曩늜䑪᪰筌테뻘朹痑봱劂ᜮჃ⟸t쯕違툊὚♞벓癩龘⢺ڦ럤洸齬∰ᨛ뼹꿫甃㠘幍긖ꌵ륲ᄆ⿮侶斧Ꝝ렦ﲼἫ﷭댪ﶻ뼧僰챜䃿樛橜殴緼뱻䙸誈쐅ꡠⲛ栏⥑脌箟큟䌩㊧⸙ᮀᖑᮧ电嵻Å䒢俬예५㋎䖿|ᐱ棩刯뉃ꠗ賓콅⨨䶉缴鮄툃拞臣⟇뾝꫊绌y涌꜒쀻द䝽槃걀䜓뗧㿧遅Ṛ슑⺐ꪉﴖ䦢뺗㜝娭㝣, -10,,1443154422.98,,"/n-0 ( -&iJ$l*L-g/l1yK程3NĮZ|f>M:W~I+lM,YeYĠQ:x+ܴxo+(i=|b(/ ɇG ߽\sP0X[[8`bjNH6f3fzBCn",,"{""a"":4.544125131002947e+307,""b"":""\uda9c\ude59\uac67\u17f8\u13ba\u4eba\u8e32\u06c9\uf879\ud82c\u900c\u7252\uddca\u63c3\uab4a\u878e\u2194\u5d77\u6c4b\u67dc\ufa9b\u3079\u3967\ub665\uf821\u465e\u8fec\u55c8\u60ce\u2e20\u5e78\u8341\u9e92\ud18e\u4252\ue637\u203a\u3eb3\u97d9\u099d\ua4dd\u655c\uebd6\u6e6d\u37ff\uf926\u2690\u16d0\u9d78\u8282\ufe59\ucc85\udc06\u5437\u8527\ud15b\ue22e\u1ff4\u2397\uc025\u6ff7\u20d8\u785d\u9a38\u9446\ua1c0\uaf32\ub973\u110d\u3aa2\uf163\u1f15\ub622\u1e08\u307e\u9bea\u345a\u69f2\u22b8\u8b1f\u2f00\u06da\u565e\u3b8a\u309d\ubae0\u1a95\u5c52\ua6b0\uebef\uffae\u0931\u0fc4\u1377\u45a9\u4d13\ubb93\u5126\ufcea\u21b6\u5b23\u9637\ucb55\u0afd\uf601\u82a9\u5e65\u0c50\ube81\u176b\u1bbc\u9725\ueda4\u9dd3\ud05a\u44bc\u6a35\ud3a3\u55c7\u0a47\u0d55\u2eec\u8122\u57d8\u7e98\ucb74\u080a\u2d75\u04ac\u940d\ud969\u0529\ub436\u0de3\u79c7\u30a9\u8a43\u0b51\u6948\ud70c\u080f\u8cdd\ua697\uc83e\ue4a2\u510d\u647b\u0efc\ud90f\ueb11\u4c68\u89a4\u0b41\u8e62\u4209\udf4e\u2eeb\ubc5c\ud8f6\u366e\u3174\ua254\u9d71\ue161\u2cdd\ue8cc\uce7e\u36b7\uae64\uec4a\ued7d\u0d05\u245f\ueab8\u25e6\u6298\ub724\u989d\u8eb2\u2dc2\u97cf\u459e\ufd82\u717a\u3510\u1e43\u3077\u0756\u657b\u5f1a\ud217\u3eb1\uce22\u7f2c\u385c\uab1b\u5b50\u5553\u0ec2\ueeca\u8400\u2069\ufff0\u1be7\ud25e\u3ac9\u7ee3\uf679\u8f92\u51ee\u9af6\uc8b7\ude4b\ucc45\u8f01\u841a\u84ae\u9a0d\ua65e\u1897\u94a0\ub55d\u254f\u88aa\u660b\u7221\ub59b\u3395\ubc48\ueb7c\ubbff\u2a82\ubf8c\ubd46\u2bc2\u2502\ub82e\uf5b0\u6507\u191b\ud3e0\u228b\uc29a\ue05e\ub632\u97b7\uc8c8\u4e2d\u6497\uc3c7\u2fba\u2060\uc87a\ua796\u7204\u6429\u8053\u9ae7\u40da\u3223\u95bf\u6126\u4396\u6286\ua1d3\u8608\u79e3\ucb51\u6808\uc495\u7d07\u50b2\u2111\u3ba2\u576c\uca01\u5a1c\u0451\u0157\u5e34\u78c7\u7cd7\u3f87\u0921\uee09\u0543\u7ae2\ue843\u834b\u2808\uaa0f\ua177\u02f4\u38e9\u15a8\u86f7\u3086\ue4c6\u8421\u1571\u8c61\u8e83\u1d80\u6e10\ue7b4\u603a\u1ec9\u5524\u4b29\ud4a2\u65d5\u6964\ua89d\u957c\u8ef7\u7cb2\uf555\u61e7\u0121\uf421\u6cd8\u3ee4\u8fb5\ud1b1\u75f5\u774c\uce8b\ufb8c\u49c4\u51a7\u13cd\ud3ac\u6b4e\u8a6c\u8685\u9d7f\ufa71\ue38e\u8a45\u6535\u8727\u2b8e\u4a48\uffba\u61a5\u4eb1\u1b61\u6cca\u0200\u6e23\ub3c7\u3682\udae9\u01a6\uf270\u8dcd\u1543\u4f88\ufc46\u17e5\u60f5\u55ca\u6e13\u80d0\u9165\u4446\ufbc5\uf150\u26b6\u6251\ud4d9\u07f7\ue0be\ua554\u1eba\u167c\ubfdd\uc8bb\u8462\u9f69\u3661\u415d\ucb9d\u1f4f\u646c\u85c1\uc277\u9d1b\ud179\ua659\ub7a4\u4c78\u1059\u69c4\ud4af\u9fb0\u83cd\uc079\uc187\ua704\uf786\u8701\uf8df\u5169\ub449\u2f6b\u1ead\uf6d9\u1bf5\u22e0\u6822\u6f12\u5a74\ub6cb\ud93d\udd87\ub31c\ucfe1\ud18c\uf19b\u9dab\ubbdf\uc7ac\u3e0f\ucca0\u4866\ub12e\u9df1\ub6ac\u480d\ub829\u20c3\u7c42\u9a1e\u6a3b\uab56\u76ee\u7744\u9d90\u429b\u08f9\ub6cc\u0bb4\ua083\u72d3\uea6c\uf5bb\ua0db\u340b\u9690\u88b1\u1a73\u60b1\u28cb\u254b\ueac9\u739c\u32cd\ud9fc\u153e\u4762\u5947\uedd7\u3a5c\u8ace\u3910\ua6cb\u505d\ucb83\ueace\u7b80\u6fec\u7c5f\u6117\u17c6\u46b4\u0377\u3515\u5056\ub8f3\ub905\ud5b9\ub662\uf6c3\u194c\u8bb1\u2809\uf519\u8db5\u8b86\u3c2c\uc526\u798a\u1828\u98ee\uca8b\uc714\u6b1d\uea1e\u9ecc\u2418\u541a\u3bab\u60ea\u65d6\u58f4\uf44c\u091e\ucfcb\u48fa\ua3be\uaa72\u0895\u930c\ud49f\u0a6f\uc306\uf9f6\ue07c\ue4d2\u5752\ue88d\u15d9\ub5dd\u76c9\u5a21\u0979\u5605\u3da0\u8e79\u7941\u6448\u7f38\ua6d9\u91f5\ubb3e\uc320\u68ed\u2665\u05c0\ub82c\u0c35\u713a\u765d\u0a4f\u3723\u96f3\u3274\ue893\u16a7\ufdbf\u143e\ucf77\ueae5\u6a55\uf211\u5393\u64d7\u5604\ua4aa\u2a90\u6c4e\u0691\u918f\u042f\u8e49\ub4bf\ucb29\u01a1\ud806\u21dd\ucd6a\ued81\u96ff\u345f\u81bd\u4e13\u873a\ubc53\ubae1\u8028\u08f4\u5072\u4bcc\u8ac6\u6bd0\u62bd\u7ca4\u488a\u87ff\u6bfb\uc5e7\u3edf\u370c\u3564\uac11\ud41c\ub1fd\ud664\ud68c\u7dee\ud934\u22d1\u598f\uc79b\ud163\u603b\ud2b9\u87b4\ub497\u960a\u1d3f\u88ab\u4048\u7c4b\u20b9\ue9df\uc97e\u09e9\ud878\u066a\uccb6\uae77\u0e93\u206f\ubf15\ufe5c\u7e4c\u6c62\ua8db\u3dad\u6765\u10fd\u2aa6\uc888\u7ba1\ue92e\ue54a\uec0b\ud13b\u05ce\u6ffa\u6d50\uc58f\u056e\u9ba2\u1361\u7c05\u2d56\ud5da\u0d36,\ub302\u4179\uc0a0\ub53c\u29bd\ud8d3\udeaf\u8aeb\u229d\u38ee\u9036\u5529\u669b\uc929\u2914\ua761\u2e4e\u9df7\ue413\ufd68\udb17\u54de\u9662\uaf4e\u5c06\u144a\u11c7\ue8bb\uafb7\u8e4b\u4dd0\ufdeb\ub824\u9e39\u54fb\u7a94\u1dd4\ucc2b\u34a2\u0b73\u013b\uf974\u377e\ue244\u2a71\u2c32\u10d9\u01b0\uaa00\ucae1\uf93e\uf629\u7ea2\u4a26\ue963\u87b5\ufd7c\u964e\u9054\ud57c\u45c6\u2ca1\u160e\u4834\ua641\u3f54\ub1d0\ufcce\ub49e\u238f\u657e\u5828\u4987\u02d2\ue4eb\ua562\u9ca3\u1a75\ua8cf\u06a9\ud458\u3382\uf2a8\u64e4\ucfbc\uc120\u9e56\ua839\u6add\u08db\u0227\u541f\u15d8\u47a6\u9e84\u231c\u381b\u2cce\u4b4e\u3e13\ufdd6\uc9c4\u645e\ud7ca\ua7fe\ucd8a\u3d01\ub56a\ua51e\ub96b\u1099\uc056\u0ca9\ubb64\ue4cc\u0a5c\uaf40\u709e\u0c9e\ud6b5\udea6\u60eb\ufbae\ubcfb\u8b42\u0d81\u4cbd\udcc5\uf333\u1814\ub506\u17d7\ud4ae\u70dc\u1e17\u3104\u5a33\uab34\u53c7\u1a41\u8d38\u4984\u454e\ud6b0\u0980\u91e0\u60fe\u7405\ue831\uc23e\u72ef\ufbd7\uf281\u5cb3\u6213\ue61b\u81d4\u6995\u158a\u8b1c\ub856\uf991\u498d\ue7a4\ucdd3\u8062\u0ab9\ua8ce\ue5b9\u7e64\uaa3f\u8845\u3873\udd52\uafe6\ua75d\u88a5\u8542\u2571\u1dad\u11b7\u9574\u1d57\ud4bd\uc5b4\u81a1\u52e4\u7fb6\u3458\u3d8c\uc609\uacaa\u8b20\uaca4\u3fcb\ubda6\ua9e4\u25d1\u0116\u3ff5\uc4ce\u6632\u9341\uca0a\u1b86\u4adf\ue79a\uce55\u33b0\uc8a3\uc3d2\ua342\u431c\u0bff\u1b13\u85d6\ud36f\u0c70\u55bd\u278b\u6dd3\u6491\ucc7b\udc67\ua832\uf7c6\ue106\u3cd2\ue920\u0ff3\ub98e\u6630\uda3c\ueccb\u6953\ua708\u064f\u2cbd\ua56e\u2b31\u1396\ufef1\ucd01\u449d\u031c\u54a1\u017f\ubca3\u1c16\uc916\uc6bb\ua498\u8444\u6167\u4790\u7706\ufe24\u1137\u4775\u6782\u78cd\ufab4\u4ff5\ub220\ue219\u6816\ubb6d\u277f\u96f8\u7b25\u80d3"",""\u798f \u9152\u5427"":{""fu"":1.4388712362567243e+308,""bar"":1.7043160172242623e+308}}",,"-2035729262749710336 -1373395015849669632 --2311265406217193472 --2493395400659471360 -1326530885872234496 --2786636093274534912 -1730962800618697728 --687848879886849024 -2103007713501630464 --1217389963518349312 --833394907526747136 -4287227629721543680 --3996698714981445632 --3859472974392289280 --3275919473944992768 -456609460410645504 -784429715199258624 -2472721958406241280 --4607957909833355264 --2943252999130873856 -87277248373718016 --1371832940807362560 -4217399540314529792 -1591927254295215104 -1032384622766316544 -2423573037418249216 --3724195115095746560 --2677626637026811904 -4139319665085030400 --1167302156578566144 -2304230780846025728 -575429090326684672 --3961103615111203840 --2680102449421348864 --60853602634661888 --371622380638819328 -1315839390429555712 --977999600538182656 --3321546400416065536 --2698993580074395648 -1863229394320955392 --2580152991211198464 --3584703048037359616 -1523173725433370624 --1041748734116384768 --3320058866782194688 -4323870010622171136 --4555552620976164864 --2251661203177582592 --3502847692260804608 --3175618957361629184 -4372444672818063360 --3372558397708398592 -130046247521648640 --2487973903731050496 --2475265955794167808 --1084441638062445568 -712569782484529152 --3810680615253710848 -610085643414487040 --178080273020679168 --1037263110302897152 -387054810446513152 -1706320648957783040 --4490959264803856384 --847388190823539712 --1613292431324128256 -880721748293526528 -1205306524193084416 -412474691836547072 --2715931055963440128 -1485531668077427712 -3540220812419780608 -3731574991460738048 -1265539704028396544 --2454836439590659072 --598791130444353536 --834522422373918720 --1722082609394051072 -4503616503127933952 -438930225282698240 --3073832796302174208 -1533192734370788352 --3827861914575612928 --3772593471126728704 -2826309619786545152 -2871087030491710464 --2951571837532811264 -4202660045915558912 --2695722369901430784 -1329072614276205568 --71078979601924096 -3115778729313957888 -1468680769845766144 -738256315738186752 -4292491369105935360 --2600432063972954112 -1381932393360642048 --905778460980707328 --270644681260385280 --2545220360287851520 -433345399634962432 --3697186126938133504 -603653544498387968 --3120095951359090688 --1426717722190787584 --3734907099047936 --19555402055891968 --3341346316057875456 --4112213184216051712 -2971542262217686016 --4252177197090886656 -2985760573588330496 -4079251364071928832 -4379230198270511104 -2129531109520316416 --2287358479539035136 -4441918800416679936 -554161778273393664 --2822096052364821504 --428778482830135296 -1834601514952536064 -1909832975889645568 --3585360777273640960 --1596817738598268928 -1483540888251167744 -2873142697019999232 --1833451033297907712 -909165976855773184 --4305670123561672704 -402531967091165184 -1009888807229717504 --3872353193054790656 -786982308030131200 --768447523927572480 --3232178949840260096 -443906964194780160 -3102691963048020992 --2145264354139167744 --2967743413776578560 --2672157970978375680 -814537313106325504 -3393498858754890752 -516823944975907840 --2183019735598221312 -281019642124824576 -1507950710001515520 -4306459960833558528 -409508041401037824 -1773913407260174336 --845772661089953792 --2006129960488997888 --542970180508069888 --4311403166696406016 --2607746460314600448 --1286861667778302976 -2651670266377917440 -1384203104216790016 -3871419363064914944 -2323165101724723200 -1385000745123051520 --2794998576901594112 --3005418115862436864 -4580054112979524608 --1277833662259523584 --2361851200757430272 -470813771812196352 --1533826996616024064 --1205968383118072832 --1693310942622565376 -185275375394950144 -2142797528803706880 --4562842006533536768 --1806761490071022592 --3071908767074935808 --4030876619768720384 --334849410231301120 --2679242548262174720 -3591641406849191936 --1359675635974638592 -3022864510389922816 --2073258251944968192 --4322759591060601856 --2659103110759510016 -926359435275703296 -4579179597523040256 -1323128716649040896 --1342749981397005312 -2673651396432490496 --3296987877808116736 -3615984408995689472 -1865803010543012864 -3315998043069679616 --3770881041110967296 -3383270793725671424 --531338191684968448 -3913096150500773888 -747466041099076608 -2530737406566243328 -2873826940449216512 --2139777128608826368 -780419334101989376 --1957886196565528576 --4310913365775324160 --1161732483172180992 -1239005316481443840 --3971381444491504640 -2833170646487577600 -1879772167799346176 --1070674788393576448 --3768724495648900096 --3680531291077597184 --3009417058221851648 --258349029741850624 -217476294886543360 --2193697495865847808 -3306179100338843648 --933245766046101504 -3635836792856729600 -4324327023096851456 --2469542428252307456 --1196682778446003200 --1432251024950969344 --4198168179309254656 -2025319614359014400 --989814206580918272 -674368535556248576 -2424851305341264896 -1277281352811809792 -3361247272197981184 --2053274892523464704 -2789302940864676864 --3659061318959178752 -1528071746342678528 -1259808412730606592 -3320652918821095424 --915323615730336768 -4520318145416027136 --1344081201092670464 --2448964793172287488 -2617257897752518656 -1484387480928930816 -4590785632117112832 --4133781426228814848 -4294141823269639168 --754630518911525888 -3231512578078411776 --1081327076594897920 -3821514556593920000 --2491719943471216640 --4588064659923656704 -3829722542953189376 -733707967168609280 --3411780297301520384 -3079231506097397760 -3087132307145739264 --2582594093067943936 -4063795151747665920 --1621170817087410176 --198023411576160256 --3328857328280175616 --4245354827425115136 -1834170304329378816 --61410508333988864 -2121357340892992512 --4595488430384311296 --692946049245886464 -837892993058116608 -4249249728337644544 --986925610784777216 --1472891907801305088 --3536195576693474304 -2991617034865756160 -933833922056609792 -1039937412653732864 --3706854499605981184 -804537148587248640 --4249450847056663552 --3878173937512659968 -875922054093128704 --1429631112560109568 --484303409674572800 -4499657845467921408 -2007925483479826432 -2477269081510706176 -2683740640081825792 -1572612168872461312 --3505450946085166080 -1814978466553328640 -4033553675757049856 --579646960170705920 --88680798485974016 -3725090030814208000 -1267198849852659712 -663234264048982016 --2419058779441813504 --345115214033770496 --2287832279215825920 --3017884463188533248 --1971092184166761472 --392893886619598848 -3836184223065778176 -1265099449718964224 --2698730632530957312 --1462057424668772352 -1839820885591242752 --434272686790607872 --980700695358412800 --3567445342942391296 --3126155580212358144 -2850316243419846656 --4310395083769845760 -4020580803281997824 --4587381931643163648 -4062634365201771520 --862457597204785152 --2359905094404892672 --4557835674804039680 -502999264020417536 -1583955006689710080 --2073939677488434176 -711844781495223296 --3007811382177467392 -1475667162670772224 --4336385504836623360 -3119212782675156992 --2529976757832524800 -131703189766797312 --3209362883943901184 -2581621908237366272 --4022718781430859776 --3715621704924313600 --365496115820884992 --4418109083177902080 --970277511335316480 --1799547499568454656 -3514537936358063104 --814102435717966848 -2770163793939742720 --2085217684522552320 --384825700262420480 -1670684240407078912 -3816354136103160832 -2531920579445115904 --1013586320050848768 -1418050350629439488 --4446969196600463360 -580575734565035008 -1794022487240891392 -1223421155020675072 -3419421119997988864 --3926605593691608064 -3271358377530382336 -4093984339683034112 -1840692535708034048 -277731487171397632 --4588554153986705408 -3070674647987564544 --3550715929126457344 --517709270862631936 -4353766722169261056 -590852235524681728 --1754701174990857216 -2670303655095557120 -184887805089815552 --1221523081781121024 -348504286268308480 --1265007369975114752 -3801669392341761024 --1817232028371291136 --2218607040872397824 -1919852425754017792 --1691519393883463680 --2562422987721282560 -837633620235521024 --390479856346438656 --7521431170197504 -4389305676119501824 -2525034894643141632 -925950755841308672 -3091591701832625152 -2942315793936744448 -2243685893147459584 --794306477070080000 -4324767690475656192 -776856730217791488 --1358263544180771840 --2673136791925284864 --2395199496562670592 --402292505315341312 -3520934991314533376 --2014463856129633280 --310345887703717888 --3166127802474122240 -1439823476379907072 -3328863532394779648 -3333503677243512832 -4482282356491323392 -1884342613954918400 -3468736193687335936 -2398014867751085056 --4459211909306838016 -3142309950868182016 -2686453509809184768 -2292115756383549440 -4589460478421276672 --1867632734071224320 -668587371363563520 --1533502179969172480 -3756449947769886720 --2426432253828238336 --4469239909534126080 -4286367812945560576 -3403477585890369536 -2198663842770500608 -107866943628541952 --4010714212992443392 -208904298666774528 -1511145245656146944 --501584386142457856 -3229730385008235520 --4108552607014214656 --3257373376270231552 -3994244213365551104 --4558534563028914176 -1620883559999538176 -3771482514109103104 -3188987079752363008 --4110087887532963840 -3085020989644895232 -2390266698483594240 -3919734847022704640 -1168243724242032640 -1775074475616564224 --2571773822001471488 --1232562143357125632 -3666168925577586688 --3081180850663074816 -3618433195144336384 --1924738078837133312 -1348213585389858816 -164102511496837120 --2004114259306850304 -4547849628167258112 -3739532540802265088 --917557588960404480 -4149204282273277952 -3266315589871326208 --2979152094976071680 --1857833925312388096 --4306406481486908416 --2900287234989075456 --3416450501995070464 -2151548372763318272 --706111847047995392 -3617423678396282880 --3241406272876243968 -2379226122802558976 -2416405912167776256 -4125682763949534208 --3872869379538854912 -3013285759100137472 --4017629829997124608 -4157240600135349248 -2068205449395082240 -423148214953505792 --1522514386802006016 --1609595243205188608 -585350919618260992 -524893188289482752 -1646100744214829056 --490033903987579904 --3704353482876184576 -1066099131654969344 --3025735185994754048 -683531615008664576 --481671993788789760 --1046621741696340992 --432665414474811392 -4577064656628573184 -320214222874301440 -2865311216106337280 -1465916751023683584 --4408003220482930688 -3400692872991227904 --2143481368166391808 --3565369301921041408 --4342957611586117632 --2003831023046714368 -4058871510105734144 -4487310879918499840 --2618274473942612992 --3909812717613040640 --3281771543969392640 --2829095828538535936 --3590500798315727872 --197138793398611968 --3377020893074122752 -2372427722108101632 -3355391124480806912 -4458703902201346048 --2742832025473449984 --3365125877446200320 --4205722242464964608 --926790364717959168 --4291317731951801344 --156205908093127680 -3859860720284632064 -4348212942901114880 -4043272629229337600 -2034713718288251904 --1420588001706659840 -4293982274475709440 --3289386771453274112 -4329404316417627136 --16220671431006208 -2066814003057782784 --1002397589325291520 -3593921779508516864 -4371186503413531648 -3820962162083577856 --4363375950430524416 -3431889183800627200 -3937036594169532416 -3882513716079179776 --3563572300578234368 --2414228383603021824 --196507237379148800 --2710137514536776704 --2453197016310202368 -1491971968567851008 -1498257034918600704 -4206110836635414528 -92637038968286208 --3540955165273263104 --2662328217159182336 -2512132723269625856 -2627811229979037696 -10222241202666496 -800551570116154368 -2891926714296535040 --728225226850214912 --3832037683577396224 -3516717083262225408 -2433156251182852096 -240978822535986176 --3291345677715901440 --2385643952018299904 -2200504631308713984 --3604322999435132928 -3227973327090658304 --3583951440164290560 --2511533610893546496 -2925190148395837440 --4086484762791576576 --302499805680386048 --2544974439336877056 -3657955323488953344 --2602103791158005760 --3825256972797150208 --3231875844850372608 -4119380501504224256 -4549535130854062080 -2549149679213941760 --2309827773774300160 -2085783041066648576 --3247948504960334848 -2631130120002215936 -3842085169827872768 -3872476970805105664 -1126848854674908160 --206594131457948672 --768731485311937536 -216420185975966720 --936704030359383040 -1549926508058335232 -2844637776260982784 --2887447473911855104 --3049287937286821888 --1565502614846471168 --26546713593181184 -3279011524113522688 --860700837765724160 --3515378912761767936 --3760211516731232256 -3195868481911979008 --2961172449584453632 -2317635469480954880 --1232320154993886208 --3838085459151333376 -1519822575139928064 -314117768991156224 -2518109010432861184 --1117664250792901632 --1844993090237846528 --3789289859251110912 -2623468285113933824 -806697337566483456 -1852674012506180608 --4247692122497880064 --3372083622379623424 --3207804028785339392 --2707504645685112832 --450702558488126464 -1738323761776202752 --4062833602564120576 -2102656715055514624 -4298198786049320960 -3575449522445490176 --3730341926869405696 --3012765722541888512 -1849552538482011136 --950841807199427584 -2996136152289343488 -3333896664181211136 --3037001088514403328 --1391658834863480832 --4272526704390511616 -3665801848697906176 --1490558916492735488 -24561948170673152 -2347954682826739712 --4118255252054018048 -3247407788355598336 -1861840409158162432 -2704201356737012736 -207002968321060864 -1445764255719124992 -4600989862475482112 --2659470945691671552 --4160982172014737408 -4061658352260361216 -1880698426401989632 --2219018170333542400 -4594149090270254080 -1467474772059650048 --4260230695898074112 -3804419260902768640 -2064073187078491136 -2326337689021462528 --2715507860616259584 -1572342251159814144 --1702339103852285952 -1521347287815453696 --1083352655274769408 --3852343061575257088 -3310025917637358592 --3369070472646395904 --3076797658771563520 -1210107810684116992 --2354160587291281408 -363332624936222720 --3573524206100077568 -1171080261030032384 -2530485529690779648 -3065907854270782464 --1890145162657257472 -2159506188453946368 -1043410599102746624 -2371559874820945920 -1059900561426844672 -3088725678408830976 -2629457242965550080 --52654417163308032 -1868314579945714688 --2624156303662820352 -866787238853628928 --4383767982475531264 --778418597539945472 -52951701083700224 --1128261760871218176 -1829771874113077248 --2473713071703111680 --2326941035989425152 --1425187744124817408 --390762571239370752 --3393279364657461248 --4526429758415714304 -2718431348017785856 --4052700182783734784 --2429017453501425664 --3119852977028747264 -2227052078202452992 --3706103329078658048 --2671460477583731712 --4173222361518348288 --48269117793858560 -557010075749063680 -3868593674948203520 --2318439753182312448 --802523033376823296 -2563319108845676544 -3032543886374464512 --3477873356388348928 --4605071969306397696 --923167580179356672 --356635935990899712 --3551221984548496384 -906016334976301056 --2228946588490579968 --1940785291129678848 --3940804116888545280 -4063950054130837504 --185498291418338304 -3353069583278605312 --2157210046604792832 --3089162613121335296 -1240777540272614400 --2288193104696010752",$-2035729262749710336$;$1373395015849669632$;$-2311265406217193472$;$-2493395400659471360$;$1326530885872234496$;$-2786636093274534912$;$1730962800618697728$;$-687848879886849024$;$2103007713501630464$;$-1217389963518349312$;$-833394907526747136$;$4287227629721543680$;$-3996698714981445632$;$-3859472974392289280$;$-3275919473944992768$;$456609460410645504$;$784429715199258624$;$2472721958406241280$;$-4607957909833355264$;$-2943252999130873856$;$87277248373718016$;$-1371832940807362560$;$4217399540314529792$;$1591927254295215104$;$1032384622766316544$;$2423573037418249216$;$-3724195115095746560$;$-2677626637026811904$;$4139319665085030400$;$-1167302156578566144$;$2304230780846025728$;$575429090326684672$;$-3961103615111203840$;$-2680102449421348864$;$-60853602634661888$;$-371622380638819328$;$1315839390429555712$;$-977999600538182656$;$-3321546400416065536$;$-2698993580074395648$;$1863229394320955392$;$-2580152991211198464$;$-3584703048037359616$;$1523173725433370624$;$-1041748734116384768$;$-3320058866782194688$;$4323870010622171136$;$-4555552620976164864$;$-2251661203177582592$;$-3502847692260804608$;$-3175618957361629184$;$4372444672818063360$;$-3372558397708398592$;$130046247521648640$;$-2487973903731050496$;$-2475265955794167808$;$-1084441638062445568$;$712569782484529152$;$-3810680615253710848$;$610085643414487040$;$-178080273020679168$;$-1037263110302897152$;$387054810446513152$;$1706320648957783040$;$-4490959264803856384$;$-847388190823539712$;$-1613292431324128256$;$880721748293526528$;$1205306524193084416$;$412474691836547072$;$-2715931055963440128$;$1485531668077427712$;$3540220812419780608$;$3731574991460738048$;$1265539704028396544$;$-2454836439590659072$;$-598791130444353536$;$-834522422373918720$;$-1722082609394051072$;$4503616503127933952$;$438930225282698240$;$-3073832796302174208$;$1533192734370788352$;$-3827861914575612928$;$-3772593471126728704$;$2826309619786545152$;$2871087030491710464$;$-2951571837532811264$;$4202660045915558912$;$-2695722369901430784$;$1329072614276205568$;$-71078979601924096$;$3115778729313957888$;$1468680769845766144$;$738256315738186752$;$4292491369105935360$;$-2600432063972954112$;$1381932393360642048$;$-905778460980707328$;$-270644681260385280$;$-2545220360287851520$;$433345399634962432$;$-3697186126938133504$;$603653544498387968$;$-3120095951359090688$;$-1426717722190787584$;$-3734907099047936$;$-19555402055891968$;$-3341346316057875456$;$-4112213184216051712$;$2971542262217686016$;$-4252177197090886656$;$2985760573588330496$;$4079251364071928832$;$4379230198270511104$;$2129531109520316416$;$-2287358479539035136$;$4441918800416679936$;$554161778273393664$;$-2822096052364821504$;$-428778482830135296$;$1834601514952536064$;$1909832975889645568$;$-3585360777273640960$;$-1596817738598268928$;$1483540888251167744$;$2873142697019999232$;$-1833451033297907712$;$909165976855773184$;$-4305670123561672704$;$402531967091165184$;$1009888807229717504$;$-3872353193054790656$;$786982308030131200$;$-768447523927572480$;$-3232178949840260096$;$443906964194780160$;$3102691963048020992$;$-2145264354139167744$;$-2967743413776578560$;$-2672157970978375680$;$814537313106325504$;$3393498858754890752$;$516823944975907840$;$-2183019735598221312$;$281019642124824576$;$1507950710001515520$;$4306459960833558528$;$409508041401037824$;$1773913407260174336$;$-845772661089953792$;$-2006129960488997888$;$-542970180508069888$;$-4311403166696406016$;$-2607746460314600448$;$-1286861667778302976$;$2651670266377917440$;$1384203104216790016$;$3871419363064914944$;$2323165101724723200$;$1385000745123051520$;$-2794998576901594112$;$-3005418115862436864$;$4580054112979524608$;$-1277833662259523584$;$-2361851200757430272$;$470813771812196352$;$-1533826996616024064$;$-1205968383118072832$;$-1693310942622565376$;$185275375394950144$;$2142797528803706880$;$-4562842006533536768$;$-1806761490071022592$;$-3071908767074935808$;$-4030876619768720384$;$-334849410231301120$;$-2679242548262174720$;$3591641406849191936$;$-1359675635974638592$;$3022864510389922816$;$-2073258251944968192$;$-4322759591060601856$;$-2659103110759510016$;$926359435275703296$;$4579179597523040256$;$1323128716649040896$;$-1342749981397005312$;$2673651396432490496$;$-3296987877808116736$;$3615984408995689472$;$1865803010543012864$;$3315998043069679616$;$-3770881041110967296$;$3383270793725671424$;$-531338191684968448$;$3913096150500773888$;$747466041099076608$;$2530737406566243328$;$2873826940449216512$;$-2139777128608826368$;$780419334101989376$;$-1957886196565528576$;$-4310913365775324160$;$-1161732483172180992$;$1239005316481443840$;$-3971381444491504640$;$2833170646487577600$;$1879772167799346176$;$-1070674788393576448$;$-3768724495648900096$;$-3680531291077597184$;$-3009417058221851648$;$-258349029741850624$;$217476294886543360$;$-2193697495865847808$;$3306179100338843648$;$-933245766046101504$;$3635836792856729600$;$4324327023096851456$;$-2469542428252307456$;$-1196682778446003200$;$-1432251024950969344$;$-4198168179309254656$;$2025319614359014400$;$-989814206580918272$;$674368535556248576$;$2424851305341264896$;$1277281352811809792$;$3361247272197981184$;$-2053274892523464704$;$2789302940864676864$;$-3659061318959178752$;$1528071746342678528$;$1259808412730606592$;$3320652918821095424$;$-915323615730336768$;$4520318145416027136$;$-1344081201092670464$;$-2448964793172287488$;$2617257897752518656$;$1484387480928930816$;$4590785632117112832$;$-4133781426228814848$;$4294141823269639168$;$-754630518911525888$;$3231512578078411776$;$-1081327076594897920$;$3821514556593920000$;$-2491719943471216640$;$-4588064659923656704$;$3829722542953189376$;$733707967168609280$;$-3411780297301520384$;$3079231506097397760$;$3087132307145739264$;$-2582594093067943936$;$4063795151747665920$;$-1621170817087410176$;$-198023411576160256$;$-3328857328280175616$;$-4245354827425115136$;$1834170304329378816$;$-61410508333988864$;$2121357340892992512$;$-4595488430384311296$;$-692946049245886464$;$837892993058116608$;$4249249728337644544$;$-986925610784777216$;$-1472891907801305088$;$-3536195576693474304$;$2991617034865756160$;$933833922056609792$;$1039937412653732864$;$-3706854499605981184$;$804537148587248640$;$-4249450847056663552$;$-3878173937512659968$;$875922054093128704$;$-1429631112560109568$;$-484303409674572800$;$4499657845467921408$;$2007925483479826432$;$2477269081510706176$;$2683740640081825792$;$1572612168872461312$;$-3505450946085166080$;$1814978466553328640$;$4033553675757049856$;$-579646960170705920$;$-88680798485974016$;$3725090030814208000$;$1267198849852659712$;$663234264048982016$;$-2419058779441813504$;$-345115214033770496$;$-2287832279215825920$;$-3017884463188533248$;$-1971092184166761472$;$-392893886619598848$;$3836184223065778176$;$1265099449718964224$;$-2698730632530957312$;$-1462057424668772352$;$1839820885591242752$;$-434272686790607872$;$-980700695358412800$;$-3567445342942391296$;$-3126155580212358144$;$2850316243419846656$;$-4310395083769845760$;$4020580803281997824$;$-4587381931643163648$;$4062634365201771520$;$-862457597204785152$;$-2359905094404892672$;$-4557835674804039680$;$502999264020417536$;$1583955006689710080$;$-2073939677488434176$;$711844781495223296$;$-3007811382177467392$;$1475667162670772224$;$-4336385504836623360$;$3119212782675156992$;$-2529976757832524800$;$131703189766797312$;$-3209362883943901184$;$2581621908237366272$;$-4022718781430859776$;$-3715621704924313600$;$-365496115820884992$;$-4418109083177902080$;$-970277511335316480$;$-1799547499568454656$;$3514537936358063104$;$-814102435717966848$;$2770163793939742720$;$-2085217684522552320$;$-384825700262420480$;$1670684240407078912$;$3816354136103160832$;$2531920579445115904$;$-1013586320050848768$;$1418050350629439488$;$-4446969196600463360$;$580575734565035008$;$1794022487240891392$;$1223421155020675072$;$3419421119997988864$;$-3926605593691608064$;$3271358377530382336$;$4093984339683034112$;$1840692535708034048$;$277731487171397632$;$-4588554153986705408$;$3070674647987564544$;$-3550715929126457344$;$-517709270862631936$;$4353766722169261056$;$590852235524681728$;$-1754701174990857216$;$2670303655095557120$;$184887805089815552$;$-1221523081781121024$;$348504286268308480$;$-1265007369975114752$;$3801669392341761024$;$-1817232028371291136$;$-2218607040872397824$;$1919852425754017792$;$-1691519393883463680$;$-2562422987721282560$;$837633620235521024$;$-390479856346438656$;$-7521431170197504$;$4389305676119501824$;$2525034894643141632$;$925950755841308672$;$3091591701832625152$;$2942315793936744448$;$2243685893147459584$;$-794306477070080000$;$4324767690475656192$;$776856730217791488$;$-1358263544180771840$;$-2673136791925284864$;$-2395199496562670592$;$-402292505315341312$;$3520934991314533376$;$-2014463856129633280$;$-310345887703717888$;$-3166127802474122240$;$1439823476379907072$;$3328863532394779648$;$3333503677243512832$;$4482282356491323392$;$1884342613954918400$;$3468736193687335936$;$2398014867751085056$;$-4459211909306838016$;$3142309950868182016$;$2686453509809184768$;$2292115756383549440$;$4589460478421276672$;$-1867632734071224320$;$668587371363563520$;$-1533502179969172480$;$3756449947769886720$;$-2426432253828238336$;$-4469239909534126080$;$4286367812945560576$;$3403477585890369536$;$2198663842770500608$;$107866943628541952$;$-4010714212992443392$;$208904298666774528$;$1511145245656146944$;$-501584386142457856$;$3229730385008235520$;$-4108552607014214656$;$-3257373376270231552$;$3994244213365551104$;$-4558534563028914176$;$1620883559999538176$;$3771482514109103104$;$3188987079752363008$;$-4110087887532963840$;$3085020989644895232$;$2390266698483594240$;$3919734847022704640$;$1168243724242032640$;$1775074475616564224$;$-2571773822001471488$;$-1232562143357125632$;$3666168925577586688$;$-3081180850663074816$;$3618433195144336384$;$-1924738078837133312$;$1348213585389858816$;$164102511496837120$;$-2004114259306850304$;$4547849628167258112$;$3739532540802265088$;$-917557588960404480$;$4149204282273277952$;$3266315589871326208$;$-2979152094976071680$;$-1857833925312388096$;$-4306406481486908416$;$-2900287234989075456$;$-3416450501995070464$;$2151548372763318272$;$-706111847047995392$;$3617423678396282880$;$-3241406272876243968$;$2379226122802558976$;$2416405912167776256$;$4125682763949534208$;$-3872869379538854912$;$3013285759100137472$;$-4017629829997124608$;$4157240600135349248$;$2068205449395082240$;$423148214953505792$;$-1522514386802006016$;$-1609595243205188608$;$585350919618260992$;$524893188289482752$;$1646100744214829056$;$-490033903987579904$;$-3704353482876184576$;$1066099131654969344$;$-3025735185994754048$;$683531615008664576$;$-481671993788789760$;$-1046621741696340992$;$-432665414474811392$;$4577064656628573184$;$320214222874301440$;$2865311216106337280$;$1465916751023683584$;$-4408003220482930688$;$3400692872991227904$;$-2143481368166391808$;$-3565369301921041408$;$-4342957611586117632$;$-2003831023046714368$;$4058871510105734144$;$4487310879918499840$;$-2618274473942612992$;$-3909812717613040640$;$-3281771543969392640$;$-2829095828538535936$;$-3590500798315727872$;$-197138793398611968$;$-3377020893074122752$;$2372427722108101632$;$3355391124480806912$;$4458703902201346048$;$-2742832025473449984$;$-3365125877446200320$;$-4205722242464964608$;$-926790364717959168$;$-4291317731951801344$;$-156205908093127680$;$3859860720284632064$;$4348212942901114880$;$4043272629229337600$;$2034713718288251904$;$-1420588001706659840$;$4293982274475709440$;$-3289386771453274112$;$4329404316417627136$;$-16220671431006208$;$2066814003057782784$;$-1002397589325291520$;$3593921779508516864$;$4371186503413531648$;$3820962162083577856$;$-4363375950430524416$;$3431889183800627200$;$3937036594169532416$;$3882513716079179776$;$-3563572300578234368$;$-2414228383603021824$;$-196507237379148800$;$-2710137514536776704$;$-2453197016310202368$;$1491971968567851008$;$1498257034918600704$;$4206110836635414528$;$92637038968286208$;$-3540955165273263104$;$-2662328217159182336$;$2512132723269625856$;$2627811229979037696$;$10222241202666496$;$800551570116154368$;$2891926714296535040$;$-728225226850214912$;$-3832037683577396224$;$3516717083262225408$;$2433156251182852096$;$240978822535986176$;$-3291345677715901440$;$-2385643952018299904$;$2200504631308713984$;$-3604322999435132928$;$3227973327090658304$;$-3583951440164290560$;$-2511533610893546496$;$2925190148395837440$;$-4086484762791576576$;$-302499805680386048$;$-2544974439336877056$;$3657955323488953344$;$-2602103791158005760$;$-3825256972797150208$;$-3231875844850372608$;$4119380501504224256$;$4549535130854062080$;$2549149679213941760$;$-2309827773774300160$;$2085783041066648576$;$-3247948504960334848$;$2631130120002215936$;$3842085169827872768$;$3872476970805105664$;$1126848854674908160$;$-206594131457948672$;$-768731485311937536$;$216420185975966720$;$-936704030359383040$;$1549926508058335232$;$2844637776260982784$;$-2887447473911855104$;$-3049287937286821888$;$-1565502614846471168$;$-26546713593181184$;$3279011524113522688$;$-860700837765724160$;$-3515378912761767936$;$-3760211516731232256$;$3195868481911979008$;$-2961172449584453632$;$2317635469480954880$;$-1232320154993886208$;$-3838085459151333376$;$1519822575139928064$;$314117768991156224$;$2518109010432861184$;$-1117664250792901632$;$-1844993090237846528$;$-3789289859251110912$;$2623468285113933824$;$806697337566483456$;$1852674012506180608$;$-4247692122497880064$;$-3372083622379623424$;$-3207804028785339392$;$-2707504645685112832$;$-450702558488126464$;$1738323761776202752$;$-4062833602564120576$;$2102656715055514624$;$4298198786049320960$;$3575449522445490176$;$-3730341926869405696$;$-3012765722541888512$;$1849552538482011136$;$-950841807199427584$;$2996136152289343488$;$3333896664181211136$;$-3037001088514403328$;$-1391658834863480832$;$-4272526704390511616$;$3665801848697906176$;$-1490558916492735488$;$24561948170673152$;$2347954682826739712$;$-4118255252054018048$;$3247407788355598336$;$1861840409158162432$;$2704201356737012736$;$207002968321060864$;$1445764255719124992$;$4600989862475482112$;$-2659470945691671552$;$-4160982172014737408$;$4061658352260361216$;$1880698426401989632$;$-2219018170333542400$;$4594149090270254080$;$1467474772059650048$;$-4260230695898074112$;$3804419260902768640$;$2064073187078491136$;$2326337689021462528$;$-2715507860616259584$;$1572342251159814144$;$-1702339103852285952$;$1521347287815453696$;$-1083352655274769408$;$-3852343061575257088$;$3310025917637358592$;$-3369070472646395904$;$-3076797658771563520$;$1210107810684116992$;$-2354160587291281408$;$363332624936222720$;$-3573524206100077568$;$1171080261030032384$;$2530485529690779648$;$3065907854270782464$;$-1890145162657257472$;$2159506188453946368$;$1043410599102746624$;$2371559874820945920$;$1059900561426844672$;$3088725678408830976$;$2629457242965550080$;$-52654417163308032$;$1868314579945714688$;$-2624156303662820352$;$866787238853628928$;$-4383767982475531264$;$-778418597539945472$;$52951701083700224$;$-1128261760871218176$;$1829771874113077248$;$-2473713071703111680$;$-2326941035989425152$;$-1425187744124817408$;$-390762571239370752$;$-3393279364657461248$;$-4526429758415714304$;$2718431348017785856$;$-4052700182783734784$;$-2429017453501425664$;$-3119852977028747264$;$2227052078202452992$;$-3706103329078658048$;$-2671460477583731712$;$-4173222361518348288$;$-48269117793858560$;$557010075749063680$;$3868593674948203520$;$-2318439753182312448$;$-802523033376823296$;$2563319108845676544$;$3032543886374464512$;$-3477873356388348928$;$-4605071969306397696$;$-923167580179356672$;$-356635935990899712$;$-3551221984548496384$;$906016334976301056$;$-2228946588490579968$;$-1940785291129678848$;$-3940804116888545280$;$4063950054130837504$;$-185498291418338304$;$3353069583278605312$;$-2157210046604792832$;$-3089162613121335296$;$1240777540272614400$;$-2288193104696010752$,ﻪ獬푻ﳯ䯵㼌㬢ቖݧᖎ※晟㢥䉠ﳃงꬾ䒗ꏉ譱⹡랹ü१甡䨟ꙇԞ奘㙽磌ȟ片ʱﱎ៽ﮈፋ鰞늗룑膸䑄⧌垔ꖓ毖಼㔡Ґ뜇鎝ꮻ蟞ꨣ㼰샤滿꽬䆰䥗ᡉ嘻⃿׮忀箫כ峆ᾍऔ託ॼꐔ똄ꐷ⚻盞➣渺찶䶒븃駀剜矡띩ᱼ갋䩔툖䲏뚎豁⁃ꐕ굈⊳峦偘悕뤂識牌ⴲ紻䞣ⴧ棇℁迟쀧봹숆‘ꐘ䅒뺇鱧몱řὩ늳ݾέ뗽叹෽쳭鲭武謩廬ㅂ勹暈렾Җ๊Ŗ࿥榲뭌Зퟂ㼟ꂷໍꬹᗤ䃠䔠⶚㾥蕽怾庙뮶涙껤ೖ殔歪㬮䓓痥︧ﰆ騫œ⟄膦퓋⛕ꑤ귁⟭啙⍤◶䉺仐䂀쀮淄곶黼㡳긊巎䕭猓⦼ʡᆋ쇠ꐳ빀틋ꠦؘ㞮䷈̐辮ꚪ橢ꀂ梷秱雔팸섒泃⓰헣}꯾蝯᥋纂ꜣ穈䂶乵᧽ᚘ릀롡㱚髜䩲堐驂댍蒍爎攻׽ᅡ៩ʻ遏㘍쬄ꬄ芆⼓Ṁ豬裱웬皤ႅ꽞留༡㙒ᆩ芿ꏐ浠퉍䯄紆ꚥ㚝쇢圣賥猱䵛☏ᵑ읲馑釽祿樠탾祈摅墠核軝৒쾇뽞zᗎ⋓걳욘퐌쌰괪ꮂ除ࣹⵈ笵悱ﲱビᯮﴖ卨牽큟鐆믺슆夳햏ж胧朂쥯嗉쯮ᄖ잣腥춢穖傢⻋䥖놞橤鋬늪㵘䫬Ҩ雀習䍜㼤凞뭦녛﬽飅썯뷢봅究偪쇧惁渝㊉ﺊ鴭㮢н☕洲珱ꠇ횝≲↶꠻は虎徦따勲ꮲ헮猣泜ĸ疶誔轪蓂ꓫ袿⹫훩ꡡ」჋炄摋̸ఊ✣黃髢튤춧⩿ֻ颡ꏺ兌螽풐ꘚ䫄饎ࣩᔣ럴駉憯迆翸ㅆ⻎툄൜⠪맢蝑髷䪼겛蕤ۈ֩醀๛쇞ུ㏗퇳怔졸啋榠冧杷휢ꚜ聠晓䱟Ỵ୔䛐瓬衽쳛빇祶懼࢞掶靧䭲筿䜉㓗ꩅ㟒̧௟→ㆉ묧汽佒䠱눪嶯ꉧ資⇌곭㓱쳊₩횓摛墤ૈ彏Ⰺၔ梻ꒂ曟狖躃驠ꓯ⮾볨耡ᣥ閤遁眶憎쉊䦲劮ힹ춉櫪갵䯳彝ಏ섻懕凉雊剺誼⺚苎೿冀黮酽↴䯃ყ뾙⪿鋀앣朴鈶鶴㬃긧⩪묏氵ᴦ臘十粮磕Æ뾏褝斆랥⨏˵⨘⴫黿ⷠ秝灥㖵耴꜎젉ᦇ艺䛝笀䂽뎞꺟램겑䧥隴⃵툆봸퐙妏ꔀ㻥꣄ύ喑≰ꦛ祉ꬼᜄ◬嗇㡈쯃㹾鍷㪨쁉垵ŕ髧⨓퀀ᇛ喭坛浛崙ꕧㆷ缾悧錞왬鲛ᶅ昒ꢜ⼏鵤鮴蠷깬집뉜︞赅佤뾲阳㤉쟥䲶ᄇ氉噖ⴐ삳莿꒣퍉诵伟숮뵨ı䪪郒軇㍫뺛솢ゼ롋壑侎澴䐡靓枳ࣴࠁࠗᚯ匮겠跱铠⟹ꇞ⼡㘙ằ⃪伀个℔ퟖ缮乩⵻傪㳢鷨輿ఈ韑վ煁⮑濩丫詉帘﨏ᑮ똭ᾀᢐ䒕쬈䰩뭷䃒傎쥑㓹㒖캄쎛啒쨢沄駦茶첨뇠鼡ꗩ鍤蓇℻᭄帀ẗ龏⬅㮛䊚গ뜧瀚詟萶࠯㐥ꍻ廒樐⮧锰ꐋ睲刢贐೬ꋤ듅ҧໆ듞빑眍܃ゃ沃莹浤䴰슷Ⳑ䐃썁뷞묒塚훨䉘캂쥍ᛯ䩗૰ሠ, -11,,1443154423.0,,"$}:f+4 Е%|98J/2[s#=.4_la2^SS>;g@̯A<+ՎE'>2X4/H4""W㲩nhx$s-g2C2z-(VKmB.qKzg02gkt˕vhuaFY?Rrt$<33%Lt9 Ko_Jyb_7(dܻL'A|#sҧ?YdDqmwtPAդWaGcSxYؔ}%cАxMI+`F}f|i=wG\C'з ",,"{""a"":1.1905022069495031e+308,""b"":""\u5bc1\u8970\ufa84\u959a\u8cf0\u6cd3\ub7d6\u013d\u76e8\u4386\u7565\u2474\u73cf\u27c5\u2096\u23da\ub11e\u4ada\u1a3f\ub1a4\u7878\u45e0\ubb93\u4df6\u6e64\ud148\u61a6\ubf60\u22f5\u3fef\u8ad1\ub159\ub66d\u4f29\u6ff6\u2859\ue52e\uf5e2\uddfd\ue25d\uf15f\uf883\ue2c5\ua90b\u2dbf\u425e\ucaef\udf47\uc734\u98bb\u36a7\ub432\ub1fe\u9895\u7bf4\ua3ed\ub9bb\ue540\u973d\u56cb\u4b01\uc032\u5678\uf12d\u7306\ua103\u5815\u6cb2\u0f5c\u3aee\u2bae\u7721\uddf0\u881c\u7ce2\ub6ea\u0233\ud86a\ueff6\u0829\u541e\u70ad\u8a44\u0571\u1ea0\u2c6a\u0265\u7ff8\u8959\ue387\ud7b4\u1a12\ub9d5\u0014\uf157\u2d85\ube66\ubc80\ucef5\u41c8\u563f\ud52f\ua97d\u623b\uffa3\u123d\ue727\u8128\ufa5d\u919c\u5408\ua347\u2bee\u6d88\u248f\uaff2\uc536\ue6df\uf7db\u1e52\uc661\u99e2\ua938\u0ba3\u18b6\ud54b\udb67\ubcd5\u94bd\u6137\u0b98\u3fcd\u140d\u17ae\u09b3\u06c8\ub81b\u85a1\u8667\u5656\ucb41\ue93c\u3151\ufe8a\ub05a\u9345\ue38d\u6d74\u887c\uc2e8\ued93\u545a\uc881\u8a16\u51e1\u164d\ue08a\uadd6\u78d9\u941c\u9bd6\u9b2d\ud171\u033f\uf200\u8e65\u5de9\u06d7\u9124\u09bc\u5b17\u188a\uc0e0\u352a\u26e2\u55b8\u721d\u83ad\u166a\u2beb\u24e5\u9b62\uf64a\ub36b\u279b\u4bd2\udb72\u4b7b\u1425\u0e78\u6f5f\u83f9\u88f0\u13ef\uc5ea\ua2fe\ue1c9\u01bc\ubea5\ua547\u37ca\u6b1f\u9b17\uac0d\uf42c\u731e\u1199\u7275\u4048\u9a04\ucecb\ua491\ue28b\u550b\u6730\uf225\uea4f\u373f\u942d\u23fa\uf698\udd70\u9c9a\ud46d\u6753\ub3e0\u1ee0\u3bf2\u2ea2\u6588\u7fb4\u5198\u48e7\u97ac\u7951\u37d0\u1c0f\uf74a\u1b33\u2c7b\u1f92\ubf7e\ud587\u3e62\u6d45\u082b\u9ba4\u90a9\udd52\u52ae\u6f65\u2f38\u4f05\u7cc0\u0440\uc419\u6214\u03a8\u71ef\uff17\uae3a\ud192\ucb6f\u8854\u5b44\u46fe\ued4a\u8a89\ufb73\ua06d\ua582\u1448\u2df8\uff99\u2295\u4b77\u9cac\ua69a\u2fdc\u1be0\u88f5\u68bf\u8bb0\u2ef6\u9908\uf4e8\u5b6d\u6382\ud5c8\uf32d\u480cD\ua40f\u9a29\u737b\u8cc5\u73c2\u98d2\uf29b\u84b9\u6699\ue325\ufb26\u9efa\uf9a9\ua5d7\udbe2\uea09\u9393\u4efe\u0dff\u9d89\u1c2f\ud3ce\u469c\u34f3\u8e1a\u9047\udfcb\u6cb9\u0b72\u5c0f\ue871\u9aa0\u97a0\ubbe3\u5efc\uf30d\u0bac\u3389\u3955\u2a11\u1b6d\u443b\u8ea4\uc2e3\uc15c\u19b2\uc092\u94e4\u5ed2\ucd78\ue861\u3c5b\uee72\u565e\ue226\u689a\u9377\u3a17\u635d\ub863\u4cfd\ucca6\ue96b\ueb4b\u26b3\uad78\u7115\ue28a\u23be\ude0e\u4815\u6cc0\udd28\ue7f1\ucbe3\u2528\ud635"",""\u798f \u9152\u5427"":{""fu"":1.181271211956351e+308,""bar"":8.851981333166922e+307}}",,"-1251889019233770496 -1525998194057364480 --2458366335825766400 -3236810144768934912 -1405905664921408512 -1981993218026355712 -73448109454557184 --979416887896488960 -3228107126091080704 -1262215132834663424 -1425439448721095680 -3953964618284065792 -144706287535306752 --3467354979916422144 --1089055217971079168 --2590941566949167104 --1091978524095474688 --2102672459057953792 --1465348941249591296 -4255797673573915648 -1602936684729300992 -2850399638308730880 -4607764182989896704 --1348606907283756032 --3322630303713227776 -4378381599125844992 -184698044849652736 --586006346069543936 --3527583061097375744 --1929360600141562880 --3819269042291429376 --2471262732779495424 --4212971916887513088 --225567183169119232 --1691259199011020800 --2633516202479211520 --2432810719788966912 -2672236738413440000 --725804743486859264 -1228969616157969408 --2460844937154923520 --4166474248896357376 -1451113538620932096 --1049026811277721600 --3152483563975690240 -2016051140359250944 -888870990528102400 -3060419749239066624 --2359525103766889472 -1300968344842107904 --4177955323157515264 -3124736638903118848 -3635332798132985856 --4127350201682334720 -2700318354943169536 --1410297912337719296 --4330987788448139264 --232104031197517824 --1113953908436320256 --2535455649139095552 --2321035669237209088 --3741325571964289024 --3968620653126966272 --4201239847468502016 --2036464461943232512 -2468517014920279040 -41170961744266240 -1915712637362260992 -3944210327082620928 -1298268705014217728 --1874301834159019008 --1976173906686804992 --3021429955018170368 -484964371887017984 -1081163273574217728 --2444774617616747520 -3606983564872564736 --1555350746012938240 --3622415086187035648 --1831898701047500800 -2923668560887848960 -1998913051078523904 -1209231589168833536 --1686032292526703616 -3465634180021739520 -1805103829918276608 --4213731768986351616 --3642983691650547712 -1322872948417049600 -3437491777643323392 -1286813877030638592 -4523278804309652480 -3174973994799909888 --2119469366313930752 -1930599958763745280 -946597613640701952 --2746960062542593024 --823016970909891584 --4236396678278000640 --4259594699248756736 --2904377035195648000 -439641597592592384 -3573842289597304832 -3475059400704280576 -1939165395223333888 --3665739314285814784 --3667850501770941440 --3430137518370043904 --2241026169733161984 -3401222365636876288 --2791133790301299712 --3393846619978039296 --734710697005483008 -3058129134557876224 --4455745108483363840 -3578356173160924160 -2459603692350505984 -572652291846841344 -1506320659304868864 --3784056032316227584 -1831375707038118912 --700959236393765888 --968664897532687360 -376525318357976064 --4442377224701304832 --4159051301007082496 -1210708349836004352 --4571214938019441664 --3009268219572710400 --1801339957434477568 --3403202506808785920 --4391933668584129536 -765336882687263744 -3176112967246671872 --3418625621136061440 --1768563431663037440 --2980613166101695488 --3505579737074535424 -2939380546693917696 --1001653369671923712 -3085979219575958528 --3268504629442619392 -3690453392921619456 -219952188674255872 -3461249345163328512 -1323951054138686464 --2381545844523646976 -2697300485641586688 --1021807071841831936 -4142563824211471360 --1813643116717203456 --1455261879739704320 --390904897518700544 --632909443926541312 -3444604183244046336 --2502810095531573248 -1093246411656706048 --314233887580274688 -2476764135893818368 -33354856608945152 -2670961747583865856 --993013177313456128 --2961313505022102528 -3334564229659167744 --444975627237497856 -4522622443013526528 --3276670048461713408 -3141662569466974208 -107588195760303104 --2657911791911563264 --3143775761581040640 --2536032189979825152 --1884496632098364416 -4601231732795056128 --2219715326025332736 -4335607180506615808 --3794469792987517952 -4188167988597731328 --3177465098901367808 -4498332976278782976 -2668796028784840704 --2535537572012563456 --1755520846494657536 --4096623793352066048 -3089021431589006336 --909654287673635840 --4419034596472088576 -1717116564755952640 --1197176668706968576 -4152461724784835584 -2379302611999155200 --926303633711856640 -691678612212113408 -1571470527145491456 -2655553308534072320 --2143251505440002048 --338256247615053824 --3178332248905682944 -4573029801459530752 --3276166749505034240 -3774745893893632000 -1854630678437324800 --1776997463284075520 --1713261067070225408 -813778678544296960 -509098161088964608 -32016913525612544 -2203238127760210944 --4280802232002342912 -4598969525633139712 -1006637688491613184 --2005321861885752320 --2409086092596997120 --2574530769881596928 -1628095927043241984 -4240452766799461376 --393547390576123904 --1360081447185865728 --909130318673744896 --4185368808958492672 --458711320994412544 --2243849386133200896 --2585372174793804800 -863471666103053312 -1665762904818884608 -1798782761515430912 -3176324036177593344 -242460744672410624 -2697975087262283776 -1458210099362017280 -430388947704154112 -4369451037256212480 --1157839517877516288 -724154930886675456 -1938098368843937792 --4077496043750375424 -1895574797414369280 --4383554537642741760 --1136971020414473216 -1574684215828238336 --2466113973513048064 -2845689399419150336 -761869558330970112 --1300208832772180992 -1560106565292952576 --999377942033490944 --618590758860580864 --452770526170163200 --431814825503657984 --3901883834882210816 --1260928045869678592 -3309447772945396736 --4290399066990725120 --1229230204208023552 --4223011709394723840 -2388842358769020928 --2617955055945467904 --2816470976865472512 -4517086585494136832 -1440227128429375488 -3253442483142863872 -4169331209320273920 --4370322924352144384 -2525058996584479744 -1797663272256570368 --3318925245139738624 -3633305744445973504 -1454867731965308928 --773002707659157504 -236890134183436288 -3959390688433873920 -134170632039945216 --1066180009896342528 --1464311835823619072 --709023369650734080 -4034945502552558592 -3904139243452386304 -4108338236744500224 --3519932996518579200 --2015740670691816448 --2621734419212610560 -1266972261678946304 -4251378906339814400 -228713983968051200 --3349430952471951360 -3831226009297505280 --398347183334994944 -437894930029659136 -893986287094576128 --909692972952188928 --999137169351477248 -508602487746249728 --3338238096283043840 -939950620357547008 --3326004545207067648 --4094512871003981824 -2568689777837435904 --490591586465171456 --2602760044945161216 --2969436586485657600 --2430956819666970624 -188265569278199808 --3690532922997181440 -2263159128047093760 --3755053467518388224 -4572248674653945856 --3687470862759505920 --939107644166697984 -441875223226846208 -3084202091842718720 --3414617597103319040 --3357967945992918016 --2832093513364175872 -595676412358942720 -3392003491415305216 --4283778948136232960 -3169270297982972928 -2254409282820174848 --807979109985517568 -3584494474652225536 -132157310405604352 --1568879505940088832 --2664309854826492928 --62067336037409792 --339009073473735680 --2323630204922844160 --4517097396487793664 --3910693824765057024 --3201835849371085824 -3684674659130295296 --1524049072782231552 -1764679402131055616 -102159859466420224 --1981019571128229888 -2039811689476982784 --4571472333027125248 --106866513885922304 -21094449087951872 --3049081336022438912 --2206299850436640768 -1777040508186757120 --2293755243439873024 --221232189613831168 -3084611479251133440 -1319848280678254592 -2531482881426185216 --1229442420379608064 -947343226839388160 --4156045229329129472 --616388433172450304 -3025955073667699712 --3425633338647987200 --1839888334279190528 -188489424721848320 -868794790373058560 --2732896224073153536 -926094932349673472 -649566978739018752 --4384023249065808896 -4375962036878358528 -835063095892312064 -1918783154640851968 -1642755127782050816 -962614436903681024 -2616433926133289984 -4320901635090383872 -4225527703712626688 --2875763254492801024 -10965550930342912 --1384832173229913088 -1610955180916903936 -3574320880596366336 -4337373882258998272 --2560466793626777600 --436669789745282048 --2090830013485666304 -1518919932307460096 -2867761586077729792 --706603543253042176 -673991752225482752 -3289554732571266048 --1651003573368457216 -2725312166860039168 -2111538114509971456 --2733776402549024768 --1049488175455481856 --3540429097334945792 --1015097285335060480 --2575136745068009472 --2463608337838367744 --609186184663869440 -4428061042259202048 -1033954223732283392 -4036370497342240768 -4252683383898811392 -3358104146505948160 -4445303326882236416 -3464972193172842496 --992327406601360384 -3059094300697945088 -578267384072184832 --3898597756968118272 -1991585692528579584 --4451812422008371200 -1946849226474378240 --3334483521665216512 --4401346739096068096 --4534408261352020992 --1044302817408815104 --3194538887947387904 -242811780077616128 --2820116218513965056 -772829906152107008 --4322801640061285376 -3620437769634518016 -2426902993308248064 -3010269202750006272 -2963870910725327872 --2996812081351336960 -2390674231431895040 --793682673010122752 --97263712653419520 -88811356100318208 --960718722738375680 -960754783107360768 --1949754529675566080 -2865682845366696960 --4384991245678430208 --3590340440420777984 --346876179751626752 -3773037620104858624 --1520682815406154752 -621644118326904832 --4515287542876008448 -3307339238141921280 -29591125556787200 --3384353374342109184 -3085082883424003072 --2252317307068704768 --338761091570574336 --3283926272322422784 -908319560449281024 --2077299387328309248 -176585350376619008 -291268233943918592 -4256568181161149440 --2412837348976015360 --1140570945721453568 --2986746741067245568 -3257896601907805184 -2381434116637274112 -1319395280161217536 --254534784695476224 -2715024359610377216 -1577166879363748864 --4226189507486587904 --743114486337310720 --131112255034174464 --1300448121434244096 -1278458231250625536 --2208089185660928 -1923727130323377152 --1958004616326825984 -1366561551935321088 -3200374034547392512 --4265096324058080256 --1253100435470038016 --826283869545071616 -846558211953902592 --4181038769680774144 --1317427975374940160 --94156441696084992 --3084963237647796224 --4133616454906223616 --1189649836094803968 -1099416184917611520 -4453012590212102144 -1378980761024919552 -3359980034247711744 -2371838748407797760 --4223547510185005056 --229481719008717824 -683885400717950976 --2660425808842528768 --1707862364245592064 --282319963468071936 -3896283691017086976 -585859357565011968 -3869828343031034880 --37321077929833472 --1091343840725136384 -2067709955846575104 -1585937107765037056 -2779187730837150720 --1184293743682194432 --182548360396376064 -1421359889973238784 -401010666144055296 -267101906088535040 --3999334861580891136 -4477112144073700352 --3298050402537786368 -2325869731367501824 -243745836930768896 --1733581095927804928 -2534068241264069632 --65235320999905280 --3983474290061802496 -2721845343313900544 -1396697192740262912 --1169175607282819072 -2941419684044949504 --681987729691226112 -4052105827908554752 --1055747532618402816 --853519517254052864 -4416772024085357568 -3007793667587699712 --1587509945736999936 -926474081006545920 --851899504583598080 --3753268772739042304 -2825306977734936576 --2158455045031797760 --4326594232465991680 -2469353474805477376 --4546120625418180608 -1860556066849120256",$-1251889019233770496$;$1525998194057364480$;$-2458366335825766400$;$3236810144768934912$;$1405905664921408512$;$1981993218026355712$;$73448109454557184$;$-979416887896488960$;$3228107126091080704$;$1262215132834663424$;$1425439448721095680$;$3953964618284065792$;$144706287535306752$;$-3467354979916422144$;$-1089055217971079168$;$-2590941566949167104$;$-1091978524095474688$;$-2102672459057953792$;$-1465348941249591296$;$4255797673573915648$;$1602936684729300992$;$2850399638308730880$;$4607764182989896704$;$-1348606907283756032$;$-3322630303713227776$;$4378381599125844992$;$184698044849652736$;$-586006346069543936$;$-3527583061097375744$;$-1929360600141562880$;$-3819269042291429376$;$-2471262732779495424$;$-4212971916887513088$;$-225567183169119232$;$-1691259199011020800$;$-2633516202479211520$;$-2432810719788966912$;$2672236738413440000$;$-725804743486859264$;$1228969616157969408$;$-2460844937154923520$;$-4166474248896357376$;$1451113538620932096$;$-1049026811277721600$;$-3152483563975690240$;$2016051140359250944$;$888870990528102400$;$3060419749239066624$;$-2359525103766889472$;$1300968344842107904$;$-4177955323157515264$;$3124736638903118848$;$3635332798132985856$;$-4127350201682334720$;$2700318354943169536$;$-1410297912337719296$;$-4330987788448139264$;$-232104031197517824$;$-1113953908436320256$;$-2535455649139095552$;$-2321035669237209088$;$-3741325571964289024$;$-3968620653126966272$;$-4201239847468502016$;$-2036464461943232512$;$2468517014920279040$;$41170961744266240$;$1915712637362260992$;$3944210327082620928$;$1298268705014217728$;$-1874301834159019008$;$-1976173906686804992$;$-3021429955018170368$;$484964371887017984$;$1081163273574217728$;$-2444774617616747520$;$3606983564872564736$;$-1555350746012938240$;$-3622415086187035648$;$-1831898701047500800$;$2923668560887848960$;$1998913051078523904$;$1209231589168833536$;$-1686032292526703616$;$3465634180021739520$;$1805103829918276608$;$-4213731768986351616$;$-3642983691650547712$;$1322872948417049600$;$3437491777643323392$;$1286813877030638592$;$4523278804309652480$;$3174973994799909888$;$-2119469366313930752$;$1930599958763745280$;$946597613640701952$;$-2746960062542593024$;$-823016970909891584$;$-4236396678278000640$;$-4259594699248756736$;$-2904377035195648000$;$439641597592592384$;$3573842289597304832$;$3475059400704280576$;$1939165395223333888$;$-3665739314285814784$;$-3667850501770941440$;$-3430137518370043904$;$-2241026169733161984$;$3401222365636876288$;$-2791133790301299712$;$-3393846619978039296$;$-734710697005483008$;$3058129134557876224$;$-4455745108483363840$;$3578356173160924160$;$2459603692350505984$;$572652291846841344$;$1506320659304868864$;$-3784056032316227584$;$1831375707038118912$;$-700959236393765888$;$-968664897532687360$;$376525318357976064$;$-4442377224701304832$;$-4159051301007082496$;$1210708349836004352$;$-4571214938019441664$;$-3009268219572710400$;$-1801339957434477568$;$-3403202506808785920$;$-4391933668584129536$;$765336882687263744$;$3176112967246671872$;$-3418625621136061440$;$-1768563431663037440$;$-2980613166101695488$;$-3505579737074535424$;$2939380546693917696$;$-1001653369671923712$;$3085979219575958528$;$-3268504629442619392$;$3690453392921619456$;$219952188674255872$;$3461249345163328512$;$1323951054138686464$;$-2381545844523646976$;$2697300485641586688$;$-1021807071841831936$;$4142563824211471360$;$-1813643116717203456$;$-1455261879739704320$;$-390904897518700544$;$-632909443926541312$;$3444604183244046336$;$-2502810095531573248$;$1093246411656706048$;$-314233887580274688$;$2476764135893818368$;$33354856608945152$;$2670961747583865856$;$-993013177313456128$;$-2961313505022102528$;$3334564229659167744$;$-444975627237497856$;$4522622443013526528$;$-3276670048461713408$;$3141662569466974208$;$107588195760303104$;$-2657911791911563264$;$-3143775761581040640$;$-2536032189979825152$;$-1884496632098364416$;$4601231732795056128$;$-2219715326025332736$;$4335607180506615808$;$-3794469792987517952$;$4188167988597731328$;$-3177465098901367808$;$4498332976278782976$;$2668796028784840704$;$-2535537572012563456$;$-1755520846494657536$;$-4096623793352066048$;$3089021431589006336$;$-909654287673635840$;$-4419034596472088576$;$1717116564755952640$;$-1197176668706968576$;$4152461724784835584$;$2379302611999155200$;$-926303633711856640$;$691678612212113408$;$1571470527145491456$;$2655553308534072320$;$-2143251505440002048$;$-338256247615053824$;$-3178332248905682944$;$4573029801459530752$;$-3276166749505034240$;$3774745893893632000$;$1854630678437324800$;$-1776997463284075520$;$-1713261067070225408$;$813778678544296960$;$509098161088964608$;$32016913525612544$;$2203238127760210944$;$-4280802232002342912$;$4598969525633139712$;$1006637688491613184$;$-2005321861885752320$;$-2409086092596997120$;$-2574530769881596928$;$1628095927043241984$;$4240452766799461376$;$-393547390576123904$;$-1360081447185865728$;$-909130318673744896$;$-4185368808958492672$;$-458711320994412544$;$-2243849386133200896$;$-2585372174793804800$;$863471666103053312$;$1665762904818884608$;$1798782761515430912$;$3176324036177593344$;$242460744672410624$;$2697975087262283776$;$1458210099362017280$;$430388947704154112$;$4369451037256212480$;$-1157839517877516288$;$724154930886675456$;$1938098368843937792$;$-4077496043750375424$;$1895574797414369280$;$-4383554537642741760$;$-1136971020414473216$;$1574684215828238336$;$-2466113973513048064$;$2845689399419150336$;$761869558330970112$;$-1300208832772180992$;$1560106565292952576$;$-999377942033490944$;$-618590758860580864$;$-452770526170163200$;$-431814825503657984$;$-3901883834882210816$;$-1260928045869678592$;$3309447772945396736$;$-4290399066990725120$;$-1229230204208023552$;$-4223011709394723840$;$2388842358769020928$;$-2617955055945467904$;$-2816470976865472512$;$4517086585494136832$;$1440227128429375488$;$3253442483142863872$;$4169331209320273920$;$-4370322924352144384$;$2525058996584479744$;$1797663272256570368$;$-3318925245139738624$;$3633305744445973504$;$1454867731965308928$;$-773002707659157504$;$236890134183436288$;$3959390688433873920$;$134170632039945216$;$-1066180009896342528$;$-1464311835823619072$;$-709023369650734080$;$4034945502552558592$;$3904139243452386304$;$4108338236744500224$;$-3519932996518579200$;$-2015740670691816448$;$-2621734419212610560$;$1266972261678946304$;$4251378906339814400$;$228713983968051200$;$-3349430952471951360$;$3831226009297505280$;$-398347183334994944$;$437894930029659136$;$893986287094576128$;$-909692972952188928$;$-999137169351477248$;$508602487746249728$;$-3338238096283043840$;$939950620357547008$;$-3326004545207067648$;$-4094512871003981824$;$2568689777837435904$;$-490591586465171456$;$-2602760044945161216$;$-2969436586485657600$;$-2430956819666970624$;$188265569278199808$;$-3690532922997181440$;$2263159128047093760$;$-3755053467518388224$;$4572248674653945856$;$-3687470862759505920$;$-939107644166697984$;$441875223226846208$;$3084202091842718720$;$-3414617597103319040$;$-3357967945992918016$;$-2832093513364175872$;$595676412358942720$;$3392003491415305216$;$-4283778948136232960$;$3169270297982972928$;$2254409282820174848$;$-807979109985517568$;$3584494474652225536$;$132157310405604352$;$-1568879505940088832$;$-2664309854826492928$;$-62067336037409792$;$-339009073473735680$;$-2323630204922844160$;$-4517097396487793664$;$-3910693824765057024$;$-3201835849371085824$;$3684674659130295296$;$-1524049072782231552$;$1764679402131055616$;$102159859466420224$;$-1981019571128229888$;$2039811689476982784$;$-4571472333027125248$;$-106866513885922304$;$21094449087951872$;$-3049081336022438912$;$-2206299850436640768$;$1777040508186757120$;$-2293755243439873024$;$-221232189613831168$;$3084611479251133440$;$1319848280678254592$;$2531482881426185216$;$-1229442420379608064$;$947343226839388160$;$-4156045229329129472$;$-616388433172450304$;$3025955073667699712$;$-3425633338647987200$;$-1839888334279190528$;$188489424721848320$;$868794790373058560$;$-2732896224073153536$;$926094932349673472$;$649566978739018752$;$-4384023249065808896$;$4375962036878358528$;$835063095892312064$;$1918783154640851968$;$1642755127782050816$;$962614436903681024$;$2616433926133289984$;$4320901635090383872$;$4225527703712626688$;$-2875763254492801024$;$10965550930342912$;$-1384832173229913088$;$1610955180916903936$;$3574320880596366336$;$4337373882258998272$;$-2560466793626777600$;$-436669789745282048$;$-2090830013485666304$;$1518919932307460096$;$2867761586077729792$;$-706603543253042176$;$673991752225482752$;$3289554732571266048$;$-1651003573368457216$;$2725312166860039168$;$2111538114509971456$;$-2733776402549024768$;$-1049488175455481856$;$-3540429097334945792$;$-1015097285335060480$;$-2575136745068009472$;$-2463608337838367744$;$-609186184663869440$;$4428061042259202048$;$1033954223732283392$;$4036370497342240768$;$4252683383898811392$;$3358104146505948160$;$4445303326882236416$;$3464972193172842496$;$-992327406601360384$;$3059094300697945088$;$578267384072184832$;$-3898597756968118272$;$1991585692528579584$;$-4451812422008371200$;$1946849226474378240$;$-3334483521665216512$;$-4401346739096068096$;$-4534408261352020992$;$-1044302817408815104$;$-3194538887947387904$;$242811780077616128$;$-2820116218513965056$;$772829906152107008$;$-4322801640061285376$;$3620437769634518016$;$2426902993308248064$;$3010269202750006272$;$2963870910725327872$;$-2996812081351336960$;$2390674231431895040$;$-793682673010122752$;$-97263712653419520$;$88811356100318208$;$-960718722738375680$;$960754783107360768$;$-1949754529675566080$;$2865682845366696960$;$-4384991245678430208$;$-3590340440420777984$;$-346876179751626752$;$3773037620104858624$;$-1520682815406154752$;$621644118326904832$;$-4515287542876008448$;$3307339238141921280$;$29591125556787200$;$-3384353374342109184$;$3085082883424003072$;$-2252317307068704768$;$-338761091570574336$;$-3283926272322422784$;$908319560449281024$;$-2077299387328309248$;$176585350376619008$;$291268233943918592$;$4256568181161149440$;$-2412837348976015360$;$-1140570945721453568$;$-2986746741067245568$;$3257896601907805184$;$2381434116637274112$;$1319395280161217536$;$-254534784695476224$;$2715024359610377216$;$1577166879363748864$;$-4226189507486587904$;$-743114486337310720$;$-131112255034174464$;$-1300448121434244096$;$1278458231250625536$;$-2208089185660928$;$1923727130323377152$;$-1958004616326825984$;$1366561551935321088$;$3200374034547392512$;$-4265096324058080256$;$-1253100435470038016$;$-826283869545071616$;$846558211953902592$;$-4181038769680774144$;$-1317427975374940160$;$-94156441696084992$;$-3084963237647796224$;$-4133616454906223616$;$-1189649836094803968$;$1099416184917611520$;$4453012590212102144$;$1378980761024919552$;$3359980034247711744$;$2371838748407797760$;$-4223547510185005056$;$-229481719008717824$;$683885400717950976$;$-2660425808842528768$;$-1707862364245592064$;$-282319963468071936$;$3896283691017086976$;$585859357565011968$;$3869828343031034880$;$-37321077929833472$;$-1091343840725136384$;$2067709955846575104$;$1585937107765037056$;$2779187730837150720$;$-1184293743682194432$;$-182548360396376064$;$1421359889973238784$;$401010666144055296$;$267101906088535040$;$-3999334861580891136$;$4477112144073700352$;$-3298050402537786368$;$2325869731367501824$;$243745836930768896$;$-1733581095927804928$;$2534068241264069632$;$-65235320999905280$;$-3983474290061802496$;$2721845343313900544$;$1396697192740262912$;$-1169175607282819072$;$2941419684044949504$;$-681987729691226112$;$4052105827908554752$;$-1055747532618402816$;$-853519517254052864$;$4416772024085357568$;$3007793667587699712$;$-1587509945736999936$;$926474081006545920$;$-851899504583598080$;$-3753268772739042304$;$2825306977734936576$;$-2158455045031797760$;$-4326594232465991680$;$2469353474805477376$;$-4546120625418180608$;$1860556066849120256$,貺뀞茍뤰㝴仏郞콫⳦杪쐠埤ᾰ✊缴趂佮댲ﱟᷣיּ༕⻧㺜곽甛舑丈쥫פ葝뢧ౚ駖緙꺑헕ﰪꦴґす㷣핬౔᱓凿ꃕ䡝뀠ⱐ꤬횥ꘉ긹娗脊ꜿぽ鎅탥텽襽䀏⌐奓㩭㭹䓫煁뚳弴拻꒟受㽼ﴡ羭吀实黱䤥꿏温讈持墛袂○纳䰄黝ㅣී狔䝫䨂熇ग़ᥫ㸦ⵓבֿೝ涋섹哿턹宂ﺮ蔔띒㥱ل䜏녟얟塓譼䢗꜃ퟭ嗢꟮藰⣥﫱ꡁ䅗鰈崌ᆴ₱矘ᰊ쒘ꉆထﴦ鿽鄺潯ᑯ滔蒸肐꽢턶헢㏤었䲛ꣂ얊ꡔ⥍軵퐾àꄙ隊壉닅龤伵൙䃺ෙ脺迅崱鍪䔚散옓辮⨲䑶遻᨝뚽ᨷ⧌ꎹᅘ뎵㓎徸棤㵠緎엀몀㫺⽙稸윭㣺ꬋڠ몾ɇ芒◥⟄疽Ʝ␄ꚢ精׃ኝ殍榪爅刔侕暜䟳ꮘᐃ㇜횖悄閅꫻擗㴿줤걖鹫〿暡응㆗蕊鿹፟䃓멮ࣻၐꆴ翌ꁢ凉᳖୙唵꼼睭Ƈ첬ℿ蕣휡栗㨜ﲢỎ죒侈㞣寔㲏윅閳嬙齕듋梡近厼﷜튣㻆ⷎ魶逥瞐㺶ﳖ፡㸝㉞䳢瓻窳ꇉ輀쳗겏ᜢ啒壼愚꨺翜쳝牧ᵙ喀廉ꈫ救ꐙᶢѢ࣫ଲ㞭핮쭇쇪꘷⢠鵀ꨥ몇ᇣ얰뮜햯ӷẗ椶ᅢ첃ꐪ暤꽱蘦鰤멑灺坁ᒀ⃒ᰑ瑳灑㥄諭柾Ⰻ셏๫篤崋ꫪ솶깠쏯世ﳡ笧㒣⵴誫肫ꦝ됭狞ቜ₡⭉叫ᎊ᣼籝陔汯頴䯨ꝿ솳㬿沙켊旞ㆀື偢沺ㄶ틙呋雿衚䎲裫俱季︺㴒㿟精꟪蔐郖졪焳㺅硅앍诼숯嶵썦䭿媟ﵿ浃厔ꞥ僚滖忑隴坩❳츩Ꭱ漤旳胬暟ಆ㦨꽔诵閭㡞Ɬ୅音༊新Ȗ㱢帞爊陖餰ꕧ亴붘싊ự蝤⥷웯頋❧⅑쭆ﵒ⭋鉇葎䭭釫㺳嘫闠궝壊蘬磵쒛㚌샦冂∩腔⢍쑗軐茴霚ဋ倶讽㸨㫹꠰⥠ܿ导㶷樳뤤옝뫼ᅓ밎성䉎톫徿큰┒튵盰륙撅❊䑉씃섉⌜펷꓇䙽鑘⦐腍孽栏肉ಽ̏ᥨ診ꋿꗪ嘯衴홂볭통烉랦권ꑆ᳝招䘺敟親׾㪒䌪鑿㓮ᆒ孀Ἃ씁摅臎【큢Ѥ跹͡獭闷䃼즳ⷹ鳎讬떡䯦撮ࠋ膗乀倣敥䣭纣삅儥ꋨ붚ᨼ⍑㢤졊왇⪒棂Բ⛦욈陳둍댜⚏뭏Ᶎ햲钁⧹꒐ﹹ䎢6鉞᱊ふ̒긕⑵픕및륕뙌ㅎ粌韾橏ꔶ戚꽅餻繲뾘ꭺ㦻搾뛞띏딈⥏ጉÆ味煯灬漟囕ﱩ乽막븓曉ꆖ靈莫ົҹ蜃固啹곲梨礞⏆춓춧燬㠿䔿⮐⠯初⊐톢蟈䍴릃䟉簊讷➩浈胝吳復⩵違ᠤ兡鐣欸鴯ኀ鍳ꉮ讜㞃暼袤⬷叆㔆᪆硜풸閛役ꖓĶ╋ี浴헍ḑ鮲ծ笺卅ᰵ倭슛褋㐟鵰碫k寮㍉ⳍ拕㾻摾婽觧൚뿽ꥁ㼶懦ᗟ昬뭗㭒棭ꗘ㴼留촢鲀肊쥩⛕ﺩᣍ㳱ᯟຣ㝺쑆萳ㅊ곾挴랰ả⣌뤚찖입Ὗ㷙鴐裓츽ⶇ↫ꠈᚷ貮鬡搩䙉検Ŷ₲ꨏ⣝꘲椌ハ䏴쌡瞩尀䯜⡭丳円⨍꿯꤁퀥蛚ᚼȈ돆팀ꠞ䶒Ԗ蚰ⵗ㑭玀밦䛓联籚苤⣸䂞괘⟉픦뜕湪ꮖ韖ꆋɷ俽㨰ᘈ윉雗䚡䤍脆⋌〃붌즰꽭Ꙉꡞ嬧㫟悠變⻍푪嘕ꄧ㡿⊎Y, -13,,1443154423.02,,"<97ܜaέDURtS\swBEj|D` Eǭ@/T9xV}S%5ȴpܓ\ MP~MJ< $ī(""/y#֘]M|CؓWnjNw!%BT-UĮȃ",,"{""a"":1.5565002058974316e+308,""b"":""\u8650\ue44b\uc2bf\udca6\u7c3a\u4a77\ud496\u3871\ue03e\u2f85\u10b0\u8125\u2489\u2bb8\u7f72\u32ce\u7032\u3931\uf54b\u4917\u98be\u61ab\u69ad\ue350\u0dc6\u6af7\uf30b\u2901\ud7c7\ud8ce\u8652\u2f1d\ufc64\ucfc9\u6146\ub942\u876e\u8d13\u12fe\u7d70\u1981\udd5e\uf719\u29a3\u75ae\u032e\u54f7\ua7fb\u4960\udfd8\ub22d\u92b9\ua8da\u3d21\u22c3\u5b59\u2180\uef14\u1c63\u7b8e\uac4b\uf40e\u8573\u6509\u7295\u1e55\ua744\u6818\u1eed\u1d8a\ud9e4\u2de8\ue869\ud508\u15b7\u12ff\u45e5\u1a2a\ub410\u0dfd\u18aa\uf705\u78e2\ud042\u03a2\ue29d\uecc4\uc647\u0b97\u6d63\u18ae\u3976\uee27\ue13f\u7ed6\u3c80\u7023\ue120\ueefb\ud552\u49df\u0f79\u456a\u9fc6\u25e4\ue1e7\u9f91\uad4d\ue381\u6297\u67e8\u620b\u46d0\ue09d\udf0a\u84cd\u40c9\u17e3\u2d9e\uaf3e\uf330\ufd64\u6958\u9c42\u29f8\u34f2\u2617\uee40\u3bce\u8482\uabe7\u2efa\u8239\u1b6f\u70cc\uf897\u7ff7\u70d8\u89ad\uecc0\ude67\u8041\ua650\ub920\u8cc3\uff98\uae5d\uc19a\u3024\u8616\u5cfc\u755e\ua7b2\u2d03\uaa38\u5139\u82d6\u37c7\udf1f\u4f49\u4f4c\u8630\ua5a2\uac66\u87c8\u4c52\uaaca\u5928\u57d8\uad15\u62df\u7e65\u5bfc\ud751\ue53f\u330d\u3b4c\u3278\ub531\u850d\u7237\u70ec\uf791\u39bc\u065c\u60d8\ue2b6\u54d7\u0ce2\u9439\ude40\uc5df\u03af\uf0a9\u7310\ube5d\u1e67\ue56d\ucf04\uc09b\u621b\u765d\u51ee\u6e4d\ua31a"",""\u798f \u9152\u5427"":{""fu"":7.594634496125763e+307,""bar"":4.917248110773415e+307}}",,"-1939134087127934976 --783317126714133504 -408402728815561728 -2790179761143438336 --2030379925975099392 --930730582242601984 -1708985370322772992 --710843948449201152 --2162433157604812800 -743138391303234560 -4274087628838457344 -3492731007232914432 -711543539473144832 --2757007294955430912 -2338648872187730944 -1562454300375561216 -509039703783318528 --4255681390151379968 -2309315116807113728 -2818756022609316864 -807159973689811968 -1146955707688539136 -2043245976241980416 -2403781029811765248 -1824916782477500416 -617886964019404800 --2213040551755603968 --2187622617504796672 -3265859789356805120 -4301002169898877952 -40664451641474048 --1156334181302552576 --4594563421644308480 -3830566501015548928 --3918599088309009408 -237673757076841472 --36660630776601600 -1773836630284593152 -1316284928280885248 -901198431331668992 --1445449363286669312 -2265269751523597312 -2865834668246955008 --597035168910559232 --2046828047847208960 --4033072499110019072 --1915840016450397184 --2404410365259554816 -997635225004403712 --2113188656345629696 -1602534031306798080 -1502064451328337920 -3844797358929325056 --661878032298228736 -4080642434022460416 --1819788240080920576 --1743310001046754304 --1900029872355644416 -3801988519145179136 --4042951162644990976 -506401094645384192 -380240954535919616 --4058969418606798848 --2493205423173678080 --1674089596248323072 --2305577060661411840 -4535509712109628416 --3016646946756840448 -403013968121425920 -1039693837290309632 -3935913764576459776 --2567336012470659072 --246371261096933376 -2772338474095449088 --229758421191444480 --3662831422311852032 --4233036344269114368 -1660694494584489984 --2400701099426754560 --219589304892561408 -4183033498830149632 --27209982856794112 -806623788802017280 -4235906927929891840 --2258342493356297216 --1424152335975430144 -4523350761068124160 -217699609475306496 -721868594230889472 -1573793902615981056 --2749742996572416000 --2099445004911157248 --250016862069467136 --880219713854554112 --2556945585179238400 --3233754148337061888 -4235423559520519168 -1880604276377362432 --1415216936830287872 --924563375962618880 --3707559486462702592 --582599624857360384 --2808612215419868160 --1432140858451947520 --808184826608100352 --812613386695283712 -1293093418349965312 -3223517095721401344 -3369810220123686912 --1655399776404763648 --4589468937922409472 --1276460954885667840 --1120286569751373824 -1831781824538690560 --696113679848163328 -3782122280946782208 --2672576741936026624 -1422498786368005120 --2587498185022409728 --3314237033201181696 -3342500434272398336 -3661804036340436992 --4173941322710397952 -2185938396140717056 -3906935097111737344 -1328747226078845952 -2655278002720589824 --1348925826876293120 -2280864504259874816 --2276260840799262720 -3798865006710087680 --1487660897169751040 --2934717247179510784 -871329737004786688 -2407963510109681664 --1549132259477824512 --1928263115517437952 --4511662778348664832 --826532182821612544 --2852831002388108288 -1927992424003570688 -3926909832407449600 -1028134538029514752 --1427827613901444096 --4565299451657003008 -1544448399566716928 -3767271191728116736 -187224022137093120 --1468832441745846272 --3295750278059882496 --2126781547719182336 -586779366324902912 -2049738822143878144 --2736069442299538432 --1346543144367992832 --2842991798183457792 --1485953684211962880 -4106104154648993792 --4193728302547584000 --2711673537649991680 -187325348565087232 -2994465439749775360 --1923723622984662016 --34788437563414528 --1808581724068447232 --2425289072270714880 -4390375652095284224 -1753174268487195648 -422090183120740352 -196960728018140160 -4006112363733974016 --3495692611361386496 --1518164016878617600 --2272106855309290496 -2839834393973346304 -2632920246870634496 --2786020375669617664 --856167419731075072 -953002235326443520 --4405665781389248512 --1404841424026193920 -2625497867752062976 -1207707703331781632 -1732660295044005888 --723698175864374272 -4265189362853801984 --1348918743196763136 -2922796376485010432 --3604922115287325696 -949503016201466880 -1913675230898656256 -50404006176208896 --530763509169419264 --326931361060606976 -4289479071368497152 --1245680473171642368 --2558897753335728128 --2833619295750757376 --3963652285992138752 -955724589763696640 --346530559073448960 -3994202803817241600 --1287352351217873920 -2265098329321526272 --4035944146707156992 --830585153415726080 --1226935569262222336 --1592710188376136704 --4108596028176077824 -379727885329090560 -4355179854398277632 -1966182979742562304 --659915722567805952 --4271910003577615360 -3299477175372917760 --1228689820241474560 --899693162905984000 -4261023907930953728 --4035470808138389504 -837500505911584768 -3844046944055043072 --3933299260118877184 --292002208693213184 --1751443530992287744 --12326390602864640 -2682376930909995008 -3441411839554103296 --3148163889983205376 --979643479175145472 --2892087577109436416 -2017959939815741440 --263531322767180800 --2504380790888647680 -2154407530080983040 -2395054780889543680 --1369667371722594304 --1974010809160066048 -2074331902607261696 --4495925838701717504 --2499445522834002944 -4512929805880657920 --1392369359937041408 -1116169873664869376 -1392417956644491264 -2831734013246944256 --2416211253379224576 -2301921257148421120 --4353241967828345856 --1599353712940401664 --4140796046663718912 --476647143136369664 -1530458740218885120 --1976399420244667392 --676468168608973824 --1700952706175954944 --3985639471456514048 -2454668429644869632 --4290271111735545856 -3273490168507367424 --1100583681152056320 --822071073459858432 -1698711324553977856 -3056426698645642240 --107573464322308096 --96937247012287488 -118481444907779072 -76165325528797184 -4385336428009538560 --2674857804626275328 -1586839022061974528 --2084661135425891328 -4034528686159872000 -4522755935731734528 --2388292869081371648 --3037269718841975808 -3357212601057671168 --2697448183301480448 --1907452219851397120 --2464106846356248576 -3305603109342479360 --4490175767325334528 -2527901888076579840 -3317561585869166592 -1259922415697644544 --2767619604963122176 --4328259684803110912 --3246947750269449216 --3300675214479084544 -2095119497267636224 --3246583928605959168 --1962952609699277824 --1374373828801599488 --1767961227783393280 -1414394180195826688 --3765368286895814656 -1060169027741802496 -49977555808410624 -1575421062623244288 --4599821508494334976 -2084003015502001152 -3096560602890725376 --1908084134157322240 --2123245343344702464 -4163420291025710080 -3674493177249829888 --3846085389573412864 -3986966211769321472 --3720445062736172032 -4411437534032990208 -785536497424427008 -999107407665938432 -4440631632503916544 -3433373153989009408 -4392957048491166720 --1006001054089908224 -2898278696813957120 --2416637156126120960 -2388585137734580224 --1337428020024790016 -2603372061935024128 --4504523700074882048 -1173470897116690432 --4537750723848719360 --3320440199309598720 --3221100441232545792 --4484521822005425152 -2757067207006509056 --1856129713197235200 --3845354583206079488 --3948977766703480832 --3792531480008711168 -1758272442872956928 --3838977081950858240 -2396137829922291712 --1447689785652093952 -2769956603775169536 -3812228651876322304 --3195152941630752768 -2257678341800843264 -3001028715407952896 --3106431200926918656 --2153799965909689344 -291986894675416064 -2929503706788378624 --1493192036641032192 --4520075371679968256 --1260036041772901376 --2191681710734188544 -3235138577405862912 -1759717977823994880 --1837019730396483584 -610069883200900096 -1957894871815111680 -3585629194436483072 --424001164345360384 --227106615244697600 -4540669043976446976 -3186346354314551296 -3935078485151544320 -54162191702634496 -3278704365529539584 --1820522013751694336 --1258019055183325184 -3953904214247443456 -68758599886401536 --1984942191331335168 --543479563951470592 -3492307143481560064 -3753213240147351552 -4093143825777870848 --1711018595145707520 --1724892783575142400 --520568238299301888 --3857584157222171648 -3535794612931991552 --3351706203442472960 -3682328282048394240 -2386863803055932416 -3111186974119428096 -2644974679511373824 --863872039527137280 --1472116696318651392 -1300753038571288576 --2159497477736844288 --4337588871241809920 --1276883051117233152 -436369981979115520 -2084366743677359104 --3466052171041862656 -399831496430392320 --2627906385180760064 --2256609770179183616 -3444457841496179712 --2142087530862592 -1901771627142393856 -3718928620714537984 -861648089532243968 -3384873288491714560 --414142015060897792 --2402111910648207360 -2079053655758835712 -3719953212188988416 --3344482466975889408 --2781738577643611136 -893214063437571072 -731516412954686464 --4560057606175637504 --1936548835922613248 -3552732514120341504 --3899444490961351680 -1418060374321086464 -709232751015322624 --1639410806459827200 -1470317069645384704 -208294707769536512 -4025975850692761600 -1486201587053187072 --4324343974978934784 -122876378311289856 -58140104596580352 -1792533910345939968 -2093081615790888960 --1022097261264045056 -2297796134540758016 -4310597654540104704 -3695773112770659328 --874119878171304960 --791506410256740352 --1930616938699431936 --3268346371468734464 --2653440008949079040 --1627769495638945792 -2462286916105357312 -3719383827282603008 -2542168931341638656 --2378896254569980928 -3486432434084825088 -2523309765541470208 --3654430453297043456 -3475344325650360320 --3952618666173945856 -2336377861974371328 --1185637894990825472 -1880014836647193600 -318793177720530944 --3435847737068189696 --1766972208083163136 --2417115261696415744 --4428249555534383104 --2230641227599117312 --2545863605866859520 -1804089430129341440 --931394828877735936 -3438039036244011008 --954935685775794176 --2611367807839601664 --3153855458297721856 -3703997157621261312 --1061195288901458944 --2935637168156505088 -2812332250073335808 --3999917798987569152 --3294042252114353152 --984046741303750656 --3845320333736028160 -3812947722845733888 --4317119801468014592 --581393130336086016 -3321001078745395200 -438661680975045632 --4371702338653282304 --3359931514704444416 --1753875872022338560 -473971153463156736 -4219104816331980800 --3407797481048084480 -205980027428455424 -3773629849109823488 -1890496928817375232 -4020269595936472064 --229779128917583872 -4330095345536437248 -1737926877961631744 --1643407430107739136 -4051059545932572672 --1116385444735134720 --1129636163670400000 --3033004245033240576 -224844493613793280 -110628521824285696 -1178723269287566336 -1331307593228225536 -1208854124956834816 --292705602046750720 --2601943398526312448 --4488415379009867776 --623735132598422528 --1191822726373306368 -4044507106400397312 -3055836122066149376 --4222418837040548864 -4373059069364208640 -773892832775847936 -4257628757809905664 -4393900420596273152 -1297369212988574720 --360707415367173120 --2201188391778994176 -2975711307229319168 --2533276958895190016 --1983369719541479424 --4346512825162469376 -1420351779977846784 -602059754496304128 -2224750861971422208 --1363580484592865280 --1801994929261955072 -2372698276517975040 --462147334720199680 -4198917973303767040 -3270794494928236544 --2869586835694383104 -802230710944492544 --850489764634354688 -3051356888254381056 -3452864078978632704 --3256358919517993984 --3107224356634995712 -2182311506843301888 -3161350173686303744 --252924285825598464 --3588448441772024832 -3501994781853885440 --3380094854515246080 --2543861670862570496 -1273280921896875008 --3775332219423509504 --2981272302675334144 -1456307495067536384 --3144752046063628288 -444080373832419328 --650489423055028224 -3735099932688975872 -1051660863727090688 --3879962654458188800 -4570208169394973696 -1905366894428844032 -3990736547183079424 -3170982849425960960 --3991322011988248576 --4444137778725649408 --2835809904703791104 --1495625090933114880 --317122448911182848 -1384893020233754624 --3845826946133248000 -32987933190846464 --961545679262943232 --2925148580573707264 -3967926028661376000 -835864903849419776 -1025322599161818112 -942772698247849984 -167684677747953664 --2225150313126033408 --1703736957370634240 -1463808322297349120 --834785216588941312 -1194313961152156672 --2940584410173168640 -2274078869609562112 -860232274060094464 --3801912441650898944 --3682630548966858752 --2188335113802051584 --3163953222443642880 -3905956440996519936 -2776725649030913024 --224331495622040576 --4000491880224865280 -1575153111154743296 -3590822139082761216 --2374151304697271296 --4245576872127349760 --396334189928059904 -1131647704520473600 --3374419903255079936 -4039382748990134272 --3187929512317267968 --2979540972515864576 -3275239359866033152 -934454291062489088 --1043340220253144064 -4580774595947384832 --3703322787255329792 --4211145683084212224 -1346907670838124544 --1712234777920652288 --2030757091344800768 -3063553621218007040 --831224552013398016 --4366046378402969600 -3030537393209945088 --2762411249120157696 -3761966255906589696 -2167479742801348608 --1662904731298499584 --661429752923960320 --1741634271580012544 --961694561085239296 --2261090517833779200 --3584740616705561600 -1375732106438180864 --2650517467128146944 --3339814801813223424 -3000790861860624384 -4192590747767847936 -2008827527442678784 -3744294893832045568 --2630690940158256128 -937839597443674112 --599954374000046080 -1842685641840700416 --2360589937536658432 --3193919734140562432 -1217242521967074304 --3509831599682463744 --1171155381824300032 -172667939016060928 -3683829909575598080 --1912014524224706560 --2130631464583175168 --3195395542746535936 -1667937298575751168 -3494554532120091648 -4174696303401450496 --383888233184727040 --4160796705132616704 --294358888874316800 -4581007235765912576 --3043977454439650304 --2240840068015425536 --3013025187725693952 -1618673065649997824 -2766156538770808832 -1810131702359280640 --2275013699986138112 --2912286940421514240 --2210195911694201856 -3644531299591337984 -1473488597852574720 --3721590016166788096 -2332970663503677440 -302423737470924800 --2626700263049006080 -4269371299610521600 --3083989003936991232 --2846728303770078208 --808436526616497152 --146328928391280640 --2526727257414460416 -1121857846589069312 --3453774312089789440 -2586725384220250112 -3704719253429509120 -3350350766451780608 --385684644596631552 -2808454299793245184 --888988206626929664 --4080602577025364992 -4356525498315707392 --2400853743755254784 -1311853463453553664 -2886665751713771520 -1326289459323058176 --689256708078137344 -596548357565810688 --2015690209784083456 --4060302849029299200 --3698634331393419264 -2684345887775443968 --1960592632039668736 -2528553378298895360 -1508029796348969984 -2625321536094721024 -364678557390452736 --4389618511985993728 --3119305643445407744 -2658046623873448960 --3188471451198737408 -1064308713410698240 --1661764774824498176 --3659156009117398016 -381320737112067072 -1676392004727171072 -2997143833623739392 --3307517026442927104 --352309220777059328 -279000447834193920 -860337410077654016 -645870065041099776 -2876137389468745728 --3539780951640786944 -462127303867523072 --436880237429384192 -3244359545632013312 -1023519930611427328 --3652706543460222976 -2622444848862261248 --37186698265242624 -1584653003818572800 --3066075587668732928 -3021174204306460672 -1822296185399498752 --2923909829956722688 -4193963809525809152 --137098630674294784 --591547464919876608 --3790656107682248704 -3982094452706117632 -2566363700394266624 -3567689248712359936 -3789282863564715008 --4336607647307402240 --4289035106440300544 --39247931111218176 --933241242257700864 -4293010165265035264 --4426713180349607936 --2970046966302237696 --985269205916030976 -4049429283257187328 -217571056925938688 --1209429929359769600 -4376719722620476416 -367396974400954368 --774743400492012544 -1514409166185528320 -1476287288125036544 -4043031399535591424 -2862409463199384576",$-1939134087127934976$;$-783317126714133504$;$408402728815561728$;$2790179761143438336$;$-2030379925975099392$;$-930730582242601984$;$1708985370322772992$;$-710843948449201152$;$-2162433157604812800$;$743138391303234560$;$4274087628838457344$;$3492731007232914432$;$711543539473144832$;$-2757007294955430912$;$2338648872187730944$;$1562454300375561216$;$509039703783318528$;$-4255681390151379968$;$2309315116807113728$;$2818756022609316864$;$807159973689811968$;$1146955707688539136$;$2043245976241980416$;$2403781029811765248$;$1824916782477500416$;$617886964019404800$;$-2213040551755603968$;$-2187622617504796672$;$3265859789356805120$;$4301002169898877952$;$40664451641474048$;$-1156334181302552576$;$-4594563421644308480$;$3830566501015548928$;$-3918599088309009408$;$237673757076841472$;$-36660630776601600$;$1773836630284593152$;$1316284928280885248$;$901198431331668992$;$-1445449363286669312$;$2265269751523597312$;$2865834668246955008$;$-597035168910559232$;$-2046828047847208960$;$-4033072499110019072$;$-1915840016450397184$;$-2404410365259554816$;$997635225004403712$;$-2113188656345629696$;$1602534031306798080$;$1502064451328337920$;$3844797358929325056$;$-661878032298228736$;$4080642434022460416$;$-1819788240080920576$;$-1743310001046754304$;$-1900029872355644416$;$3801988519145179136$;$-4042951162644990976$;$506401094645384192$;$380240954535919616$;$-4058969418606798848$;$-2493205423173678080$;$-1674089596248323072$;$-2305577060661411840$;$4535509712109628416$;$-3016646946756840448$;$403013968121425920$;$1039693837290309632$;$3935913764576459776$;$-2567336012470659072$;$-246371261096933376$;$2772338474095449088$;$-229758421191444480$;$-3662831422311852032$;$-4233036344269114368$;$1660694494584489984$;$-2400701099426754560$;$-219589304892561408$;$4183033498830149632$;$-27209982856794112$;$806623788802017280$;$4235906927929891840$;$-2258342493356297216$;$-1424152335975430144$;$4523350761068124160$;$217699609475306496$;$721868594230889472$;$1573793902615981056$;$-2749742996572416000$;$-2099445004911157248$;$-250016862069467136$;$-880219713854554112$;$-2556945585179238400$;$-3233754148337061888$;$4235423559520519168$;$1880604276377362432$;$-1415216936830287872$;$-924563375962618880$;$-3707559486462702592$;$-582599624857360384$;$-2808612215419868160$;$-1432140858451947520$;$-808184826608100352$;$-812613386695283712$;$1293093418349965312$;$3223517095721401344$;$3369810220123686912$;$-1655399776404763648$;$-4589468937922409472$;$-1276460954885667840$;$-1120286569751373824$;$1831781824538690560$;$-696113679848163328$;$3782122280946782208$;$-2672576741936026624$;$1422498786368005120$;$-2587498185022409728$;$-3314237033201181696$;$3342500434272398336$;$3661804036340436992$;$-4173941322710397952$;$2185938396140717056$;$3906935097111737344$;$1328747226078845952$;$2655278002720589824$;$-1348925826876293120$;$2280864504259874816$;$-2276260840799262720$;$3798865006710087680$;$-1487660897169751040$;$-2934717247179510784$;$871329737004786688$;$2407963510109681664$;$-1549132259477824512$;$-1928263115517437952$;$-4511662778348664832$;$-826532182821612544$;$-2852831002388108288$;$1927992424003570688$;$3926909832407449600$;$1028134538029514752$;$-1427827613901444096$;$-4565299451657003008$;$1544448399566716928$;$3767271191728116736$;$187224022137093120$;$-1468832441745846272$;$-3295750278059882496$;$-2126781547719182336$;$586779366324902912$;$2049738822143878144$;$-2736069442299538432$;$-1346543144367992832$;$-2842991798183457792$;$-1485953684211962880$;$4106104154648993792$;$-4193728302547584000$;$-2711673537649991680$;$187325348565087232$;$2994465439749775360$;$-1923723622984662016$;$-34788437563414528$;$-1808581724068447232$;$-2425289072270714880$;$4390375652095284224$;$1753174268487195648$;$422090183120740352$;$196960728018140160$;$4006112363733974016$;$-3495692611361386496$;$-1518164016878617600$;$-2272106855309290496$;$2839834393973346304$;$2632920246870634496$;$-2786020375669617664$;$-856167419731075072$;$953002235326443520$;$-4405665781389248512$;$-1404841424026193920$;$2625497867752062976$;$1207707703331781632$;$1732660295044005888$;$-723698175864374272$;$4265189362853801984$;$-1348918743196763136$;$2922796376485010432$;$-3604922115287325696$;$949503016201466880$;$1913675230898656256$;$50404006176208896$;$-530763509169419264$;$-326931361060606976$;$4289479071368497152$;$-1245680473171642368$;$-2558897753335728128$;$-2833619295750757376$;$-3963652285992138752$;$955724589763696640$;$-346530559073448960$;$3994202803817241600$;$-1287352351217873920$;$2265098329321526272$;$-4035944146707156992$;$-830585153415726080$;$-1226935569262222336$;$-1592710188376136704$;$-4108596028176077824$;$379727885329090560$;$4355179854398277632$;$1966182979742562304$;$-659915722567805952$;$-4271910003577615360$;$3299477175372917760$;$-1228689820241474560$;$-899693162905984000$;$4261023907930953728$;$-4035470808138389504$;$837500505911584768$;$3844046944055043072$;$-3933299260118877184$;$-292002208693213184$;$-1751443530992287744$;$-12326390602864640$;$2682376930909995008$;$3441411839554103296$;$-3148163889983205376$;$-979643479175145472$;$-2892087577109436416$;$2017959939815741440$;$-263531322767180800$;$-2504380790888647680$;$2154407530080983040$;$2395054780889543680$;$-1369667371722594304$;$-1974010809160066048$;$2074331902607261696$;$-4495925838701717504$;$-2499445522834002944$;$4512929805880657920$;$-1392369359937041408$;$1116169873664869376$;$1392417956644491264$;$2831734013246944256$;$-2416211253379224576$;$2301921257148421120$;$-4353241967828345856$;$-1599353712940401664$;$-4140796046663718912$;$-476647143136369664$;$1530458740218885120$;$-1976399420244667392$;$-676468168608973824$;$-1700952706175954944$;$-3985639471456514048$;$2454668429644869632$;$-4290271111735545856$;$3273490168507367424$;$-1100583681152056320$;$-822071073459858432$;$1698711324553977856$;$3056426698645642240$;$-107573464322308096$;$-96937247012287488$;$118481444907779072$;$76165325528797184$;$4385336428009538560$;$-2674857804626275328$;$1586839022061974528$;$-2084661135425891328$;$4034528686159872000$;$4522755935731734528$;$-2388292869081371648$;$-3037269718841975808$;$3357212601057671168$;$-2697448183301480448$;$-1907452219851397120$;$-2464106846356248576$;$3305603109342479360$;$-4490175767325334528$;$2527901888076579840$;$3317561585869166592$;$1259922415697644544$;$-2767619604963122176$;$-4328259684803110912$;$-3246947750269449216$;$-3300675214479084544$;$2095119497267636224$;$-3246583928605959168$;$-1962952609699277824$;$-1374373828801599488$;$-1767961227783393280$;$1414394180195826688$;$-3765368286895814656$;$1060169027741802496$;$49977555808410624$;$1575421062623244288$;$-4599821508494334976$;$2084003015502001152$;$3096560602890725376$;$-1908084134157322240$;$-2123245343344702464$;$4163420291025710080$;$3674493177249829888$;$-3846085389573412864$;$3986966211769321472$;$-3720445062736172032$;$4411437534032990208$;$785536497424427008$;$999107407665938432$;$4440631632503916544$;$3433373153989009408$;$4392957048491166720$;$-1006001054089908224$;$2898278696813957120$;$-2416637156126120960$;$2388585137734580224$;$-1337428020024790016$;$2603372061935024128$;$-4504523700074882048$;$1173470897116690432$;$-4537750723848719360$;$-3320440199309598720$;$-3221100441232545792$;$-4484521822005425152$;$2757067207006509056$;$-1856129713197235200$;$-3845354583206079488$;$-3948977766703480832$;$-3792531480008711168$;$1758272442872956928$;$-3838977081950858240$;$2396137829922291712$;$-1447689785652093952$;$2769956603775169536$;$3812228651876322304$;$-3195152941630752768$;$2257678341800843264$;$3001028715407952896$;$-3106431200926918656$;$-2153799965909689344$;$291986894675416064$;$2929503706788378624$;$-1493192036641032192$;$-4520075371679968256$;$-1260036041772901376$;$-2191681710734188544$;$3235138577405862912$;$1759717977823994880$;$-1837019730396483584$;$610069883200900096$;$1957894871815111680$;$3585629194436483072$;$-424001164345360384$;$-227106615244697600$;$4540669043976446976$;$3186346354314551296$;$3935078485151544320$;$54162191702634496$;$3278704365529539584$;$-1820522013751694336$;$-1258019055183325184$;$3953904214247443456$;$68758599886401536$;$-1984942191331335168$;$-543479563951470592$;$3492307143481560064$;$3753213240147351552$;$4093143825777870848$;$-1711018595145707520$;$-1724892783575142400$;$-520568238299301888$;$-3857584157222171648$;$3535794612931991552$;$-3351706203442472960$;$3682328282048394240$;$2386863803055932416$;$3111186974119428096$;$2644974679511373824$;$-863872039527137280$;$-1472116696318651392$;$1300753038571288576$;$-2159497477736844288$;$-4337588871241809920$;$-1276883051117233152$;$436369981979115520$;$2084366743677359104$;$-3466052171041862656$;$399831496430392320$;$-2627906385180760064$;$-2256609770179183616$;$3444457841496179712$;$-2142087530862592$;$1901771627142393856$;$3718928620714537984$;$861648089532243968$;$3384873288491714560$;$-414142015060897792$;$-2402111910648207360$;$2079053655758835712$;$3719953212188988416$;$-3344482466975889408$;$-2781738577643611136$;$893214063437571072$;$731516412954686464$;$-4560057606175637504$;$-1936548835922613248$;$3552732514120341504$;$-3899444490961351680$;$1418060374321086464$;$709232751015322624$;$-1639410806459827200$;$1470317069645384704$;$208294707769536512$;$4025975850692761600$;$1486201587053187072$;$-4324343974978934784$;$122876378311289856$;$58140104596580352$;$1792533910345939968$;$2093081615790888960$;$-1022097261264045056$;$2297796134540758016$;$4310597654540104704$;$3695773112770659328$;$-874119878171304960$;$-791506410256740352$;$-1930616938699431936$;$-3268346371468734464$;$-2653440008949079040$;$-1627769495638945792$;$2462286916105357312$;$3719383827282603008$;$2542168931341638656$;$-2378896254569980928$;$3486432434084825088$;$2523309765541470208$;$-3654430453297043456$;$3475344325650360320$;$-3952618666173945856$;$2336377861974371328$;$-1185637894990825472$;$1880014836647193600$;$318793177720530944$;$-3435847737068189696$;$-1766972208083163136$;$-2417115261696415744$;$-4428249555534383104$;$-2230641227599117312$;$-2545863605866859520$;$1804089430129341440$;$-931394828877735936$;$3438039036244011008$;$-954935685775794176$;$-2611367807839601664$;$-3153855458297721856$;$3703997157621261312$;$-1061195288901458944$;$-2935637168156505088$;$2812332250073335808$;$-3999917798987569152$;$-3294042252114353152$;$-984046741303750656$;$-3845320333736028160$;$3812947722845733888$;$-4317119801468014592$;$-581393130336086016$;$3321001078745395200$;$438661680975045632$;$-4371702338653282304$;$-3359931514704444416$;$-1753875872022338560$;$473971153463156736$;$4219104816331980800$;$-3407797481048084480$;$205980027428455424$;$3773629849109823488$;$1890496928817375232$;$4020269595936472064$;$-229779128917583872$;$4330095345536437248$;$1737926877961631744$;$-1643407430107739136$;$4051059545932572672$;$-1116385444735134720$;$-1129636163670400000$;$-3033004245033240576$;$224844493613793280$;$110628521824285696$;$1178723269287566336$;$1331307593228225536$;$1208854124956834816$;$-292705602046750720$;$-2601943398526312448$;$-4488415379009867776$;$-623735132598422528$;$-1191822726373306368$;$4044507106400397312$;$3055836122066149376$;$-4222418837040548864$;$4373059069364208640$;$773892832775847936$;$4257628757809905664$;$4393900420596273152$;$1297369212988574720$;$-360707415367173120$;$-2201188391778994176$;$2975711307229319168$;$-2533276958895190016$;$-1983369719541479424$;$-4346512825162469376$;$1420351779977846784$;$602059754496304128$;$2224750861971422208$;$-1363580484592865280$;$-1801994929261955072$;$2372698276517975040$;$-462147334720199680$;$4198917973303767040$;$3270794494928236544$;$-2869586835694383104$;$802230710944492544$;$-850489764634354688$;$3051356888254381056$;$3452864078978632704$;$-3256358919517993984$;$-3107224356634995712$;$2182311506843301888$;$3161350173686303744$;$-252924285825598464$;$-3588448441772024832$;$3501994781853885440$;$-3380094854515246080$;$-2543861670862570496$;$1273280921896875008$;$-3775332219423509504$;$-2981272302675334144$;$1456307495067536384$;$-3144752046063628288$;$444080373832419328$;$-650489423055028224$;$3735099932688975872$;$1051660863727090688$;$-3879962654458188800$;$4570208169394973696$;$1905366894428844032$;$3990736547183079424$;$3170982849425960960$;$-3991322011988248576$;$-4444137778725649408$;$-2835809904703791104$;$-1495625090933114880$;$-317122448911182848$;$1384893020233754624$;$-3845826946133248000$;$32987933190846464$;$-961545679262943232$;$-2925148580573707264$;$3967926028661376000$;$835864903849419776$;$1025322599161818112$;$942772698247849984$;$167684677747953664$;$-2225150313126033408$;$-1703736957370634240$;$1463808322297349120$;$-834785216588941312$;$1194313961152156672$;$-2940584410173168640$;$2274078869609562112$;$860232274060094464$;$-3801912441650898944$;$-3682630548966858752$;$-2188335113802051584$;$-3163953222443642880$;$3905956440996519936$;$2776725649030913024$;$-224331495622040576$;$-4000491880224865280$;$1575153111154743296$;$3590822139082761216$;$-2374151304697271296$;$-4245576872127349760$;$-396334189928059904$;$1131647704520473600$;$-3374419903255079936$;$4039382748990134272$;$-3187929512317267968$;$-2979540972515864576$;$3275239359866033152$;$934454291062489088$;$-1043340220253144064$;$4580774595947384832$;$-3703322787255329792$;$-4211145683084212224$;$1346907670838124544$;$-1712234777920652288$;$-2030757091344800768$;$3063553621218007040$;$-831224552013398016$;$-4366046378402969600$;$3030537393209945088$;$-2762411249120157696$;$3761966255906589696$;$2167479742801348608$;$-1662904731298499584$;$-661429752923960320$;$-1741634271580012544$;$-961694561085239296$;$-2261090517833779200$;$-3584740616705561600$;$1375732106438180864$;$-2650517467128146944$;$-3339814801813223424$;$3000790861860624384$;$4192590747767847936$;$2008827527442678784$;$3744294893832045568$;$-2630690940158256128$;$937839597443674112$;$-599954374000046080$;$1842685641840700416$;$-2360589937536658432$;$-3193919734140562432$;$1217242521967074304$;$-3509831599682463744$;$-1171155381824300032$;$172667939016060928$;$3683829909575598080$;$-1912014524224706560$;$-2130631464583175168$;$-3195395542746535936$;$1667937298575751168$;$3494554532120091648$;$4174696303401450496$;$-383888233184727040$;$-4160796705132616704$;$-294358888874316800$;$4581007235765912576$;$-3043977454439650304$;$-2240840068015425536$;$-3013025187725693952$;$1618673065649997824$;$2766156538770808832$;$1810131702359280640$;$-2275013699986138112$;$-2912286940421514240$;$-2210195911694201856$;$3644531299591337984$;$1473488597852574720$;$-3721590016166788096$;$2332970663503677440$;$302423737470924800$;$-2626700263049006080$;$4269371299610521600$;$-3083989003936991232$;$-2846728303770078208$;$-808436526616497152$;$-146328928391280640$;$-2526727257414460416$;$1121857846589069312$;$-3453774312089789440$;$2586725384220250112$;$3704719253429509120$;$3350350766451780608$;$-385684644596631552$;$2808454299793245184$;$-888988206626929664$;$-4080602577025364992$;$4356525498315707392$;$-2400853743755254784$;$1311853463453553664$;$2886665751713771520$;$1326289459323058176$;$-689256708078137344$;$596548357565810688$;$-2015690209784083456$;$-4060302849029299200$;$-3698634331393419264$;$2684345887775443968$;$-1960592632039668736$;$2528553378298895360$;$1508029796348969984$;$2625321536094721024$;$364678557390452736$;$-4389618511985993728$;$-3119305643445407744$;$2658046623873448960$;$-3188471451198737408$;$1064308713410698240$;$-1661764774824498176$;$-3659156009117398016$;$381320737112067072$;$1676392004727171072$;$2997143833623739392$;$-3307517026442927104$;$-352309220777059328$;$279000447834193920$;$860337410077654016$;$645870065041099776$;$2876137389468745728$;$-3539780951640786944$;$462127303867523072$;$-436880237429384192$;$3244359545632013312$;$1023519930611427328$;$-3652706543460222976$;$2622444848862261248$;$-37186698265242624$;$1584653003818572800$;$-3066075587668732928$;$3021174204306460672$;$1822296185399498752$;$-2923909829956722688$;$4193963809525809152$;$-137098630674294784$;$-591547464919876608$;$-3790656107682248704$;$3982094452706117632$;$2566363700394266624$;$3567689248712359936$;$3789282863564715008$;$-4336607647307402240$;$-4289035106440300544$;$-39247931111218176$;$-933241242257700864$;$4293010165265035264$;$-4426713180349607936$;$-2970046966302237696$;$-985269205916030976$;$4049429283257187328$;$217571056925938688$;$-1209429929359769600$;$4376719722620476416$;$367396974400954368$;$-774743400492012544$;$1514409166185528320$;$1476287288125036544$;$4043031399535591424$;$2862409463199384576$,큅Ь䱘⠆썟濿嵍罶짱૾ဿ乁貮⸸荖ᚉ焣睬적㛇籴ꯃ퓙堶땅㡍۩ዹ娚胮傍삙끝ᣐ⚑袎嵙嘽ꈩ尠솰쥽厽暞䒺୷⚠ও辄柉祛έ艎턇৯␹頚梿꓁逴䧍ູ崮ᑙF왈䏳䎰뫓뎠ᛉᐔ樾萯ꁰ枚ᷰ❶䎚푴툪₂퓥옄ࣤⵃᨥ瑸靫⫹楐帙兖鍣瓨搥ړ绒皖萱୫崬鋪㔠꼸ʁ뜷劰⵶暚Ხ䜼슒ℕ輁㗟ᙊ騗偞溭䩹ᦼ봈ᯥ똟䯗㭷偟係広⯤䰐쀙猱妟杻錇伂ᄫ鬯墬튯궊쀅ஶ诏켵ᕥ벮锸嬩弢ẟ럙ḭᗜᠣ缗䑧鉶呰쌓裤૥跥盒䜡뒋誋ﵤស啟옴쑲癨뾴偫ꁇ鼡꼿캜宭찚⍅Ὣ봿蹺먝騴鳛盗覒票ﮯ慏꧿꙾悫ᎍ樂粋㦰⭡号䶓艿ڷ短ޠ㸙谩㵜뗂樂齊壞忶犐뮈飣喋闟酝튙⎬蘣툱Ĉ㾭䠡骯ꛉ翬䏒뢤揶뤾꩑鬢啜⿝䕽廥쓓䐭ટ늺ࠤ帒콿ꋳꈺ恚瞨揁롳咸䞲앶౪俴灀㐐z瀞ꞥﲯ뤃ᚏ▤⠻᭍ɬ颳뀠㹄肦㫄셓錪⚱訧兢륈ᮕ쁷扂碡㡋ᄊꨙ㲣䄠雃魳䙯쪆ᅊ〖䟃␮擡煷눯㧭웉⹻鎻ㄤ쒋登톸ⳅ﵂捬랣ں嚧뭷ὺ壅ߑ沴慼Ɖⴷ鿽ಭ岜벻㓧ը夿؎쓮쉋볔太號⧭⑊⠐Ǘ謹㙈, -16,,1443154423.05,,_qn,,"{""a"":1.3393513705955262e+308,""b"":""\ue838\ua052\u39cf\uda1b\u26f2\u8f85\u3199\u0f3f\ub7e9\uac54\u8074\u17ae\u06fa\ub7b2\u8113\u6e0f\u6c82\u7677\uaef0\u59bb\u38af\u0130\u752e\ua1a0\udf5b\u0a83\u1965\u4f4a\u85b2\u333a\ud76a\u2bdf\u8862\udbd4\u5429\u2e0f\u0d9c\u75b8\uc02c\u1206\uec67\uaef8\uaf6f\u4163\u3e01\ua2ab\u7719\u7333\ubc30\u9742\u670f\ue979\u9e59\u7823\u204a\ub08b\ub11a\u860f\udae6\u749a\uc716\uebba\udd26\ue101\u3bcd\u0a40\ud48a\u6666\ub7e2\uc33b\u976d\u372d\u1ad9\uda22\uc5ed\ueea7\u5d84\u8575\ua346\u374f\ucd51\ub16c\u1aa0\u4ba0\u6099\u8ba1\ub70c\ucbfb\uf684\u5520\ueb80\uf477\u5f2f\u15ab\ucd6f\u760a\u14cd\u99b9\u466d\ue44e\u49bd\ud863\u9ac2\u107a\ubd50\u8774\ufbd8\ua0d5\u5dfa\u89e6\ufed5\u9f8d\ub5ff\uf8a2\u53e7\ub362\u87e3\u9318\ueb60\u174a\ufd96\u9fd5\u3a46\ub2de\uf112\ue220\ufc3d\u6c85\ub1e0\u8573\u4bc2\u4de5\uc077\uea4d\u3675\u0a84\u1697\ub502\u459b\u3bf6\u46da\ub5de\ue2da\u9e67\u5cb0\uc695\ud0a0\ue9f8\ud40c\u17c7\ucca5\u3d04\ud976\u5dd7\u2d9c\u9661\ucea9\u95bb\u2cb6\ubb21\u341d\u0306\u7c10\u4dca\ub5fc\ua1ed\u5769\u1466\u7d21"",""\u798f \u9152\u5427"":{""fu"":2.428649535803513e+306,""bar"":2.6292881807262994e+307}}",,"2486112258223379456 -900244472751132672 --3341364494693633024 --2065147927514688512 --3132353367195798528 --562545641146121216 --1156091697003810816 --4154392318860564480 --4608621158873679872 --3176687156309531648 -3060117117927557120 --2773032608073965568 --2593959401488325632 -4606268326223555584 -2261110664451052544 -1541254624450136064 -1990991832503211008 --2066750381463204864 --2773924869630572544 --1786384139651391488 -496433687822657536 --409681226545643520 -2483290873362147328 -1366650378806198272 --3428039902947901440 -1982842295100150784 -373820082066507776 --756666868354836480 -567939121391356928 --3718007269457928192 -2744528071454783488 -1832623420974099456 --3130367266075092992 -1936976297368574976 --205968031143400448 --2225213637863041024 --4138980615309206528 -560539534795133952 -3664742534371347456 -974439014665428992 --1536060073314714624 --3518326836667993088 -2046689980651485184 -3524982472024854528 --3280759516227820544 --4420099793859941376 --614115737288395776 -4581835619737331712 -1754042213135086592 --4200695527954157568 --3271707602094596096 -596436507901412352 --1380949603733252096 --1361078728148613120 -1195643258503121920 -4333810165147557888 --1256416064864051200 --598451875154395136 -3132717273987331072 --2731104930112911360 -3717428280595056640 --3937581036093342720 --2490516663043095552 --681559052760285184 -381853296014735360 -2925564350120952832 -3306595319433416704 -2801481205954697216 --3410950544072894464 -723024732124061696 --3345120951282428928 -4297319580168256512 --153972469907824640 -550020818480264192 --3796285905071958016 --1979850978135740416 -4443346648421305344 -1004814290958284800 -930864144868256768 -245380096952415232 -1951822347114195968 --4426869847011893248 --196328430124414976 -596786735785223168 --4065509766154498048 --2905537975471802368 --2383654862904524800 --398297146860369920 -3669079218105390080",$2486112258223379456$;$900244472751132672$;$-3341364494693633024$;$-2065147927514688512$;$-3132353367195798528$;$-562545641146121216$;$-1156091697003810816$;$-4154392318860564480$;$-4608621158873679872$;$-3176687156309531648$;$3060117117927557120$;$-2773032608073965568$;$-2593959401488325632$;$4606268326223555584$;$2261110664451052544$;$1541254624450136064$;$1990991832503211008$;$-2066750381463204864$;$-2773924869630572544$;$-1786384139651391488$;$496433687822657536$;$-409681226545643520$;$2483290873362147328$;$1366650378806198272$;$-3428039902947901440$;$1982842295100150784$;$373820082066507776$;$-756666868354836480$;$567939121391356928$;$-3718007269457928192$;$2744528071454783488$;$1832623420974099456$;$-3130367266075092992$;$1936976297368574976$;$-205968031143400448$;$-2225213637863041024$;$-4138980615309206528$;$560539534795133952$;$3664742534371347456$;$974439014665428992$;$-1536060073314714624$;$-3518326836667993088$;$2046689980651485184$;$3524982472024854528$;$-3280759516227820544$;$-4420099793859941376$;$-614115737288395776$;$4581835619737331712$;$1754042213135086592$;$-4200695527954157568$;$-3271707602094596096$;$596436507901412352$;$-1380949603733252096$;$-1361078728148613120$;$1195643258503121920$;$4333810165147557888$;$-1256416064864051200$;$-598451875154395136$;$3132717273987331072$;$-2731104930112911360$;$3717428280595056640$;$-3937581036093342720$;$-2490516663043095552$;$-681559052760285184$;$381853296014735360$;$2925564350120952832$;$3306595319433416704$;$2801481205954697216$;$-3410950544072894464$;$723024732124061696$;$-3345120951282428928$;$4297319580168256512$;$-153972469907824640$;$550020818480264192$;$-3796285905071958016$;$-1979850978135740416$;$4443346648421305344$;$1004814290958284800$;$930864144868256768$;$245380096952415232$;$1951822347114195968$;$-4426869847011893248$;$-196328430124414976$;$596786735785223168$;$-4065509766154498048$;$-2905537975471802368$;$-2383654862904524800$;$-398297146860369920$;$3669079218105390080$,쨛씋鮱啉谒猩ꓥॎ䲧쪯䃰꭭睞洋嬤錴竟㩒齃쀿嶸킛耱‾퐊囊艢갻ဏ쭯얌遪聰勒ꣴㄙ᜘䲇殖ῡ嬀㢏イ恤멶⫿聙圠넳褪룇뫃c㖽㡹婲跌○໘쬾馶⏣膜ꋢ쏤袡竂ꗑ添Զᱥ帩Ἰ坶獲멠禩攼ᡜ◣⵲謄蜽᷾잯ꩠᝡ瞕࡙缞鳼苰駰믆™崲瘟뭖㻊굔挺䘰⋡蒌௾䉲眵鿫蛁폃₈喦塇륳唃鷈ⲭ삾ㄐ⎥攒窸鑴瑦蝃ള䃌ณ冥⫒岯ꤎဈ䇆኶⌾紟ⱉ툪ᨭ灜ୄ窌䍮㇟겠댄ﯴ⌝푝漗胔⃒颦콳ᤛ쏫㥅ﶔ蜙푍⪽ꋒ햳耤芸鄥֪ၮ옶菛㰍蠚魋㡢鬊썭൶訮ຂ펺ྰ퇉쉄橎࿊贾虸ꗺᦣ뚍騢宎Ꮥ컕᜾쨵초酨챠唲읲뤕翛逡品쓱橶神⭭꾍祾棧ᵤꉖﯲ弶ⱑ⇡孼㶇䍵厎榣︵⡻⑂櫗䍧芮毎๠Ⓢ뷔ᖐ퉛㹙 둃火矔싏ꖢ㴠Ṽ묻爐輻྾嶐읤矪㑧⯀ﺊ꣋←⒝䎣Ῑ◴툔満럭⼎≃哧⒲ꈚ䀔⿶錂ᯊ茊ቲ⎊冘嚌鰤래շꡎ⧏晤㯧﹥菮똡䫩䬆Ꙋ뀈ண晕헞䉦殑覴즵„吹秝헼遤⛷ﰓ㣘㵍ጐ⬑鈆裎㑶匾픒㫤묿鱢₨隦ו윮骩팼ꑾ䥳鲚满쏍⠈䤣㰎鍢ה咩幠쮧ʙꡃ莍㑎돖, -17,,1443154423.05,,",'gJpsN gst2=ީAu筞8霂aӊ̧zmi,w7 3\[v",,"{""a"":1.2704124558981424e+307,""b"":""\u2a3c\u4ca3\u6ce5\ucd48\uff9f\u5fc0\u3c5a\u353f\u713b\ufafd\u5d7b\u4828\u541b\u702a\u4c40\ua022\u1c78\ub91f\ub219\u416e\u6174\u45cc\u486f\u6d7f\u0a39\u93d4\ud1f4\u8269\u6daf\u9eee\ud457\u9519\uc301\u9b2f\u692e\ufc9b\uec54\ueec1\ufeef\u9801\ub2be\udff0\uce26\u441e\u6f88\uc084\u536e\u26a2\u575a\uc222\u20b7\u0d40\ua3d5\u1588\uee77\u4aab\uf4f9\uc2e4\u2f1a\u569a\ueb70\u1b7b\uee67\u02a2\ua059\uc81c\ua651\u0b27\u6b4d\u8bf6\udc73\u3519\ub478\u9848\ub1e1\u3823\ufcb7\u6f66\ua5a9\u1462\ube37\ubdcb\u078e\u7aee\u678b\ud409\ufbdd\uc48b\u05f8\u4e4f\ub2a4\u39f7\ufa54\ua593\u64bd\u7fd7\u4060\uc329\uc9b3\u61c5\ud323\uec9a\u036e\u0da8\u675f\u32d6\ud190\u5cbe\ue6e7\uf5e4\uf68c\u1c54\u95a3\u2964\ufc6a\u438c\u3754\ubd90\u598e\uc91f\u7332\u65a3\u9097\u4fef\ub80d\uabea\udeef\u182b\u41a2\ub375\udf15\u5408\uf7c1\u9d6b\ueeb9\u9742\ue9fc\u528e\ue990\ue3c6\ubf85\u6501\u3412\u39c5\ue892\uf2bd\u3ac3\u108a\ubc5b\u4057\ua1ea\u4a9b\u3171\u173e\u0541\u7b43\ufc0c\u255a\u0981\u8523\u128a\u8330\ud818\u5297\u639a\u28dd\u2225\u4d73\u62c1\ufb92\u3f6a\u3c3c\ufebd\u1db7\ucdaf\u3497\u0be3\ubb3e\udfcf\uea63\u6af2\ube40\u3067\u2900\ue293\ua1e6\u3f79\u5ac4\uebb9\u454b\uac01\u000b\ud675\u1854\u3b1e\u1ff4\u8446\ud019\u6aae\u57fa\u0b14\ue17d\u3668\ufd96\uba50\u065e\u3cc4\u55b0\ufdbc\u99a2\uea6f\u7c9c\ua30b\u2fc4\u4db3\u4fdf\ud0d4\u9e70\uf68e\u608b\u59a5\u1ffc\ubd96\u14ff\u8854\uf447\u7e30\u23df\uf734\u7727\u160c\ue7c1\u30b7\uff15\ub359Y\u27b4\uf59b\u75f5\ucc1b\ueee1\ucfb9\ubb53\u440c\u6d68\u68ee\u3a08\u7787\uaf77\u7b80\u87a4\u7a85\u6010\ub19f\u0133\u6156\u160f\u5001\ube98\uc739\u1cd2\uc469\ua7c3\u33c7\u198c\u6785\uca1d\ubb88\ua1ab\ucfc5\udd6c\u5f6c\u39bc\u9114\u0584\ue431\u0bea\ucf5c\u0185\u728f\u852d\u61da\u9fd6\uab33\ucd3a\uba00\u0d62\uf389\uc46c\uad19\ude22\u8612\u104f\uf87a\u2ce0\ud008\u666c\ub83c\ud561\u039e\uf489\u5c83\ue196\u250d\u823b\uc3da\u414f\ub84e\u1755\u7f7a\ub462\ub147\u8cdc\ua0e1\u3fd6\u8a8c\uec6e\u0723\uf7f8\ueae4\u96f0\u552d\ue172\uee1c\uc376\ub752\u7f10\u1191\u8ec0\u6f30\ud2b4\u0e58\udd69\ud905\u47cb\u2480\ue71a\u51f1\u2f1c\uf839\u0da5\u9e13\uee88\u413d\u4572\u5641\u7b31\u48be\ucecd\u0b0e\uc237\u08bc\u8368\u2ab4\ud677\u89f8\u1052\u0fbb\u8ee2\u7e0e\ucdb6\u2097\u034d\uff1a\u20c6\uc250\u8c61\ubc2d\u5b07\u70d7\uf8f5\u4f3b\u8642\u999e\u2cc9\u102d\ua519\u61f9\uc3a9\ua9b2\u4a32\u3055\u20f0\u916a\u5381\u10e6\uced7\ub354\u83ca\u5e23\u7c4e\u162c\ud6c3\ud90d\u5a5a\ubfc9\ua761\ube42\u3162\u9057\u1f4c\u459c\u3aec\ubc19\uc5dd\u3068\u5b03\u1d9b\u94dd\ufd59\u617a\u9924\uac49\uad56\u7a43\u9c85\u9f0f\u0802\u1d43\u0e72\u6308\u9abb\u0e1b\uf102\u3b27\u283f\ucab8\u97d3\uc666\u2af0\u0170\u351f\ub688\ub713\u8123\u8009\uca5d\u2f0b\u712f\u1d6b"",""\u798f \u9152\u5427"":{""fu"":1.6350600402027904e+307,""bar"":1.1995860075655704e+308}}",,"-3656683263693888512 -1668786223634771968 -729521393893509120 -1899926648702601216 --1992102157966834688 --4479387832576186368 -1300647752991524864 --1745060383948251136 -3297460906707505152 -3701147657492513792 --3660917884676218880 -933489293882703872 -4394165641553977344 --1952908123083360256 --4013033243090981888 --2277552243955842048 --3774710969852309504 -2892715263819773952 -2598035636196472832 -331938935289895936 --3656161822996572160 -1125437860969938944 --2201294407980634112 -4525627178337591296 --3410365077173617664 --449637689995813888 -3696130857061599232 -1101379013809063936 -89182232518905856 -4542231469964211200 -225287315211435008 --818040348664550400 -3601581560736237568 --3089035371165199360 -4175904950737122304 -3472893942324537344 --1127944923883800576 -3689781757820306432 --3799379995858326528 -1884595126828404736 -1298672004329056256 -2268888700690456576 --3264422226905342976 -684186409749381120 --2897129143066423296 --134757813398494208 --3627750995117107200 --3705325517468514304 --1433594667716820992 --3942780801416349696 -1638362842012855296 --579942545528637440 -2333610477640437760 --4597805131904615424 --3526001164220756992 -3651370620183948288 --2039784967708155904 --1700704102137309184 -843838723331036160 -3735417687659280384 -2100652917114930176 -2273480481331261440 -2330654914183518208 -1682146935614367744 -3813901135108380672 --2012076733542117376 --2860582325527058432 -3343338502831335424 -1638739313097668608 --912712040325101568 -2716984477188633600 --340580103447739392 -3341334775667255296 --3067618862714722304 --1827534022938844160 -62083088196509696 --2684380861419146240 --3421397280261454848 --4082958368659084288 --2310043320653286400 -3675262786345090048 -1271443500503365632 --1884594418195704832 -3020783250452773888 --2145883162330591232 --886618005370856448 --848800204498908160 --2990202116637413376 -955116033273214976 --3982967221557842944 -3978411440112006144 -2777553518058624000 -3131555966312427520 -4565824330700863488 --3515136381674457088 -2877390021284787200 -2421846479488652288 -3431704344368864256 --3158539237763702784 -3001371275535635456 -3106119163924464640 --3010427701272048640 -847985482459950080 -1520732419333382144 --2476348320238985216 --1558552964724883456 --2427206899466864640 --1599537097480594432 -1032249036524893184 --3176507771938362368 --3064615125341982720 --1546838334260264960 -201765054271089664 -2515312232528501760 --1973649326841418752 --109548521119397888 -4310540200891767808 -1606626769367190528 --1995798405953157120 --2377097043488326656 -1912326124844592128 -2566376397633059840 --2435394703133698048 --390085418100722688 -1395920681087267840 -1519918787331086336 -477634135494845440 --2591368077265781760 --556002523499780096 -187650597604261888 -2835182721348713472 -2175023136088783872 --3052459240376550400 --32700481860557824 -3129730427526915072 --4534517930696506368 --2977105364186207232 --1771120863702637568 --3501832950598385664 -1368449377144813568 --1938703240062008320 --4254295377629748224 --1674396727573724160 -928205849978064896 --4018000376230886400 -751090297679832064 --4462523374712711168 --984625217668203520 --411642691141176320 -2022002443820667904 -1546421781134396416 -1246607715229526016 -2554346282435501056 --1956728461163501568 --2988410250758161408 --4385873442500564992 --1870677902077239296 -2768351792030112768 -4199192680467335168 -3875361998718785536 --1590155138713197568 --2721245019273804800 -512821761619454976 -2901710424851095552 -4552915268301306880 -215129427240852480 --635308154150203392 -752661056278856704 -363753265634206720 -1610008012537012224 -4485975304842640384 --846247502423718912 -1307056630678210560 -1713923450436738048 -2945101012450262016 -2139033804046502912 --1524374153909177344 -4384108070718882816 -2382953317102067712 -976431797683788800 --4466590630455308288 --3290976167452232704 --394744657824250880 -188769210010733568 -1275063363718474752 -1770585848924592128 -3154818803227641856 -1547392021341973504 --2746660776481741824 -4264094944817713152 --4077881364008906752 -436561144887315456 --3805231391816637440 -4327393354314045440 --2612595997776593920 --3237514100223048704 --1707760494978942976 -2574515827863693312 -4058602703231131648 --1121007904242541568 --2569623829227278336 -3643759424265059328 --2029187225388868608 -1879180977306266624 --3572977552810890240 --441223882690512896 --4603818120641551360 -1976905616484463616 --1624503019499185152 -1881390824432314368 --667717323359121408 -3075032400411604992 -1165946753298821120 -4057125086942268416 --1968284565163335680 --1267346266074503168 --1590925807058913280 -2103228700032627712 -3731477705072142336 --2079815636328057856 -3362105364488076288 --2874051930405593088 --264211996767619072 -3946514671349155840 --1162098883708000256 -4250327738636519424 -1096588876578271232 --3071114251930829824 -1957483998002505728 --2488389038784193536 --4556254953604145152 --2034902805728894976 -960321747617315840 -550718450213467136 -4330016703483291648 -864171720274348032 -1454347279829040128 --1197750887031444480 -3094308531889027072 -1821369657670090752 --4470861870284806144 -3470487488718019584 --1499792022920658944 --565049164244875264 -3091904874616750080 -666912091099400192 --392557093510460416 -3946027205751184384 -1806043977873184768 -3512246866579823616 --2381203480156959744 -119573474536411136 -3265378652997095424 --3935751174288842752 -2180611080146130944 --4266093353293612032 -1241793554747875328 -4275465211637415936 -2013476193244641280 --3201187572429111296 --2533618432022690816 --2349711165021728768 -2533577203606715392 --1994510224321016832 -4048615669035923456 -1138674241846403072 --436791459613458432 -2576988645976460288 --1160793656654952448 -1023333027177488384 --2441201497512663040 --941988027492469760 --3648649057925318656 -4107863860594448384 --3700726611236893696 --677614396713152512 -674034745688894464 -2248757766317654016 --308079090683545600 -256439990015202304 -2858329144362970112 -2724960883534607360 -622532144021149696 --887495237045156864 --1538426249912369152 -3291233322912713728 -2939757248594580480 -2947361302502298624 -3405209838656634880 --4594818830715395072 -4367259266206754816 --3534004779050471424 --2590613280648816640 -1817856144792185856 -2647686187600599040 --3479627063554014208 -3639394201080013824 --2026890175489428480 -335121902688937984 --2528778616009127936 --1164159026041519104 -1027370626821191680 --1356017161417700352 -881497469373168640 --78105290721574912 -2643961470641597440 -4075413158010323968 -170694170382483456 -2726996109682327552 -2401049309711536128 -4228962109805230080 -2470961557911812096 --3807629146016964608 -2625522195523507200 -3514333371263089664 -2507297515113465856 --749625848897324032 -2758708372262943744 -3797868545463291904 -2756280875874380800 --1187833798120368128 --4272629412325108736 -2444908199619360768 -1276285108267298816 --312502051997538304 -1759893669319503872 --2141706664588366848 --2089335677118976000 -2628757839032700928 --791517316490185728 --1384477558849244160 -63186876284997632 --48348791933602816 -3543083720486710272 --2455101287980427264 --2183341362994735104 --1739780819648141312 -4559916919712508928 --2856010895537114112 -97128051627853824 -1450342445477762048 -4476019387359938560 -1579750468898308096 --2064891739480856576 --2054682323318659072 --3124492534600612864 -247380697091165184 --430955648678760448 --1775732363183009792 -999726275388401664 --4001042461982351360 -2850625009425932288 -4027570514354112512 --1108582400325560320 --4364846138902647808 --4429088330937097216 --945145553711578112 --4179438425527191552 -2717259908451625984 -1221343418402903040 -2148686474575245312 --2695929674456126464 --3379507265136477184 -2225428559460983808 -1122451374549132288 -1574935949540965376 -316354927989340160 -3462533454851943424 --4370469793892921344 --2560360892494030848 -845917233021308928 --2427105332177054720 -4590349507980078080 --1341621712869184512 --3465224442885151744 --3006650039224416256 -3509189889896644608 -1370077207789784064 -178408907846116352 --2586403612368660480 -2720930545995653120 -872168088362915840 --2939335266232796160 --2803415217291573248 -45828236382337024 --3714470930405988352 -4534185724281861120 -457805536585217024 -2298332492614595584 -1913085942941324288 --2235192210154502144 -1634850674960899072 --1125531015296326656 --3644758129547994112 --481444507378759680 -1738860258813529088 --513731685027799040 -1928902095581161472 -1433271952744964096 --2009636657543630848 -2224223216246865920 -2320652254019745792 --1637543983933131776 -3168838116592385024 -3199979648551379968 --3120019666383823872 --1894718995292955648 --2648314250160208896 -2693961436286413824 --4143943756349057024 -4044407959100230656 -432690670973716480 --2023461252258238464 -2152339820402371584 -4301102779984048128 --573799607492113408 -1330799974705790976 --768962767755033600 --3672203094287012864 --2833018060477336576 -941201263023337472 --1365788308333351936 -2751062697435876352 --4422199993125794816 --239062086307276800 --652111447872972800 -3882662046050022400 --32400339500691456 -1777022792352950272 --3871305765138823168 -2989787180207081472 -3756985305737013248 -3801613095168824320 --474893591826548736 --595903582154982400 -73396646965050368 -3722258070913769472 --3700603367577621504 --1340732865131228160 -1282960811758061568 --3511759341912577024 -723032400906415104 -2703632388340772864 --4595314515148350464 -1996597389048872960 --1813665935470379008 -4173174317436853248 -479489483690023936 --3047025627392425984 --3556999169177081856 -3432301700238780416 --66217548429706240 -1354724424838568960 -3973460870415989760 --1070172919273305088 -2113088685210893312 -2508106079906686976 -1356342091149121536 -3765300536177408000 --401171570320123904 --3259288929893738496 -3176039415783329792 --2375033461472286720 --567125506289667072 --3086278394846897152 --3706895530563352576 --1291690880500688896 --4130583069317307392 -413627572114554880 -496951660034757632 -3655925425044573184 --388054997295476736 --3892874079090697216 -3920905485787169792 --1672514200734968832 -4608504889848861696 -3448413919675794432 -1746718979779734528 --723034446181150720 -344548497308053504 -2087783638848338944 -2424818948593055744 --3351779862129722368 --2494589284225945600 -3499420658652183552 --707409574296272896 -1890459407153613824 -452611101685072896 -3800818608505737216 -430442849296446464 --3174537216953901056 --3044426088692836352 --3990694711812108288 -741238261706445824 --1257807179225051136 -3868162582442636288 --3656364302398453760 -611730941146528768 -3742745971070381056 --531222728688860160 -2296811628114683904 --2482933178554949632 --233748167675202560 --2626123725057562624 -4520891400713660416 --2610552401004439552 -2699057762454530048 -4433917592531897344 -225774170123651072 -3277357057430340608 --1846410078074303488 --2098415097150646272 --4111999473985836032 -2049299145293961216 --1473633646100692992 -2355987541931631616 -2553441376170169344 -513941716610691072 --131133321505879040 -3411903453582415872 --39190357521748992 -2739855867762094080 --832550902278733824 -1669201167431073792 -1227568015085761536 --3296426568729957376 --697618366737323008 -2079887315608788992 -4242199095803982848 --4426452625013711872 -3490612880047105024 --3616822234808103936 --1184526406906900480 -4436146698406076416 -2847817203963454464 -3572719478009018368 --1624512054567428096 --605119460997899264 --4305556429879629824 -777972275092513792 -2985380560502027264 --3135643350993208320 --4574819146614751232 -929529812204877824 -172520429374940160 -892768837367855104 --3213857640058300416 --3197887116077028352 --2883253022797659136 --1276147163225231360 -2092277778051515392 -4352344219402637312 --3651545007579699200 -2848008995671976960 -3140729060542982144 -3037991105449332736 -2923840210175101952 --4506233132678460416 --2430022582772289536 --3873773057825138688 --1128620092536895488 --3110499012696180736 -815769872428257280 -1190547680984086528 -4336297743894019072 -456396355752544256 --2682616777997201408 --3270823613514428416 -4006581888622982144 -2561253685318701056 -2543878020213016576 -1836178552619035648 -3882914347191822336 -1218518600610088960 -4004732504432662528 -1527418993384312832 -3446893975725374464 -1294312968556228608 -3758551439279642624 -432994289270012928 --2507590573274279936 --2107342543577080832 --1502918159991405568 --1766288075330463744 --1514759460674547712 --3533259543314919424 --645203389812656128 -4080018602890816512 -3446257397135128576 -4444007916214835200 --3681881120987808768 -3187133905304200192 -2992980111013011456 -2877606895289809920 -375643557006430208 -1045940258386045952 --2180913768472557568 --2811625482145679360 -3115232076784776192 --1293986727839777792 --2018533135537131520 --3644671893475248128 --2866677053731279872 -3596920074719159296 -2207969711815158784 -3116083167390855168 --2915845242007757824 -865805825230349312 -4579312631411210240 --4095181370532418560 --2466490967738927104 --2538173825818646528 --1134085615039554560 -924902778832191488 -562079027824663552 --2761454939247259648 -3678998658245667840 -581646295650450432 -2047294493066145792 -3317100172624502784 --1339041528361194496 --2560948476384320512 -3853912224829601792 -1273840522276166656 --1497051171865396224 --1424075241931085824 -1640045721883830272 --2777987367333317632 -776473225983332352 --4351116335925852160 -1073487076634801152 -272234641855533056 --3492368149275907072 --324746387707547648 --2011035576929577984 -2405793118477804544 -2296251058683975680 -90152118517786624 -3807154205801505792 --2695094665351475200 -3921014231807738880 -1999875318047288320 -4008685304509199360 -3657293693317988352 -1099258220109617152 --913526329816794112 -171651723070320640 --1607870075544775680 -2230388646856479744 -2431385835572360192 -2854365214714354688 --3130389549067460608 -2510137044784382976 --4445800912857367552 -2525908491843058688 -2223428766889404416 --2948499051968520192 --908543776264956928 --3908335430281669632 --3381197338777650176 --3567386648189925376 -4271108260333846528 -1702385279166832640 --1392641457700117504 --3706720033026726912 --470736145907701760 -3807651264154667008 -222211195848396800 --2357618597103071232 -2574498419819552768 -2202672575893839872 -4158729378557474816 --3664403336891171840 --1874692745759747072 --3607619445302243328 --2907133229956814848 -4075306083379950592 --388667669610285056 --4319860210829889536 --499932380061856768 -2230806238846174208 --2319703266096016384 --4021437322918438912 --68350769009234944 --3224609073506476032 --3740675145838176256 --64804776560137216 --2588755977121345536 -3787609623241562112 -738587551420033024 -2718956000509967360 --1317721510641540096 -3202121571810311168 -3760801606747786240 --1019062397619954688 --2526685875873127424 --2955000137469185024 --1868827134288027648 -2163492435774139392 -3707488222634856448 --1376675591487738880 -351861022834122752 --717754906218146816 --3409361265724451840 -1024836508948159488 -1736158391935938560 -2013714543894617088 --296559605254045696 --4400692719335572480 -2777803771623883776 -4408540551360157696 --2982623966497770496 -1776089842651071488 --191337553884753920 --260276329910092800 -1973652582075442176 --3652300113046803456 --407993985088281600 --3537736738423045120 -1191666929171124224 --1750448036399838208 --1902891853554020352 -4113846167830295552 --3788555123687845888 -4145275726041498624 -132833598765834240 -2834066800403320832 --3587590793035191296 -758392424687597568 --267439398336817152 --1178121252462579712 --1766731995455954944 -1637048359852464128 -2283302565589530624 --3018914283169025024 --1920259173560297472 -211744966290461696 -759858354460116992 --1086115714123645952 -1944504758502895616 -2933289072369862656 --1331897541022315520 -2506880774125363200 -2260372253987495936 --1703809953622341632 --906891921035852800 -3660478914473734144 -2299558583358275584 -2456351861889154048 -4124818350362992640 --2926588611601736704 --1248824545225605120 -699335506880373760 --3498828856337893376 -4317745193041887232 --2223383103470141440 --2860267694615705600 -1614663451994665984 --3095532634881586176 --4531234979495534592 -2739512995977837568 -787571064282260480 --299132277158068224 --2677479076136563712 --494574735939982336 -4358588942639483904 --3692565480440111104 --1357861230596195328 -3210361742872774656 --4058508896040317952 --957452958278719488 -2485892024852753408 -2316372947153624064 -3507238335675132928 -2478268206618438656 -3187081497539133440 -2710624260251975680 --754545537401744384 -1341763001357925376 -1478522694985385984 -1099176916445097984 --3330124940116798464 --4068504242651901952 -3283113256032545792 --1722082821333015552 --3433028145356465152 --1810152657007816704 --53140920085767168 -3814844082963563520 --156469864113175552 -2204817320492477440 -427069967208486912 --4212745217144470528 --1287367116181547008 --3558691835888009216 -3474830947655912448 --4025771103435340800 -2529489330724356096 --3912360009527503872 -1563547771257556992 --3260496864973032448 --592645384136627200 -107563348559291392 --1862566168356290560 --1082963067179095040 -2381958706355618816 --1769357470210877440 -3072465611861664768 -2703762256642458624 -1687366892488366080 -2362927032868663296 -2774138428582629376 -1793000708245980160 -4224885009000414208 -2666403720032705536 -2949079919536759808 --43368070044906496 --3246293066198562816 --1832925339088761856 --1072850494603288576 --127225269606929408 -3750411845654215680 --3390786889196163072 -3545198723301482496 -1152796953857041408 -3696917518642764800 -2253953812824209408 -491185191589224448 --2382342984014064640 -2281078203009051648 -261958174221718528 --1046224166595965952 -3040505301969130496 -785939591855738880 --4384183694433994752 --7051511450500096 --3168701296479762432 -3160704154065223680 --914576323526092800 --2486418241959900160 --4591506386041872384 -2990132924261478400 -4328041576756334592 -3089448776428174336 --1621843753466265600 -1608983342974601216 -3906251231668133888 --317831184288126976 -3463542653962801152 -1911673335176182784 --2366286460541416448 -604964308735041536 -2285196993926970368 --3432170388687754240 --1176991011705885696 --3420539798942643200 --3628929299529509888 -1175543581863812096 -417322377927542784 -2913580597215569920 --3333217418689719296 --3884005349871092736 --1014651595550514176 --253454160784480256",$-3656683263693888512$;$1668786223634771968$;$729521393893509120$;$1899926648702601216$;$-1992102157966834688$;$-4479387832576186368$;$1300647752991524864$;$-1745060383948251136$;$3297460906707505152$;$3701147657492513792$;$-3660917884676218880$;$933489293882703872$;$4394165641553977344$;$-1952908123083360256$;$-4013033243090981888$;$-2277552243955842048$;$-3774710969852309504$;$2892715263819773952$;$2598035636196472832$;$331938935289895936$;$-3656161822996572160$;$1125437860969938944$;$-2201294407980634112$;$4525627178337591296$;$-3410365077173617664$;$-449637689995813888$;$3696130857061599232$;$1101379013809063936$;$89182232518905856$;$4542231469964211200$;$225287315211435008$;$-818040348664550400$;$3601581560736237568$;$-3089035371165199360$;$4175904950737122304$;$3472893942324537344$;$-1127944923883800576$;$3689781757820306432$;$-3799379995858326528$;$1884595126828404736$;$1298672004329056256$;$2268888700690456576$;$-3264422226905342976$;$684186409749381120$;$-2897129143066423296$;$-134757813398494208$;$-3627750995117107200$;$-3705325517468514304$;$-1433594667716820992$;$-3942780801416349696$;$1638362842012855296$;$-579942545528637440$;$2333610477640437760$;$-4597805131904615424$;$-3526001164220756992$;$3651370620183948288$;$-2039784967708155904$;$-1700704102137309184$;$843838723331036160$;$3735417687659280384$;$2100652917114930176$;$2273480481331261440$;$2330654914183518208$;$1682146935614367744$;$3813901135108380672$;$-2012076733542117376$;$-2860582325527058432$;$3343338502831335424$;$1638739313097668608$;$-912712040325101568$;$2716984477188633600$;$-340580103447739392$;$3341334775667255296$;$-3067618862714722304$;$-1827534022938844160$;$62083088196509696$;$-2684380861419146240$;$-3421397280261454848$;$-4082958368659084288$;$-2310043320653286400$;$3675262786345090048$;$1271443500503365632$;$-1884594418195704832$;$3020783250452773888$;$-2145883162330591232$;$-886618005370856448$;$-848800204498908160$;$-2990202116637413376$;$955116033273214976$;$-3982967221557842944$;$3978411440112006144$;$2777553518058624000$;$3131555966312427520$;$4565824330700863488$;$-3515136381674457088$;$2877390021284787200$;$2421846479488652288$;$3431704344368864256$;$-3158539237763702784$;$3001371275535635456$;$3106119163924464640$;$-3010427701272048640$;$847985482459950080$;$1520732419333382144$;$-2476348320238985216$;$-1558552964724883456$;$-2427206899466864640$;$-1599537097480594432$;$1032249036524893184$;$-3176507771938362368$;$-3064615125341982720$;$-1546838334260264960$;$201765054271089664$;$2515312232528501760$;$-1973649326841418752$;$-109548521119397888$;$4310540200891767808$;$1606626769367190528$;$-1995798405953157120$;$-2377097043488326656$;$1912326124844592128$;$2566376397633059840$;$-2435394703133698048$;$-390085418100722688$;$1395920681087267840$;$1519918787331086336$;$477634135494845440$;$-2591368077265781760$;$-556002523499780096$;$187650597604261888$;$2835182721348713472$;$2175023136088783872$;$-3052459240376550400$;$-32700481860557824$;$3129730427526915072$;$-4534517930696506368$;$-2977105364186207232$;$-1771120863702637568$;$-3501832950598385664$;$1368449377144813568$;$-1938703240062008320$;$-4254295377629748224$;$-1674396727573724160$;$928205849978064896$;$-4018000376230886400$;$751090297679832064$;$-4462523374712711168$;$-984625217668203520$;$-411642691141176320$;$2022002443820667904$;$1546421781134396416$;$1246607715229526016$;$2554346282435501056$;$-1956728461163501568$;$-2988410250758161408$;$-4385873442500564992$;$-1870677902077239296$;$2768351792030112768$;$4199192680467335168$;$3875361998718785536$;$-1590155138713197568$;$-2721245019273804800$;$512821761619454976$;$2901710424851095552$;$4552915268301306880$;$215129427240852480$;$-635308154150203392$;$752661056278856704$;$363753265634206720$;$1610008012537012224$;$4485975304842640384$;$-846247502423718912$;$1307056630678210560$;$1713923450436738048$;$2945101012450262016$;$2139033804046502912$;$-1524374153909177344$;$4384108070718882816$;$2382953317102067712$;$976431797683788800$;$-4466590630455308288$;$-3290976167452232704$;$-394744657824250880$;$188769210010733568$;$1275063363718474752$;$1770585848924592128$;$3154818803227641856$;$1547392021341973504$;$-2746660776481741824$;$4264094944817713152$;$-4077881364008906752$;$436561144887315456$;$-3805231391816637440$;$4327393354314045440$;$-2612595997776593920$;$-3237514100223048704$;$-1707760494978942976$;$2574515827863693312$;$4058602703231131648$;$-1121007904242541568$;$-2569623829227278336$;$3643759424265059328$;$-2029187225388868608$;$1879180977306266624$;$-3572977552810890240$;$-441223882690512896$;$-4603818120641551360$;$1976905616484463616$;$-1624503019499185152$;$1881390824432314368$;$-667717323359121408$;$3075032400411604992$;$1165946753298821120$;$4057125086942268416$;$-1968284565163335680$;$-1267346266074503168$;$-1590925807058913280$;$2103228700032627712$;$3731477705072142336$;$-2079815636328057856$;$3362105364488076288$;$-2874051930405593088$;$-264211996767619072$;$3946514671349155840$;$-1162098883708000256$;$4250327738636519424$;$1096588876578271232$;$-3071114251930829824$;$1957483998002505728$;$-2488389038784193536$;$-4556254953604145152$;$-2034902805728894976$;$960321747617315840$;$550718450213467136$;$4330016703483291648$;$864171720274348032$;$1454347279829040128$;$-1197750887031444480$;$3094308531889027072$;$1821369657670090752$;$-4470861870284806144$;$3470487488718019584$;$-1499792022920658944$;$-565049164244875264$;$3091904874616750080$;$666912091099400192$;$-392557093510460416$;$3946027205751184384$;$1806043977873184768$;$3512246866579823616$;$-2381203480156959744$;$119573474536411136$;$3265378652997095424$;$-3935751174288842752$;$2180611080146130944$;$-4266093353293612032$;$1241793554747875328$;$4275465211637415936$;$2013476193244641280$;$-3201187572429111296$;$-2533618432022690816$;$-2349711165021728768$;$2533577203606715392$;$-1994510224321016832$;$4048615669035923456$;$1138674241846403072$;$-436791459613458432$;$2576988645976460288$;$-1160793656654952448$;$1023333027177488384$;$-2441201497512663040$;$-941988027492469760$;$-3648649057925318656$;$4107863860594448384$;$-3700726611236893696$;$-677614396713152512$;$674034745688894464$;$2248757766317654016$;$-308079090683545600$;$256439990015202304$;$2858329144362970112$;$2724960883534607360$;$622532144021149696$;$-887495237045156864$;$-1538426249912369152$;$3291233322912713728$;$2939757248594580480$;$2947361302502298624$;$3405209838656634880$;$-4594818830715395072$;$4367259266206754816$;$-3534004779050471424$;$-2590613280648816640$;$1817856144792185856$;$2647686187600599040$;$-3479627063554014208$;$3639394201080013824$;$-2026890175489428480$;$335121902688937984$;$-2528778616009127936$;$-1164159026041519104$;$1027370626821191680$;$-1356017161417700352$;$881497469373168640$;$-78105290721574912$;$2643961470641597440$;$4075413158010323968$;$170694170382483456$;$2726996109682327552$;$2401049309711536128$;$4228962109805230080$;$2470961557911812096$;$-3807629146016964608$;$2625522195523507200$;$3514333371263089664$;$2507297515113465856$;$-749625848897324032$;$2758708372262943744$;$3797868545463291904$;$2756280875874380800$;$-1187833798120368128$;$-4272629412325108736$;$2444908199619360768$;$1276285108267298816$;$-312502051997538304$;$1759893669319503872$;$-2141706664588366848$;$-2089335677118976000$;$2628757839032700928$;$-791517316490185728$;$-1384477558849244160$;$63186876284997632$;$-48348791933602816$;$3543083720486710272$;$-2455101287980427264$;$-2183341362994735104$;$-1739780819648141312$;$4559916919712508928$;$-2856010895537114112$;$97128051627853824$;$1450342445477762048$;$4476019387359938560$;$1579750468898308096$;$-2064891739480856576$;$-2054682323318659072$;$-3124492534600612864$;$247380697091165184$;$-430955648678760448$;$-1775732363183009792$;$999726275388401664$;$-4001042461982351360$;$2850625009425932288$;$4027570514354112512$;$-1108582400325560320$;$-4364846138902647808$;$-4429088330937097216$;$-945145553711578112$;$-4179438425527191552$;$2717259908451625984$;$1221343418402903040$;$2148686474575245312$;$-2695929674456126464$;$-3379507265136477184$;$2225428559460983808$;$1122451374549132288$;$1574935949540965376$;$316354927989340160$;$3462533454851943424$;$-4370469793892921344$;$-2560360892494030848$;$845917233021308928$;$-2427105332177054720$;$4590349507980078080$;$-1341621712869184512$;$-3465224442885151744$;$-3006650039224416256$;$3509189889896644608$;$1370077207789784064$;$178408907846116352$;$-2586403612368660480$;$2720930545995653120$;$872168088362915840$;$-2939335266232796160$;$-2803415217291573248$;$45828236382337024$;$-3714470930405988352$;$4534185724281861120$;$457805536585217024$;$2298332492614595584$;$1913085942941324288$;$-2235192210154502144$;$1634850674960899072$;$-1125531015296326656$;$-3644758129547994112$;$-481444507378759680$;$1738860258813529088$;$-513731685027799040$;$1928902095581161472$;$1433271952744964096$;$-2009636657543630848$;$2224223216246865920$;$2320652254019745792$;$-1637543983933131776$;$3168838116592385024$;$3199979648551379968$;$-3120019666383823872$;$-1894718995292955648$;$-2648314250160208896$;$2693961436286413824$;$-4143943756349057024$;$4044407959100230656$;$432690670973716480$;$-2023461252258238464$;$2152339820402371584$;$4301102779984048128$;$-573799607492113408$;$1330799974705790976$;$-768962767755033600$;$-3672203094287012864$;$-2833018060477336576$;$941201263023337472$;$-1365788308333351936$;$2751062697435876352$;$-4422199993125794816$;$-239062086307276800$;$-652111447872972800$;$3882662046050022400$;$-32400339500691456$;$1777022792352950272$;$-3871305765138823168$;$2989787180207081472$;$3756985305737013248$;$3801613095168824320$;$-474893591826548736$;$-595903582154982400$;$73396646965050368$;$3722258070913769472$;$-3700603367577621504$;$-1340732865131228160$;$1282960811758061568$;$-3511759341912577024$;$723032400906415104$;$2703632388340772864$;$-4595314515148350464$;$1996597389048872960$;$-1813665935470379008$;$4173174317436853248$;$479489483690023936$;$-3047025627392425984$;$-3556999169177081856$;$3432301700238780416$;$-66217548429706240$;$1354724424838568960$;$3973460870415989760$;$-1070172919273305088$;$2113088685210893312$;$2508106079906686976$;$1356342091149121536$;$3765300536177408000$;$-401171570320123904$;$-3259288929893738496$;$3176039415783329792$;$-2375033461472286720$;$-567125506289667072$;$-3086278394846897152$;$-3706895530563352576$;$-1291690880500688896$;$-4130583069317307392$;$413627572114554880$;$496951660034757632$;$3655925425044573184$;$-388054997295476736$;$-3892874079090697216$;$3920905485787169792$;$-1672514200734968832$;$4608504889848861696$;$3448413919675794432$;$1746718979779734528$;$-723034446181150720$;$344548497308053504$;$2087783638848338944$;$2424818948593055744$;$-3351779862129722368$;$-2494589284225945600$;$3499420658652183552$;$-707409574296272896$;$1890459407153613824$;$452611101685072896$;$3800818608505737216$;$430442849296446464$;$-3174537216953901056$;$-3044426088692836352$;$-3990694711812108288$;$741238261706445824$;$-1257807179225051136$;$3868162582442636288$;$-3656364302398453760$;$611730941146528768$;$3742745971070381056$;$-531222728688860160$;$2296811628114683904$;$-2482933178554949632$;$-233748167675202560$;$-2626123725057562624$;$4520891400713660416$;$-2610552401004439552$;$2699057762454530048$;$4433917592531897344$;$225774170123651072$;$3277357057430340608$;$-1846410078074303488$;$-2098415097150646272$;$-4111999473985836032$;$2049299145293961216$;$-1473633646100692992$;$2355987541931631616$;$2553441376170169344$;$513941716610691072$;$-131133321505879040$;$3411903453582415872$;$-39190357521748992$;$2739855867762094080$;$-832550902278733824$;$1669201167431073792$;$1227568015085761536$;$-3296426568729957376$;$-697618366737323008$;$2079887315608788992$;$4242199095803982848$;$-4426452625013711872$;$3490612880047105024$;$-3616822234808103936$;$-1184526406906900480$;$4436146698406076416$;$2847817203963454464$;$3572719478009018368$;$-1624512054567428096$;$-605119460997899264$;$-4305556429879629824$;$777972275092513792$;$2985380560502027264$;$-3135643350993208320$;$-4574819146614751232$;$929529812204877824$;$172520429374940160$;$892768837367855104$;$-3213857640058300416$;$-3197887116077028352$;$-2883253022797659136$;$-1276147163225231360$;$2092277778051515392$;$4352344219402637312$;$-3651545007579699200$;$2848008995671976960$;$3140729060542982144$;$3037991105449332736$;$2923840210175101952$;$-4506233132678460416$;$-2430022582772289536$;$-3873773057825138688$;$-1128620092536895488$;$-3110499012696180736$;$815769872428257280$;$1190547680984086528$;$4336297743894019072$;$456396355752544256$;$-2682616777997201408$;$-3270823613514428416$;$4006581888622982144$;$2561253685318701056$;$2543878020213016576$;$1836178552619035648$;$3882914347191822336$;$1218518600610088960$;$4004732504432662528$;$1527418993384312832$;$3446893975725374464$;$1294312968556228608$;$3758551439279642624$;$432994289270012928$;$-2507590573274279936$;$-2107342543577080832$;$-1502918159991405568$;$-1766288075330463744$;$-1514759460674547712$;$-3533259543314919424$;$-645203389812656128$;$4080018602890816512$;$3446257397135128576$;$4444007916214835200$;$-3681881120987808768$;$3187133905304200192$;$2992980111013011456$;$2877606895289809920$;$375643557006430208$;$1045940258386045952$;$-2180913768472557568$;$-2811625482145679360$;$3115232076784776192$;$-1293986727839777792$;$-2018533135537131520$;$-3644671893475248128$;$-2866677053731279872$;$3596920074719159296$;$2207969711815158784$;$3116083167390855168$;$-2915845242007757824$;$865805825230349312$;$4579312631411210240$;$-4095181370532418560$;$-2466490967738927104$;$-2538173825818646528$;$-1134085615039554560$;$924902778832191488$;$562079027824663552$;$-2761454939247259648$;$3678998658245667840$;$581646295650450432$;$2047294493066145792$;$3317100172624502784$;$-1339041528361194496$;$-2560948476384320512$;$3853912224829601792$;$1273840522276166656$;$-1497051171865396224$;$-1424075241931085824$;$1640045721883830272$;$-2777987367333317632$;$776473225983332352$;$-4351116335925852160$;$1073487076634801152$;$272234641855533056$;$-3492368149275907072$;$-324746387707547648$;$-2011035576929577984$;$2405793118477804544$;$2296251058683975680$;$90152118517786624$;$3807154205801505792$;$-2695094665351475200$;$3921014231807738880$;$1999875318047288320$;$4008685304509199360$;$3657293693317988352$;$1099258220109617152$;$-913526329816794112$;$171651723070320640$;$-1607870075544775680$;$2230388646856479744$;$2431385835572360192$;$2854365214714354688$;$-3130389549067460608$;$2510137044784382976$;$-4445800912857367552$;$2525908491843058688$;$2223428766889404416$;$-2948499051968520192$;$-908543776264956928$;$-3908335430281669632$;$-3381197338777650176$;$-3567386648189925376$;$4271108260333846528$;$1702385279166832640$;$-1392641457700117504$;$-3706720033026726912$;$-470736145907701760$;$3807651264154667008$;$222211195848396800$;$-2357618597103071232$;$2574498419819552768$;$2202672575893839872$;$4158729378557474816$;$-3664403336891171840$;$-1874692745759747072$;$-3607619445302243328$;$-2907133229956814848$;$4075306083379950592$;$-388667669610285056$;$-4319860210829889536$;$-499932380061856768$;$2230806238846174208$;$-2319703266096016384$;$-4021437322918438912$;$-68350769009234944$;$-3224609073506476032$;$-3740675145838176256$;$-64804776560137216$;$-2588755977121345536$;$3787609623241562112$;$738587551420033024$;$2718956000509967360$;$-1317721510641540096$;$3202121571810311168$;$3760801606747786240$;$-1019062397619954688$;$-2526685875873127424$;$-2955000137469185024$;$-1868827134288027648$;$2163492435774139392$;$3707488222634856448$;$-1376675591487738880$;$351861022834122752$;$-717754906218146816$;$-3409361265724451840$;$1024836508948159488$;$1736158391935938560$;$2013714543894617088$;$-296559605254045696$;$-4400692719335572480$;$2777803771623883776$;$4408540551360157696$;$-2982623966497770496$;$1776089842651071488$;$-191337553884753920$;$-260276329910092800$;$1973652582075442176$;$-3652300113046803456$;$-407993985088281600$;$-3537736738423045120$;$1191666929171124224$;$-1750448036399838208$;$-1902891853554020352$;$4113846167830295552$;$-3788555123687845888$;$4145275726041498624$;$132833598765834240$;$2834066800403320832$;$-3587590793035191296$;$758392424687597568$;$-267439398336817152$;$-1178121252462579712$;$-1766731995455954944$;$1637048359852464128$;$2283302565589530624$;$-3018914283169025024$;$-1920259173560297472$;$211744966290461696$;$759858354460116992$;$-1086115714123645952$;$1944504758502895616$;$2933289072369862656$;$-1331897541022315520$;$2506880774125363200$;$2260372253987495936$;$-1703809953622341632$;$-906891921035852800$;$3660478914473734144$;$2299558583358275584$;$2456351861889154048$;$4124818350362992640$;$-2926588611601736704$;$-1248824545225605120$;$699335506880373760$;$-3498828856337893376$;$4317745193041887232$;$-2223383103470141440$;$-2860267694615705600$;$1614663451994665984$;$-3095532634881586176$;$-4531234979495534592$;$2739512995977837568$;$787571064282260480$;$-299132277158068224$;$-2677479076136563712$;$-494574735939982336$;$4358588942639483904$;$-3692565480440111104$;$-1357861230596195328$;$3210361742872774656$;$-4058508896040317952$;$-957452958278719488$;$2485892024852753408$;$2316372947153624064$;$3507238335675132928$;$2478268206618438656$;$3187081497539133440$;$2710624260251975680$;$-754545537401744384$;$1341763001357925376$;$1478522694985385984$;$1099176916445097984$;$-3330124940116798464$;$-4068504242651901952$;$3283113256032545792$;$-1722082821333015552$;$-3433028145356465152$;$-1810152657007816704$;$-53140920085767168$;$3814844082963563520$;$-156469864113175552$;$2204817320492477440$;$427069967208486912$;$-4212745217144470528$;$-1287367116181547008$;$-3558691835888009216$;$3474830947655912448$;$-4025771103435340800$;$2529489330724356096$;$-3912360009527503872$;$1563547771257556992$;$-3260496864973032448$;$-592645384136627200$;$107563348559291392$;$-1862566168356290560$;$-1082963067179095040$;$2381958706355618816$;$-1769357470210877440$;$3072465611861664768$;$2703762256642458624$;$1687366892488366080$;$2362927032868663296$;$2774138428582629376$;$1793000708245980160$;$4224885009000414208$;$2666403720032705536$;$2949079919536759808$;$-43368070044906496$;$-3246293066198562816$;$-1832925339088761856$;$-1072850494603288576$;$-127225269606929408$;$3750411845654215680$;$-3390786889196163072$;$3545198723301482496$;$1152796953857041408$;$3696917518642764800$;$2253953812824209408$;$491185191589224448$;$-2382342984014064640$;$2281078203009051648$;$261958174221718528$;$-1046224166595965952$;$3040505301969130496$;$785939591855738880$;$-4384183694433994752$;$-7051511450500096$;$-3168701296479762432$;$3160704154065223680$;$-914576323526092800$;$-2486418241959900160$;$-4591506386041872384$;$2990132924261478400$;$4328041576756334592$;$3089448776428174336$;$-1621843753466265600$;$1608983342974601216$;$3906251231668133888$;$-317831184288126976$;$3463542653962801152$;$1911673335176182784$;$-2366286460541416448$;$604964308735041536$;$2285196993926970368$;$-3432170388687754240$;$-1176991011705885696$;$-3420539798942643200$;$-3628929299529509888$;$1175543581863812096$;$417322377927542784$;$2913580597215569920$;$-3333217418689719296$;$-3884005349871092736$;$-1014651595550514176$;$-253454160784480256$,ᓑṹ근篓뵱䈚㱻鎐ⷍ혲浩龜飼׿谵᣷俋㍭錱ਹ핇嬫遮㇧虨㒀뇀늫ᨑꇞ⃔戺⬍걡婁鎸㔄⼲ꢊ㟏ꚅ免濩꠭᷏悰䰕쀌ಙ跣鯘ꥥ뺿魶臜貎茬秐镛搸驹氢厖贒藵ཱ〈잓㕉鰼఻趨ᬰ卋꩒⫓㰽䠂䵖层峯ᬪ橓价⒕饥䜒砛y뭞馓᛿骪庡苟铘で⿠똁㾜馂홺浀䗵萡⬃盒簃⠱㴊ﲧ튙뫌℄౟嗄筝ꗯ神⚢㨢䈮⟖톥檹퉹ჲ䋟宵ꭸ瓃뎖涑좇釯Ќ딐税頉ᵢʅ볜틫瓕♙箃愦ఫ헔鞟殇쮣弦⧎䤿ƌ屿彎袃檨࿫식躖ᄋȑꜼ䙵ﶇᘷꐼ餗쯪薱ᐘ霅㢨ꤊ内ﮄ麴㏟㭉Ȓ퇞헯뫀㬌埳콲⢠᜽ᆋ陀흃὜Ṏ횙ⲁ᠍⺇⡥ﷰ씶ꐾ₼僛磂⟃챨몪蝨㑺صㅭ홭錰ۯ㮷ᐋ킣抴龒ꁦꕍ趫諈꺚멻놏㜅뀾ଞ歇爩豙됔늈偂줫ᏴᏘ艨넢◺퉌ꈤ睐ꔅ翛芭⾉摉ꃐ뼠类㜱ॻ딓ೀൾᄏܷ꼑赱㼛妿႘窴螖㛴덽핆꡵⣠但૊⋠⇵웡檠痏璁⡧꧕ﰦ䡗柑╷ु蚆걾პ㗒।装挐ᱹ养⹭鎗矪韾㓊奶숓뷘썝饪ᙈ쎶실应汉螄⢒㳕큉붎愫宺崠䇼组劄㪆܎ﶷ츛錶氰灲楷߿ֈꈋ飑簢ᕭ㼕羁ꎌ詑鲧鿳᱐诊ᜦ緘쿉➟Ʊ䉝蔈㏽鍑뿋蒂즪黣ⶋ뒦㜲↝곿䥄만㡳턾뤗꺃ℾ为淑졎꣺⫝߾븥윯璀儑㮁찡䌯䐩Я차鷳뢂擧㦪谊踃儢齼, -18,,1443154423.06,,"*!D,œyi|OUi{K`[J̖Kn8 u ZmdZOBθ൮1ObP\0sDE5;:5DM1v~ͷN""!g -Vo}LPBn?YCۙ:@GxRFoՈSq-q Y?P8OF/",,"{""a"":4.496935784169436e+307,""b"":""\u9154\u43be\u065d\u3e53\ua525\ue4f7\u7f45\u2317\u4bde\u7a12\u662c\uac40\uef33\ud304\ub446\u3366\ub7bc\uc509\u5d24\u40b4\u25cb\u807e\u918c\ube54\u52fe\ue93b\ubecb\u4090\u136e\u6028\ub68a\u4299\udf62\u1022\ue3fe\u28b8\u1d08\uf35c\ud16f\u9fb0\uf72c\u607b\u22e7\u4831\u3992\ub06d\uddcf\uf9da\ua4c7\ub66d\u7ae1\u8aa2\u20c1\u9191\u128b\uc5ab\u2350\ua52f\u2828\udbfa\u6cdb\u187c\ue0e6\uef8f\uccba\ub620\u0580\udfeb\u39ee\ud782\u9506\u7e6f\u7220\u4485\u31e8\u06bb\u50fb\u8c06\ud591\u6554\u7bb8\ua519\ufcce\ud703\u398e\u4553\u26e9\u03a0\u0f56\u4849\u484e\u84e7\u825e\u3550\u6cf4\uade2\u7b41\u47fe\uac45\u015c\u8fc3\ub5de\u769a\u48e7\u4c55\u6d22\u1deb\u762f\u1d2a\u0772\u3a26\udfcd\u4a3b\u7067\uae02\u4931\u170a\u77bc\u0db3\u89b6\uac2c&\ud93b\u468d\u2423\u09b5\uae7b\ua2fe\u82be\ued60\ueccc\uc67a\u03b4\u9df0\u4f39\u0e8c\uefed\u9939\u3985\ub408\u737f\uc355\u8f8c\ua5c7\u8360\u42bd\uc832\uf742\u2500\ua120\uc701\ub548\ufa2e\uc469\uc78c\u2d0e\uebed\uaea2\ufad4\u76b6\u9547\u1be7\ud144\u7df2\u5e54\uffe4\ue2da\u50e8\u04c8\u91e7\u7c1f\u0ac7\u9139\uaaac\ufe3e\u5015\uefbe\uf3ad\uf86b\uac0a\ufcb4\u3a02\u4614\u8b49\ua9eb\u0bf0\ubd63\u05d3\uc7fb\u28fc\ueca7\ua3ee\u303c\uaaf7\u0df3\u674b\u1e94\u6726\uaf29\u7ea2\u9e62\u8160\uc473\uc5ac\uca7a\uf0c9\u5760\u111e\u5b0e\uf6e4\u468c\u60be\uc2b5\uf867\u701c\udcd7\u1593\ud88f\ud496\ue0bf\u94f3\u989f\u06fa\u5c70\ude3c\ub62a\u9515\ued43\u3b85\ude75\u5712\ue301\ub362\uae8b\ue65e\u5787\u5a96\uebe5\u1a0b\udb25\u39ce\u0be4\u1008\uf8cd\u0790\u0b40\ue0aa\ueb10\ue493\u6756\ue68e\u376a\ua088\u7252\u446f\u42c4\uf490\u2b58"",""\u798f \u9152\u5427"":{""fu"":1.1747408916808048e+308,""bar"":2.865584971449248e+306}}",,"-3856093651308931072 --3026238876809917440 --1242705679663447040 -3955617513934007296 --1197640254175007744 --2033367030602540032 --1540583535760483328 -2026365257797786624 --706061432252794880 --2916399307868324864 --3407135849650143232 -1802594318782950400 -3797293552568315904 --4095642925991784448 -4275954945330865152 --4328937447381497856 -422912560164346880 --194064434286490624 -670047101652731904 -2700787220719703040 --3883762566324706304 --3147151719630477312 -1134283691934962688 --8594001960252416 --704355807153634304 --2983670006360351744 --1795508317661322240 -2937507309700595712 --3884825120591731712 -2256768482774249472 --1081968923145145344 --3973343987122199552 -2693754485214856192 -336770764152080384 -1528792855062264832 --4413759607020387328 -1512644558013631488 --4528847294207177728 --475824806362121216 -3568982436775969792 -1761777893991727104 -2340029537383047168 --1052841147726983168 --3880123789826629632 -2714221307887205376 --2110268613885548544 --3593029341375549440 --2271896741524762624 -41605779670637568 -2974305974101998592 -2355400102760941568 -4056885033679711232 --4141436206004811776 -2810396256255372288 -1230124223980012544 -2515967565746452480 --1844572368346617856 -2180366152458703872 -3853871242949921792 -3779037511746205696 -1164845482069021696 -2033200230192524288 --1673102398151660544 -2137447704639209472 -1723131633134577664 -3850333224951294976 -1496029828897836032 --2293941337582355456 -647210396566130688 -3027635396866740224 -2301274595117666304 --4527568017441086464 -1319997299007755264 -3886186269712986112 --2965661270932320256 --1627874419237491712 -2875351643650875392 -1996527473895523328 --1176833157504335872 -1635317177699240960 -1438572743131041792 --2881988688614381568 -3151506983912914944 -791623546770914304 --212316457227420672 --1199573623631137792 --1510183195681029120 --3742568330398434304 -1022413917169003520 --712864858627486720 -670390392627887104 -4288269259171717120 --4541803475034637312 -4039337469355820032 --1751084163530158080 --2634856589986659328 --3936711679884530688 --170055068505425920 -695584041266278400 --1054325015849156608 -489444659846550528 --2056559416988628992 -2534322257644818432 --3828619581214381056 -908329370568844288 --1016410561598260224 --550319650311693312 --974953795751260160 --578316464673105920 -987999387811982336 -2356629594448876544 --4503665976521548800 -446136023426485248 --4302956905372756992 -2320682611069936640 --1502950012918918144 --1135597694523625472 --2655714951622959104 -1251682572808099840 -4216978116721636352 -1697022534208886784 --3049333984291088384 -2769533655982142464 --950662129369247744 --3918135688894492672 --2835995268304092160 --515256192256842752 --1164872512728504320 -840785285577934848 -4276181449550843904 -2074864642936087552 --1716328364694743040 --2787681701214926848 --706448603423831040 -2675390542730058752 --3104206589168692224 --2869371857171761152 --2099660343347148800 -811135630304913408 -366651182819080192 -3879533531424135168 --3338626389201337344 --2007935975045524480 -870720104909161472 --764483840336825344 -112486199383044096 --2689839849423000576 -888437579474757632 -2829799454826174464 --3017557270399170560 -2920658862128508928 -3697408348869783552 -3399928812538616832 -1707484535513682944 -2229744787580214272 -3015998863183752192 -799367818390980608 -4258525473528229888 -2101798394429101056 -1236746600858434560 --3211910186961033216 -953915483825536000 -3682928790500144128 -2824360290197522432 -1654836628083056640 --4190007094130532352 --1351114134446871552 -3392833285012787200 -292775307648574464 --2491338967148823552 --694944037878312960 -3881385774542083072 -4094962917389502464 -2951416580004798464 -4067552363706758144 -3532313520756458496 --2376267932361529344 -627713788990909440 -780657817577944064 -2101494927415356416 --1988358111368353792 -2653029853056849920 -4371161373161313280 -951157315573955584 --4601217670311716864 -1970373225355702272 -408633982309256192 -392869943389725696 -4179437813633080320 --3635555154746871808 --2769891692612938752 --543817887267962880 -1252464102132843520 --2308547073727420416 -3685310820039340032 -4577234567068435456 --1398800526502639616 --484174657217012736 --3673858903737283584 --956984946206899200 -2181674269555697664 -879522566597962752 --4166123971337805824 -2065292315410576384 -1262828180876872704 --2978308281198005248 --1440460031315026944 --4465629946498974720 -218746507382939648 -272217505078438912 --4317674225901623296 -2690786516026398720 -1549720538984208384 --2418211623883991040 --2398627527116872704 --1974753359769517056 -1490725043258853376 -442774820375844864 -446140682559791104 -1633858121074055168 -3170653891041878016 --3231103074864288768 -3889124220889527296 --204683010198621184 --1819063661908997120 --3003911827837902848 -1637368759072909312 --1107331776783622144 -3736407216019113984 -2325731469833815040 --357093176132009984 --921427573396934656 --2242074244695651328 -206053495692240896 -3670766239187714048 -167018823900760064 --724761193534518272 --2057958349616962560 -450823526198141952 -2631627211171255296 --3784931501932447744 --2532761517759054848 -508419380148581376 --1555020443841544192 -2114556100607214592 -2907437909423489024 --1676552878063109120 --523968057350345728 --2511870527174799360 -3332292409911831552 -3441777278582960128 --3392836610765347840 --433896431731431424 --2255717800268663808 -204410104995020800 -1678440833538873344 --4034331406999781376 --1403685944959298560 -3612450075334591488 --1200661183830126592 -2338574136599662592 --1593589658544257024 -2255383390374535168 --1026413101316071424 -1704152796877139968 --478922657476484096 -4392444637012488192 --3313614809209228288 --4299838163902493696 -1312635970715756544 -3017942956650052608 --430232294490944512 -3932893863555537920 --3609746304974961664 --4524117325656658944 -2925561486196443136 -2469469293108731904 --875395195619431424 --3954844689005314048 -1309789403786194944 --4566331070904808448 --2931197063648559104 --1414266806318902272 -4385318115432399872 -1362451768912914432 --1868505803793064960 -1422808670531240960 -3667758177582359552 --3007972881010686976 -2654064701837571072 --662620587661541376 -3811420072122515456 --1699047639472515072 -3863194003639029760 -4004487453893185536 -1617395872774953984 --1115582785624000512 -4135102972473415680 --3873204187939372032 --4117456446994759680 -3432252828928779264 -3361112880732897280 --421229750806117376 -2372590095202672640 -757155058512031744 --1970164270025541632 --3686023146623676416 -2611869475846496256 --714917578734227456 --807023246818704384 -3348409842297339904 -1294306408318691328 -461011581522350080 -3185679912744402944 -1101721062843076608 -1888082411382509568 -822676383104461824 -3210497718233571328 --2355115170992447488 -2638334630638721024 -3576490199275044864 -2205885454507844608 --2382751136683164672 --3043235523430153216 --1258507501802939392 -205766154608766976 --3364513464864874496 --3565568212564824064 -1605358151715033088 -3729952736978561024 -30781651328601088 -3080240202205265920 --1950093994265845760 -323021720187750400 --1710775452333571072 --2077915780637210624 --2257434041703286784 -2979800019416329216 --3381099897991092224 -832271803922414592 -1972167297951546368 -926975095954810880 --4114140454528494592 -1496813293793520640 --2339593766276119552 --495746800826423296 -3517423797353834496 -1511704962502716416 --1960900536159859712 -3296255690300639232 -4105480137865659392 -1493094018458587136 -4304139476334394368 --4036391143948794880 -2916463422717201408 -1114315701786344448 -1085235533430511616 --953438255922113536 --4133396781224767488 -224132123637194752 --4406656002498801664 --4455920813683781632 -1453007599630457856 --3770473762330040320 --4334128988736745472 -1197889065612613632 --457912724573156352 -3183064230697644032 -457658719672041472 -15282907536128000 -3865529142843154432 --2747039670433789952 -3000521431892320256 -2245997454351201280 --676742877303933952 --210662798714318848 --2298429784574331904 -3352956683631906816 -1396150476398051328 -1203299594839282688 --4490160657109807104 --2256499456137059328",$-3856093651308931072$;$-3026238876809917440$;$-1242705679663447040$;$3955617513934007296$;$-1197640254175007744$;$-2033367030602540032$;$-1540583535760483328$;$2026365257797786624$;$-706061432252794880$;$-2916399307868324864$;$-3407135849650143232$;$1802594318782950400$;$3797293552568315904$;$-4095642925991784448$;$4275954945330865152$;$-4328937447381497856$;$422912560164346880$;$-194064434286490624$;$670047101652731904$;$2700787220719703040$;$-3883762566324706304$;$-3147151719630477312$;$1134283691934962688$;$-8594001960252416$;$-704355807153634304$;$-2983670006360351744$;$-1795508317661322240$;$2937507309700595712$;$-3884825120591731712$;$2256768482774249472$;$-1081968923145145344$;$-3973343987122199552$;$2693754485214856192$;$336770764152080384$;$1528792855062264832$;$-4413759607020387328$;$1512644558013631488$;$-4528847294207177728$;$-475824806362121216$;$3568982436775969792$;$1761777893991727104$;$2340029537383047168$;$-1052841147726983168$;$-3880123789826629632$;$2714221307887205376$;$-2110268613885548544$;$-3593029341375549440$;$-2271896741524762624$;$41605779670637568$;$2974305974101998592$;$2355400102760941568$;$4056885033679711232$;$-4141436206004811776$;$2810396256255372288$;$1230124223980012544$;$2515967565746452480$;$-1844572368346617856$;$2180366152458703872$;$3853871242949921792$;$3779037511746205696$;$1164845482069021696$;$2033200230192524288$;$-1673102398151660544$;$2137447704639209472$;$1723131633134577664$;$3850333224951294976$;$1496029828897836032$;$-2293941337582355456$;$647210396566130688$;$3027635396866740224$;$2301274595117666304$;$-4527568017441086464$;$1319997299007755264$;$3886186269712986112$;$-2965661270932320256$;$-1627874419237491712$;$2875351643650875392$;$1996527473895523328$;$-1176833157504335872$;$1635317177699240960$;$1438572743131041792$;$-2881988688614381568$;$3151506983912914944$;$791623546770914304$;$-212316457227420672$;$-1199573623631137792$;$-1510183195681029120$;$-3742568330398434304$;$1022413917169003520$;$-712864858627486720$;$670390392627887104$;$4288269259171717120$;$-4541803475034637312$;$4039337469355820032$;$-1751084163530158080$;$-2634856589986659328$;$-3936711679884530688$;$-170055068505425920$;$695584041266278400$;$-1054325015849156608$;$489444659846550528$;$-2056559416988628992$;$2534322257644818432$;$-3828619581214381056$;$908329370568844288$;$-1016410561598260224$;$-550319650311693312$;$-974953795751260160$;$-578316464673105920$;$987999387811982336$;$2356629594448876544$;$-4503665976521548800$;$446136023426485248$;$-4302956905372756992$;$2320682611069936640$;$-1502950012918918144$;$-1135597694523625472$;$-2655714951622959104$;$1251682572808099840$;$4216978116721636352$;$1697022534208886784$;$-3049333984291088384$;$2769533655982142464$;$-950662129369247744$;$-3918135688894492672$;$-2835995268304092160$;$-515256192256842752$;$-1164872512728504320$;$840785285577934848$;$4276181449550843904$;$2074864642936087552$;$-1716328364694743040$;$-2787681701214926848$;$-706448603423831040$;$2675390542730058752$;$-3104206589168692224$;$-2869371857171761152$;$-2099660343347148800$;$811135630304913408$;$366651182819080192$;$3879533531424135168$;$-3338626389201337344$;$-2007935975045524480$;$870720104909161472$;$-764483840336825344$;$112486199383044096$;$-2689839849423000576$;$888437579474757632$;$2829799454826174464$;$-3017557270399170560$;$2920658862128508928$;$3697408348869783552$;$3399928812538616832$;$1707484535513682944$;$2229744787580214272$;$3015998863183752192$;$799367818390980608$;$4258525473528229888$;$2101798394429101056$;$1236746600858434560$;$-3211910186961033216$;$953915483825536000$;$3682928790500144128$;$2824360290197522432$;$1654836628083056640$;$-4190007094130532352$;$-1351114134446871552$;$3392833285012787200$;$292775307648574464$;$-2491338967148823552$;$-694944037878312960$;$3881385774542083072$;$4094962917389502464$;$2951416580004798464$;$4067552363706758144$;$3532313520756458496$;$-2376267932361529344$;$627713788990909440$;$780657817577944064$;$2101494927415356416$;$-1988358111368353792$;$2653029853056849920$;$4371161373161313280$;$951157315573955584$;$-4601217670311716864$;$1970373225355702272$;$408633982309256192$;$392869943389725696$;$4179437813633080320$;$-3635555154746871808$;$-2769891692612938752$;$-543817887267962880$;$1252464102132843520$;$-2308547073727420416$;$3685310820039340032$;$4577234567068435456$;$-1398800526502639616$;$-484174657217012736$;$-3673858903737283584$;$-956984946206899200$;$2181674269555697664$;$879522566597962752$;$-4166123971337805824$;$2065292315410576384$;$1262828180876872704$;$-2978308281198005248$;$-1440460031315026944$;$-4465629946498974720$;$218746507382939648$;$272217505078438912$;$-4317674225901623296$;$2690786516026398720$;$1549720538984208384$;$-2418211623883991040$;$-2398627527116872704$;$-1974753359769517056$;$1490725043258853376$;$442774820375844864$;$446140682559791104$;$1633858121074055168$;$3170653891041878016$;$-3231103074864288768$;$3889124220889527296$;$-204683010198621184$;$-1819063661908997120$;$-3003911827837902848$;$1637368759072909312$;$-1107331776783622144$;$3736407216019113984$;$2325731469833815040$;$-357093176132009984$;$-921427573396934656$;$-2242074244695651328$;$206053495692240896$;$3670766239187714048$;$167018823900760064$;$-724761193534518272$;$-2057958349616962560$;$450823526198141952$;$2631627211171255296$;$-3784931501932447744$;$-2532761517759054848$;$508419380148581376$;$-1555020443841544192$;$2114556100607214592$;$2907437909423489024$;$-1676552878063109120$;$-523968057350345728$;$-2511870527174799360$;$3332292409911831552$;$3441777278582960128$;$-3392836610765347840$;$-433896431731431424$;$-2255717800268663808$;$204410104995020800$;$1678440833538873344$;$-4034331406999781376$;$-1403685944959298560$;$3612450075334591488$;$-1200661183830126592$;$2338574136599662592$;$-1593589658544257024$;$2255383390374535168$;$-1026413101316071424$;$1704152796877139968$;$-478922657476484096$;$4392444637012488192$;$-3313614809209228288$;$-4299838163902493696$;$1312635970715756544$;$3017942956650052608$;$-430232294490944512$;$3932893863555537920$;$-3609746304974961664$;$-4524117325656658944$;$2925561486196443136$;$2469469293108731904$;$-875395195619431424$;$-3954844689005314048$;$1309789403786194944$;$-4566331070904808448$;$-2931197063648559104$;$-1414266806318902272$;$4385318115432399872$;$1362451768912914432$;$-1868505803793064960$;$1422808670531240960$;$3667758177582359552$;$-3007972881010686976$;$2654064701837571072$;$-662620587661541376$;$3811420072122515456$;$-1699047639472515072$;$3863194003639029760$;$4004487453893185536$;$1617395872774953984$;$-1115582785624000512$;$4135102972473415680$;$-3873204187939372032$;$-4117456446994759680$;$3432252828928779264$;$3361112880732897280$;$-421229750806117376$;$2372590095202672640$;$757155058512031744$;$-1970164270025541632$;$-3686023146623676416$;$2611869475846496256$;$-714917578734227456$;$-807023246818704384$;$3348409842297339904$;$1294306408318691328$;$461011581522350080$;$3185679912744402944$;$1101721062843076608$;$1888082411382509568$;$822676383104461824$;$3210497718233571328$;$-2355115170992447488$;$2638334630638721024$;$3576490199275044864$;$2205885454507844608$;$-2382751136683164672$;$-3043235523430153216$;$-1258507501802939392$;$205766154608766976$;$-3364513464864874496$;$-3565568212564824064$;$1605358151715033088$;$3729952736978561024$;$30781651328601088$;$3080240202205265920$;$-1950093994265845760$;$323021720187750400$;$-1710775452333571072$;$-2077915780637210624$;$-2257434041703286784$;$2979800019416329216$;$-3381099897991092224$;$832271803922414592$;$1972167297951546368$;$926975095954810880$;$-4114140454528494592$;$1496813293793520640$;$-2339593766276119552$;$-495746800826423296$;$3517423797353834496$;$1511704962502716416$;$-1960900536159859712$;$3296255690300639232$;$4105480137865659392$;$1493094018458587136$;$4304139476334394368$;$-4036391143948794880$;$2916463422717201408$;$1114315701786344448$;$1085235533430511616$;$-953438255922113536$;$-4133396781224767488$;$224132123637194752$;$-4406656002498801664$;$-4455920813683781632$;$1453007599630457856$;$-3770473762330040320$;$-4334128988736745472$;$1197889065612613632$;$-457912724573156352$;$3183064230697644032$;$457658719672041472$;$15282907536128000$;$3865529142843154432$;$-2747039670433789952$;$3000521431892320256$;$2245997454351201280$;$-676742877303933952$;$-210662798714318848$;$-2298429784574331904$;$3352956683631906816$;$1396150476398051328$;$1203299594839282688$;$-4490160657109807104$;$-2256499456137059328$,禞ഫ瞕퀞艌欥橃媝꭪힨꫄ዺ質㧭䢶ܙ缵簟阩荞톏ᪿ䚟≈辙뚭ﺾᔋẌ䁔䄐贛硖೴墂㷩쒮靝뚨義ꇠ熹₮듫쳾둜磀⏟㥀퇑↙⏅뇱쮜姢䓱ꔾ╃낊픉ឺ耡ᗊ꯶逸놇蟖ⓡ茌䄮᯲骖훹⨧띷⳶爉䨃싐腏鲜幬惺Ἔꯥ᭧ﳡ扈઴숬厳幸㚈ҍ蛑ᛐ싌棵मᐨ缅츶ꪺ쥨妌싢튞䓂ᬊ, -19,,1443154423.07,,"~,;ږpxy"")(հ+='Q+RD[0冐@6[S]|˨emqG񭌳'LY\ƕ-&> ͥWwBoYEE)RssmA4 gOzAUh""W:JUsS2-S,{4[M>1G7lG_x爾+R#ssMZf_C:Bz{ .O?Bt-n3$ ղ4P`& _%yiGb]հbfEՔ,#;g͔[jNW iE!K6LĥAT6̥b(%jn}!bNFOW&_yj_8ż UWlQYp,4$ Js 1[N5fk? -9׼> -*K8MAv)ř7Z}s #\w ,':pL",,"{""a"":1.7098277723193032e+308,""b"":""\ub618\u6ee2\u8a8a\uf527\u194b\u4b13\ubf4a\u79cd\u4010\u9193\ue029\u26c4\uaf83\u4323\uaf43\u7cdf\u360a\ud649\u5eb1\ub067\udb96\u6723\u6ae5\u41ab\u905a\uf9af\ufd55\u4705\ub696\u8092\u4e2b\uce5e\ua369\u5962\u40f0\u4022\uc933\u841e\u2a87\u3321\u2ea9\u31cf\ufe0b\u16d1\ub95a\u3400\u3e92\u0dd8\u0484\u84e5\uc655\u5b0d\ue215\u39c6\ua0f3\ubce8\u4b26\ufcdd\ue923\u0e54\ud830\u3d6b\u0d2d\u6ba6\u19e3\uf652\ue28b\u50ff\u745b\uf6fd\ub34c\u6f60\u0c39\ubeb7\u137d\u50c6\udb5d\u443d\ue45e\ub08e\u41fa\uc885\u63bf\u0510\u1519\u292a\u2e23\u8637\u76f1\u8710\u4467\u27bc\uf62e\uaebd\u32a8\ufc44\u16a5\u1fec\uedb1\u4411\ucc1a\ue796\uf94a\ubb7c\ue0c5\u400b\uc1b2\uca9e\u05bd\u4dc8\udaa3\ub877\u8a42\u9fcb\u19e8\ufe6c\u250d\udcd9\u8a56\uf993\uef5c\ucc64\u29ad\u38bf\uc555\uaeb1\u23d3\u5d5f\u8861\u91f4\ud6f5\u9aaf\udd89\uebef\u6e93\u13cb\uda57\ube8b\uf2c3\u6987\u4b67\uecde\u701b\udca2\ubfc5\ua934\u1a34\ud03a\uc683\u9525\ue540\u8fa8\uea97\u85a7\u1420\u47e2\uefc1\u8044\u7457\u26bd\uc322\u3d23\uaf16\ufe97\u6b84\ufe67\u8c7b\ufd57\ucefc\ub690\ua947\uf04e\u8864\u58bf\u0da1\u8000\u6490\u68a7\u9b88\u1e6b\ua31e\u4e22\u8121\u159d\u777a\u0e13\u9daf\uf4d3@\u5bd9\uc149\ubf91\ue306\u68e2\u4ac1\u9e77\udd57\ucc85\u4dfb\u25dd\u474d\u979e\u81c1\ud961\u6338\u2321\ud4d7\u7092\uf30d\u71a1\u60dd\u981f\u0144\u14a6\ud40b\ua8d5\u9ef7\udbcd\uf806\u4890\u6939\u6d28\ue929\u172c\u0f1d\ufe9f\ud28d\u91db\u980d\u07de\u199d\ud747\u651e\u89b7\u5955\u0f3e\udb50\u8d35\u2190\ue35e\u151e\ucab9\uc9b9\uc64d\uc90e\u65dd\ub66a\ud4d5\u3c86\u60d9\uf003\u742d\ufb5a\uffb4\uc141\ud871\ua650\u7460\u513c\u0238\u3b99\u9128\uc81e\u1890\u4b08\ue3f9\ufe83\u94d0\u5937\u2fc9\ud3aa\u6b67\uc253\udaae\u9acb\u90c7\u4a74"",""\u798f \u9152\u5427"":{""fu"":1.2176371031043524e+308,""bar"":9.112860212764832e+307}}",,"1421327138948474880 --1140887654075042816 --879351159762683904 -3193855156771011584 --4034374747235260416 --3370031271489326080 -778216745979750400 -4396462882544762880 -368405136507768832 --1238543346163264512 --122612262709370880 -2976091231830341632 -441325038389084160 -1485817394935018496 -4323199162590489600 --4037769014778303488 --3914849187108599808 --2588155685234208768 -3353095591173037056 -4347620977843014656 --1926493201059141632 -816862873936190464 --4272335098658646016 --4566745798712800256 --1950670483214026752 -1940244860416751616 --1941240748985590784 --2210678345176736768 --2689814191543884800 -3163170294030431232 -1108563013877786624 -2964028533159285760 -3918605051478447104 -3127073606859886592 -3795113429848902656 --2962687069926568960 -1362150599293948928 --1298719621402241024 --2015954421255373824 --2031907732442721280 --3091200013702226944 -2380859603876680704 -3028523440118868992 -2346108302045075456 --1797298120757806080 -1733685186450448384 -3247166417687272448 --2540134332367431680 --2079503953364651008 --2805056109328431104 -3902302490001065984 --3014524505563925504 --4246641823707667456 -487251678327146496 --1131499611685721088 --2119060853536012288 -1325763975252065280 --1957223258003200000 --1985630162658400256 -2170149397894377472 -2983535442665971712 --2818688015757940736 -3129412551164221440 --4212988447005250560 -2648614947998005248 -781402860015277056 -600732801433416704 -3419343911737160704 --3055027374292338688 -3182354688390222848 -2305836625286507520 --3218269144744392704 -790393491960784896 -2311052728986507264 -1970682899362828288 -60453400640025600 -2852671516982125568 -2835119887761965056 --3962350930525758464 -1569799678327513088 --1670577189115057152 --334916179545630720 --4181612486599929856 --3471423927856160768 --2629460054978117632 --3260003920459275264 -2555009503173516288 -2465457180119688192 -2758402079737627648 -4348657304286088192 -3324171041105410048 -10163581216776192 --954855537052424192 -3253747304951853056 --126237916014178304 --2868701407192455168 --4586272960638999552 --1569626108632080384 -3737562052979457024 --1681417622656224256 --3950609883856059392 -3348223658985412608 -4192449222882156544 --3802419744510102528 --2313186716870800384 --4076916203635915776 --1260902544695405568 --352821647668030464 -871794162179848192 -3739940502508009472 --420025051059920896 --1449107049150940160 -672651163514433536 --1576502958299645952 -3576575301708905472 --909053253378396160 --4055587652357478400 -1407462977636082688 -762244139767168000 -3365002281103932416 -4561778168930439168 --1518144487706923008 -4408462720715332608 -2614246849122762752 --2781994558365573120 -2150988415001846784 -1260229189627711488 -2550371043159028736 --661086159298860032 -4050363194991040512 -3188123172351708160 -1447217551965451264 -2841257679397824512 --3660835067723984896 --4213008354448362496 -3577834754346183680 -1858314116575867904 --1937118476519671808 -454557864041399296 -537501831119399936 --674374032224053248 -1941506250033343488 --451413236350240768 -46474582312626176 --894549610791018496 --1565034380050248704 --2661521388599889920 --869429060882565120 --4569994239678629888 -204394772292202496 -3682799970170963968 -4251631450445535232 --2079415054926733312 -3758060853922566144 --4110416695621628928 -3355896336313488384 -1280732522464008192 --1980511777661161472 --3836569749475946496 -2637137034194966528 --3864349345875245056 -3845621577446452224 -1782759126086070272 --1449577998962806784 -2202795918227727360 --4512235976153096192 --3916274613522401280 -1132636606751075328 --3834222991212920832 --1538598995589602304 --574747871663290368 -3007781179383220224 --2967065265653231616 --2560663660162910208 --2728497612510011392 --4423258469802146816 --4258120965355765760 -637721233053483008 --684953053069402112 -4316981690601036800 -4138146034399861760 --4201643567875196928 -2211190128782983168 -1433060056861194240 --1897867291392364544 -1230636252729124864 -2871406293472585728 --1730718930363536384 -2746193363527737344 --4207456003804835840 -2765658396876372992 --23003745043602432 -2196612403831812096 --2931073951468066816 --1473043457490569216 --4490813741534342144 -2914959353416125440 --82307467140918272 --1929721313745159168 -3679020938620531712 --202017710730084352 -1383144923308638208 --462535381233948672 -2925601457335481344 --3341977294715367424 --4100199112296276992 --4074232771113539584 --1930152446275529728 -2475694552060019712 -4318169662416806912 --290919221440296960 --3369990006053024768 -109577639609733120 -1333263140390993920 -128708951444318208 --4363507284957668352 -256628373090242560 --3375099615675837440 --3305713604460206080 -2065633348257780736 --4379244189912055808 -616749784129158144 -3955345369549465600 --2220533978543428608 -3468620904416830464 -1887730014038705152 --4593475848197218304 --919732770080775168 --4275419700582497280 --3752647425978555392 -1763569639829359616 -4508538590076242944 -3564599328662211584 --4147104335698712576 --1878488308973492224 --2431318249537144832 -1341739016734131200 -1209065538966347776 --2248566414779759616 -2245527445111983104 -1471482675078028288 -1291690962506341376 -3089956361522403328 -3168756233741703168 -1204257705479642112 --2281939595761001472 --2581679898276558848 --2372339446566946816 --3306231595642304512 --3091229306133668864 --197443248729368576 --1552694712181621760 --1885341555970078720 --707110752983435264 -3848939632838318080 -2000120061018009600 --2264914062553436160 --3373296000062900224 --4061873653057952768 --841664938185342976 --685955673892972544 --3570672522591418368 -843196382853996544 -3377985259981668352 -3110921824696224768 -3350293562353055744 --2555558102910000128 -1194319125129198592 -158541206325933056 -1582332699009885184 -4399614800377925632 -4192636476372562944 --699632983128209408 --3877771363514089472 -4499409232295605248 -2485897804617715712 --2017701201259850752 --257135482849515520 --896046925900966912 -343164906474738688 --614794978118107136 -3908688313063240704 --237214626255608832 --928949525035893760 --3715046161052643328 --1782106905539417088 --2009042805500736512 -2468060185007861760 -2168559629957177344 --2691042172316985344 -2736437503320452096 -2995423630476531712 -1572995909961073664 --2028330078741519360 --560478359821838336 --1052914235459102720 -2782635631974116352 -3576534363343571968 --1425221649190370304 -930632044288787456 -1944808270296164352 -1256714149850966016 --1612823103383880704 --1791257625237268480 --3107550042116297728 -1543579582012900352 --3699393399778746368 -689264574095232000 -3023932375660312576 --2099213574050596864 -2845389832637258752 --1479702042037359616 -2776400387666974720 -3517681952311703552 -283676773022082048 --3857332764628853760 -302921483994977280 --3519669507981835264 --3555123225430367232 -2916407092052709376 -127927822337437696 -2997009042424299520 --4556825890883127296 -2337356060966042624 --4032995704386905088 -3653537983642340352 --3594031781430410240 -1886703304138835968 -518351675170991104 --1530947627047426048 --1931137121108029440 -3117093484851971072 --3276517857202387968 --139101182003755008 --2359167418749020160 -1632837577417438208 -2842722794220513280 --2372045560917184512 -3688652242435789824 -1862567275945658368 --685301029488529408 --675878339694097408 -4530984959522222080 --362795437239309312 --3802638667788848128 -1032833241611250688 --589177688335830016 --1325606467005421568 -3091531941212205056 --1273103236643456000 -3783818836074162176 --949996649579875328 --1396042717650095104 -2290904114156603392 --3792174649462446080 --3964302426929087488 --4066224181944120320 --320617193712489472 -3684993292560754688 -516227065551635456 --4558810502140891136 -1469435051976060928 --2205973597892979712 -2107610670558862336 -2252525900458089472 -3350654384004550656 --1941045258873261056 -3191124566899351552 --3784989928604745728 --1193267036290086912 -655408616291884032 --212876640038174720 --3590368850651868160 -558029138347430912 --2278238605727648768 -371615337409138688 -891241340930406400 --1486348553840954368 -1539735059487923200 -2450719784820074496 --1570748867458525184 -4006517040286190592 --336437195552436224 --1925998770684503040 --1909602378549813248 -917021481307069440 -2798907854787021824 --2578085515485650944 --1349253997231279104 --191593662709078016 --3445140850217142272 -2925159438016362496 -843777510643272704 -4248283505199228928 -230153017421550592 -258188034259491840 -1440706914889815040 -2752267825916541952 --3029096992925901824 --3068781995351505920 -1438275594083582976 --2710195616675604480 -3746136483441552384 --2717548758210630656 --1966534745097241600 -1474420110487933952 --3212797005695248384 --3717383871246760960 --4525460915061594112 --798841519379621888 -1531624088992194560 -1121906400468473856 -4008530319146691584 --3701182402606636032 -2902131814086661120 --2126475121644454912 --1298624124069819392 -1812775219402578944 --90214514685489152 --3676901914700523520 -3366564131393158144 -542843133575849984 -87930070552526848 --2273951061067256832 --3311737609362038784 --2268879633220722688 --3098426986307830784 --4557514513892616192 -130031424963973120 -2996722077623528448 -2773444809013233664 --1550429025666035712 --544866906467558400 -2965288418047634432 -1520912791422995456 --4229118232153431040 --2342814871508529152 -3663871250526593024 -4102083558401143808 -4015586829375537152 --942754641026393088 -4573340417706939392 --2299732482851989504 -3053912539662667776 --2374406830850950144 -1017343552304838656 -3424431215097138176 -447869361883526144 -968756125215066112 -3615893535011506176 --4388221440358933504 -3109536984796565504 --3967581594239223808 -4526140997119117312 -1068502972539489280 -3962795406857077760 -3902004671039065088 --1449100453919584256 -4055164123875773440 -1921867644643304448 -378472117419661312 -4147213786840597504 --4226155132381154304 --2852523714242061312 -997035228997761024 -1624357738100642816 -2119118433447941120 -1831716314029213696 -2991591901609444352 -3054934104407422976 --3343897281768451072 --3395459312094066688 -3245072218318213120 -137174513796724736 -2042162956358816768 --2601058076350137344 -3051404911138801664 --1260242758522597376 -2760545020668887040 -1552780880678498304 -3508096861298868224 -4214501387878901760 -3404353552937917440 --514583599258691584 --1646691737545501696 -3525126354960342016 --747730113735115776 --3382296362597469184 --822995150196388864 --1044516317928018944 -3142151992369041408 --2297556415589031936 --1848801017223008256 --3777531726512013312 --1885921481758176256 -304725988032741376 -1621744416842365952 -4029516872007368704 -358343104831604736 --137234824836852736 -2316161536902937600 --2914883279447721984 --2118595742364345344 -644789440117789696 -4027897820763621376 -436971753681274880 --475362393075010560 --3453372059203431424 -1701876261618296832 --349284361931998208 -909781671112290304 --1686850959269772288 --3885101968057947136 --4373078798969944064 -2409882212181657600 -2633101088415069184 --1120151624156443648 -4335867823351587840 -1708678949026498560 --2746109247530617856 -286134243569024000 --1544932612665921536 -307462986593564672 --2540913738243120128 -2276708441973932032 --999614501710082048 -1358564242260022272 --1277277457805650944 --3536112339845597184 -1171087769553606656 -2984911721788240896 --2927679248041887744 --626472060187216896 -2213375272662825984 --3052515967640755200 -2971923474856859648 --434175944816289792 --3550463096646287360 -2862428288388800512 -3361737266740289536 --2736878972977084416 --2904997737947332608 -1314737922713006080 -1251785966405124096 -3792205347555146752 --3722093918642514944 --3036941245353576448 --2904285320500026368 -2005888690262791168 --2017171042052127744 -2518139349621245952 --4401745950223409152 -3914164346255086592 -1119575953666591744 --202131015380463616 --1386928045237197824 --1539059054311810048 -1235558838646957056 --1485532414465147904 --2352697101644514304 -1846666354624721920 --1473041062551276544 --2131249202585996288 -2105954140836879360 -353913810596764672 --2276698050510863360 --3234634756110015488 -1858495368645491712 --418544880420202496 -3974011938204368896 -2987042575326274560 -938584815694304256 --3415678591360944128 -1627011615271951360 --2684187330835019776 --4336534481722003456 -651078353045586944 --424820084697612288 -3980923276923281408 -2717345449527648256 -1363137710063710208 -1839096451667539968 --3596348644862041088 --1695242935644848128 -3797676196200559616 -2519441138111534080 --1557739829736953856 -2356774760316591104 -63753972862040064 -1840580450521241600 --390473695573614592 -2881623615982795776 -4333495775319429120 -882599423592105984 --2276063251113668608 -2227489213059807232 --398683362821463040 -343354160531205120 --967192654776130560 --3138021456857597952 -2202562514416877568 -4050567760639768576 --2348352547098298368 -2430830104316959744 --1554156466801289216 -3319099520812196864 -585603579597078528 --2343762195782848512 -4173543164005291008 -2735699415896840192 --3797048613061013504 -2522870877518489600 -1672440538755759104 -1228833076917837824 -1519538800943480832 -1600769000281787392 -973649395966322688 --3617506133895520256 --2562097648292233216 --3518714229252794368 -1441206066015762432 -1950770566456248320 --194877032500448256 -1865127034369600512 --1116888012984435712 --1696297804165843968 --1583859602329554944 --3934775712274207744 -1504243978154254336 -1790993121375520768 -3594774555097825280 --3455625816509197312 --995339052623924224 --3005934626396225536 -1856856735297362944 -6578506877034496 --1136947921190581248 --4402426521689379840 --2353164939587899392 --3305893722679538688 --4278447423575079936 -2125581039433187328 --4453657841968585728 --1114756315672014848 --3747702354081955840 --731136668779498496 --3739284553266119680 -3881159593066871808 --2252633245801388032 --316933651519220736 -1743865486997327872 --3703102467188333568 -4030646912917779456 -246446044232870912 -4456942024548008960 -3416503386924661760 --3286705811921145856 -282130634957455360 --2343949679330093056 -2418277575705261056 -2281936736584532992 -3135492683455964160 --2329547655709667328 -1967206730773682176 --3488572226792144896 --4404730579397905408 --3599207132408605696 -4022344014660184064 --3122854170698285056 --3522900964033748992 -4499309093012265984 -3393587339215512576 -2289247790581872640 -1007608330075593728 --1661356609185826816 --3713887014358628352 -1092121731285188608 -4292524051161618432 --2134154350308144128 -1036894656649724928 -2046840327204055040 --3820556999865905152 --2966944866135697408 -138997248175036416 --3718022785192645632 --3911738504112147456 --48946051419732992 -3846473554517325824 -4318171287081482240 --4158670821724472320 --4129735542588765184 --439376251132429312 --2845348984372275200 --268955267176422400 --3045395509300596736 --300652852783345664 --3281445300160799744 --145470662953901056 --4429758387490508800 -1343133141013554176 -149160295672200192 -910651266217248768 --2703106483142950912 -2425493940815401984 -2102138930621830144 -1102168132349216768 -2629737248803051520 --3404327913564760064 --2772192987043474432 --3390819687592245248 --1078156828409171968 -3049083926641386496 --2858346074549172224 --2991144513346014208 -1160789605712656384 -708148976592171008 --4312122238004554752 --4579393473859845120 --4390262819262972928 --424237356498490368 -1851913583311638528 --396278588106765312 --502504830296080384 -3977797572897230848 -3827783870761302016 -2565886680302562304 -3681634309847110656 --2556664800615981056 --3935386612038067200 -646926553935056896 -4369622639637874688 -1733600221203685376 -2146906999001316352 -1450163817859807232 -833933019065587712 -2560086671124672512 --811894012322818048 -698935777841894400 -3467553644176711680 --3750972262514899968 -4596376813711197184 --1449091048578607104 --2573348559121988608 -3990398007901661184 -2402284784585308160 -2338796622481162240 -1365508090321681408 -2250002751034692608 --3304134376801231872 --524703570459882496 -3071672102814994432 -4604271922296643584 -255446096534375424 -3946185240212135936 -1292610665237955584 --2945893356391368704 --2347550777380514816 --2698247505401273344 -4228384277183647744 -34170012075659264 --3969231995835067392 -3375253798999260160 --648103647147614208 --2405219598871832576 --4110667354840967168 -2483893662937300992 --2384913670529291264 --4342048336358811648 -2241310467526260736 -3148494103759908864 -2106367288805427200 -3275726616662466560 --966698035795315712 -3379372380644786176 --1634601095857113088 --3582579356486440960 -3178650845265894400 -1428344907456835584 --1173868045188383744 --520952725257392128 --3555128606069414912 -2916293299645880320 -2526107251121425408 -3724647019950873600 --3401590163261356032 -1441264653912867840 -4511796015137941504 -3683659769326467072 --4564384856930519040 -250601327375006720 --2143155177834796032 -3308064487253456896 --1543129014355087360 --3595381341667803136 --4241309371675504640 -3115300058715627520 -2308062135833574400 --4224210041679892480 --978265278174639104 -2659133943987474432 -4446962879076681728 --3178243817305756672 --2931809259685330944 -976982892278539264 --518890974334405632 --3887051496451615744 --3332142193913620480 --3677724287577803776 --4134033655142636544 --294632905142094848 -2216732253638341632",$1421327138948474880$;$-1140887654075042816$;$-879351159762683904$;$3193855156771011584$;$-4034374747235260416$;$-3370031271489326080$;$778216745979750400$;$4396462882544762880$;$368405136507768832$;$-1238543346163264512$;$-122612262709370880$;$2976091231830341632$;$441325038389084160$;$1485817394935018496$;$4323199162590489600$;$-4037769014778303488$;$-3914849187108599808$;$-2588155685234208768$;$3353095591173037056$;$4347620977843014656$;$-1926493201059141632$;$816862873936190464$;$-4272335098658646016$;$-4566745798712800256$;$-1950670483214026752$;$1940244860416751616$;$-1941240748985590784$;$-2210678345176736768$;$-2689814191543884800$;$3163170294030431232$;$1108563013877786624$;$2964028533159285760$;$3918605051478447104$;$3127073606859886592$;$3795113429848902656$;$-2962687069926568960$;$1362150599293948928$;$-1298719621402241024$;$-2015954421255373824$;$-2031907732442721280$;$-3091200013702226944$;$2380859603876680704$;$3028523440118868992$;$2346108302045075456$;$-1797298120757806080$;$1733685186450448384$;$3247166417687272448$;$-2540134332367431680$;$-2079503953364651008$;$-2805056109328431104$;$3902302490001065984$;$-3014524505563925504$;$-4246641823707667456$;$487251678327146496$;$-1131499611685721088$;$-2119060853536012288$;$1325763975252065280$;$-1957223258003200000$;$-1985630162658400256$;$2170149397894377472$;$2983535442665971712$;$-2818688015757940736$;$3129412551164221440$;$-4212988447005250560$;$2648614947998005248$;$781402860015277056$;$600732801433416704$;$3419343911737160704$;$-3055027374292338688$;$3182354688390222848$;$2305836625286507520$;$-3218269144744392704$;$790393491960784896$;$2311052728986507264$;$1970682899362828288$;$60453400640025600$;$2852671516982125568$;$2835119887761965056$;$-3962350930525758464$;$1569799678327513088$;$-1670577189115057152$;$-334916179545630720$;$-4181612486599929856$;$-3471423927856160768$;$-2629460054978117632$;$-3260003920459275264$;$2555009503173516288$;$2465457180119688192$;$2758402079737627648$;$4348657304286088192$;$3324171041105410048$;$10163581216776192$;$-954855537052424192$;$3253747304951853056$;$-126237916014178304$;$-2868701407192455168$;$-4586272960638999552$;$-1569626108632080384$;$3737562052979457024$;$-1681417622656224256$;$-3950609883856059392$;$3348223658985412608$;$4192449222882156544$;$-3802419744510102528$;$-2313186716870800384$;$-4076916203635915776$;$-1260902544695405568$;$-352821647668030464$;$871794162179848192$;$3739940502508009472$;$-420025051059920896$;$-1449107049150940160$;$672651163514433536$;$-1576502958299645952$;$3576575301708905472$;$-909053253378396160$;$-4055587652357478400$;$1407462977636082688$;$762244139767168000$;$3365002281103932416$;$4561778168930439168$;$-1518144487706923008$;$4408462720715332608$;$2614246849122762752$;$-2781994558365573120$;$2150988415001846784$;$1260229189627711488$;$2550371043159028736$;$-661086159298860032$;$4050363194991040512$;$3188123172351708160$;$1447217551965451264$;$2841257679397824512$;$-3660835067723984896$;$-4213008354448362496$;$3577834754346183680$;$1858314116575867904$;$-1937118476519671808$;$454557864041399296$;$537501831119399936$;$-674374032224053248$;$1941506250033343488$;$-451413236350240768$;$46474582312626176$;$-894549610791018496$;$-1565034380050248704$;$-2661521388599889920$;$-869429060882565120$;$-4569994239678629888$;$204394772292202496$;$3682799970170963968$;$4251631450445535232$;$-2079415054926733312$;$3758060853922566144$;$-4110416695621628928$;$3355896336313488384$;$1280732522464008192$;$-1980511777661161472$;$-3836569749475946496$;$2637137034194966528$;$-3864349345875245056$;$3845621577446452224$;$1782759126086070272$;$-1449577998962806784$;$2202795918227727360$;$-4512235976153096192$;$-3916274613522401280$;$1132636606751075328$;$-3834222991212920832$;$-1538598995589602304$;$-574747871663290368$;$3007781179383220224$;$-2967065265653231616$;$-2560663660162910208$;$-2728497612510011392$;$-4423258469802146816$;$-4258120965355765760$;$637721233053483008$;$-684953053069402112$;$4316981690601036800$;$4138146034399861760$;$-4201643567875196928$;$2211190128782983168$;$1433060056861194240$;$-1897867291392364544$;$1230636252729124864$;$2871406293472585728$;$-1730718930363536384$;$2746193363527737344$;$-4207456003804835840$;$2765658396876372992$;$-23003745043602432$;$2196612403831812096$;$-2931073951468066816$;$-1473043457490569216$;$-4490813741534342144$;$2914959353416125440$;$-82307467140918272$;$-1929721313745159168$;$3679020938620531712$;$-202017710730084352$;$1383144923308638208$;$-462535381233948672$;$2925601457335481344$;$-3341977294715367424$;$-4100199112296276992$;$-4074232771113539584$;$-1930152446275529728$;$2475694552060019712$;$4318169662416806912$;$-290919221440296960$;$-3369990006053024768$;$109577639609733120$;$1333263140390993920$;$128708951444318208$;$-4363507284957668352$;$256628373090242560$;$-3375099615675837440$;$-3305713604460206080$;$2065633348257780736$;$-4379244189912055808$;$616749784129158144$;$3955345369549465600$;$-2220533978543428608$;$3468620904416830464$;$1887730014038705152$;$-4593475848197218304$;$-919732770080775168$;$-4275419700582497280$;$-3752647425978555392$;$1763569639829359616$;$4508538590076242944$;$3564599328662211584$;$-4147104335698712576$;$-1878488308973492224$;$-2431318249537144832$;$1341739016734131200$;$1209065538966347776$;$-2248566414779759616$;$2245527445111983104$;$1471482675078028288$;$1291690962506341376$;$3089956361522403328$;$3168756233741703168$;$1204257705479642112$;$-2281939595761001472$;$-2581679898276558848$;$-2372339446566946816$;$-3306231595642304512$;$-3091229306133668864$;$-197443248729368576$;$-1552694712181621760$;$-1885341555970078720$;$-707110752983435264$;$3848939632838318080$;$2000120061018009600$;$-2264914062553436160$;$-3373296000062900224$;$-4061873653057952768$;$-841664938185342976$;$-685955673892972544$;$-3570672522591418368$;$843196382853996544$;$3377985259981668352$;$3110921824696224768$;$3350293562353055744$;$-2555558102910000128$;$1194319125129198592$;$158541206325933056$;$1582332699009885184$;$4399614800377925632$;$4192636476372562944$;$-699632983128209408$;$-3877771363514089472$;$4499409232295605248$;$2485897804617715712$;$-2017701201259850752$;$-257135482849515520$;$-896046925900966912$;$343164906474738688$;$-614794978118107136$;$3908688313063240704$;$-237214626255608832$;$-928949525035893760$;$-3715046161052643328$;$-1782106905539417088$;$-2009042805500736512$;$2468060185007861760$;$2168559629957177344$;$-2691042172316985344$;$2736437503320452096$;$2995423630476531712$;$1572995909961073664$;$-2028330078741519360$;$-560478359821838336$;$-1052914235459102720$;$2782635631974116352$;$3576534363343571968$;$-1425221649190370304$;$930632044288787456$;$1944808270296164352$;$1256714149850966016$;$-1612823103383880704$;$-1791257625237268480$;$-3107550042116297728$;$1543579582012900352$;$-3699393399778746368$;$689264574095232000$;$3023932375660312576$;$-2099213574050596864$;$2845389832637258752$;$-1479702042037359616$;$2776400387666974720$;$3517681952311703552$;$283676773022082048$;$-3857332764628853760$;$302921483994977280$;$-3519669507981835264$;$-3555123225430367232$;$2916407092052709376$;$127927822337437696$;$2997009042424299520$;$-4556825890883127296$;$2337356060966042624$;$-4032995704386905088$;$3653537983642340352$;$-3594031781430410240$;$1886703304138835968$;$518351675170991104$;$-1530947627047426048$;$-1931137121108029440$;$3117093484851971072$;$-3276517857202387968$;$-139101182003755008$;$-2359167418749020160$;$1632837577417438208$;$2842722794220513280$;$-2372045560917184512$;$3688652242435789824$;$1862567275945658368$;$-685301029488529408$;$-675878339694097408$;$4530984959522222080$;$-362795437239309312$;$-3802638667788848128$;$1032833241611250688$;$-589177688335830016$;$-1325606467005421568$;$3091531941212205056$;$-1273103236643456000$;$3783818836074162176$;$-949996649579875328$;$-1396042717650095104$;$2290904114156603392$;$-3792174649462446080$;$-3964302426929087488$;$-4066224181944120320$;$-320617193712489472$;$3684993292560754688$;$516227065551635456$;$-4558810502140891136$;$1469435051976060928$;$-2205973597892979712$;$2107610670558862336$;$2252525900458089472$;$3350654384004550656$;$-1941045258873261056$;$3191124566899351552$;$-3784989928604745728$;$-1193267036290086912$;$655408616291884032$;$-212876640038174720$;$-3590368850651868160$;$558029138347430912$;$-2278238605727648768$;$371615337409138688$;$891241340930406400$;$-1486348553840954368$;$1539735059487923200$;$2450719784820074496$;$-1570748867458525184$;$4006517040286190592$;$-336437195552436224$;$-1925998770684503040$;$-1909602378549813248$;$917021481307069440$;$2798907854787021824$;$-2578085515485650944$;$-1349253997231279104$;$-191593662709078016$;$-3445140850217142272$;$2925159438016362496$;$843777510643272704$;$4248283505199228928$;$230153017421550592$;$258188034259491840$;$1440706914889815040$;$2752267825916541952$;$-3029096992925901824$;$-3068781995351505920$;$1438275594083582976$;$-2710195616675604480$;$3746136483441552384$;$-2717548758210630656$;$-1966534745097241600$;$1474420110487933952$;$-3212797005695248384$;$-3717383871246760960$;$-4525460915061594112$;$-798841519379621888$;$1531624088992194560$;$1121906400468473856$;$4008530319146691584$;$-3701182402606636032$;$2902131814086661120$;$-2126475121644454912$;$-1298624124069819392$;$1812775219402578944$;$-90214514685489152$;$-3676901914700523520$;$3366564131393158144$;$542843133575849984$;$87930070552526848$;$-2273951061067256832$;$-3311737609362038784$;$-2268879633220722688$;$-3098426986307830784$;$-4557514513892616192$;$130031424963973120$;$2996722077623528448$;$2773444809013233664$;$-1550429025666035712$;$-544866906467558400$;$2965288418047634432$;$1520912791422995456$;$-4229118232153431040$;$-2342814871508529152$;$3663871250526593024$;$4102083558401143808$;$4015586829375537152$;$-942754641026393088$;$4573340417706939392$;$-2299732482851989504$;$3053912539662667776$;$-2374406830850950144$;$1017343552304838656$;$3424431215097138176$;$447869361883526144$;$968756125215066112$;$3615893535011506176$;$-4388221440358933504$;$3109536984796565504$;$-3967581594239223808$;$4526140997119117312$;$1068502972539489280$;$3962795406857077760$;$3902004671039065088$;$-1449100453919584256$;$4055164123875773440$;$1921867644643304448$;$378472117419661312$;$4147213786840597504$;$-4226155132381154304$;$-2852523714242061312$;$997035228997761024$;$1624357738100642816$;$2119118433447941120$;$1831716314029213696$;$2991591901609444352$;$3054934104407422976$;$-3343897281768451072$;$-3395459312094066688$;$3245072218318213120$;$137174513796724736$;$2042162956358816768$;$-2601058076350137344$;$3051404911138801664$;$-1260242758522597376$;$2760545020668887040$;$1552780880678498304$;$3508096861298868224$;$4214501387878901760$;$3404353552937917440$;$-514583599258691584$;$-1646691737545501696$;$3525126354960342016$;$-747730113735115776$;$-3382296362597469184$;$-822995150196388864$;$-1044516317928018944$;$3142151992369041408$;$-2297556415589031936$;$-1848801017223008256$;$-3777531726512013312$;$-1885921481758176256$;$304725988032741376$;$1621744416842365952$;$4029516872007368704$;$358343104831604736$;$-137234824836852736$;$2316161536902937600$;$-2914883279447721984$;$-2118595742364345344$;$644789440117789696$;$4027897820763621376$;$436971753681274880$;$-475362393075010560$;$-3453372059203431424$;$1701876261618296832$;$-349284361931998208$;$909781671112290304$;$-1686850959269772288$;$-3885101968057947136$;$-4373078798969944064$;$2409882212181657600$;$2633101088415069184$;$-1120151624156443648$;$4335867823351587840$;$1708678949026498560$;$-2746109247530617856$;$286134243569024000$;$-1544932612665921536$;$307462986593564672$;$-2540913738243120128$;$2276708441973932032$;$-999614501710082048$;$1358564242260022272$;$-1277277457805650944$;$-3536112339845597184$;$1171087769553606656$;$2984911721788240896$;$-2927679248041887744$;$-626472060187216896$;$2213375272662825984$;$-3052515967640755200$;$2971923474856859648$;$-434175944816289792$;$-3550463096646287360$;$2862428288388800512$;$3361737266740289536$;$-2736878972977084416$;$-2904997737947332608$;$1314737922713006080$;$1251785966405124096$;$3792205347555146752$;$-3722093918642514944$;$-3036941245353576448$;$-2904285320500026368$;$2005888690262791168$;$-2017171042052127744$;$2518139349621245952$;$-4401745950223409152$;$3914164346255086592$;$1119575953666591744$;$-202131015380463616$;$-1386928045237197824$;$-1539059054311810048$;$1235558838646957056$;$-1485532414465147904$;$-2352697101644514304$;$1846666354624721920$;$-1473041062551276544$;$-2131249202585996288$;$2105954140836879360$;$353913810596764672$;$-2276698050510863360$;$-3234634756110015488$;$1858495368645491712$;$-418544880420202496$;$3974011938204368896$;$2987042575326274560$;$938584815694304256$;$-3415678591360944128$;$1627011615271951360$;$-2684187330835019776$;$-4336534481722003456$;$651078353045586944$;$-424820084697612288$;$3980923276923281408$;$2717345449527648256$;$1363137710063710208$;$1839096451667539968$;$-3596348644862041088$;$-1695242935644848128$;$3797676196200559616$;$2519441138111534080$;$-1557739829736953856$;$2356774760316591104$;$63753972862040064$;$1840580450521241600$;$-390473695573614592$;$2881623615982795776$;$4333495775319429120$;$882599423592105984$;$-2276063251113668608$;$2227489213059807232$;$-398683362821463040$;$343354160531205120$;$-967192654776130560$;$-3138021456857597952$;$2202562514416877568$;$4050567760639768576$;$-2348352547098298368$;$2430830104316959744$;$-1554156466801289216$;$3319099520812196864$;$585603579597078528$;$-2343762195782848512$;$4173543164005291008$;$2735699415896840192$;$-3797048613061013504$;$2522870877518489600$;$1672440538755759104$;$1228833076917837824$;$1519538800943480832$;$1600769000281787392$;$973649395966322688$;$-3617506133895520256$;$-2562097648292233216$;$-3518714229252794368$;$1441206066015762432$;$1950770566456248320$;$-194877032500448256$;$1865127034369600512$;$-1116888012984435712$;$-1696297804165843968$;$-1583859602329554944$;$-3934775712274207744$;$1504243978154254336$;$1790993121375520768$;$3594774555097825280$;$-3455625816509197312$;$-995339052623924224$;$-3005934626396225536$;$1856856735297362944$;$6578506877034496$;$-1136947921190581248$;$-4402426521689379840$;$-2353164939587899392$;$-3305893722679538688$;$-4278447423575079936$;$2125581039433187328$;$-4453657841968585728$;$-1114756315672014848$;$-3747702354081955840$;$-731136668779498496$;$-3739284553266119680$;$3881159593066871808$;$-2252633245801388032$;$-316933651519220736$;$1743865486997327872$;$-3703102467188333568$;$4030646912917779456$;$246446044232870912$;$4456942024548008960$;$3416503386924661760$;$-3286705811921145856$;$282130634957455360$;$-2343949679330093056$;$2418277575705261056$;$2281936736584532992$;$3135492683455964160$;$-2329547655709667328$;$1967206730773682176$;$-3488572226792144896$;$-4404730579397905408$;$-3599207132408605696$;$4022344014660184064$;$-3122854170698285056$;$-3522900964033748992$;$4499309093012265984$;$3393587339215512576$;$2289247790581872640$;$1007608330075593728$;$-1661356609185826816$;$-3713887014358628352$;$1092121731285188608$;$4292524051161618432$;$-2134154350308144128$;$1036894656649724928$;$2046840327204055040$;$-3820556999865905152$;$-2966944866135697408$;$138997248175036416$;$-3718022785192645632$;$-3911738504112147456$;$-48946051419732992$;$3846473554517325824$;$4318171287081482240$;$-4158670821724472320$;$-4129735542588765184$;$-439376251132429312$;$-2845348984372275200$;$-268955267176422400$;$-3045395509300596736$;$-300652852783345664$;$-3281445300160799744$;$-145470662953901056$;$-4429758387490508800$;$1343133141013554176$;$149160295672200192$;$910651266217248768$;$-2703106483142950912$;$2425493940815401984$;$2102138930621830144$;$1102168132349216768$;$2629737248803051520$;$-3404327913564760064$;$-2772192987043474432$;$-3390819687592245248$;$-1078156828409171968$;$3049083926641386496$;$-2858346074549172224$;$-2991144513346014208$;$1160789605712656384$;$708148976592171008$;$-4312122238004554752$;$-4579393473859845120$;$-4390262819262972928$;$-424237356498490368$;$1851913583311638528$;$-396278588106765312$;$-502504830296080384$;$3977797572897230848$;$3827783870761302016$;$2565886680302562304$;$3681634309847110656$;$-2556664800615981056$;$-3935386612038067200$;$646926553935056896$;$4369622639637874688$;$1733600221203685376$;$2146906999001316352$;$1450163817859807232$;$833933019065587712$;$2560086671124672512$;$-811894012322818048$;$698935777841894400$;$3467553644176711680$;$-3750972262514899968$;$4596376813711197184$;$-1449091048578607104$;$-2573348559121988608$;$3990398007901661184$;$2402284784585308160$;$2338796622481162240$;$1365508090321681408$;$2250002751034692608$;$-3304134376801231872$;$-524703570459882496$;$3071672102814994432$;$4604271922296643584$;$255446096534375424$;$3946185240212135936$;$1292610665237955584$;$-2945893356391368704$;$-2347550777380514816$;$-2698247505401273344$;$4228384277183647744$;$34170012075659264$;$-3969231995835067392$;$3375253798999260160$;$-648103647147614208$;$-2405219598871832576$;$-4110667354840967168$;$2483893662937300992$;$-2384913670529291264$;$-4342048336358811648$;$2241310467526260736$;$3148494103759908864$;$2106367288805427200$;$3275726616662466560$;$-966698035795315712$;$3379372380644786176$;$-1634601095857113088$;$-3582579356486440960$;$3178650845265894400$;$1428344907456835584$;$-1173868045188383744$;$-520952725257392128$;$-3555128606069414912$;$2916293299645880320$;$2526107251121425408$;$3724647019950873600$;$-3401590163261356032$;$1441264653912867840$;$4511796015137941504$;$3683659769326467072$;$-4564384856930519040$;$250601327375006720$;$-2143155177834796032$;$3308064487253456896$;$-1543129014355087360$;$-3595381341667803136$;$-4241309371675504640$;$3115300058715627520$;$2308062135833574400$;$-4224210041679892480$;$-978265278174639104$;$2659133943987474432$;$4446962879076681728$;$-3178243817305756672$;$-2931809259685330944$;$976982892278539264$;$-518890974334405632$;$-3887051496451615744$;$-3332142193913620480$;$-3677724287577803776$;$-4134033655142636544$;$-294632905142094848$;$2216732253638341632$,㋍᭿鱮峧䠲㙄퐑옑ǚ崤ꋉꃖ쿪崚歸ꁽ褭烕䍘鱋殸㰅ާ쪭檿趲錒㞩嫳矀潘䭫쾟攫扄펔ꛋꪌ, -20,,1443154423.08,,"-EFF_3SU.aaD VٔbO=\""S!",,"{""a"":2.2438386791921184e+307,""b"":""\u6606\u8fa5\u2f98\u3b8c\ua1f0\ucc27\ubcc5\u500c\uc773\u045a\udb70\u5868\u5298\u5baf\u9da1\u6c72\u5d84\u1de2\uc0e2\u8d75\uaad3\u1e24\ua63e\u95b1\u610a\u73f0\u7ff7\uab13\ud010\u8762\u80ba\ufe36\u5ae5\u59b4\ucfe5\u191d\u57a4\ubd0f\u9fc9\u04b3\u7519\u2533\u15e0\u2b87\u463c\u9725\u5863\ub0b0\u9233\u375b\u67e0\ue1f4\u8298\udfe6\ua7a6\u8cef\ud22b\u34fa\u73ee\uaeb4\u1eb8\ufc57\u0a25\u5ea7\u59f0\u0d59\u06f6\ue35f\u6b2b\u9710\u6d31\u1b55\u6ada\u738b\ub328\u82b0\u7bec\ud6c0\u974d\u8008\uae68\udb51\u3180\u4168\ue046\ub65c\u9ed3\ued47\u6956\ufd72\ue72b\u431d\u8a59\u1b80\uac8b\u9507\u0bd5\u5f16\ud4cb\u2eda\u31dc\uaa43\uc036\ueb4c#\u54d4\uf507\ua8b9\u5e09\ue410\u09dc\u842d\u8ae9\u2d25\u45a8\u815c\u8f9e\u09af\u7c44\u538b\u77fb\uf951\ue109\u6a8c\u26e6\u642f\u473a\u65bd\ubaf9\u841d\u2f44\u169b\ud1c7\u02c8\u6ddc\u2c7c\u1b2a\uac3b\uee8b\u9aef\u7203\u148e\u0359\u91e3\u981c\u4543\ue829\u77fe\u357d\u8e48\u35e8\u38a9\u1f2b\ud57d\uf08d\ud769\u864a\u8397\u920c\uccdd\u1b34\u0271\ud767\uc684\u4a7b\ucf88\ud8ce\u55ac\u02aa\u48ea\u66e7\u8719\u101d\u866e\ud653\ufd8c\uaeac\u39b8\u567c\u3b51\u00fa\u8e12\ubcd6\u46ce\u98a0\uac18\u57b3\ubd99\uccae\uea55\u6b2a\uf07b\ud7c4\u4fab\u2bd2\uaafb\u065d\u8a7a\udf93\u699e\u53a2\ua88e\u1169\u9bb7\u657a\u607c\u86cc\u29d0\ub5bb\u2e70C\u1263\u2da1\uc71d\uf078\u7c2d\u0ec2\u4b0c\u2e99\u771b\ue73c\u3592\u3cda\udf42\u5d60\u5372\u345f\u796a\u55f7\u01f6\u5427\u3608\u3b53\u5151\uecd3\udfa1\uebe1\uace4\u7b7d\uff3b\ufa26\u8fde\u4d41\ue39d\ubc1a\u096a\u7c36\u33ce\ubdd0\uf71b\ub719\u376e\u2e93\uaacc\u714c\u2676\ub94c\u61ff\ubedd\u7c72\uea1a\u12f9\u8c9e\u429e\u856d\u3be4\udbdb\u9034\u989c\ue4a6\u2974\u2ac1\ua7dc\udcc5\u9655\u5e5a\u94e6\u114c\u42e7\u8b2b\u8548\u2782\u705e\uce4b\u27b3\u18ca\u3094\uc41b\u1d09\u207d\ua74b\uadf4\ua4b9\u0c95\u0a12\u1f7b\ub6fe\u59bc\u4fd2\u4df3\uc023\u8f5c\u0a87\u9551\u43bb\u2656\u14f3\udc4d\u6b63\uc22e\uc3be\u28b6\ue97d\ua249\ueb6c\u77ae\u0da4\u82fd\ubecc\ua022\u0ee6\ua762\u118d\u4961\uc89d\u9d81\u8f3a\u67c4\u20c0\u4cea\u077c\u4265\u3458\ue7a3\u3f3f\ub892\u7870\u5760\ud004\u4e56\uc2cf\ud3f0\u59c9\u6daa\u577d\u6d08\ud303\ub34c\u716d\ub29f\u5be9\u06ac\u83ab\ufe45\u4ab0\ueb57\ub5e5\u7795\u4594\u7031\ub5b0\u813b\ua080\ube97\uc828\u3d8b\ue2c9\ue68f\uce98\ub363\uc02e\ue3ec\uaad2\u8a5c\ucb7a\u85c3\uc34c\u323a\ueeda\u407c\u9696\u6b87\u0bc8\u4fdc\u9c87\udbfe\u7a19\uf570\ub9ee\uefe6\u555b\u15c8\u8261\u05dc\u3598\u62f9\u0dee\uf33c\u7e73\ud820\u3332\ub03f\u3b49\ue0f6\u103e\ub1db\u7f0e\uefe4\u2403\u349a\u9e11\u20c7\u4b3c\u5607\ub209\ubf32\u5308\u555e\u5b21\u31f7\u3ea4\u1bbb\u458f\uf828\u3bf8\u43bf\u424b\ucb31\u6e28\u5813\u65cd\u3619\u8ea3\u6e52\u9beb\ue706\u19e0\u27b5\ud856\u2d2c\uf6cd\uee84\uc5d4\u7d89\u6143\ua325\u116d\ub246\u742d\ua96e\uda1d\u346c\u5ea2\u291d\u695b\ua994\ue2f3\ub2cd\u2d8d\u9c08\u83ae\u3a51\ue190\u6b75\ua978\ub6e6\u0b17\u75f7\u84ea\u3123\u666f\uc32d\u74f3\u6b8e\u5f98\u9e4d\u3658\ucbfd\u5c04\u26a7\u9318\ue721\u05a7\u7372\u4c56\ud0da\u7754\u9716\uce7d\ua467\u3fa6\ueb37\ub499\u59c6\u57a7\u1eed\u41a6\uba56\ufd49\u5a1d\u9ecd\ua7d3\u537a\u118b\u312b\u6cec\u8b85\u56a8\u78ce\u4483\u1ae3\u40df\u2288\ud976\u8788\u761e\uce88\u7847\uf249\u1e99\u5231\u0fb5\uc1a1\u95ac\u45ba\uc3a5\u86b9\u25f0\uf127\ua4cf\ud9d5\ud271\u9697\ud531\u5d38\u632b\uaeb5\u1270\uad33\u79e4\u58bc\uaef3\u3bfc\uae38\u3906\ufd18\u6918\u093b\u1da2\ud227\uf0f5\ud0ea\ue1c2\u70a2\u2471\u07bb\ua8a0\u9e63\uf76f\u4d6a\u403e\ub81e\u55fe\u60e5\uc3b1\u03ee\u8f68\u75a6\ue899\u52f6\uc7e9\ubf9a\u4388\u1223\u88dd\udcda\u5314\u9a14\ud827\ua576\u3ff3\u6eb3\u17af\u862c\uc4f5\u75a2\ue98b\ue807\ue840\u12da\u6c76\ufce4\u9338\u6f5c\ue9ae\u9732\ub765\ue838\u40b9\u2c10\u955d\u6c53\u8b9a\u93ca\u48ef\u2ed5\u7f4a\uc3e0\u5bf0\ucb76\ub838\u9386\u2760\u8643\ucdd6\u1bb5\ue818\ude60\ucc5e\u1598\uf930\ud9fe\uf27c\ubf6d\ue6ff\uf567\u34db\u3311\u34d5\ua1fb\u0d20\u309c\uc87c\u0917\u32cf\u3645\u9f55\u5c9c\u8415\u0f32\ufae0\u52fa\u1047\u9f1b\ud8b0\u4717\u4d93\u06b9\u2d3b\ua73d\uf00b\ub7aa\ueb6a\u73c9\u5240\u10c4\u03b1\u4401\u340a\u82b3\ua4d0\ufdd9\u8f1b\u0d40\u3994\u2c97\u7932\u3d79\uaf70\u00f6\ue6a6\u6fd6\uc455\u934f\u5c23\u30d7\uf03a\u2938\u76a0\ua8df\uce96\u2054\ud7a7x\uc771\u711e\u27da\udbe5\ub19c\uc38c\uf7dd\uad4d\u9627\u6698\uadb5\u5a5b\uf437\u83cc\uf36a\ud129\ub01b\u788d\uc2ec\ub24d\u726e\ud2bc\u22b9\uc57f\ue21f\u1f21\u92d9\u59bb\uddb0\u7972\uc391\u0a5f\ub94f\u4a7c\u80d3\u2b01\u521b\u7f9c\u45d3\u6050\ub243\uc07b\ue46e\uff2f\ua22c\ue4c2\uf110\u7ad4\u94b4\u04a6\ufd94\u9446\ucd49\ud770\u5205\u17e6\u4748\u93c0\u733c\uf484\u6b3f\ua8e7\u1760\ucbbf\ueb28\ubffd\u957c\uc12a\u8946\u4378\u2f6a\u0f19\u2a43\u7b75\u5f78\u2c1e\u893b\u4aec\ue2e0\uc040\u109b\ud29b\ufaaf\u14b2\u5fb3\u7184\u788f\u3b83\u1b8a\u62e6\uefe8\ub58c\ua56d\u8872\ud34f\udba2\u10fb\u4536\u60d9\ua739\u8495\u6686\u26fd\ub711\u2b89\u6e13\u7138\uff32\ube0b\u200c\u67b5\u4206\u6f47\u432d\u7ab4\u9230\uc5d2\u3d39\u9d7e\u9e47\u99e6\ubf38\ue553\u66bc\ud268\u2c7f\uc800@\u3edc\ubfc0\u51ed\ub75a\u49fd\u5561\u9a31\u53bb\uc9b8\u3474\u7f96\u820c"",""\u798f \u9152\u5427"":{""fu"":8.846967456910945e+307,""bar"":9.736757336479673e+307}}",,"-4211614565474438144 --843086565617481728 -2999869307446430720 -3947826757190043648 -1008225893456546816 -272590684203789312 -4169986935223336960 -996215088808560640 --3625835496788629504 -1803717418571520000 -883304991381722112 -4546364155077240832 -3397824471413323776 -255074465404975104 -1539111442821074944 --589354823306921984 --2137101260271676416 --2296196983689071616 --4464324688226751488 -1651967142343909376 --1591013801585966080 --4168661578115304448 --293439423872346112 --2911599621846086656 -3923180308981395456 -4082179931672884224 --1049689562223246336 --1852368965683746816 -390392606415492096 --3420993072651919360 --414563141211060224 -53441859412312064 -3054000959140365312 --543870488833095680 -2028587780791839744 -723669986271407104 --4013121845241485312 --2547397292758867968 -394322712042332160 -239492630176890880 -902048499607983104 --567645214809608192 -3319525601977435136 --479861693089673216 -2805751527889401856 -1664619038942322688 -2063115262129561600 --1497967746959435776 --1042503139091809280 -2127053686338840576 -45093797406248960 -3074118559113454592 --466232223382555648 -2083933756486748160 --31430710557385728 --1882756204450748416 -2040340387866679296 -3096912216605135872 -2530046505758294016 -614714706262126592 --1304966196837807104 -193698022808331264 -2640874137921212416 --483283645093497856 --1954944175087293440 --3636509033466537984 --2691518375698616320 --4492012791925373952 -3759587357366268928 -2197008926954455040 -2623038055267996672 --2927813902373364736 --28438421513960448 -2746454200580943872 -3128329091331484672 -4142766611336631296 --4550989188152923136 -1826131649003747328 --740017654605399040 --2930720356828731392 -3206719896514814976 -2619516301159320576 --1098327970710183936 -1498157656058671104 --990969646376505344 --4482300578957009920 --4165047869018875904 -4571997226318456832 --138401964121453568 -1857952523856495616 --534356329926317056 --4248208724106419200 --1045130038120989696 -4457532364219523072 -4229814964827473920 --1966217257342081024 -4182881709577619456 --3712078654697293824 --1316958270377465856 -562306828698814464 -79505653198744576 --3636407963996302336 -1136301459707352064 --1618000694978371584 --2352480717307185152 -1216995554103124992 -3079646292823920640 -1409960735188909056 -4277473076287804416 -2533206867517281280 --4278372757557345280 -1053518216958052352 --2806089488342867968 --592727415452386304 -2871464263533157376 --658917727762999296 -766771773503741952 --933024809220776960 --3473090621570658304 -4238800588289053696 -2937248779125824512 --2125891324807856128 --3024689939088598016 --343728026964777984 --2682878955554061312 --330310667170927616 --2139405370528550912 -965085716699303936",$-4211614565474438144$;$-843086565617481728$;$2999869307446430720$;$3947826757190043648$;$1008225893456546816$;$272590684203789312$;$4169986935223336960$;$996215088808560640$;$-3625835496788629504$;$1803717418571520000$;$883304991381722112$;$4546364155077240832$;$3397824471413323776$;$255074465404975104$;$1539111442821074944$;$-589354823306921984$;$-2137101260271676416$;$-2296196983689071616$;$-4464324688226751488$;$1651967142343909376$;$-1591013801585966080$;$-4168661578115304448$;$-293439423872346112$;$-2911599621846086656$;$3923180308981395456$;$4082179931672884224$;$-1049689562223246336$;$-1852368965683746816$;$390392606415492096$;$-3420993072651919360$;$-414563141211060224$;$53441859412312064$;$3054000959140365312$;$-543870488833095680$;$2028587780791839744$;$723669986271407104$;$-4013121845241485312$;$-2547397292758867968$;$394322712042332160$;$239492630176890880$;$902048499607983104$;$-567645214809608192$;$3319525601977435136$;$-479861693089673216$;$2805751527889401856$;$1664619038942322688$;$2063115262129561600$;$-1497967746959435776$;$-1042503139091809280$;$2127053686338840576$;$45093797406248960$;$3074118559113454592$;$-466232223382555648$;$2083933756486748160$;$-31430710557385728$;$-1882756204450748416$;$2040340387866679296$;$3096912216605135872$;$2530046505758294016$;$614714706262126592$;$-1304966196837807104$;$193698022808331264$;$2640874137921212416$;$-483283645093497856$;$-1954944175087293440$;$-3636509033466537984$;$-2691518375698616320$;$-4492012791925373952$;$3759587357366268928$;$2197008926954455040$;$2623038055267996672$;$-2927813902373364736$;$-28438421513960448$;$2746454200580943872$;$3128329091331484672$;$4142766611336631296$;$-4550989188152923136$;$1826131649003747328$;$-740017654605399040$;$-2930720356828731392$;$3206719896514814976$;$2619516301159320576$;$-1098327970710183936$;$1498157656058671104$;$-990969646376505344$;$-4482300578957009920$;$-4165047869018875904$;$4571997226318456832$;$-138401964121453568$;$1857952523856495616$;$-534356329926317056$;$-4248208724106419200$;$-1045130038120989696$;$4457532364219523072$;$4229814964827473920$;$-1966217257342081024$;$4182881709577619456$;$-3712078654697293824$;$-1316958270377465856$;$562306828698814464$;$79505653198744576$;$-3636407963996302336$;$1136301459707352064$;$-1618000694978371584$;$-2352480717307185152$;$1216995554103124992$;$3079646292823920640$;$1409960735188909056$;$4277473076287804416$;$2533206867517281280$;$-4278372757557345280$;$1053518216958052352$;$-2806089488342867968$;$-592727415452386304$;$2871464263533157376$;$-658917727762999296$;$766771773503741952$;$-933024809220776960$;$-3473090621570658304$;$4238800588289053696$;$2937248779125824512$;$-2125891324807856128$;$-3024689939088598016$;$-343728026964777984$;$-2682878955554061312$;$-330310667170927616$;$-2139405370528550912$;$965085716699303936$,觝虘뱢䗁銚䐩生锗婅齟뇰刎싺앏䙔퉵瘩紖◫⁑䇑路飯뵞컷⑲舑谞갮正仦뛳䮍൧ꑣ偹↗䁚✣㊙뀢祼ᖜⱜ鈍ᷦﵓ癄₇늲เ制鴃ਲ਼ᶄ梳蹌ョ⑱෾ϥ얮٣䑙⮥镣ꮖ憟쯋㏓ꍺ쮄㟅㾍■㌇趇ꡠ䀆滛穴◟鎏绠輗꾪끍沖ꅳ摫&楈钙쏳傊쨯ﰇ皅䨖쭠㑻囲ꗊ❌ሕ萂総仾㮓ҥ칦䈐㩨덥隴壈跒괔￵⃴៣ᶰጦ댑⺕摊퀏ꚢ滌ꇫ㯾렑䧟′艧돭꺓〚鎣㸓猀犡዆㦉♠줟졡澸᧛劶뢿嗽絊膰늩⇔㤙㹌ﶅ㫏▫宙獝분﨏ꫭ髯ꖄ譾옷ᗒ˭⑛搽㔳鎸৓蔹Á䆛䘩㰨뾱퇡ዔ㺬瓿퓺줫릜ﱎ㱌漇㢢㞧ꛋ䠆ꜙ웞鈘僧딀凈碑粥秬䚉ྨ䕭⑚ᾝ嚧ꤟ剃㨘勉츰묣椬⿜窨䛦鯣᧭翻峃튬䟆耭賀鑺㵘꜈ꬪ껵曨离뒬뎏䝆῀逍빐ቭ빞鿚羐皱囏㺢Ý埬쳐ዠ埑馵蚰䂔ᇵ敢ꀠ쪖羛ԩ◿榒퉷⹩뢈샱꺃新윣欮䶲贮妞쥗曟薥崌ጨ㶠鲻㿽⊄䗃溫乹쎊恨킯熂뛍ᒳ똃底躇蕊ꕨ훽趏ᣉꖗ坆ᆍꨀព≺㷯☖᳨亢㬎ꞑⴝ믃ც㹜팋歵鱒띡⧿↑樐邏蝲綹蘆⥜蔔諵⢭릣甮Qكꬹ걞浇楍窖࿊梊㪠ꍖ씹⢥ᙋ➼忨嫰੾ἔ紭㫪쐷떹滄㣋本駾쪺懺ﴠ설駳痰몷긿癳壢॥噣퐣왵뾰ה嵹傁멇輀鬵汾䳙ए㴭챩屝䧴턁⎍㛘⎙폟駷螿ꂹ샃⑀軦妧ᐕ덮ູ埌燸苳鬌蘂魩䑇ذꕕ쀏꫁䞓뀭훔捰참萩ꋚ菊ᴰ邟蓹뙬඘䊪즠숾篰㓁䒚쐽຤봋緤鿙渏ﴐⓦ, -21,,1443154423.09,,aoh{<ºoEmK(dEY }:|G^7څeP,,"{""a"":3.0178470168261096e+307,""b"":""\u63b3\u1eb1\u9fe1\u4bd7\uda13\u6f0c\ufaa3\u02dd\ud150\u97ed\u9098\ue3b9\uecbd\ufd87\ue43d\u8339\u532c\ubf12\u7425\uc57f\ub0f9\u24af\u33b4\u0e1b\uc22b\u9535\u9f18\u1c3b\u06b5\uee0b\ufec1\u116b\uf9ac\udbae\u3fc3\u9546\ub00f\u746d\u130d\ua881\uc34d\uff37\u96ce\ua0a4\u0e43\u79f4\ubdd5\u7d21\u18b1\u77fd\u6d13\uae3f\u8b3b\u938d\ud77a\uf9c1\u8faa\u5406\u6bb2\u51a2\ua589\u7dd2\u5600\u84fe\u540a\u1a99\u246e\u53d4\ubaf2\u7cfd\u9680\u4742\u9b57\u7f89\u34ed\u0170\ud2b2\u4ccb\u7cf0\uba18\u7807\u6d67\u4aea\u1165\u4767\u7350\ue55d\u5e53\u9c9e\u5604\uafb8\u868a\u0893\u6b11\u7ca1\u6675\uc726\u00fa\u3bcc\u9eef\u3817\ua005\u7813\ucfc7\uc608\u9919\u092a\uc3c5\uba4c\u477f\ub515\u34fa\u6034\u0bf4\ud72d\u0e0a\ue490\uf4b6\ubd07\u37bd\ufc5f\ubeb3\u126d\u666b\u6e22\u752a\u0704\u3d17\ua81d\uf787\u0f41\u615e\uf87a\u047b\ucd27\u8bda\uce22\u4f53\uc058\ufabe\ue00e\u37ab\u7652\u4b07\u2bdd\u5ee0\uf3d1\ua2ae\u89d3\u4d2b\uc59a\u8349\u57c1\uf8a4\uef37\u7e6e\u27c6\u39d4\udbe4\u3c92\u7cef\u2c1d\u8577\uc6bf\ub136\uf912\ua0d0\u76f8\u23ba\u2f09\u61da\u1e61\u823e\u9adc\ue830\u0a40\u72f3\u57c7\u460a\uc364\u9e62\u5900\u8a20\u57a5\u3f38\u648d\uf8e8\uf2c0\ueaa7\u948a\uc592\u0217\uc46a\ud84d\uf15f\uad98\u38cb\u0cf5\ua564\ua822\u2eaf\u2f52\u3c56\u83ba\ue19a\u2d9c\ub24b\uce20\ubb03\u90f5\uf725\u52c1\u3584\uf2a4\uc51b\u8074\u0b38\uca3d\uec8c\uad63\u4a62\u0cab\uf845\uf16f\u4bc2\ue411\uee7c\u4cb3\u440d\u5b07\u1d01\u1725\uafee\ua51a\ufb98\uf8f4\u4e3b\u4be9\uef85\u5cc9\u75e1\u33aa\u601d\udc12\u3d1e\u546b\u4ac2\u1ebc\ucd38\u25e2\uc5d2\u194e\u0dce\u313b\uf6fc\u6494\ueeef\ud7e0\u4c44\u2dc1\uc68e\u3c28\ua212\ufbb1\u68c8\u98e6\ue2b1\ude4d\ucace\u72b7\ue088\uf2f8\u9656\u84fd\u0fa0\ub973\u13bc\u6944\u4237\ue4a2\u8cdd\u091c\uc2a3\ubf6b\ud7d4\u44ec\uf94d\ua39e\u619e\uc983\u0e31\ue197\u5f42\u8415\uab71\ud9e5\ude36\uaae0\u8d8f\ucaad\u8c39\u94f8\u53de\ue0a5\uad29\u154d\u9487\ua1f8\ubf92\u01bb\uc5d8\u2a2e\uc93f\ud3fa\u0125\ua874\uaeef\u1f13\u91f8\ue5d4\u8892\u543e\u9ad8\u7119\uf3aa\uea60\ud9dc\u1d45\ud84b\ucfec\u9f32\ue5fc\u4cca\ub81d\u424c\u0a94\u9655\ufa45\u2da8\ud294\u0a05\u8ddd\u0b14\u9897\ube5d\uee3e\uf13b\uc652\u15c5\ue35d\u8063\u5639\u9fca\ua7ea2\u5d14\u558e\ub259\u368d\u12f4\u8320\u97c1\ue747\ud981\u1b98\ucdb6\u1b50\ufa9e\u934b\u9404\u0b94\u1d32\u7bf9\u18ed\u3a18\uf2da\u1160\u1a16\u6daa\uae6b\uaed2\u4feb\u43ea\ua808\ub634\ub596\u707c\uc463\u77dc\u754f\u1dcc\u831e\u913c\u8c4d\ud917\u8caa\uc04b\u485e\ub3cf\u8dfd\u4d47\uaa83\ub75d\u94f7\ueff4\u57ec\u29f2\ud518\u3717\u0371\ua4e4\ub756\uf886\uca8a\u677d\u805a\u0ae7\ub581\u0792\u1552\uf89e\u3e83\ub066\u4c35\ubec8\u3b09\ub79e\u9b12\u5b90\u2f98\u36fb\u6a08\u47dc\u9a63\u4139\u0c66\uc94e\u7a0b\uc9f2\ub981\uf7de\uda88\u1166\ue728\ucad7\u0edd\u4ec1\ue604\ueab9\ube67\u44e0\u7d5a\ua138\uaffb\ud42b\u2c04\ufb6a\uac68\u837c\uc067\ue87b\ue2eb\uaca3\u15a5\uaa34\ub940\u2d7a\u378d\u54bf\uefd0\u6118\ue688\udc35\uf608\u79d3\ud97c\u393f\ud586\u5cb1\u6a7e\u751d\ubef3\ue050\u07fc\udc7f\ua20e\u642d\u58e1\u293d\u4a69\uf789\ufbd1\u2117\u0200\ub6f0\u1156\u6e92\ua876\u641f\ufc9c\u26e1\uc86d\uf275\ub4a0\u844d\ue6ce\u7e8b\u36a9\u186b\u85b3\u0620\u2509\ubdfa\u7811\u2de8\u293f\u5296\uad33\u259a\uf13d\ue3c5\u86bd\uaf27\ua2de\uc9d9\u3125\ua4a8\u8de1\u0da3\ua758\ubb46\u3db3\uad66\u9eba\u1e8c\ue1d1\u5af8\ueffa\u9526\u1bd3\u7378\u302b\u1b1e\u034c\u0b5c\udf9d\u18db\u7601\u6ad9\u5644\u0d23\u8033\ub51c\ubd85\uef61\u515d\u2145\uf3c4\ubf23\ub628\u0a96\u3bbe\ub347\udf16\u5570\u8e9a\uf5a0\u1e14\u2a1d\u9953\ubbb0\ueaae\ub8f0\u87bf\u0e06\u5143\ubd8e\u7619\u2252\u5928\u4e4f\u42fa\uc80b\u8406\ubba4\u89d4\u3a27\uc4a5\udcbf\u0819\u491d\u262c\u17d5\u5422\u13f6\u3bf7\u27c4\u6239\ua76a\u52d7\u3c9c\u3f43\u89a3\ubaf5\u30f6\ufaa0\u128e\u2520\u3c20\ucdc6\ub0d4\ue43b\u274c\u0712\ufbbf\uaaef\u3d55\u1f5d\u0120\u1574\udd06\u17ff\u8597\u66cd\ud1fd\uc978\u8d4a\u0d1e\u058d\u95f9\uda9b\u33ad\u7c18\ua281\u2dd9\u2c91\uc1ff\u33b3\u00d0\ue109\u0144\u909c\u17e2\ua867\u6e7c\ua7de\u0129\u8c04\u7d38\u15a4\u4b8a\u893e\u9460\ue3bf\u650f\uf0a3\uf47f\u0c20\u8e7d\ue28d\u4ae2\uf77f\u7b84\u3998\u5d3a\u4991\u3098\u948b\u4fe9\ucb21\u8d71\ua590\udbb2\u32f8\u6288\u01f7\u0b17\uc774\u1512\u1162\ub29f\uef22\u2206\u96e8\uf91f\u2042\u2fb3\u4c38\u6f3e\u9c34\ub651\u3228\u5185\u689f\uca2c\u3684\ua70e\u20ae\u6c1d\u5494\u70d8\ud542\ub6bd\u22ea\ua665\u2980\u5c0e\ud6ec\udfac\ud5cc\u90ee\u8096\u741f\u6d97\u4521\u80f1\u1779\ubd66\u3838\ubdfe\u89a5\u71f3\u27d9\u663c\u2586\u700d\u9a60\u4c2c\u2f93\ub8df\uc505\ubb78\ue965\u3449\u12f7\u136e\udc54\ue5d7\u18e5\u2401\ud965\u61c1\u6b43\ueb68\u1a5d\ubae8\u593f\u7c4a\u8896\uaf83\ua8c1\u7e3f\ufc79\u2eb2\u0a6b\u0fa1\u0769\ue886\u9700\ubc64\ucc7d\u80b1\u6bed\uc717\uc66b\ubb95\ud2a9\u7945\u3414\u5953\u30ca\u7e31\u07a7\uec33\u4f47\ub16d\u39fb\u0e3f\u0f95\u157c\u8c99\uc199\u953f\u8d02\u5bb0\ue151\uc9a6\u3cee\u1e8d\u6a55\u0338\ub4f4\uc688\u9f56\udc77\u1be6\u4177\u3c2d\ue0ebV"",""\u798f \u9152\u5427"":{""fu"":9.261029645295052e+307,""bar"":1.576331209039363e+308}}",,"-3233664305640970240 --1505697467636890624 --2719452626100870144 --594931287509085184 -3666368945120561152 -3253100577382031360 --3463641508746108928 --1650926009635001344 -38505612598785024 --1239364500488085504 -4321325554949757952 --1947640665853281280 -3580348890079419392 --3075590583616214016 -4109511655354204160 --149235516592490496 -4498436512704829440 --3393651875257160704 -148001701082029056 --2148747000907720704 --570886869796320256 --958883205262020608 -4507324342644292608 --1031653971499437056 -2651783534974186496 -2294338885964306432 --692813695233782784 -1122435561836512256 --3726559889829838848 -613168435884254208 -504606334181731328 --3004088133995148288 --1148760464066614272 -1698779460716499968 --4473406365158918144 -1821103295780334592 --2563032239101651968 --1734677923282156544 --4305673188258354176 -3974521838412476416 -169096805134194688 -1800181276066853888 -2107915577836312576 --3609116689480443904 --1807472795337650176 -3414530700533959680 --1348440384188049408 --1237609337269685248 -3037318356142989312 --4491313109470483456 -2321770110170042368 --603000678213281792 -916978293321252864 --692562772703256576 -4404061791500854272 --1580493206405379072 -1627243209642562560 -2692066986732080128 --2271999355219716096 -1074309355415272448 --1065892507856196608 -2748601016979502080 --2587772180831857664 -1910209765480239104 -1603881225623010304 --3434738909047040000 -2993296370266478592 -3865998901317819392 --2842397100019927040 -3591501884335221760 -1409283124329149440 -3029157101693546496 -3699768918929166336 -1661491339405649920 -4586215668193410048 -763001142761385984 -895304172387659776 --4234056598057910272 --4248277426268009472 --319852829191454720 --3513420647291848704 --2913311904972466176 -3767165171636255744 -26825152029463552 -2068846209074216960 -3806629529286493184 -2432285551345337344 -4014431610722518016 --433824948526604288 --894544515674351616 -4507397205609484288 -3301482329193753600 -3686365840889297920 --302475574045709312 -2266769733423758336 --3129926453183360000 -1179775137205133312 --2239847102574016512 -2418270069288216576 -3263907106676178944 --1886737338775358464 -4399337511270712320 -1816485731592692736 --1657502181793383424 --2995009786494643200 -451938011928006656 --4119120433420578816 -3674899699675383808 -301111447184697344 --920385500839251968 --617466567907218432 -3630765379681454080 --1416994163438241792 -684098772963758080 -2306578173503748096 -4269401622699814912 --4341244555472811008 -4151650202304326656 -1363915370035367936 -2232183355935348736 --2473829814453695488 -347470959776842752 -2949790868280904704 -3169525147709630464 --1541632567985132544 -3285172730409115648 -1749584543550859264 --3082304196933548032 -2411461894950377472 --2616247137032056832 --2413554286009730048 --1352715680202182656 --3138999704232561664 -3677863238066595840 --4101826884698924032 --495526787044003840 -160303835132588032 --4214366170705634304 -2010696166029391872 -4582136195257945088 --3424408814415869952 --1530588536197344256 -1331221397763203072 --2086545013050415104 -97792057400330240 --237821584747291648 -1949651358703646720 --1677175176341472256 --2119091633777050624 -765336394490029056 --3812230880857230336 -308810964671963136 --3594398184227388416 --2548603470165909504 -1692203426240174080 --934056376816982016 --13792146405274624 -3778251803361789952 -4009082693881546752 -3200554863125478400 --1240229991437510656 --3065569786598289408 --2338765152036452352 --170986297438392320 --4422318121088921600 -2087898489240747008 --787033300792655872 -1115196885202242560 --2990433506757734400 -4519112318491043840 -1878346755206831104 --2633368591426413568 -2175050452332402688 --1000810391931677696 -4378953569080459264 -1399322567292622848 --2598645906606639104 -829627943875771392 --2363093953399057408 --3123350515388855296 --4391545413168382976 --433683601801814016 -2333548622547680256 --1091963892013582336 --594731989712849920 --1275036382091063296 --1318484888717326336 -3526202423398275072 --829469289610917888 -2387186152383576064 --1156446389204754432 -4608664188850936832 --2406489066948905984 -3976775374935900160 -253856316845232128 -4578545644167993344 --643270598426199040 -1237471406575477760 -4015452090567406592 --3989478405668819968 -3197462378601764864 -2569570815258128384 --2503360234812237824 -2749682001577879552 -4501026396516320256 --4060331115135919104 --1916180161095345152 -296428372035940352 -3907590291454555136 --722881143843384320 --2058697457859995648 -1121818378603154432 -556136530541486080 -2000424717756157952 -568005468814527488 --3489891051559424000 -2852665356896192512 -132054676622395392 -1467387372958186496 -1405830885520411648 --4389606994685099008 -523297975034349568 --720510853977246720 --3350745604590394368 --542277017972754432 -3775438401413293056 --2384114379197127680 -3991284774432001024 -2933720403656090624 --3133504764508732416 --1140448370815267840 --1515746915364742144 -2560197266432250880 --2742330644172650496 -5924181162183680 -1683052638414749696 -3373023827315945472 -2573928320171636736 --3834425256317344768 -2311204914300406784 --148751480665554944 -1176194615686478848 -2193949315477736448 -3578323335500892160 --4195835354684811264 --3551955045404985344 --3978080978344400896 -3580099387254100992 -1283289050150324224 -3683825135576977408 --4213754895237941248 -627334505519271936 -2869948558709306368 -421083128913230848 --1524387356000349184 --4047690972920044544 --2351172477247246336 --3876739350830886912 --3270633702876012544 -1164729454112391168 --3793420470247488512 -1674112123272872960 --4136381137552442368 --526251169506812928 -2219531007548362752 --2662028704220300288 --2198341498218613760 --3214689554919659520 --397672889740894208 -1687422272368591872 --1773320177463564288 -134962051238523904 -83537652648973312 --3887200944395717632 -4095605553256116224 -914877581124651008 -4023534336774004736 -1652844950992777216 -1355602971058672640 --2172316742342288384 --3836468514741193728 --3219221820776032256 -1985393434077310976 -1767153650307942400 -1455318670894266368 --4453647995774860288 --396116542047659008 -3546965284431730688 --3617672542036389888 --4380779821101716480 -296196561025072128 --3983764184663847936 --3037747309281936384 -2811000323647945728 --2329917453776091136 --4032093002652320768 -516782697130117120 -2010080741484855296 -571563155284896768 -664112482592218112 --3747893441340567552 -3217769042047714304 -1657015786691401728 -2899041991934791680 --1417456090830333952 --24429475332936704 -3795621439461073920 --6406892262416384 --4176389334136147968 -2133483357245344768 --484680694153868288 --83932391965880320 -4511079356915838976 --1521756210436852736 --1983452918046594048 -1829511245882627072 -804314784261135360 --4069424161626981376 --108774149166082048 --2381795149560484864 -1986115214127135744 -594529555233552384 -3650922513195433984 -529338243830983680 -949799217846446080 --4570589279610694656 -2697571598205965312 --2007071558123575296 --3472377706762558464 -432392041133722624 --4020722132729719808 -1059484075723059200 -1181747096317245440 --4461912407325986816 --1108892854194198528 --347397779698942976 -1934160380460835840 -4137612338803325952 --2592500497771469824 --942570626331212800 -645709958182426624 -3015329773182451712 --3343550923361915904 -1704434198166161408 --2995139902796227584 -3959845915092169728 -2084424884099485696 --4213722474624513024 -971468453914309632 -1339357524437108736 -789123484888812544 --3334566382043043840 -4128273540582126592 --11345382728772608 --1402065070536945664 --1345665115401419776 --33748081023988736 -259913623045828608 -3488563716607136768 --3595713866290716672 -1085562236698822656 -3056411355814297600 --1894124857713550336 --1822875442796580864 -3128547354223623168 --2313356252385893376 --3590762837482583040 --1145665188653788160 -3046497678801118208 -2452490661568022528 --2048990004572286976 --3962223289150216192 -4175653919154415616 --938383363379597312 -529749861663152128 --121266423875402752 -3839709155933492224 -2606230686533517312 --1705726666157194240 --2078057009063018496 -3548972780056052736 -4150008561838326784 -456486001800164352 --770943325811721216 --3828136782508043264 -4048678765162896384 --3544068403533886464 --4462217254784633856 -4493338274517431296 -2233887343506467840 --3036188667915332608 --1070191818709259264 --4456913879323496448 --40252745518202880 -3714262805472763904 -1832926611728060416 -4020580909704692736 -753048525114418176 --2704841755110915072 -2464357640431086592 -3211829618239947776 --3088751528093874176 --3545037846096153600 -4562426104606540800 -2041932077640154112 --696583665861312512 --817752595995002880 -3767232123896110080 -4110570145094975488 -1041120318269016064 --4532801826351865856 -3555302822801178624 --2798469885894142976 -1927126180806255616 --4440293166749979648 -701218497243377664 -4102035166897052672 --3603380760784436224 --125343380340483072 --3115710072344006656 -3979064834781113344 --494528070452959232 -4096610967741596672 --1047341089903508480 -4076477561189657600 --713153838282778624 --482481314421827584 -3446024957086028800 -537327081168082944 -970934922862041088 --183028252286522368 -2343790697169379328 -831933853108625408 --3188839837180451840 --1940927187519256576 -655369400932820992 --2105285920332990464 --1364139165203189760 -3284195232025759744 -1263584717907485696 -2545362347927934976 -1676611097883858944 -2057366346901238784 --1229026482760537088 -984053643685528576 --930753671978649600 --2374155000988592128 --3930239034752785408 -4513629643576928256 --3343798221740402688 -3572727304337017856 -217988786564290560 --1024848151895604224 --510811580774240256 --3090819654784156672 -766766387828815872 -4543709732344686592 --2235604562601938944 --1073094537069434880 --699122266516671488 -154041289054119936 -1364799168641585152 -3306745838482406400 --4370572715957907456 -3684213895499258880 --2535190678684225536 -2116029308740659200 --1875912514926198784 -29142089604071424 -3224924625844061184 --3525798270978847744 -1187531912259024896 -2915557855533253632 --2964870788222505984 --953759649750714368 -1176363491712449536 --3257086887668091904 -4268250570373431296 --2350092985673512960 --760541476490787840 -494813221904709632 -3201263058119734272 --3648808594652049408 -566956753060974592 -3139707386469984256 --1093070766054030336 --3627883769109999616 --2403214459485477888 -141217761644374016 -3965739034984632320 --4268802388444577792 --2805526168463188992 -4130588206613167104 -341197839303179264 -1216794157906164736 --4298795365038231552 --1834830560001306624 --1441057411845455872 -1934394170779902976 --4230034612455265280 --838575924657040384 --3242795593255179264 -1067562435372384256 --3430361410835414016 --1655471864447641600 --402732530779456512 -2592291864133334016 -2235479194008188928 --2764394699683375104 --1235631502830982144 --1206453264877696000 -1175398392964567040 -4610816966435939328 --1862642026636383232 --3418461867244593152 --3701439870718287872 --1801186808545669120 -2458387123727476736 --692582807541125120 --1001789666601571328 --3672577052554179584 -3754101029003119616 -4475817903098363904 --1286733551648991232 --4424783252087953408 -1326666603161967616 --1924920662560347136 --2064429629208205312 -4586134978747390976 --3573135613664450560 -3578676964461874176 -2024049260369531904 --1413525735820985344 -97979383414435840 --4528988246573165568 -3943412334844449792 --3390032977729784832 --307101939829404672 --1905249471949496320 --223704202168612864 -6420272441473024 --3560774028964031488 --528777965067348992 -1557463138187840512 --1888047378027152384 -3450737383522084864 -1278760611907129344 --2178363639569717248 --970292260153668608 -243794580327527424 -69234894457577472",$-3233664305640970240$;$-1505697467636890624$;$-2719452626100870144$;$-594931287509085184$;$3666368945120561152$;$3253100577382031360$;$-3463641508746108928$;$-1650926009635001344$;$38505612598785024$;$-1239364500488085504$;$4321325554949757952$;$-1947640665853281280$;$3580348890079419392$;$-3075590583616214016$;$4109511655354204160$;$-149235516592490496$;$4498436512704829440$;$-3393651875257160704$;$148001701082029056$;$-2148747000907720704$;$-570886869796320256$;$-958883205262020608$;$4507324342644292608$;$-1031653971499437056$;$2651783534974186496$;$2294338885964306432$;$-692813695233782784$;$1122435561836512256$;$-3726559889829838848$;$613168435884254208$;$504606334181731328$;$-3004088133995148288$;$-1148760464066614272$;$1698779460716499968$;$-4473406365158918144$;$1821103295780334592$;$-2563032239101651968$;$-1734677923282156544$;$-4305673188258354176$;$3974521838412476416$;$169096805134194688$;$1800181276066853888$;$2107915577836312576$;$-3609116689480443904$;$-1807472795337650176$;$3414530700533959680$;$-1348440384188049408$;$-1237609337269685248$;$3037318356142989312$;$-4491313109470483456$;$2321770110170042368$;$-603000678213281792$;$916978293321252864$;$-692562772703256576$;$4404061791500854272$;$-1580493206405379072$;$1627243209642562560$;$2692066986732080128$;$-2271999355219716096$;$1074309355415272448$;$-1065892507856196608$;$2748601016979502080$;$-2587772180831857664$;$1910209765480239104$;$1603881225623010304$;$-3434738909047040000$;$2993296370266478592$;$3865998901317819392$;$-2842397100019927040$;$3591501884335221760$;$1409283124329149440$;$3029157101693546496$;$3699768918929166336$;$1661491339405649920$;$4586215668193410048$;$763001142761385984$;$895304172387659776$;$-4234056598057910272$;$-4248277426268009472$;$-319852829191454720$;$-3513420647291848704$;$-2913311904972466176$;$3767165171636255744$;$26825152029463552$;$2068846209074216960$;$3806629529286493184$;$2432285551345337344$;$4014431610722518016$;$-433824948526604288$;$-894544515674351616$;$4507397205609484288$;$3301482329193753600$;$3686365840889297920$;$-302475574045709312$;$2266769733423758336$;$-3129926453183360000$;$1179775137205133312$;$-2239847102574016512$;$2418270069288216576$;$3263907106676178944$;$-1886737338775358464$;$4399337511270712320$;$1816485731592692736$;$-1657502181793383424$;$-2995009786494643200$;$451938011928006656$;$-4119120433420578816$;$3674899699675383808$;$301111447184697344$;$-920385500839251968$;$-617466567907218432$;$3630765379681454080$;$-1416994163438241792$;$684098772963758080$;$2306578173503748096$;$4269401622699814912$;$-4341244555472811008$;$4151650202304326656$;$1363915370035367936$;$2232183355935348736$;$-2473829814453695488$;$347470959776842752$;$2949790868280904704$;$3169525147709630464$;$-1541632567985132544$;$3285172730409115648$;$1749584543550859264$;$-3082304196933548032$;$2411461894950377472$;$-2616247137032056832$;$-2413554286009730048$;$-1352715680202182656$;$-3138999704232561664$;$3677863238066595840$;$-4101826884698924032$;$-495526787044003840$;$160303835132588032$;$-4214366170705634304$;$2010696166029391872$;$4582136195257945088$;$-3424408814415869952$;$-1530588536197344256$;$1331221397763203072$;$-2086545013050415104$;$97792057400330240$;$-237821584747291648$;$1949651358703646720$;$-1677175176341472256$;$-2119091633777050624$;$765336394490029056$;$-3812230880857230336$;$308810964671963136$;$-3594398184227388416$;$-2548603470165909504$;$1692203426240174080$;$-934056376816982016$;$-13792146405274624$;$3778251803361789952$;$4009082693881546752$;$3200554863125478400$;$-1240229991437510656$;$-3065569786598289408$;$-2338765152036452352$;$-170986297438392320$;$-4422318121088921600$;$2087898489240747008$;$-787033300792655872$;$1115196885202242560$;$-2990433506757734400$;$4519112318491043840$;$1878346755206831104$;$-2633368591426413568$;$2175050452332402688$;$-1000810391931677696$;$4378953569080459264$;$1399322567292622848$;$-2598645906606639104$;$829627943875771392$;$-2363093953399057408$;$-3123350515388855296$;$-4391545413168382976$;$-433683601801814016$;$2333548622547680256$;$-1091963892013582336$;$-594731989712849920$;$-1275036382091063296$;$-1318484888717326336$;$3526202423398275072$;$-829469289610917888$;$2387186152383576064$;$-1156446389204754432$;$4608664188850936832$;$-2406489066948905984$;$3976775374935900160$;$253856316845232128$;$4578545644167993344$;$-643270598426199040$;$1237471406575477760$;$4015452090567406592$;$-3989478405668819968$;$3197462378601764864$;$2569570815258128384$;$-2503360234812237824$;$2749682001577879552$;$4501026396516320256$;$-4060331115135919104$;$-1916180161095345152$;$296428372035940352$;$3907590291454555136$;$-722881143843384320$;$-2058697457859995648$;$1121818378603154432$;$556136530541486080$;$2000424717756157952$;$568005468814527488$;$-3489891051559424000$;$2852665356896192512$;$132054676622395392$;$1467387372958186496$;$1405830885520411648$;$-4389606994685099008$;$523297975034349568$;$-720510853977246720$;$-3350745604590394368$;$-542277017972754432$;$3775438401413293056$;$-2384114379197127680$;$3991284774432001024$;$2933720403656090624$;$-3133504764508732416$;$-1140448370815267840$;$-1515746915364742144$;$2560197266432250880$;$-2742330644172650496$;$5924181162183680$;$1683052638414749696$;$3373023827315945472$;$2573928320171636736$;$-3834425256317344768$;$2311204914300406784$;$-148751480665554944$;$1176194615686478848$;$2193949315477736448$;$3578323335500892160$;$-4195835354684811264$;$-3551955045404985344$;$-3978080978344400896$;$3580099387254100992$;$1283289050150324224$;$3683825135576977408$;$-4213754895237941248$;$627334505519271936$;$2869948558709306368$;$421083128913230848$;$-1524387356000349184$;$-4047690972920044544$;$-2351172477247246336$;$-3876739350830886912$;$-3270633702876012544$;$1164729454112391168$;$-3793420470247488512$;$1674112123272872960$;$-4136381137552442368$;$-526251169506812928$;$2219531007548362752$;$-2662028704220300288$;$-2198341498218613760$;$-3214689554919659520$;$-397672889740894208$;$1687422272368591872$;$-1773320177463564288$;$134962051238523904$;$83537652648973312$;$-3887200944395717632$;$4095605553256116224$;$914877581124651008$;$4023534336774004736$;$1652844950992777216$;$1355602971058672640$;$-2172316742342288384$;$-3836468514741193728$;$-3219221820776032256$;$1985393434077310976$;$1767153650307942400$;$1455318670894266368$;$-4453647995774860288$;$-396116542047659008$;$3546965284431730688$;$-3617672542036389888$;$-4380779821101716480$;$296196561025072128$;$-3983764184663847936$;$-3037747309281936384$;$2811000323647945728$;$-2329917453776091136$;$-4032093002652320768$;$516782697130117120$;$2010080741484855296$;$571563155284896768$;$664112482592218112$;$-3747893441340567552$;$3217769042047714304$;$1657015786691401728$;$2899041991934791680$;$-1417456090830333952$;$-24429475332936704$;$3795621439461073920$;$-6406892262416384$;$-4176389334136147968$;$2133483357245344768$;$-484680694153868288$;$-83932391965880320$;$4511079356915838976$;$-1521756210436852736$;$-1983452918046594048$;$1829511245882627072$;$804314784261135360$;$-4069424161626981376$;$-108774149166082048$;$-2381795149560484864$;$1986115214127135744$;$594529555233552384$;$3650922513195433984$;$529338243830983680$;$949799217846446080$;$-4570589279610694656$;$2697571598205965312$;$-2007071558123575296$;$-3472377706762558464$;$432392041133722624$;$-4020722132729719808$;$1059484075723059200$;$1181747096317245440$;$-4461912407325986816$;$-1108892854194198528$;$-347397779698942976$;$1934160380460835840$;$4137612338803325952$;$-2592500497771469824$;$-942570626331212800$;$645709958182426624$;$3015329773182451712$;$-3343550923361915904$;$1704434198166161408$;$-2995139902796227584$;$3959845915092169728$;$2084424884099485696$;$-4213722474624513024$;$971468453914309632$;$1339357524437108736$;$789123484888812544$;$-3334566382043043840$;$4128273540582126592$;$-11345382728772608$;$-1402065070536945664$;$-1345665115401419776$;$-33748081023988736$;$259913623045828608$;$3488563716607136768$;$-3595713866290716672$;$1085562236698822656$;$3056411355814297600$;$-1894124857713550336$;$-1822875442796580864$;$3128547354223623168$;$-2313356252385893376$;$-3590762837482583040$;$-1145665188653788160$;$3046497678801118208$;$2452490661568022528$;$-2048990004572286976$;$-3962223289150216192$;$4175653919154415616$;$-938383363379597312$;$529749861663152128$;$-121266423875402752$;$3839709155933492224$;$2606230686533517312$;$-1705726666157194240$;$-2078057009063018496$;$3548972780056052736$;$4150008561838326784$;$456486001800164352$;$-770943325811721216$;$-3828136782508043264$;$4048678765162896384$;$-3544068403533886464$;$-4462217254784633856$;$4493338274517431296$;$2233887343506467840$;$-3036188667915332608$;$-1070191818709259264$;$-4456913879323496448$;$-40252745518202880$;$3714262805472763904$;$1832926611728060416$;$4020580909704692736$;$753048525114418176$;$-2704841755110915072$;$2464357640431086592$;$3211829618239947776$;$-3088751528093874176$;$-3545037846096153600$;$4562426104606540800$;$2041932077640154112$;$-696583665861312512$;$-817752595995002880$;$3767232123896110080$;$4110570145094975488$;$1041120318269016064$;$-4532801826351865856$;$3555302822801178624$;$-2798469885894142976$;$1927126180806255616$;$-4440293166749979648$;$701218497243377664$;$4102035166897052672$;$-3603380760784436224$;$-125343380340483072$;$-3115710072344006656$;$3979064834781113344$;$-494528070452959232$;$4096610967741596672$;$-1047341089903508480$;$4076477561189657600$;$-713153838282778624$;$-482481314421827584$;$3446024957086028800$;$537327081168082944$;$970934922862041088$;$-183028252286522368$;$2343790697169379328$;$831933853108625408$;$-3188839837180451840$;$-1940927187519256576$;$655369400932820992$;$-2105285920332990464$;$-1364139165203189760$;$3284195232025759744$;$1263584717907485696$;$2545362347927934976$;$1676611097883858944$;$2057366346901238784$;$-1229026482760537088$;$984053643685528576$;$-930753671978649600$;$-2374155000988592128$;$-3930239034752785408$;$4513629643576928256$;$-3343798221740402688$;$3572727304337017856$;$217988786564290560$;$-1024848151895604224$;$-510811580774240256$;$-3090819654784156672$;$766766387828815872$;$4543709732344686592$;$-2235604562601938944$;$-1073094537069434880$;$-699122266516671488$;$154041289054119936$;$1364799168641585152$;$3306745838482406400$;$-4370572715957907456$;$3684213895499258880$;$-2535190678684225536$;$2116029308740659200$;$-1875912514926198784$;$29142089604071424$;$3224924625844061184$;$-3525798270978847744$;$1187531912259024896$;$2915557855533253632$;$-2964870788222505984$;$-953759649750714368$;$1176363491712449536$;$-3257086887668091904$;$4268250570373431296$;$-2350092985673512960$;$-760541476490787840$;$494813221904709632$;$3201263058119734272$;$-3648808594652049408$;$566956753060974592$;$3139707386469984256$;$-1093070766054030336$;$-3627883769109999616$;$-2403214459485477888$;$141217761644374016$;$3965739034984632320$;$-4268802388444577792$;$-2805526168463188992$;$4130588206613167104$;$341197839303179264$;$1216794157906164736$;$-4298795365038231552$;$-1834830560001306624$;$-1441057411845455872$;$1934394170779902976$;$-4230034612455265280$;$-838575924657040384$;$-3242795593255179264$;$1067562435372384256$;$-3430361410835414016$;$-1655471864447641600$;$-402732530779456512$;$2592291864133334016$;$2235479194008188928$;$-2764394699683375104$;$-1235631502830982144$;$-1206453264877696000$;$1175398392964567040$;$4610816966435939328$;$-1862642026636383232$;$-3418461867244593152$;$-3701439870718287872$;$-1801186808545669120$;$2458387123727476736$;$-692582807541125120$;$-1001789666601571328$;$-3672577052554179584$;$3754101029003119616$;$4475817903098363904$;$-1286733551648991232$;$-4424783252087953408$;$1326666603161967616$;$-1924920662560347136$;$-2064429629208205312$;$4586134978747390976$;$-3573135613664450560$;$3578676964461874176$;$2024049260369531904$;$-1413525735820985344$;$97979383414435840$;$-4528988246573165568$;$3943412334844449792$;$-3390032977729784832$;$-307101939829404672$;$-1905249471949496320$;$-223704202168612864$;$6420272441473024$;$-3560774028964031488$;$-528777965067348992$;$1557463138187840512$;$-1888047378027152384$;$3450737383522084864$;$1278760611907129344$;$-2178363639569717248$;$-970292260153668608$;$243794580327527424$;$69234894457577472$,ﮪᄂ㽍竻ꮿ菘ɓ儿諒쵞훪划껪㦛喼돼傼纾죖麢씪Ⱚ㹢蓳잃鶠⯚钀⹇嘬氰ờ댥估肄⇵鿤५ﯯ蓀⬝⧼縅ꨔꆲ⍆숥⵪ག뇇洔囂䐓퓼莙登㙘ﭤ젼ྫх舜盬꭯ࢩ騡⛽क़髟誝둢∥⁙妹䖥㩷ꄜ뚳ą壴䪰酿ᚪ렾滯檖䨁麛ꤵ媩阘虓⬲ڞ쇇᧣◡舤瀙᮱Γ쨜቙䯺ㅅ뒆粧Ꭺ쁱テ⣢༳㮂蓨퓸査ម놚䌯쓹ᩴힶ魌隝㈧豗ﱈ㕂ꨶ觯褤➉닎ﻅ톘턅ಉᘖÙ蒧❟泀៰魦ﶫస쀱䒯沰짾┤政똔齈ﰱዣﲑ犢쁈‰碟㭻ᄌ怦鯈퍙ꩠ甫ȉ㟴鑋밋鲜╛㬥窵遛ሖいᇸ韛ଭ묦䆸冓␙蔔䙆䅦┬䤖ꀕツ㞟㆐䆏끫苀絜⎨磭﬽階蟨榣㣉䰢钂途䂇妫ꤕ띒竮즷뿋稕逿㧁莰Ბ⩴듥槜꯲嬠ꌐ挩㨐䨮ꔮ傦矀ᇖꆠ厭䢃꾷坧ꌅ䣪᩸꘳ᵠ⧏읈載䳨๤蔹㺆嚺붱갭⿟啁㏣뭛샡춈稅뜙啑⁦ᴃ꺯켃ꉏⴂ챜怇續壂㐨唞豻㖥஁䒇ᢔ턭翣浪嚻锘ᗄ枻꾲噭쵚봨௪ꚕ쟎턝뿖䥧ꈴᒺ댠Ꝍ撲鏌哏ſ䂭詅맔騨錅ᶆ蟲㪯뺼⎂둸﨏Ꙁ㯙劬癦疝㵖漜ꊪ趿Ⳕ窑੐㓘ꢛ淎桓㭗ࣔ隷㏃寴a舋ࡾꔛ玫ঢ়닏吙폹췎쿭ᅮ᳢뚛딛契㢤㐢䰪꿍팩譽봌⬯탿眀궘ꪇ큕콼㡢ꓩ왖Ǐ쉏㾉䇶އ䥤ȭ໫⭱忀쐬䄓Ȉ␈姱⩃虮蒫ᛖ퍚斾毤הּﱚ瓍참꛽䀇셓滶敬緵❢传啊햱䆹嗚ו닷Ա岀揬댐쌭ት詿⽧蝛簬脢교Ꮎ賵埢쵸㋫퀖蛩貏돔鯉핞ۿᲬ皾❑㈣㔿ⶄ핯톕ꤘ꼺紭턚蚌쁶累뉓俻鵪ﰸ氜鴬ࢹ贮铚⑯䛜椀ꏎ比⽆쿽ԑ䴄텬⪐䣐ţွﴯ঎颗羚ⲍ挚镆遟⊴玓숶飀㸭㋣뿐䔒Ⴑድై缪܉潬⾋㟻듽ਉ菉쌨썳퇳虉휈Ḗ酋ᦔ緈帿総ᙛ봋㮑㴢ꞥ뿱㵬弜宋놛︘툍녨ȿ醿刔쭹衃弳癵ꚯ崌쯻깅繕鈿픈퍏暴ஃ吃䗾겆骙䚱⦞♴秶饆⮈⡂ᖧ聩亘㋒ۀꅃ䀒崆ꩬ媢趀ⰵ浟ឞ…䀠뿢듨硌䝞딻陃⁋鰆ﵹ덎텘ュ밺秀䢝Чᔧ뫊坎ᵿ캔剮抲굹Ҋ랴ㅷ쎁蘭秖玣勵杽燣펄攏욎攌ꡊ議푅襍켻䏂냫楳⢹띎밌侢썵಴泩﷥宵룶閭㊪䪬䆲퉑퉞്歋袿謅윸譝㑗⹺ꔣ朰૙䄺煥Ⲑ澄噙᷇₅뼟닾⳦羍婬틩ྩ皏빫襒뜠뿆ꛣ뗛檢啣⇜혙Ⲇꖩ冹躃龈倵븆ㅈ駜഑✑聎適묂ጇ, -22,,1443154423.1,,"t&a*yݢE}d&lmLV""""/aQq묹(jWiөPfm })X""XE쯂|mZN21v]mZ14Cv5""#Ƥ""˕Ӻ=,]uκI]oWn?}Ν1ʷONM7IJIqQ}k>R䲏)pf97awz/9=y#u2}/˅/N bTLTql7Yz~#~$$X:=z/wD3ž\\XL`1 CWwý 6$0IL'3?Qͺ?3",,"{""a"":1.2081968201805429e+308,""b"":""\udd99\u2d54\u918b\u256b\u50db\u21d1\u063d\u5a9e\u7fd1\u9287\ua780\u4519\u3303\ua4d1\ue22d\ubb7b\ud371\uc349\u80a0\ua983\u2fb5\u513c\u5fca\ub20b\uaa7e\u11a5\ubee0\u6179\u6d0c\u60ef\u8a49\uf4ce\u86fc\uc6eb\ub59e\ue8eb\u5ea7\ueafe\u6316\u8148\u6937\ua26c\u6a37\u90ee\u5727\u524d\u1317\u93e3\u6042\u71cf\ue8ab\u79d6\ua3b1\u046d\u2563\uf2b9\uffbd\u95ca\ua178\u4eee\u4487\uaed6\u221c\ue09b\uf7d0\u589c\u4a5c\u09d4\ub177\u4970\u42e1\u0c8c\u87c8\u9b6d\u0f0b\u7206\u0f4b\ucdaa\ue4dd\ufbd3\u6432\u2ab5\ub377\u0408\u2b42\u2656\u7214\u8bc8\u4f82\u8cd2\u31c9\u4e55\u7ed9\ube2d\u5f69\u9efe\ue76a\u6101\u8b53\udc65\u7a66\u3e7b\u8062\ub16a\u4a3b\ue5ab\u3fab\ude23\u260f\uef6d\uef9b\ua195\ucd41\ued1b\uc7f1\u9ed3\u3278\ud9f3\u0251\ue291\u6b35\ua6b4\u398f\u76e7\u7edd\ub039\ue62d\ue029\u2c66\u7c02\u11a9\ud505\u704c\u9662\ue6ac\u91c4\u6138\u9a58\u050d\ueb5c\u1842\u2962\u81f8\ubf69\u3a40\udeec\uc1a6\u97e5\uc989\u4040\u4ab1\ubb7c\uc51c\u3c21\u3d8d\u5553\u97de\u7afe\uf88f\uf30f\u15f6\u1d9a\u365c\u0928\u5c5d\u6da9\u23cb\u4f10\u2086\u466c\u6a88\u1cfc\u38c1\u71c2\ud36a\u44fa\u1e92\ub903\u02da\u4e1e\u63b9\u2a1f\u5789\u806d\ud585\u5e98\u4aa1\u1532\u1dd6\u4193\u5060\ud4a4\uac03\uc9a6\ud539\ue620\uf3b1\u178e\ub7ef\u060f\u6fe9\u2934\uf188\ueb04\u64d0\u88bf\u5871\ue55f\u86e1\ub5be\u40ec\u5745\u1bfa\ufc2d\u1a62\u0771\u77b4\u26a2\u4c37\u2841\u1752\u7b1c\u9561\udc59\u6fb1\u7864\u0d2e\u09c1\ud802\u3051\u1a16\u8a1b\u566e\ue809\u5585\u688b\ufb05\uadcb\uf486\u7264\ud4ef\u58d8\ud2a1\u092a\u30f6\u1636\u3f7b\uc6e5\u2f3f\ue2d1\udf5e\u79f8\ud135\u9875\u3ce0\ua547\u0a0b\uebfd\u2270\u7b57\u1f16\ub56f\u923d\uf6e7\u7c45\u884a\udfbd\ub3d0\ue95b\ud8a3\u5938\ud689\ua913\ub527\u19e6\u1268\u6405\u7476\u381e\u8ccc\u94ba\ucfc7\uc1fd\u436e\uc5d7\u8b7b\ufca1\uc965\u7225\ucbdf\u6310\u6878\uec11\ue262\u6219\uda84\u4d50\uadca\u0ed1\uc915\u21a7\u3d04\u6e44\u174c\u4ca6\ua742\ub3f6\u6b01\uf6d6\ud33a\ud4d1\uf5ed\u9d61\ua131\ub240\u60c2\u04ed\udb18\udd6a\u4137\ua6de\u5bc2\uc1fc\u71c1\uaf96\u1e75\u5a85\u5d33\udc81\u04f8\u8f20\u0c0b\uaef5\u9ec5\uc8a2\ua476\u5780\u3aad\uf19b\u0ca0\u4683\uc407\u6158\uf7f1\ube7f\u6300\u2aef\u63dc\ud945\u6c04\u17a4\u4866\u543b\u9839\u7642\u2f3b\u3059\u751d\ue3f2\u230e\ufed6\udb17\u1a88\uf39a\u2b5b\u6fdd\u3524\uaf84\uec73\u1e80\ufec8\u1d5c\ua353\u4ca4\u3575\u063a\ue567\u832d\u0fb8\u2729\ud096\u113d\u1972\u8908\u25d6\uac71\uc7a5\uf243\ubecd\uf433\uc3ea\u7ad8\u1775\u808e\ufe09\uefee\u1eb9\u1016\u823e\u7a4f\u47fe\u37b5\ue00e\u1a6f\u5351\u7970\u6a40\uffbc\u8157\uf17d\u8761\uc4b5\u1633\u23ab\u8990\u63e4\u9156\ub97f\u414d\ub204\u5301\ud5bc\uf0a2\u6b9b\u6b3a\ua0b5\u8d30\uc66e\uce6e\uda86\ub09d\u3c5d\u15cb\u4caf\u0f71\ub1d4\ub98c\u6c9f\u88a7\ufc17\ufca4\ub57c\ua671\u5795\u14f1\ueb77\ud30c\ub383\uda79\u47a8\u6fad\ua61b\u7f45\u9cca\uf58a\ud193\u37ec\u83c7\u67f0\uefd7\ucaac\u713e\u02a8\u15da\u7050\u4fd6\ue0c8\ud24a\u4144\ub0c7\u97ee\u2c47\u957c\u7543\uca32\u07a1\u08c2\u64ea\u903d\uc53a\uca57\udaaf\u3a2f\u9b30\u43e0\u9039\u296c\u4373\u7640\u54ac\u7602\u7ac5\u0d4d\u8265\u35fb\u5c03\u082d\ue091\u2ba3\u2dc9\u7698\u3b9d\u54c8\u4387\ude5d\uca4b\ud651\u89aa\u0bdb\u5234\u9d81\u1da4\u7c52\u05b9\uc5ce\uf5e3\u0569\ua649\u9fe2\u0863\uc8ad\u87ec\u4421\u8c3f\u9a4f\ud416\ub292\ub648\u3d2f\u00e4\u69f4\ubc5d\uc151\ua7f9\u2af6\u9089\u6f3a\ua8cb\u1a9e\uf868\u6629\uc0a6\u66f9\u3c42\u7a5e\uc7c7\u20f6\u683d\uf583\u0ba5\u6912\u9f12\u9aa2\u529f\u0aa6\u9a1a\uf0f3\uc1c1\ud385\u763c\u711c\u9bbc\u46b8\uf087\u732e\u074a\u10a4\u6cff\u6e55\ua917\u52a4\ufe2e\u4118\u64d4\uffed\uceff\u5349\uc7f0\u7e15\u1068\ue44b\ub54a\u8d40\u8795\uea0f\u5643\u6b2b\uc26b\u9fe8\u8f5e\u3d58\u7be0\u9431\u140c\uabcf\u4835\ufd21\u6923\u9abf\uae8e\u0eac\u2022\uf894\u80d5\ub59f\u7ec5\ucc98\u5d1b\u48aa\ufc89\ue155\u60dd\ubdfb\u07e3\u2680\uab2b\u4a9f\ubf73\u68b3\ue030\u1a60\ud3c3\u1307\u4d9b\u7753\u85e8\u22ba\ue21a\uf014\u20d4\u2342\u2d5f\ub837\u3ba8\ua3c8\u668a\u8008\u071c\ud118\u70f0\u677a\u046f\u39ae\u044f\uc0d6\u0648\u56b4\ubd9b\u750f\u590c\u8505\u3e1b\u370f\u4067\u8d5b\ubc8f\u2f05\u937e\u551e\ua9fb\uf3dd\u2e70\ueb78\u588e\u0dc3\udeb0\u0a24\ub5f8\u42ed\u740b\u42bc\u6862\ud325\ue843\u5fe5\u95ff\u7d05\ufe10\u5d2f\u3b77\u64c9\udf9f\u392b\udcfa\u901f\u50b5\uc373\u447d\u45bd\u7436\u885e\ub7c6\uc5ca\u4fb4\ua4b0\u058e\u1aa9\u5b75\u2c2e\uebcb\uc198\uedb9\ub6a3\uf4c7\u7892\u686b\ua423\u3875\ud4a3\u78e4\u9150\u7041\u82c9\u9642\u1116\uac76\u5d7d\u9efd\u74c9\u861d\ucf51\u6cf5\u5aee\ucebe\u32b4\ucd7f\ucf40\uacb7\u3b6b\u1418\ua747\uad51\uf02f\ubd22\uac2b\ua07c\ue26d\ua023\u0dec\udee9\u8d6e\ud3db\u5090\u2c57\u85e0\u89b1\u32b8\u50f6\u696a\u1fcc\uae48\u2a28\u0f84\u58a8\ua8ed\u6979\u8f82\uc59a\u80fc\u5d6b\uded7\u7152\u4b47\u07b1\u25ea\uaf93\ub00d\u4ecc\uaa69\u4edc\u1224\u064f\u5bd7\u5533\u3856\ufd90\u7261\u0835\u74d2\ueb50\udc34\u343d\u42d4\ued34\u38e1\u6a9b\u04f5\u5f6f\u96d3\u4857\u6f02\u9918\udde3\ucd8b\u6a9d\u3e54\u3f20\u5adb\u4be5\u4d65\u45fc\u905d\u51f2\u1143\ubfda\u1eda\uf2cb\uf28f\u87ba\ufe7e\u20e8\ucd0f\ue15a\u5d42\u599e\u7ecd\u8d67\u4fcc\uc819\u2f14\uea27\u1aef\ube9b\ucb3a\u6433\u5d24\u64de\ud53a\u5fd7\u77a0\u1dd5\uee02\u00a1\u1671\ubf0d\uc69b\ue084\u81c7\ud4cc\u3731\u5cdf\ueb4f\u54ec\ubc14\ub176\u49de\u7f8d\uc1a4\uc12c\ue880\u8d45\u0740\u9c8e\u7189\uf928\u7c38\u6840\ubfc3\u75f1\ubc54\u66e6\u6c94\u2b17\u83fd\u4782\u1d06\u360a\u96cb\u444b\u392c\ud71b\ud17d\u95f2\ubdfc\ud993\u5e75\ub4e6\ud636\u6888\u6b80\uc5a4\uda65\u0d66\u66ca\ufd5b\u9cd5\u7940\ue41b\u3a6b\u4b20\u69ce\u3707\ub32b\u838b\u0429\uc8d7\ua8df\u0870\u8021\uc2ae\uf888\u362b\ua16f\u400d\ua090\ue8a8\u178c\uac3e\udea0\u8a84\ue272\ub323\u32c4\u7972\ucc80\u4aeb\u4b80\u1cb6\u38dd\u6613\u80cd\u7966\u03db\u9a95\u5146\ud105\uadaf\u45da\u030f\u23dd\u6ba2\u7492\ubacb\u0292\u0153\u465d\u2e97\u67ed\u18c3\u6e83\u408e\u8b8a\uaf0d\u872d\u12b7\u0669\u42e6\u71f3\u789e\u7170\u3ee1\u394f\u23a0\ud0ed\u22d7\u75b0\u8eeb\u5652\uff68\u705f\u2830\ub295\ufd58\u2eb1b\u2483\u99d8\u267d\u3ee5\ud3e1\u262e\uab09\uba6c\u3c1a\u1383\ue460\u38d9\u3346\ue5c9\u292f\u3185\u62fa\ud726\ucb3c\u046a\u38ce\ub4ee\u87e0\u42df\u0e67\u6f59\u2b4d\u87bc\udffb\ub746\u1732\u9ad3\uba59\udfb1\u9266\u6832\uea35\ubfb7\u29a2\u67df\u983a\u4dd7\u447f\uc413\u5e29\u896b\ue7fc\uc7e5"",""\u798f \u9152\u5427"":{""fu"":1.1915428959373552e+308,""bar"":7.526106806687757e+307}}",,"-370216967207878656 -3178401491992109056 --2325426663600497664 --1981217274436300800 -1053660664492801024 -3403990811737458688 --495729989928750080 --725970846466114560 --1466478254125445120 --3559651122753241088 --2843033322696609792 -2543230278988689408 -431971208028535808 -4145180046339497984 -4274151472308049920 -4181446508047869952 --315863115112420352 --3025457842405737472 --4235467301157277696 --2066554332508240896 -796098075331587072 -3617310000204536832 --793650743791629312 -128760647942134784 --2691946515267042304 -1538878069094182912 -80344094399678464 -2404146003698045952 -424710286263994368 --4295255884859921408 -4444218523215258624 --1075650784984451072 --3296634671393980416 --2290481321406008320 -4391503787460343808 -2037232053470337024 -203035456336361472 -2589554246158493696 --2569409466468858880 --690204415624660992 -3500454185574771712 --1194022583745481728 --284850831792509952 -2804236450167614464 --2430356770876082176 -3485943770199829504 -4448137868875344896 -3246102146729977856 --1982933994295173120 --2557531645476443136 -1407288618463813632 --4552501561284136960 -999493566615600128 --3265943441894659072 -1433427201226836992 --4426023954724651008 --3047122266203268096 --3824985119397327872 -3153792342610814976 -4150029986250332160 --3389235685635675136 -1358989722530634752 --844711369163778048 -1698797539929145344 --2238532889733621760 --992028830939098112 --2246531828343652352 -2867424705885244416 --1359322025316665344 -1021141832353763328 -1739069833535992832 --1875576899734419456 -2864196142515604480 -1749088230325581824 --1220703020863360000 --656801385764048896 -3739178321100649472 -255458044791259136 --2631558546550327296 -966293819952491520 --2318499409368730624 --4197835044800568320 --1437833108198450176 -834616516845240320 --3569198260223395840",$-370216967207878656$;$3178401491992109056$;$-2325426663600497664$;$-1981217274436300800$;$1053660664492801024$;$3403990811737458688$;$-495729989928750080$;$-725970846466114560$;$-1466478254125445120$;$-3559651122753241088$;$-2843033322696609792$;$2543230278988689408$;$431971208028535808$;$4145180046339497984$;$4274151472308049920$;$4181446508047869952$;$-315863115112420352$;$-3025457842405737472$;$-4235467301157277696$;$-2066554332508240896$;$796098075331587072$;$3617310000204536832$;$-793650743791629312$;$128760647942134784$;$-2691946515267042304$;$1538878069094182912$;$80344094399678464$;$2404146003698045952$;$424710286263994368$;$-4295255884859921408$;$4444218523215258624$;$-1075650784984451072$;$-3296634671393980416$;$-2290481321406008320$;$4391503787460343808$;$2037232053470337024$;$203035456336361472$;$2589554246158493696$;$-2569409466468858880$;$-690204415624660992$;$3500454185574771712$;$-1194022583745481728$;$-284850831792509952$;$2804236450167614464$;$-2430356770876082176$;$3485943770199829504$;$4448137868875344896$;$3246102146729977856$;$-1982933994295173120$;$-2557531645476443136$;$1407288618463813632$;$-4552501561284136960$;$999493566615600128$;$-3265943441894659072$;$1433427201226836992$;$-4426023954724651008$;$-3047122266203268096$;$-3824985119397327872$;$3153792342610814976$;$4150029986250332160$;$-3389235685635675136$;$1358989722530634752$;$-844711369163778048$;$1698797539929145344$;$-2238532889733621760$;$-992028830939098112$;$-2246531828343652352$;$2867424705885244416$;$-1359322025316665344$;$1021141832353763328$;$1739069833535992832$;$-1875576899734419456$;$2864196142515604480$;$1749088230325581824$;$-1220703020863360000$;$-656801385764048896$;$3739178321100649472$;$255458044791259136$;$-2631558546550327296$;$966293819952491520$;$-2318499409368730624$;$-4197835044800568320$;$-1437833108198450176$;$834616516845240320$;$-3569198260223395840$,㖔䏟쿋襲濿襦皶锠ꇓ希蕒輆鎚ڸ쥈잂빐撩鰮㿂屿呞뗍㓓뽵截䭻迴혺ᔊ뷻뚍ܔ뜰퇾㯑㚇蕁变頚ꌜ์鉖鑂ᆳÉ笴씗ﱔ졅봺䍙㉪塝ꅗ䒁ꩾ럞㐘릗䣺鼅쵴態嫋ꈷ㱃䗿蜇ꐩ齄ꃤꄫ谟㼄ﯻၩϢ툝Ҋ䇸横ﴟ卑绍섶鲘륊鬔Ẹꭂ搏圕퉅⇥步瑧慐栂浥츰뒺ત﹅涓ⶒ氡펋聮鉰乯滻ࣷ破帯햁⦌퀀㜼侬些➇㩰啉䑳痳⣲옦얁ꛦᯩ꟥㱥鴋㇢헄꯼쒇岩卮祭鉞᳙着ਜ愥܏瓖뉬툜䋥ꊎ帨댁匳婪䘀껥銡諁읅뙮⣹갞ᴴ䓚梍脔帣ᣪ봧彖珧跺鈗楛◄ď䢎ᨏꏲ䳥ܷ䬮﹄䦘濝鲐鉸菩䵿㺘谠ᄺۭ⡅颫균壸붷꾪䛫캆瞪㉏⍕䝱ט昂ܽ頖뿆倝挥ᧃ᫚夽䠹待ᖊ庡ꕧ뵣ꝥ訚䖤뷦瘣翊準禸ᴾ୫妟譲헴上닖孕箵̧摑䪪⫽䜃連᫵Ų䨬ᑷဣ똮릪竢㶗蓤Ꭺ甛滳᧮꤇ㄲ纋⋗ꌒᣟ㛱ᛴ㘥就鄛卅ẕ⟗䝙䟛保샑聾ᮡⵏㅧ龀旤ۏ矩Ƚ㈡ਗ梡⩣侊㠙勘䵩᧦ꏜ३ࢫᷱ㮄吼见后䣰撵婬刡὇튪ᵰ在풶濩か⽳ቜ㙰陑祉鏐崂馂䃉帮騋䓁ᕈꚱ褉쯐֧㐎閦Კ㬏뫣䴙斚겏휗୿⡷肳꺂󔨲璥䎸놌衫୭敗੽ଜ䄔࡯ூ멬꡿溵ན푹廤䲸㎹ꄻ訠ϔ웋㨠醖瓦눩譱䉨ꒋ㉲滸ꐪ㕽厐⻎ᕢ髾৒ꭋ锭棵턙繿諾٧ᵚᤤ퀽礉荢ꉦ菗卻☣鉨岡⹚䷏採ꀛ⥟閔屡ࢢᩲ孚௙ॲ櫪㫟攔僢춯붎鎛緔駿㴊㱰馡㟉ᆫ剦㯄⪊ヾ갔쉃伊䃠㋞䌙ňꬨ傔ᒢ諦佐彟രᵕꝋ秒䱲넚삢㰼ộ鄧䆗躖ꖍ蛤⮸⺟泣諠ꪈᔹᜩᎸ囋鵻啨쏽줃曚뾘쀹圙龫縃凓쾬馁䂺鼚ﶡ┅쓃❜㲘梱熬뱈墲ﹸ挍㌏㾩侙쨪光䌫㛹☠푲㩎ቊ聳༨꘵⑯ⷱ岌Ḝܻ喔脙ऍ郮⯱煾㢒看퐭쎐프㤪⭋으灇熊䬡⿘ꩌ秅ぐ퉬眥㣭⏅혻שּ䮡῁䙳乹赻Ã筳앂翙勺ࣈ鳺呉줖뙸鰅荃楽픷༊蹿諃ᔇఝਭꝃᤩ簧ᆒ걄퓁㼼튽䎲跹麻竾潡Ⱪ屠뽬ࣃᅤӄ揻ꛤ쥝ዘ큱䦳Ꝣ柣씂椔䋟껌ﳅ悦シ₄샳据Y졼詇ꤴ⳴㌴摒邔㽜窴풭컡ꩊꯅ┰─쌵覚闲琯돑ᘟ쏻㊓鷦湮驑蒴쬵蟃炩栍錟怽洑룮껗厸儦珎쥂錢ㅯ浏㮔灴⥿䤵伅꺡诚⑘ꞅべ譨퓟殦풀∶勿餶麜餠ᣗ娭竟퍊ꁜ쯌車଄쇱ᷢ끛詀◤뵿僌궣亳퀤﫥ᦧࠚ鄆ᒺ흡▖詐뭼걻ᎣⳫƗ୷⠎ү旑摷筯ᬧ팉ꭊ跑ﭢ촨ߗ꧂ⅅ짒탵इ⊌莞쥢鈵弗촕쀔툡嚱擮묕羫蚓愠윱彇⽞ೌ禳䞪䴨孓뒳럊隡⤈ꮗ叡ꆑ⇶賟꽤栆ⲥ纨슓ᶴ䬓惨迄ࡐ邕ퟋ⽎찔•튜ⳇ胷靻ᎇ鰾檤ꑋ狹欉馲發菾憿꾱ꣿ拙뀾긶ꨤ雑뫂䭉푰틔稌岘䦻蔏ࣘ啛䷸恽﷕ﬔ㇤ꃦ缷Ā헩, -23,,1443154423.11,,")3I+rvɵϡڐSlVil;m^?$D:R}ȑBjf{?&[t&* pekuk$LT#Fp@5k^1ҫA}%6jqz!+}'=xy+mA/JE*},D3S'|8FD<[""7wVJLBO@xs r,Q;CKo|d)",,"{""a"":9.783670485152248e+307,""b"":""\u62f4\u9a7b\u6f10\uf358\u72d9\ucb49\ub0bb\u2d7e\udbb9\u4246\u821c\u3410\uaf1b\u60be\u84d1\uf0b1\uc884\ua39d\ud8e5\u5087\u7d1c\u7bf1\u2463\u161d\u0d87\ube8b\uf929\u4f36\ud92e\uf49c\u290f\u4ef3\ua640\uc2f8\u140b\u082c\u2331\ud6c1\u282a\u56c1\u29f9\ufde8\u74fd\ud627\ua325\ubc44\u2cbe\u13ea\udebd\u73cc\u2415\u547b\u062a\u5227\u1970\u15c9\u7a6a\u5e19\u70df\u892b\u5226\ueade\u3031\u90c5\u0a46\ue0ae\ucba5\u8849\u3200\u05b2\u17c9\u072f\u889e\u9155\u5d03j\u6766\uc407\uf0ec\ub61f\uf83b\u25d0\u6e0d\uac94\u06d2\ud2f8\u5d33\u89c8\u1efd\u2ba9\ud5ea\u0f6f\ud469\ua53b\u4685\u0870\u96c8\ue1e1\u76d2\u8154\uce41\u7867\u40e1\u0c3e\ude01\uef79\ub167\u3819\ud736\u1acc\u1141\uc2fe\u001b\ucc92\u9328\u68cc\u48c5\u9272\u2f7d\u65ac\u5189\uc789\u7614\u8be1\ubd6c\u370f\u7a0a\udc7e\ud652\u3bbe\ua611\u366f\u5ea6\u3f38\u9c72\ub58e\ue2df\uc5ae\u5a06\u05d5\ub9ff\uefbe\uf2e3\u0fa9\u8135\u157e\u150a\u6629\ud452\u1eb6\ub95d\udb4d\u485f\u6846\ue022\u2de3\u8fca\u4e64\u481f\u8330\u120a\ud1db\uba86\u26e6\uce8f\u061e\u81e3\u568f\u2385\udd50\u7a1e\ub701\u9298\u87ba\u5ad1\ucac0\u6b23\ud67a\u5eef\uc68a\ufac6\uca2a\u5885\u36e2\ueca6\u3442\u7d5a\u8f2c\uddc6\u7663\u8cec\ua00b\udfb6\ud728\u0c47\u124d\ued42\ub6a2\ud156\ufdc5\u588b\u475a\ufec9\ua706\uafd8\u7c18\ua537\u3a5e\ud36c\u25ef\u32b2\u405b\u70f1\u92a4\u265b\ufb0d\ub28f\ue5e6\ua349\u4504\ua50d\u8b24\ufcec\ub3a6\ua655\u2886\u5b21\ue1a9\u240d\u810a\u84b1\u9b46\u64fc\u987e\u7c07\uf227\u9fb1\u1dde\ufdd5\u39a1\uc32e\u538c\u4041\u176f\u7b1e\u428f\ude68\u2941\ub402\ue794\u7b85\u9f04\ufa25\u6342\u1f0f\ubcb8\uc917\u290c\u6a6c\uf34c\u0a10\u7121\ub0fb\uca39\u9b44\uf6f3\ufe07\u2d49\u422d\u635a\u5791\ud762\ub71e\uf568\u7148\u9247\u202c\ubbf1\u309f\u2aa2\u6095\u3453\ua450\ueebf\u35e2\u207f\u096a\u3928\u3e60\ub787\u2a25\uf286\u4db3\u0502\u4996\u3c90\u8307\u284a\u2a4d\u7f41\u740a\u7bc8\ua0ff\ua359\u0b4f\u65d1\u80f1\u4600\u36b6\u4e3d\uead6\u5f06\ucf4b\u86c5\udb81\ud586\u66a7\ue831\u0fe1\u4231\u7d6c\u0a58\u702d\u9680\u6001\u789c\u3b7b\uf965\u5d81\u4552\ub520\u577e\u03ce\uba15\u634d\u879b\u86db\ue67e\u4a07\u5993\ue70b\u3e20\u0b6b\ubc77\ueeca\u7701\u31e8\uf933\u30b0\uf810\ua2ae\u0cb4\uc3b6\u1c0d\u7a8c\u825f\ue41b\uaeef\u8b6b\u14de\u51be\u2dbb\u5aa0\u4cc3\u79b6\ubaa2\ud1dc\uab4f\ucd63\u2054\u6ef9\u8acd\u218f\uad19\ub857\uee52\u2f46\u13fc\uf4d1\u3077\uac7a\u0a96\ub588\ud27d\u986a\u41c8\u7a52\ude42\u0911\ud1a8\u1b65\udb3d\u1281\u7217\u6b11\u3820\uc34d\u5feb\ue512\uc07f\u8626\u5d09\u58e2\u66cf\u1758\u54cd\u7d84\u82f0\uec1c\u63da\u6f63\uef20\u3439\u64a0\u31db\u28cb\u0dda\u26f4\u65d6\uc55b\u95e1\u4cb4\ue9a8\u3480\ua4b8\ue2bc\ude4e\ue2ae\u39f7\ubb63\u772f\u5acf\u3666\u7c68\u7aa0\ue466\u1c51\ud1df\u5ab0\ubbb7\ufeb0\uee77\u7cb2\uf2ae\uc5a9\u5051\u8db8\ucdda\uf0fd\u374c\u245f\u294e\u37d9\u3746\ufd36\u103e\u8b01\ubeda\uc10e\u0505\ub284\u928a\u94bf\ub9d6\ubf91\u4dff\ufb94\ucb0e\u821b\u3be0\u85fc\ue224\u4925\u9898\u4b75\ua86a\u07fa\u2a4f\udfec\u533f\u590e\u5e43\u4921\ue26b\uf9f6\u3747\ub1bc\u28f0\u3e65\u4d29\uee8e\u08b2\u3a30\u9169\u4192\u5ac0\u7771\u96da\ufc9f\u8f46\u58d2\u3307\udf3f\u579e\uc023\uaba1\u6986\ud0a6\u4926\uc690\uafb8\uac6e\udac2\u77da\u7d04\u5e5e\uc73b\u3713\u04cd\u59bc\u7dc3\ubd45\uf00d\u2686\uba31\u8047\uf2d7\u0d40\ua660\u349b\ubde1\u0a7b\u8081\u3b17\ua66d\u91e6\u53b9\u025e\u3b48\u31a1\u90fd\u05c5\u3a81\u9649\ufd61\u0163\u69e1\u3a9a\ub4de\u5778\uf103\ued43\ud7e9\uf92f\uf194\udaf7\u2070\ubee2\u4e72\u7781\u06bd\u2ee6\u2244\uae8c\u2bd5\u935c\u0caa\u74a9\u27a6\ubc9c\u608d\u8725\ua5a3\uf530\u80d5\u453d\u0639\uf6e7\u4c31\ucbc1\u6296\u76a4\u6bba\uc93c\uae72\u8b33\u305b\ub7c5\u77b7\uaf19\udb35\uac6a\uff43\u0fd6\u4747\u82e8\u53ab\u63f8\u512f\u4b23\u93b0\ua0a4\ub21a\u909e\u6c53\u60b5\u3f5a\ufe6e\u7c8d\u2b0e\u5668\u361b\ud07e\u70c2\u37e5\u1162\uefb7\u03a1\u20c7\u5c65\u5deb\ua260\u35f4\uc13b\u015f\u0ed3\u1b7e\u645f\u0602\uc791\u9f7e\ucc1f\u50c7\u2e8c\u8ff3\u91de\u903e\ue8ad\u1d24\u0da9\u287b\u300d\ubbc1\u5c42\u4309\ua1e7\u613e\ud489\u0f1b\ud02e\u4174\u0924\u34e5\u11fb\u79fc\u6ab6\u5664\ud0bf\ud076\u8f29\ufebe\u1e10\u263f\u4a28\u0551\u8a11\ued73\u6493\u88d0\ua784\u3dde\u9fe2\ud8af\u61a7\ue0e0\ub0d5\ub5bd\ue00c\uc7df\u136a\ucb89\ucf94\uc68d\u1b29\u8441\u7974\ubfcf\ua9b6\u39b3\u9e9d\ued6e\u6f84\u205e\u0b23\uece4\uf5b0\u4e83\ub035\u2e92\u8ed9\ue385\u51c2\u8493\u58c1\u151e\ub118\u9380\u927d\u76a2\u2c48\ufb10\u250c\uc474\ue279\u42a1\udba9\u219d\u4ca0\u8da2\ucbf0\u121f\u1ae1\u6d23\u9a65\u809f\ua6c7\u886b\u3523\u6cc1\u7ded\u7129\uda64\ue6fe\u8c87\u6d06\uabe8\uef8f\ub64d\u7341\u3dcc\u86c3\u4831\uc751\u420c\ub44b\u0975\uaad4\ud3f0\ubcc7\u8b50\u8d08\ueec8\u1533\u440e\u3d4b\u832d\u5fb6\u064c\u7399\u2ff7\u8fe4\u1ac0\u3d1f\u5e5f\u83d1\u8926\ub8fc\uf87d\u73bf\u7f00\ue5b4\ub12d\u4644\ucf9b\ua2d3\uadb2\u49f1\u9332\u02aa\u3149\u2348\ud5a3\ucf97\u6fed\u6909\ua395\ua2d8\uaf09\u8dda\uf599\ud3c6\u97ed\u038b\udc25\u1cb8\uce5e\u99ad\u8001\u50b9\u0ea7\u85d5\u4dee\uf9b5\ue149\u0c97\u8527\u8519\uf5a7\uab4c\ud1ef\u956d\u26a5\u4b05\uce23\ua691\ufa67\u3248\u1a15\u136f\u2a08\uffed\ub325\u685f\u83a5\u1b30\u2c5c\u1ff7\uc340\u1f35\u9725\ufa79\ufc10\ufe11\u7320\ua68a\u1b4d\ua1b8\u1583\u7fcf\uee02\u0ea5\udb6c\ueeff\udafa\uf1c0\u7977\uacbc\u9333\ub47d\u2a1a\ud1a2\ue987\u34ea\ub381\u7f3f\ua179\ub5ea\uf0e0\uee8a\uf0a7\u9aea\u0912\u1a41\u3b2e\u2707\ueda7\u29e5\u3e38\u100b\u3859\udba2\ue061\ud503\u6e1a\u709c\u74d0\ucb37\u1be3\ub27f\u6955\ud24a\udc55\u9b01\u1200\ub743\u56d6\uf0fc\uc4a5\uf5cf\u2f15\u7cdb\u1399\u24e8\u0125\u0d8a\udbec\u565d\u1877\u3f0a\u5670\u2471\u091b\ubf78\uae5c\ud504\u47f1\u046b\ub256\u5c03\u519f\u96ab\u9851\u5c59\u00ab\ud76f\u0ba4\u4d96\u76cf\u3891\u800d\u14a6\ue798\ud2c9\ub0fc\uc8f7\uc71e\u1eb7\uaf88\u339b\u849b\u1d43\u9ad6\ud1d8\u36b4\ueb14\u7ce5\u02f4\u3adb\u968e\u0cbc\u4d10\u9cf2\u497b\u23e8\u7daa\u53c8\ud4b9\u1fc8\u250d\ubda0\ua906\ua50e\u793a\u453b\u54a7\ueb30\u2247\u0e46\ucf16\ub16d\ufec3\ub7db\u243b\u2ed6\u3aa9\u7214\u6e67\uf1a9\u36a2\u37ba\ue406\u0c7c\ud763\ua3a1\u5792\uf8ca\u6a95\u07c1\u5e88\u979e\u775b\u6e70\u4b13"",""\u798f \u9152\u5427"":{""fu"":8.464185317019226e+307,""bar"":5.666914754507625e+307}}",,"-415020706278255616 --483742684352306176 -445451803972380672 --617660064137067520 --2291499850229832704 --4523789540114668544 --2928146869136563200 -179023001930236928 -2303607641256122368 --3826379365722464256 -163661662529723392 --3856202058831877120 -3148727247390775296 -2940079644663051264 --263033270769133568 --2621805867182375936 --3672937096110901248 -3632124853550238720 -3186433983190185984 -694366079190032384 -1991879785096814592 --1566434688277783552 --3322296681623173120 --2051823569854867456 --4543486678979322880 -4323357770121225216 -2753469304481350656 -3873388870727928832 --2265582215446691840 --3715860533022573568 --4029440925133833216 -3831894310584364032 -4176152174387422208 --930403683616416768 -538504480130779136 --694988842601249792 --291429305761307648 --185564913586995200 --245256835757922304 -569801116007811072 --3443694571466661888 --4129691207706500096 -2266019365638193152 -795519158838646784 -4312481038164015104 --3374573657860501504 -1100871400538735616 --3509440317482610688 --165239931637298176 --3776899431038869504 -1928171190180431872 -2553573222950375424 -3281946681255969792 --3813957051040496640 --3777063820397335552 --4388950693111607296 -3445791871925719040 --2488455147050089472 --1123813604517009408 -5296887365035008 --548781343615926272 --2480045228413030400 -3628845001638907904 --3846410835198245888 --146430693079361536 --4129715913212486656 -1489487321977277440 --3408334030942905344 --576868517105033216 --1141395004809899008 -2707733947391758336 --3012679946199104512 -2690720052081315840 -3476627620211426304 -2943617070352770048 --809380186728173568 -1311693799318672384 -1454126662504864768 --4216545349527720960 --1172027849464904704 -803072208743740416 --4416089792875574272 -3328557754299278336 -237057568126815232 --1777692242414722048 -3055292344309650432 --3757606765584169984 -1525429061072665600 -2472937805783386112 --1070713104019608576 -1770939952771091456 --247998339791277056 --76702586301024256 --743684128173193216 -765842809451197440 -1097120072851730432 --1686284689284734976 --1238033073424029696 --2397286314387955712 -4579026148886915072 --909446544582069248 --105620084676940800 --3395826256475686912 --1462664753750546432 -3151669201339659264 --2084038641803316224 --3908530629097962496 -4138172482356913152 --4104366246158542848 -3365327380470413312 -402106746222592 -3907913558257119232 -794784852289017856 --4208297621103124480 -3924901175616299008 -536704574789481472 -403994771388157952 --3179271966483228672 -706140844097411072 --2582237038096635904 --93174896664509440 --597779192046558208 -4264403477487606784 --2338115936851291136 --2722290910216598528 --3115868789797771264 -2058484833215663104 --1081445722541988864 --2788943046688404480 --2900650482815683584 -3503547448339661824 -2958084263079677952 -1221607320371650560 -2870694623110960128 --1064988605037789184 -1806430344070242304 -3816423507587750912 -3656400353263064064 -1658919619238915072 --2461971951212761088 --3691389471863237632 --1246160959949155328 --3349331793188503552 -252057055498272768 -4131535272312396800 -144766826729753600 --3185345694169555968",$-415020706278255616$;$-483742684352306176$;$445451803972380672$;$-617660064137067520$;$-2291499850229832704$;$-4523789540114668544$;$-2928146869136563200$;$179023001930236928$;$2303607641256122368$;$-3826379365722464256$;$163661662529723392$;$-3856202058831877120$;$3148727247390775296$;$2940079644663051264$;$-263033270769133568$;$-2621805867182375936$;$-3672937096110901248$;$3632124853550238720$;$3186433983190185984$;$694366079190032384$;$1991879785096814592$;$-1566434688277783552$;$-3322296681623173120$;$-2051823569854867456$;$-4543486678979322880$;$4323357770121225216$;$2753469304481350656$;$3873388870727928832$;$-2265582215446691840$;$-3715860533022573568$;$-4029440925133833216$;$3831894310584364032$;$4176152174387422208$;$-930403683616416768$;$538504480130779136$;$-694988842601249792$;$-291429305761307648$;$-185564913586995200$;$-245256835757922304$;$569801116007811072$;$-3443694571466661888$;$-4129691207706500096$;$2266019365638193152$;$795519158838646784$;$4312481038164015104$;$-3374573657860501504$;$1100871400538735616$;$-3509440317482610688$;$-165239931637298176$;$-3776899431038869504$;$1928171190180431872$;$2553573222950375424$;$3281946681255969792$;$-3813957051040496640$;$-3777063820397335552$;$-4388950693111607296$;$3445791871925719040$;$-2488455147050089472$;$-1123813604517009408$;$5296887365035008$;$-548781343615926272$;$-2480045228413030400$;$3628845001638907904$;$-3846410835198245888$;$-146430693079361536$;$-4129715913212486656$;$1489487321977277440$;$-3408334030942905344$;$-576868517105033216$;$-1141395004809899008$;$2707733947391758336$;$-3012679946199104512$;$2690720052081315840$;$3476627620211426304$;$2943617070352770048$;$-809380186728173568$;$1311693799318672384$;$1454126662504864768$;$-4216545349527720960$;$-1172027849464904704$;$803072208743740416$;$-4416089792875574272$;$3328557754299278336$;$237057568126815232$;$-1777692242414722048$;$3055292344309650432$;$-3757606765584169984$;$1525429061072665600$;$2472937805783386112$;$-1070713104019608576$;$1770939952771091456$;$-247998339791277056$;$-76702586301024256$;$-743684128173193216$;$765842809451197440$;$1097120072851730432$;$-1686284689284734976$;$-1238033073424029696$;$-2397286314387955712$;$4579026148886915072$;$-909446544582069248$;$-105620084676940800$;$-3395826256475686912$;$-1462664753750546432$;$3151669201339659264$;$-2084038641803316224$;$-3908530629097962496$;$4138172482356913152$;$-4104366246158542848$;$3365327380470413312$;$402106746222592$;$3907913558257119232$;$794784852289017856$;$-4208297621103124480$;$3924901175616299008$;$536704574789481472$;$403994771388157952$;$-3179271966483228672$;$706140844097411072$;$-2582237038096635904$;$-93174896664509440$;$-597779192046558208$;$4264403477487606784$;$-2338115936851291136$;$-2722290910216598528$;$-3115868789797771264$;$2058484833215663104$;$-1081445722541988864$;$-2788943046688404480$;$-2900650482815683584$;$3503547448339661824$;$2958084263079677952$;$1221607320371650560$;$2870694623110960128$;$-1064988605037789184$;$1806430344070242304$;$3816423507587750912$;$3656400353263064064$;$1658919619238915072$;$-2461971951212761088$;$-3691389471863237632$;$-1246160959949155328$;$-3349331793188503552$;$252057055498272768$;$4131535272312396800$;$144766826729753600$;$-3185345694169555968$,彈덁졋ﲂ螲镅溰⃦獶켖᏷숛鞭꿄ቒ퇅௤洯墦ꓐ㹞㹻劅䆥馴紀ᵧ氎ル툻ഴ䊞듀꜊庛鑪, -24,,1443154423.12,,"5Q[%8?2s Cz YtQ$qYBroI $wOgT.:,@ Ƌ9ghe2#ޞ:NCEzVj?d=I-)4>w> Ь%cu!iPFCjKg%",,"{""a"":8.87240277714195e+306,""b"":""\u4796\u0e31\ub130\u97a8\u8abc\u09d4\uf610\u67dc\u8443\uea0b\ucb71\ue459\ub3f7\u2099\u45f3\u57d5\ufe12\u2820\u3c4a\u9693\u92b2\udb51\uc4ce\uc9a1\u0555\u2773\ue163\ud14c\ub7ea\ud641\u2590\ua084\u7571\uee94\u99ee\ufc8d\u965f\u6d71\ud04a\u755b\uab6e\u1207\ub5ae\u4c09\u7412\uef19\ud4fc\u974e\u6364\ufbf7\ua37c\u171e\uca35\u386d\u8212\uba59\u4f8e\ue485\ue7f2\u64b8\ub1db\u87e8\u7a1b\ubcbb\u012a\u9025\ufd70\u5231\u700e\u4997\u29d9\u58b8\u85e1\u769f\u58f5\u569b\u04f9\u91c1\u531d\u4013\ua701\u065f\u7f79\uc012\u3d99\ud3c7\u94d8\ue1d3\ua815\u152d\u65f8\u0dca\uda7b\u1070\ud260\ufb79\ud4a3\u0802\u6e4e\uf5d7\u7380\uc336\u40c3\u4d18\u015e\u02ff\u9a4e\u60e8\u1d58\u0a8d\u7f88\u1f4c\u0d74\u1203\ucfc2\u19c2\u3285\u3ad7\uf14a\ueddc\u2f01\u0628\ufc37\ue543\uc340\u9242\u47bf\uc456\u66f2\ucaea\uc2bb\ucf92\ud751\ub518\ua996\ufb0b\ub68b\u08b4\u599a\u9fb3\u9a59\u8c35\u80b1\u2aff\u4044\u6577\uddf2\u954f\u6cda\uc714\u319b\ueb37\ua203\u88f6\u3098\u9843\u8b08\u84f1\u18c5\u9c69\u4598\u521c\ud88a\u3d4f\u8c24\ua94b\u9553\ubd3a\u117f\u9345\udd0f\u4ce7\u085b\uf336\u6069\ud0db\uc443\u77d4\u64de\u4c34\u485e\uabe7\ubd78\u6254\u56ad\ud8cb\ua2fd\ue72d\u56b2\u5659\uf683\u9974\uf963\u49bc\u421c\u451f\u2497\ua660\ua44c\ufa98\u628d\u64d1\u24ca\ud7fa\ua16b\u5549\u91ac\u68b8\u2142\ua9c0\ub762\u158b\ub935\u2b4d\uf0df\u1679\u1ce4\u2066\u0743\u2778\u3253\u20ec\uba51\u0e79\u45ef\u753f\u9887\udcd4\u7469\u8510\u99fa\u4e26\u6d6e\u7365\u34f9\u728f\ub436\u209f\ub257\uaccc\ua1b8\u9162\u8421\u3efa\u7ec3\u39ac\u4260\ub757\u6a75\uadea\uc944\u76bd\uc4ca\u4f9a\u139c\u9ff3\u7dc5\u6236\ua364\ue14d\u0a7f\u32ed\u26f3\ubb16\u00f7\u6002\uf7df\u3362\ud3b1\u11d6\u78c0\ud124\u7578\u992f\u5555\ueb2a\u2add\u7548\u066b\u758a\u2855\udf24\u3d8e\u296b\u84c2\uccf1\u7335\u330f\u7f28\ub9a8\u63ef\uc053\u936c\ue9cd\u88c2\ua5d6\ufc28\uf6fa\uef13\ud1fb\u89c3\ue676\uda2f\u82e7\ua9b5\uf70f\ucf12\u6c85\uffe3\uaea2\u6b51\u9e34\uc45a\u32f4\u59e6\ufef7\u6de3\ua785\u3e58\u3ae6\u33bf\u5af1\uaca3\u23f0\uedf0\ud836\u9389\u7913\u5454\u3cd6\u1d1b\ucec4\u7fcc\u5723\u01b3\u47fe\uada4\u9b76\ub2b2\u6752\u1c51\u1d5a\u269c\u3574\u2f1c\udb22\u7aba\u4353\ue60a\u8d52\ud126\uc777\u4aec\ua21e\u59ed\u588c\u35e1\u4890\udd5c\u0b57\u1b8f\u4172\uafb7\u95b0\u0fe7\ua52b\u7af8\u1840\ub449\ubce0\ue9fe\u2115\u11eb\u2125\ua109\u962c\u9977\u7757\u668e\u3843\u3790\uf65e\u980c\ua15e\u1c88\ub3e5\ub9d4\u467b\ueb7f\ua69d\u7047\u9f13\u04c6\u5c63\u0688\u8702\u7447&\u0dcf\uce41\u7326\u4480\uce65\u738e\ueab8\uf3ef\u2928\u0dff\u34fe\u778c\uf68f\u664f\uc0e7\u8505\u72ff\u2244\ua5ec\udf04\u60c6\u49fe\uc7d9\u5691\u8eb7\ub616\u4328\u5b82\uaef9\u5a16\u3a65\u4f1a\u1d36\ua0f4\u1879\u05c9\u30d5\ubcf5\ua200\ueed6\u126c\u2345\ufa63\u5b13\u116d\ud29f\uaaf6\u8a60\u13f2\u94f0\ud825\ud8f4\ua110\u4b90\u5a7b\u048b\u92a9\ue29e\ucfa1\u114d\u32dd\u803f\u09e3\ud243\ub44d\u5123\u768a\uaf30\u954b\ub595\u51bf\u3fde\u5e0e\u19ca\u7a93\u16bd\uf658\u6366\ufd57\u1dca\uedbb\u197f\u9836\u679c\u2a9e\ufbe1\udf88\ubd23\u79ca\u7648\uebac\ufabb\ucda3\u5330\u7aa4\uf48e\u4faa\u7f15\u7346\ucdfe\u8f1c\ud9b6\ud270\ue463\u598b\u5e29\u317d\uf0fa\uc661\u34e0\uf38f\ua03e\ub86c\u3bbe\uef10\u0f44\uc345\ue832\u107a\u1e8b\u394d\u4544\ufe95\u155e\uc05d\u605b\u2a7b\u660e\u9d15\ub0ac\u225b\ua6b6\u6917\u32b1\u3efd\u6b27\u3740\u563e\ua8dd\u810c\uaacf\u4038\u85f9\u53f0\u0773\ube34\u653b\ucc64\u3497\u118f\u7fbd\uafec\u0732\u74bd\u9e79\ub1fb\ub7b0\u28b5\u7d23\u3112\udb61\u5998\ub109\ubf25\ua026\u2182\u6fce\u2935\u5274\u2d16\uf6cb\ud6c3\uee54\u09d2\u87a7\udb3b\u37f7\u5f86\uded3\ud152\uaeb7\u9132\u9cc8\u8568\u2785\u7031\u7d0b\u9cee\u1e98\u213e\ud917\u8f33\uc322\ub73f\u0cb0\u6882\ue388\u2168\ub263\ub9d1\u029a\u6f99\ub9dc\ud9e1\ua3fe\ufa5a\u28a7\u9a5a\ue398\u3db7\u441a\ubc2e\u57ce\u1dd1\u9907\u8894\u24f4\u1601\ua12d\u8328\ue02c\uf6d5\udc97\u5619\u9b46\u46d3\u9dae\u3e84\u6a6b\u456b\ua68b\ue723\u6923\u529e\u4994\u4eb3\u5cc1\uaaac\ue481\u68e3\u56e0\u860c\ud376\ud8cf\u7eca\u38b7\ucf61\uc51b\u705c\ub378\uf89e\ue292\u05fd\ud3f1\u1798\uf16d\uc7e3\u9ff0\u5fca\uf4e1\u27e9\u4e60\udab0\u98e9\u8054\uc904\ued90\ub15e\u86f3\u93b7\u23f1\uc397\uae10\u7d88\uef85\u4d0d\ue27b\ucf88\u05d7\u703c\ub017\u92e0\u5495\u755a\u3d12\u9428\u80e0\ucdac\u7368\u1da2\uec73\uad5c\uad72\u57b9\u1021\ub9c5\uf8a5\u05a3\udd26\u1aff\u2363\u1f26\u5d84\u098b\uc97d\u1adb\u2df7\u55b8\ufbac\u1e19\u4c66\u2c23\u60aa\u4989\ubf49\ub1f9\u747e\u69db\u7a6e\uc9bc\u13cd\ud990\u963f\uccba\ufd35\u7476\uf4b5\u180b\u1031\u30cd\ud33a\ucf77)\ue961\ue74f\u5508\ue35a\u95f4\u99b8\ufc49\u9ad0\u99d5\u70e8\u85c0\uc32f\ue2c6\u4a3b\u214e\u4317\u0f85\u70c0\uec59\u90b3\uf7f9\u3601\u6977\uf366\uc450\ude38\ua619\u5e14\u04dc\u3c97\u8ae1\udb15\u32e8\u1e0e\uf944\u0767\u0f7b\ud706\u7ad7\u90e7\u6f46\u2ac0\u6769\u729c\u8f69\u0290\ua8a1\u6569\uc9ee\u6e87\u3773\u531e\u346c\u2ac8\uc6fd\uda14\ue658\u20e2\u2d95\u5e06\uac8b\u9d7f\u18d2\u8af3\u859c\u95da\u418c\u1245\uddbf\u76c9\uf7e1\u2c36\ud157\ua92f\u51b4\uf92e\ud5fb\u8650\u02cf\u014b\u1a61\uc39c\ue8bc\uc99e\uddec\uda8d\u1e61\u023c\u56bc\u6ef0\u0b3c\u0be1\u5023\u5e1c\u5fed\u9c26\ud414\u81e9\u9e58\uaad9\ufeb0\udc05\u2b18\u8e9c\u7c2e\u2608\u56c6\u42b2\uc149\uc414\u72c4\ue0c4\ue6a9\udda0\u6dda\u2d0c\u3cab\u1731\u4197\u6516\ub996\ud421\u8b76\ua8c1\ufacb\ufe45\u86ab\u4cbb\u6cc4\uae38\u6ca4\ue1a5\ua948\u3f95\uaff6\u0b8e\ubd13\u5da6\u36f2\u3197\ufa89\ue135\ud676\u5436\ud68f\ua246\u6cd6\ua587\u9c8e\u5ba4\uc719\u5f60\u765e\ud5f4\ub7b4\u5ff3\u8141\u996d\uabbb\u79a5\u16f0\u5fe1\u9985\ue304\u8666\u68bd\ubcb2\u4a77\uebb4\u26b3\uff16\uacfb\u34f0\u5683\u1f4e\uadda\u9a9b\u2093\u19da\u3ad8\ua8fd\u0561\u9673\u0117\u6d8a\u4418\u59f4\ue991"",""\u798f \u9152\u5427"":{""fu"":3.0818613438447447e+307,""bar"":1.0689628435398226e+308}}",,"-4281135944849943552 --1339439434875958272 -1120893321172061184 -162455192223084544 --1574845987388833792 -4022365445116862464 --1798345689931197440 -1660724778316658688 --1480075862266288128 -4384178123968719872 -3418633192866993152 --3532018417408486400 --4212235890951189504 -4446219829832933376 --966790784432540672 --646001951451367424 -1246023221428495360 -1289719134801707008 --4272096952890934272 --3839331053442672640 -4208289330845788160 --503954345879772160 --3789649416429799424 -4260684556974394368 -1037116713172468736 --3341153696632172544 -551026695133825024 -351123864829161472 -92905747586314240 --3797828032862696448 -954355855563805696 -3644692452036664320 -3272349452839635968 -2054880559048648704 -538516282423175168 -3674607369034686464 --2128975909095682048 -27393572874975232 --36756649922881536 --1736982190960494592 --2398231752896942080 -3833280678919348224 --1094195666490307584 --223218623519214592 -127625686685024256 -942641390143710208 --2987533718392534016 -3989730947133982720 -1040884447753807872 -4449577431594068992 --1408990069373701120 -3307844701403943936 -3473889341315670016 -2648756748353245184 -1104054665489821696 -1038801771593125888 --1097090901992870912 -896499549110793216 --3797985720591810560 --4306159987583468544 --2742622565571241984 --2852687352910825472 -2309102819398183936 -957005763105101824 -1665575575780768768 --357281240415327232 -556167650462932992 -2524322351226512384 -3277774562494511104 --1559710168522784768 --122605925652895744 --2652133579590853632 -201033886235443200 --3116455977797076992 -3196833592877809664 -4166487162760774656 --3623430307928687616 --3598327532210021376 -2854717924228197376 -124477626872670208 --2477719770793088000 --3247713482349924352 --93145935865951232 -1539230533987771392 -1066723951919399936 -2015179330632613888 -671946967924736000 --44033169688290304 -2139731051706381312 --4462121493962974208 --3641881963031378944 --89706060396771328 --149958072577999872 --1908806931193649152 --2243087146393210880 --1663640953223673856 --2316572652772493312 --4335746351923877888 -761592564292748288 -1356768633933767680 -702447980454228992 -1672634631904330752 -769011851575093248 -1917013029850320896 -3873614344528788480 --2377859512344180736 -3367511270784286720 --2751290896633581568 --3043224709517076480 -882008598468817920 -1718210915613217792 -33530287445902336 -3643989120898819072 --814584528631427072 -2618371868601821184 -1375899687730918400 -1888110172653150208 -2374671990720655360 -1153297355420127232 --3968984359025045504 --652061399519060992 --745116524331817984 --2012924485676517376 --1354906864887006208 --2128380299677691904 -4391993203496526848 -3722768138270385152 -725713387714025472 --3436307787865862144 -409562701349803008 --3086704280780634112 --923486598583985152 --2998368124787378176 -1021232438740115456 --3489237357895366656 -3841123489920702464 --1213482670540597248 --1758505501529036800 --1726345848793170944 --459397231626124288 -3416229823071723520 -4182280428744101888 -3481378452574526464 -3418287087551863808 --3222984978683517952 -3078741376193583104 -202758062399133696 --3324378331215885312 --440787822376972288 -245733914568156160 --2424490419442523136 --3152021186152292352 -3589288879875465216 -735951125487290368 --1121074666498349056 --64460194892845056 -1171759893739462656 -3108354284080141312 -4190886825803613184 -2156265702748570624 -4286529079741102080 -695200818948678656 --1092966639739256832 --2805245794360189952 -1674149632631218176 --848035207754823680 --3433376648119961600 --2470798338415073280 -2320263223962984448 --815807307809559552 --374361588895581184 --2255713021637533696 --3964026055599833088 -4525969456166628352 --2377832377403111424 -1541346004429996032 -1137175432487175168 -1457047647234829312 --3464235532695621632 --2827227303225857024 -3752000333973441536 -2354147383630416896 -4326032765596497920 --4335962334540752896 -177444608504642560 -2479314112977943552 --125073230278261760 --3564247686683117568 --391232264809015296 --4189132249864219648 -2008545053417890816 -2880293791566502912 -2197492911285713920 -1322772520571047936 --1074016305271187456 -2085869959742195712 --1936944052042470400 --1411338360822129664 --135932178619843584 --1023064224283900928 --1505506608934720512 -4284146345155702784 --2489095656598140928 --4011175878624724992 --161059204885025792 -2875391188696873984 --431371645387066368 --4186057163427741696 -3268094060163586048 --1790600396658666496 --3065116602064434176 --117821262040496128 -434013571214018560 -3666235093830914048 --1182552992589824000 -713278679424940032 --831341876298859520 --2369947802166471680 --4066682564122638336 --4372609113264171008 --1212692373679951872 -1115008984524233728 -3796434545905438720 --3101002974736385024 -833456855667051520 -2435422645232058368 --2890852382133276672 -3191122298398565376 -224337736647918592 -2108680193647268864 -1634825786780349440 -466361837395340288 --1727361288733600768 -1384388456982993920 --2166541546397762560 -2586846216784395264 --3690975964701126656 --2520461672493796352 --51449410070530048 -1209306981123761152 --1294178454780703744 --4331428796359343104 --2385609496926478336 --2804021543916734464 -4001613984482225152 -3998319386707198976 -4346872334238586880 --28491315380444160 --2364050517834554368 --1007511952199501824 --1325961422593116160 -3439585773451615232 -3745239213619544064 --4049057616416303104 -2132239285001459712 -766201139699974144 --1009882556711347200 -1932561270191515648 --2574399183642560512 --3757015515809384448 -3925885775936797696 -2761496165784595456 --4113943135060189184 --79344589928140800 -1320819241666446336 --1913822004040747008 -3751199521081975808 --782331349571982336 -1352696863944922112 -2746601761880187904 --488376084492470272 --389875599266313216 --3523272120407554048 -4166511520933138432 -3269138448100621312 --3160661603479482368 -625225901705604096 --843694804308606976 -1680301014480759808 --3873088570257427456 -3476315092778702848 --4285079852542783488 -1604832828761352192 --4368616337394832384 --2073763857807314944 --4267378927817224192 --3450397910805243904 -4506911454898472960 -1791773960250945536 --2284778342112345088 --2092606746990878720 -4168058874551788544 -498594322022007808 --1411081954170735616 --239828997473197056 -4240778543883442176 --4090935221365691392 --3206144476579217408 -4456220968846889984 --59862026961780736 --3039117991015567360 --3780707366625711104 -3279307442201588736 --4307444963973504000 --696162949925111808 --813083805352285184 -382560423132535808 --985730438301943808 --1977992983898659840 -536277146947517440 -4336013895874342912 --2700494985618280448 -1061352714428659712 -4060582282762930176 --2006655981850747904 -3263072740580739072 -1959222941075016704 -199078661420058624 --4180704085842500608 -4157290268968022016 -3074971277439066112 --2454249300324569088 --3256926195717338112 --2451347166909418496 -4027036863472430080 -1009790985524677632 --511375201953167360 --1566365738176828416 -145704319802856448 -4208341255309596672 -2994364645916460032 -2326205229260178432 --3533917381841828864 -3459174644148134912 --89147848299126784 -900550060309576704 --2794029738853647360 -1189835660157410304 -1062580385680072704 -2474506792083330048 -3106078372574058496 -3067157789529851904 -481772258310825984 --2495846610275900416 --4234234190849563648 --4514644458005356544 -2124074003606213632 --430478211412480000 -2261265957364035584 -550293487593820160 --1335339011280790528 -684637105602058240 -4376297141046497280 --1676060889776097280 --4011861059603150848 -4222375665980345344 -4576020755716834304 -357600420275449856 -2639828781656491008 -1527277457574790144 --284108762381550592 --3164986464573592576 --2514470722223216640 -410600734746812416 --501861032272919552 --3719033601859085312 -2096081369180339200 -2261495986858046464 -2658319629139842048 -4346957095971744768 -1761149804629444608 --1699637055438545920 -1067385237031952384 --2539307072416244736 -174773323827129344 --4234490953269454848 -1752135069691608064 --4236328024963699712 -3779955295110519808 -4268595203306864640 -12855724255225856 --255016778484213760 -522306147932679168 -1946291960546876416 -2030772743986410496 -1851707519517476864 -1787947885930851328 --3893409315785344000 -1786385741961213952 --4205432340287631360 -2356076492923340800 -689768440701595648 -4522951085905453056 -2228733949370143744 --132914865562873856 -3386633461950389248 --1878037446358931456 --1344275369506375680 -3840886474983876608 --1622356616531322880 -1181557657815389184 -3820955001872030720 --329384811144780800 --1156854281198595072 -3299701896027394048 --2279662295467934720 --3899644882554056704 -978207823669642240 --2659409688378062848 -61268749492064256 -3908744564257635328 --2661794717499090944 -113284279612841984 -1701014811563327488 -1546247468687457280 --2407368192805957632 --2304413547681323008 -4281315560174359552 -617589095177488384 --1480300193276408832 -634712344988354560 -1575320594995453952 --3123062362808941568 -371320479833626624 -2791558029660979200 -1665348756035381248 --2625062323889021952 -495779828968586240 -2238267164743686144 -4396115912546287616 --2971279535300576256 --3839526544797925376 -2612412199842927616 --4537230171390918656 -909051258451288064 -426500718898998272 --2586099704115943424 -4346886515718352896 --2142951349369718784 --3377335778793767936 -4220463413294720000 -3614467003366931456 -3511776584064224256 --2371861886845200384 --1121637648608240640 -1274495109837125632 --2329317478465046528 --1622930617639675904 --3892838348317170688 -2836960606123936768 --3562677157518665728 --3138280843132301312 --1695700285338357760 -3071617189983590400 -562419991461936128 -3909927804553088000 --830400072314218496 -4013822172173577216 -4188653779920980992 -30533266594176000 --788694778418805760 --1174998517087507456 -2354724772492854272 -1442218899303473152 -3182791870971315200 -1888360020067969024 -601240614465571840 -2307346779662943232 -579475162776278016 --2435871346501143552 -3967681568669416448 --3098224772708477952 -2121526742287760384 --4080782573618279424 -2688637891435898880 --3338161554633528320 -2962162931243449344 -3312163652628556800 --2906375021230904320 -3309181996215189504 -1145893811082126336 -3682175803449992192 --1073385509785121792 -2138364653523511296 -2568386759122097152 --3206900512909999104 -1253820455302562816 --1451224281393976320 -4211820087339324416 --3389187250588129280 -4006351912042265600 --3382109756061849600 -4048691752511332352 -1880228870499503104 -1049677257832770560 --227127206056630272 -4225999730564312064 --97765967691762688 -2204628244488930304 --4078559098930190336 --3569512173061934080 --3311827285047734272 -1577797830528590848 --1602455607318400000 --1312719017888454656 -4427015525406231552 --3971940436043501568 --3198258878116140032 --3425350252174720000 --1495491910952631296 -1166007404367363072 -1394273349784642560 --1919975335829805056 -2829172752339767296 --3495980150880221184 -2426436032532622336 -2630958185487148032 --2968800112987761664 -4569314572948737024 -4258537512703568896 --895729156001260544 -2960272120933713920 --572848219268599808 -2406091606486607872 -1164112186517623808 -4397185637025816576 -1370887547003641856 -3927675236233017344 -1648479722350627840 --1861434285268709376 --1328144420645360640 --223620024220979200 -1583429388421492736 -2924803452619436032 --1578510015464278016 --479011899982875648 --1287782949109263360 --2946793578249221120 --784906480813418496 -3174781176939401216 --182341895993901056 -2427452531159727104 -3243809108785716224 --1017618015111301120 -2789087413590159360 --3946522316858574848 --1774035294236247040 -710683452736375808 --1573292930712354816 -3962716689060297728 -2570006212317720576 --1254816853303608320 -362094710319555584 -2247461386554170368 -4505698993835822080 -2681872944294841344 --2436827973465765888 -1681320122679635968 --4444736484886984704 --1856409161143937024 -4074235730414880768 --4270605091850320896 -432826759151760384 -2818740788466487296 --246473621591927808 -984409797525483520 --4508562815400736768 --1349081916251347968 --742306212732969984 --2639807005789907968 --1568222945759650816 --4459710427495024640 --3719800858072287232 -2830568164567904256 --4180081298184877056 --359762549664056320 --694653946178973696 --4208482389879296000 -148755404042084352 -844388222361015296 --859570020765291520 --2044021282563076096 -2024372873623781376 -3414058832341237760 --3308960631896077312 -3728614629695547392 -383049337975543808 --1789874200771202048 -2436785918875900928 --1550853893308645376 --3078844499885207552 --3368877204258096128 -4458725721600248832 --1898196228946551808 --2452503169325621248 -36682376977993728 --3531501971003663360 --4542764236600713216 --2043318011231980544 -46893118512754688 --894889734598787072 --4126591472472195072 --290123115672121344 --2808298806066113536 --3601151100285595648 --3436988358286518272 -3254387262074997760 --420938272220231680 -3126708887557221376 --4358009951038430208 -4328221295917379584 -1496780850237101056 -2527547122324911104 --3115410872903453696 -3694337787228073984 -714694327939235840 -14943044598028288 --3562772696411653120 -3804329032463116288 -1696433503622763520 -2963126360988808192 -4391684281318443008 -3150088843127579648 -857501997299452928 --1955176788797883392 -2187083887065004032 --858329795642781696 --2919623775875828736 --3920585467184788480 -3070862352902981632 -1427910660724965376 --1655500178145386496 -4279330628537219072 -457329823215862784 -4250452066247987200 --1391701767571945472 --4288729191969321984 -668886686192865280 -3134585418913014784 --1785716367615906816 --3198466882297040896 -915503809536185344 -21855935374690304 -3185025143554553856 -4343840354712436736 -3626219797784196096 -2717572011049230336 --3294064255400272896 --3462133623963565056 -2397210627413517312 -2543742127269948416 --3310003805589774336 -5682446749882368 -2070911951634398208 --793152056775421952 -313709232358308864 --217428749000489984 -4328477851197683712 -1527888868608143360 -1568758448875077632 -1386476618150531072 -370038484394440704 -609479777461376000 --875629856188377088 -1731028422090462208 -2907473944401744896 --1626259738363019264 -4546856056713041920 -832416671118582784 --981781547451156480 -1124052874048863232 --1417863060149678080 --4579847573714096128 -2590397928121261056 --1121843801544835072 -1088329585180443648 --3738821382325760000 --3259470488163740672 --1528877881393678336 --929306587997289472 --2320397319791004672 --4067876929137847296 -1272623214818071552 --1041572297499544576 -4556957298375540736 -2102649527706663936 --2122779151339252736 --737952711854433280 --4320971309911887872 --2747288792929020928 --1355245815528724480 --2213764804070842368 --368306363289265152 --685705932336944128 -4322281851517845504 -1219473792638731264 -24752722840320000 -3529998520678624256 --2568051731775547392 --2100471466864625664 --3326808525612725248 -1534194038589047808 -633573276584182784 -1158279506760147968 -609798466975385600 --1127882489311723520 --4401152459662581760 --3101522937982260224 --2573643804549603328 --2312931853021975552 -2497943211016111104 -2570054721703470080 -2552668820433034240 --565247412917840896 -2468066707909550080 --2309121254779808768 --2260464181782305792 --275164010197265408 -2305293558929012736 -4293236963716305920 --3224218822788533248 --1191259752564867072 --1505153389808357376 --2442472161470174208 -1190827059463956480 -1424556734170047488 --1696931544840866816 -2499961526669186048 -3607943670696096768 --2399299090275690496 -80543330387184640 --2856911132124200960 --3750000106864113664 --4236538275709237248 -3861161705589649408 -4191133728616740864 -1789688479113216000 -2332699342267599872 --1391852324610319360 -4073838510917124096 --1640109225782969344 --2483948757695977472 -1663289764133256192 -2285643081812030464 -855612114923512832 -1548834296514246656 -1395313765026990080 -3550450305784019968 --4224170936692419584 -3961919016978327552 -1556379117912441856 -1278458569526624256 --179819443984285696 --3231302375957109760 --3521865974517896192 --756710193082131456 --2563122959197316096 --1169436926351082496 -3304807830019689472 --1432998879343341568 -2014154034038521856 -2087145144512557056 --1346843660727756800 -963926001453372416 --3111044516092064768 -2480601620406259712 --2976979560098900992 -3388342589676405760 -2155695471958616064 --2422631273280824320 -3074795231929693184 -4327779041204807680 --3455316057321560064 --2715275358560072704 -1887623612518364160 -345176508635831296 --2477864893025297408 -301239781046992896 --3041293409709125632 -2845203554191647744 -1236303616749762560 --2000038953004919808 -3158268291751116800 --1206137751427087360 -492772812967712768 --3705513896975132672",$-4281135944849943552$;$-1339439434875958272$;$1120893321172061184$;$162455192223084544$;$-1574845987388833792$;$4022365445116862464$;$-1798345689931197440$;$1660724778316658688$;$-1480075862266288128$;$4384178123968719872$;$3418633192866993152$;$-3532018417408486400$;$-4212235890951189504$;$4446219829832933376$;$-966790784432540672$;$-646001951451367424$;$1246023221428495360$;$1289719134801707008$;$-4272096952890934272$;$-3839331053442672640$;$4208289330845788160$;$-503954345879772160$;$-3789649416429799424$;$4260684556974394368$;$1037116713172468736$;$-3341153696632172544$;$551026695133825024$;$351123864829161472$;$92905747586314240$;$-3797828032862696448$;$954355855563805696$;$3644692452036664320$;$3272349452839635968$;$2054880559048648704$;$538516282423175168$;$3674607369034686464$;$-2128975909095682048$;$27393572874975232$;$-36756649922881536$;$-1736982190960494592$;$-2398231752896942080$;$3833280678919348224$;$-1094195666490307584$;$-223218623519214592$;$127625686685024256$;$942641390143710208$;$-2987533718392534016$;$3989730947133982720$;$1040884447753807872$;$4449577431594068992$;$-1408990069373701120$;$3307844701403943936$;$3473889341315670016$;$2648756748353245184$;$1104054665489821696$;$1038801771593125888$;$-1097090901992870912$;$896499549110793216$;$-3797985720591810560$;$-4306159987583468544$;$-2742622565571241984$;$-2852687352910825472$;$2309102819398183936$;$957005763105101824$;$1665575575780768768$;$-357281240415327232$;$556167650462932992$;$2524322351226512384$;$3277774562494511104$;$-1559710168522784768$;$-122605925652895744$;$-2652133579590853632$;$201033886235443200$;$-3116455977797076992$;$3196833592877809664$;$4166487162760774656$;$-3623430307928687616$;$-3598327532210021376$;$2854717924228197376$;$124477626872670208$;$-2477719770793088000$;$-3247713482349924352$;$-93145935865951232$;$1539230533987771392$;$1066723951919399936$;$2015179330632613888$;$671946967924736000$;$-44033169688290304$;$2139731051706381312$;$-4462121493962974208$;$-3641881963031378944$;$-89706060396771328$;$-149958072577999872$;$-1908806931193649152$;$-2243087146393210880$;$-1663640953223673856$;$-2316572652772493312$;$-4335746351923877888$;$761592564292748288$;$1356768633933767680$;$702447980454228992$;$1672634631904330752$;$769011851575093248$;$1917013029850320896$;$3873614344528788480$;$-2377859512344180736$;$3367511270784286720$;$-2751290896633581568$;$-3043224709517076480$;$882008598468817920$;$1718210915613217792$;$33530287445902336$;$3643989120898819072$;$-814584528631427072$;$2618371868601821184$;$1375899687730918400$;$1888110172653150208$;$2374671990720655360$;$1153297355420127232$;$-3968984359025045504$;$-652061399519060992$;$-745116524331817984$;$-2012924485676517376$;$-1354906864887006208$;$-2128380299677691904$;$4391993203496526848$;$3722768138270385152$;$725713387714025472$;$-3436307787865862144$;$409562701349803008$;$-3086704280780634112$;$-923486598583985152$;$-2998368124787378176$;$1021232438740115456$;$-3489237357895366656$;$3841123489920702464$;$-1213482670540597248$;$-1758505501529036800$;$-1726345848793170944$;$-459397231626124288$;$3416229823071723520$;$4182280428744101888$;$3481378452574526464$;$3418287087551863808$;$-3222984978683517952$;$3078741376193583104$;$202758062399133696$;$-3324378331215885312$;$-440787822376972288$;$245733914568156160$;$-2424490419442523136$;$-3152021186152292352$;$3589288879875465216$;$735951125487290368$;$-1121074666498349056$;$-64460194892845056$;$1171759893739462656$;$3108354284080141312$;$4190886825803613184$;$2156265702748570624$;$4286529079741102080$;$695200818948678656$;$-1092966639739256832$;$-2805245794360189952$;$1674149632631218176$;$-848035207754823680$;$-3433376648119961600$;$-2470798338415073280$;$2320263223962984448$;$-815807307809559552$;$-374361588895581184$;$-2255713021637533696$;$-3964026055599833088$;$4525969456166628352$;$-2377832377403111424$;$1541346004429996032$;$1137175432487175168$;$1457047647234829312$;$-3464235532695621632$;$-2827227303225857024$;$3752000333973441536$;$2354147383630416896$;$4326032765596497920$;$-4335962334540752896$;$177444608504642560$;$2479314112977943552$;$-125073230278261760$;$-3564247686683117568$;$-391232264809015296$;$-4189132249864219648$;$2008545053417890816$;$2880293791566502912$;$2197492911285713920$;$1322772520571047936$;$-1074016305271187456$;$2085869959742195712$;$-1936944052042470400$;$-1411338360822129664$;$-135932178619843584$;$-1023064224283900928$;$-1505506608934720512$;$4284146345155702784$;$-2489095656598140928$;$-4011175878624724992$;$-161059204885025792$;$2875391188696873984$;$-431371645387066368$;$-4186057163427741696$;$3268094060163586048$;$-1790600396658666496$;$-3065116602064434176$;$-117821262040496128$;$434013571214018560$;$3666235093830914048$;$-1182552992589824000$;$713278679424940032$;$-831341876298859520$;$-2369947802166471680$;$-4066682564122638336$;$-4372609113264171008$;$-1212692373679951872$;$1115008984524233728$;$3796434545905438720$;$-3101002974736385024$;$833456855667051520$;$2435422645232058368$;$-2890852382133276672$;$3191122298398565376$;$224337736647918592$;$2108680193647268864$;$1634825786780349440$;$466361837395340288$;$-1727361288733600768$;$1384388456982993920$;$-2166541546397762560$;$2586846216784395264$;$-3690975964701126656$;$-2520461672493796352$;$-51449410070530048$;$1209306981123761152$;$-1294178454780703744$;$-4331428796359343104$;$-2385609496926478336$;$-2804021543916734464$;$4001613984482225152$;$3998319386707198976$;$4346872334238586880$;$-28491315380444160$;$-2364050517834554368$;$-1007511952199501824$;$-1325961422593116160$;$3439585773451615232$;$3745239213619544064$;$-4049057616416303104$;$2132239285001459712$;$766201139699974144$;$-1009882556711347200$;$1932561270191515648$;$-2574399183642560512$;$-3757015515809384448$;$3925885775936797696$;$2761496165784595456$;$-4113943135060189184$;$-79344589928140800$;$1320819241666446336$;$-1913822004040747008$;$3751199521081975808$;$-782331349571982336$;$1352696863944922112$;$2746601761880187904$;$-488376084492470272$;$-389875599266313216$;$-3523272120407554048$;$4166511520933138432$;$3269138448100621312$;$-3160661603479482368$;$625225901705604096$;$-843694804308606976$;$1680301014480759808$;$-3873088570257427456$;$3476315092778702848$;$-4285079852542783488$;$1604832828761352192$;$-4368616337394832384$;$-2073763857807314944$;$-4267378927817224192$;$-3450397910805243904$;$4506911454898472960$;$1791773960250945536$;$-2284778342112345088$;$-2092606746990878720$;$4168058874551788544$;$498594322022007808$;$-1411081954170735616$;$-239828997473197056$;$4240778543883442176$;$-4090935221365691392$;$-3206144476579217408$;$4456220968846889984$;$-59862026961780736$;$-3039117991015567360$;$-3780707366625711104$;$3279307442201588736$;$-4307444963973504000$;$-696162949925111808$;$-813083805352285184$;$382560423132535808$;$-985730438301943808$;$-1977992983898659840$;$536277146947517440$;$4336013895874342912$;$-2700494985618280448$;$1061352714428659712$;$4060582282762930176$;$-2006655981850747904$;$3263072740580739072$;$1959222941075016704$;$199078661420058624$;$-4180704085842500608$;$4157290268968022016$;$3074971277439066112$;$-2454249300324569088$;$-3256926195717338112$;$-2451347166909418496$;$4027036863472430080$;$1009790985524677632$;$-511375201953167360$;$-1566365738176828416$;$145704319802856448$;$4208341255309596672$;$2994364645916460032$;$2326205229260178432$;$-3533917381841828864$;$3459174644148134912$;$-89147848299126784$;$900550060309576704$;$-2794029738853647360$;$1189835660157410304$;$1062580385680072704$;$2474506792083330048$;$3106078372574058496$;$3067157789529851904$;$481772258310825984$;$-2495846610275900416$;$-4234234190849563648$;$-4514644458005356544$;$2124074003606213632$;$-430478211412480000$;$2261265957364035584$;$550293487593820160$;$-1335339011280790528$;$684637105602058240$;$4376297141046497280$;$-1676060889776097280$;$-4011861059603150848$;$4222375665980345344$;$4576020755716834304$;$357600420275449856$;$2639828781656491008$;$1527277457574790144$;$-284108762381550592$;$-3164986464573592576$;$-2514470722223216640$;$410600734746812416$;$-501861032272919552$;$-3719033601859085312$;$2096081369180339200$;$2261495986858046464$;$2658319629139842048$;$4346957095971744768$;$1761149804629444608$;$-1699637055438545920$;$1067385237031952384$;$-2539307072416244736$;$174773323827129344$;$-4234490953269454848$;$1752135069691608064$;$-4236328024963699712$;$3779955295110519808$;$4268595203306864640$;$12855724255225856$;$-255016778484213760$;$522306147932679168$;$1946291960546876416$;$2030772743986410496$;$1851707519517476864$;$1787947885930851328$;$-3893409315785344000$;$1786385741961213952$;$-4205432340287631360$;$2356076492923340800$;$689768440701595648$;$4522951085905453056$;$2228733949370143744$;$-132914865562873856$;$3386633461950389248$;$-1878037446358931456$;$-1344275369506375680$;$3840886474983876608$;$-1622356616531322880$;$1181557657815389184$;$3820955001872030720$;$-329384811144780800$;$-1156854281198595072$;$3299701896027394048$;$-2279662295467934720$;$-3899644882554056704$;$978207823669642240$;$-2659409688378062848$;$61268749492064256$;$3908744564257635328$;$-2661794717499090944$;$113284279612841984$;$1701014811563327488$;$1546247468687457280$;$-2407368192805957632$;$-2304413547681323008$;$4281315560174359552$;$617589095177488384$;$-1480300193276408832$;$634712344988354560$;$1575320594995453952$;$-3123062362808941568$;$371320479833626624$;$2791558029660979200$;$1665348756035381248$;$-2625062323889021952$;$495779828968586240$;$2238267164743686144$;$4396115912546287616$;$-2971279535300576256$;$-3839526544797925376$;$2612412199842927616$;$-4537230171390918656$;$909051258451288064$;$426500718898998272$;$-2586099704115943424$;$4346886515718352896$;$-2142951349369718784$;$-3377335778793767936$;$4220463413294720000$;$3614467003366931456$;$3511776584064224256$;$-2371861886845200384$;$-1121637648608240640$;$1274495109837125632$;$-2329317478465046528$;$-1622930617639675904$;$-3892838348317170688$;$2836960606123936768$;$-3562677157518665728$;$-3138280843132301312$;$-1695700285338357760$;$3071617189983590400$;$562419991461936128$;$3909927804553088000$;$-830400072314218496$;$4013822172173577216$;$4188653779920980992$;$30533266594176000$;$-788694778418805760$;$-1174998517087507456$;$2354724772492854272$;$1442218899303473152$;$3182791870971315200$;$1888360020067969024$;$601240614465571840$;$2307346779662943232$;$579475162776278016$;$-2435871346501143552$;$3967681568669416448$;$-3098224772708477952$;$2121526742287760384$;$-4080782573618279424$;$2688637891435898880$;$-3338161554633528320$;$2962162931243449344$;$3312163652628556800$;$-2906375021230904320$;$3309181996215189504$;$1145893811082126336$;$3682175803449992192$;$-1073385509785121792$;$2138364653523511296$;$2568386759122097152$;$-3206900512909999104$;$1253820455302562816$;$-1451224281393976320$;$4211820087339324416$;$-3389187250588129280$;$4006351912042265600$;$-3382109756061849600$;$4048691752511332352$;$1880228870499503104$;$1049677257832770560$;$-227127206056630272$;$4225999730564312064$;$-97765967691762688$;$2204628244488930304$;$-4078559098930190336$;$-3569512173061934080$;$-3311827285047734272$;$1577797830528590848$;$-1602455607318400000$;$-1312719017888454656$;$4427015525406231552$;$-3971940436043501568$;$-3198258878116140032$;$-3425350252174720000$;$-1495491910952631296$;$1166007404367363072$;$1394273349784642560$;$-1919975335829805056$;$2829172752339767296$;$-3495980150880221184$;$2426436032532622336$;$2630958185487148032$;$-2968800112987761664$;$4569314572948737024$;$4258537512703568896$;$-895729156001260544$;$2960272120933713920$;$-572848219268599808$;$2406091606486607872$;$1164112186517623808$;$4397185637025816576$;$1370887547003641856$;$3927675236233017344$;$1648479722350627840$;$-1861434285268709376$;$-1328144420645360640$;$-223620024220979200$;$1583429388421492736$;$2924803452619436032$;$-1578510015464278016$;$-479011899982875648$;$-1287782949109263360$;$-2946793578249221120$;$-784906480813418496$;$3174781176939401216$;$-182341895993901056$;$2427452531159727104$;$3243809108785716224$;$-1017618015111301120$;$2789087413590159360$;$-3946522316858574848$;$-1774035294236247040$;$710683452736375808$;$-1573292930712354816$;$3962716689060297728$;$2570006212317720576$;$-1254816853303608320$;$362094710319555584$;$2247461386554170368$;$4505698993835822080$;$2681872944294841344$;$-2436827973465765888$;$1681320122679635968$;$-4444736484886984704$;$-1856409161143937024$;$4074235730414880768$;$-4270605091850320896$;$432826759151760384$;$2818740788466487296$;$-246473621591927808$;$984409797525483520$;$-4508562815400736768$;$-1349081916251347968$;$-742306212732969984$;$-2639807005789907968$;$-1568222945759650816$;$-4459710427495024640$;$-3719800858072287232$;$2830568164567904256$;$-4180081298184877056$;$-359762549664056320$;$-694653946178973696$;$-4208482389879296000$;$148755404042084352$;$844388222361015296$;$-859570020765291520$;$-2044021282563076096$;$2024372873623781376$;$3414058832341237760$;$-3308960631896077312$;$3728614629695547392$;$383049337975543808$;$-1789874200771202048$;$2436785918875900928$;$-1550853893308645376$;$-3078844499885207552$;$-3368877204258096128$;$4458725721600248832$;$-1898196228946551808$;$-2452503169325621248$;$36682376977993728$;$-3531501971003663360$;$-4542764236600713216$;$-2043318011231980544$;$46893118512754688$;$-894889734598787072$;$-4126591472472195072$;$-290123115672121344$;$-2808298806066113536$;$-3601151100285595648$;$-3436988358286518272$;$3254387262074997760$;$-420938272220231680$;$3126708887557221376$;$-4358009951038430208$;$4328221295917379584$;$1496780850237101056$;$2527547122324911104$;$-3115410872903453696$;$3694337787228073984$;$714694327939235840$;$14943044598028288$;$-3562772696411653120$;$3804329032463116288$;$1696433503622763520$;$2963126360988808192$;$4391684281318443008$;$3150088843127579648$;$857501997299452928$;$-1955176788797883392$;$2187083887065004032$;$-858329795642781696$;$-2919623775875828736$;$-3920585467184788480$;$3070862352902981632$;$1427910660724965376$;$-1655500178145386496$;$4279330628537219072$;$457329823215862784$;$4250452066247987200$;$-1391701767571945472$;$-4288729191969321984$;$668886686192865280$;$3134585418913014784$;$-1785716367615906816$;$-3198466882297040896$;$915503809536185344$;$21855935374690304$;$3185025143554553856$;$4343840354712436736$;$3626219797784196096$;$2717572011049230336$;$-3294064255400272896$;$-3462133623963565056$;$2397210627413517312$;$2543742127269948416$;$-3310003805589774336$;$5682446749882368$;$2070911951634398208$;$-793152056775421952$;$313709232358308864$;$-217428749000489984$;$4328477851197683712$;$1527888868608143360$;$1568758448875077632$;$1386476618150531072$;$370038484394440704$;$609479777461376000$;$-875629856188377088$;$1731028422090462208$;$2907473944401744896$;$-1626259738363019264$;$4546856056713041920$;$832416671118582784$;$-981781547451156480$;$1124052874048863232$;$-1417863060149678080$;$-4579847573714096128$;$2590397928121261056$;$-1121843801544835072$;$1088329585180443648$;$-3738821382325760000$;$-3259470488163740672$;$-1528877881393678336$;$-929306587997289472$;$-2320397319791004672$;$-4067876929137847296$;$1272623214818071552$;$-1041572297499544576$;$4556957298375540736$;$2102649527706663936$;$-2122779151339252736$;$-737952711854433280$;$-4320971309911887872$;$-2747288792929020928$;$-1355245815528724480$;$-2213764804070842368$;$-368306363289265152$;$-685705932336944128$;$4322281851517845504$;$1219473792638731264$;$24752722840320000$;$3529998520678624256$;$-2568051731775547392$;$-2100471466864625664$;$-3326808525612725248$;$1534194038589047808$;$633573276584182784$;$1158279506760147968$;$609798466975385600$;$-1127882489311723520$;$-4401152459662581760$;$-3101522937982260224$;$-2573643804549603328$;$-2312931853021975552$;$2497943211016111104$;$2570054721703470080$;$2552668820433034240$;$-565247412917840896$;$2468066707909550080$;$-2309121254779808768$;$-2260464181782305792$;$-275164010197265408$;$2305293558929012736$;$4293236963716305920$;$-3224218822788533248$;$-1191259752564867072$;$-1505153389808357376$;$-2442472161470174208$;$1190827059463956480$;$1424556734170047488$;$-1696931544840866816$;$2499961526669186048$;$3607943670696096768$;$-2399299090275690496$;$80543330387184640$;$-2856911132124200960$;$-3750000106864113664$;$-4236538275709237248$;$3861161705589649408$;$4191133728616740864$;$1789688479113216000$;$2332699342267599872$;$-1391852324610319360$;$4073838510917124096$;$-1640109225782969344$;$-2483948757695977472$;$1663289764133256192$;$2285643081812030464$;$855612114923512832$;$1548834296514246656$;$1395313765026990080$;$3550450305784019968$;$-4224170936692419584$;$3961919016978327552$;$1556379117912441856$;$1278458569526624256$;$-179819443984285696$;$-3231302375957109760$;$-3521865974517896192$;$-756710193082131456$;$-2563122959197316096$;$-1169436926351082496$;$3304807830019689472$;$-1432998879343341568$;$2014154034038521856$;$2087145144512557056$;$-1346843660727756800$;$963926001453372416$;$-3111044516092064768$;$2480601620406259712$;$-2976979560098900992$;$3388342589676405760$;$2155695471958616064$;$-2422631273280824320$;$3074795231929693184$;$4327779041204807680$;$-3455316057321560064$;$-2715275358560072704$;$1887623612518364160$;$345176508635831296$;$-2477864893025297408$;$301239781046992896$;$-3041293409709125632$;$2845203554191647744$;$1236303616749762560$;$-2000038953004919808$;$3158268291751116800$;$-1206137751427087360$;$492772812967712768$;$-3705513896975132672$,Ύੀ䶼쬂ꑷڤ훷笘백瓮யꓒ鑨ꗯຉḶ胺䅫珷힦劝ӿﺌ匴ڌ늟奊㽲㔣俞᜝፨㩱ꟴ䒐ᣲ쁘畈췼曥漀ཇ껍䞊넇䐙뷎劒튎₁쯟๷ꯕ䝻聾愗虔텋ஜꉚ䶳ᦺ≆常圏캐鴼廇᠛置榨屙럫㠟夐騻淋⣮ဇ쮲휠ԭ쿭䀺椨ꂌ師龜ᘈ℅⦠囹定㞚墿豟䉾啺邕䏋蓎翵䆆氐㸺⚫ﻼૻ嫚蓡뷢的䩣힂닇磄駗ᠦ씦䊺䚀愫酏樂鈾樣暖䌑᫫ⷴش㼲驙킌턢્梦䊨芉࣓함Tꆶࢭﬧ杔㈰싇鰝ಢ剧髚赾ல扎牒뽩嵶䰥䟴㦗鴆져⏿傯嘱쥚摴滒벵▃淙䬓疪朡晰ධ䯬丠忁떙ఠ댦⁵ヿ籟࣒勇Ꮷꗵ䵥뒰풬↖埉샜㆙飇䇮┵埾□ѩ曲鎄읐휕먺掍ꍯ봫桮띳债赗葛䶇뵉艜阄먖豛捯揟뇴ꢷ翍핏ᖾ䇍獑椛筵௽⌏⪡跽᡾ຑⰘ후褩늢겚븵㔤ᩢ࿁鍁㊁ꑴɞ䵞ﶅ竀류䫂ʮ儹佒튾諔鮘䭍⦪ꡪⲋ獱ݤ댓릃丌ढ़煿ꕕ⯺蝊ӫ㵨颈敉懝踘牖懯ᬚ癨翏੊蔋칶⼻씈㯸ﲪ뼝諅㎱툶蜍숹髵鯓測ﯔ晇䯗幙뀽䩻浆폒᠐ꢸ⭙놮Ḃ꣝尳⣵닻꫒없巅鈒탹蝒켏ᡍ䗾뤅刕銄ط쩴짊懖㚼烲ໃ羗竟ꂖ兣锪둷畳壌ᄂꤶŠ膀轎䁨ꁛ籍ݴᳫ냃∑ꊄ㗖ଦ뀯裧讕턽흼®䗈빆닏欸焖溯蘒괎Ѿ졆䅎로锰듽潍럭ᯆᲆꦰ硹苽⤩㟙谎㘕헲裢ሳ㗪ᆰⱺ୵期뉋뒕ྂྺ쯦뮪縧औꙣ哔腂ᚡ鸌າ컫뒽ᒻ尥剜⛔ᛰ듞ꀱቢ麢륱﷽⚛, -25,,1443154423.14,,"N7B4g,fn8ܼmڧ1|-))DwH3e{09h =岻77U6mKzaz7",,"{""a"":1.632373726865603e+308,""b"":""\u08cc\uaaa1\ua42e\u72f8\u61d6\u528f\u6823\ue7cb\ue393\ub072\u57a0\ue58f\u13ae\u6295\u8c5b\u5e9d\u1aff\u6855\u1c38\u2edf\u7b69\u562c\u899c\ue936\u9cf5\u32af"",""\u798f \u9152\u5427"":{""fu"":6.647568657449716e+307,""bar"":4.3400399373436176e+307}}",,"3055512838393176064 -1864939115736911872 --1577328142765520896 -335767374664564736 -3045382075843539968 -439667995708479488 --1316409260431646720 -647942187289625600 -3405847073300454400 --4337804611819923456 --256883574859695104 -359699928266375168 -1373160467131750400 -1612580058859523072 -2039282895947757568 --1344901521985736704 --1679152827453557760 --2799384227534292992 -6745712979660800 --2222507279867383808 -2700194744178921472 -2114532747055864832 -3829871084157752320 --1497419340272923648 --4289534714898700288 -2558676434838623232 --4212429755946274816 -3001929508185919488 -3656458020374963200 --4533513596520295424 --1494547535727148032 --497088932937022464 --3112337177502457856 --2408281830247735296 --301834619152353280 -1188191588339488768 -4560230893315169280 --3979088099675663360 -3715809427153107968 --2500430147304015872 --4079086000397952000 -1914142129164111872 -2738268878399708160 --2325404028703138816 -1283494366163788800 -1030281210453763072 --1131675405900314624 -2016082284959073280 -4090149531962636288 -1363721669917135872 --3684231227439387648 --53484078190917632 --3725181665891150848 --2486322011256758272 -4326414960675203072 --2617935279787018240 --230634036978476032 --2506709956972537856 -1726469876902608896 --2430867899080249344 -676963180924964864 -821613180553807872 --600710386771440640 --2724921972671382528 -352016119559516160 --588052973097266176 --1253077058227946496 -1163016220355018752 --1026381591100785664 --449639738970605568 --1095614546196350976 -2131140192318370816 -3415983331838258176 -3659710934911602688 -4478799054157300736 --1483819630778866688 -3755549110476410880 -1905954394703262720 -1912830724250360832 -401839213546344448 --71507803274661888 --2852156951547882496 --832855588361843712 --2575337981636911104 -4451635575004189696 --2570420026301602816 -815213840174029824 --4273166585059891200 --4248738559377167360 --3534482224898066432 -3439493267804372992 --4230315878789535744 -550837723085453312 -335780120145753088 --3794115073444452352 --3941156025283896320 --2338616492869680128 -2345437789301764096 --187259690617823232 -80851277873772544 --1583950698708338688 -1758815839154035712 -3053883366626105344 --4480774531307440128 --904488429077653504 -4133388287805379584 --364757693862837248 -134827111360905216 --2512434180688658432 --1921052817354294272 -4112858511210841088 -3882383463998295040 --2907378360205537280 --3492353776404940800 --779594570415934464 --1034215906652295168 -3573289030130071552 --2364073156435313664 -1696170360556687360 --2292852969362886656 --4343557743019053056 -1390711672091108352 -3558587105158072320 -2928538030788058112 -1432244130506809344 -761891762503463936 -3584922123327031296 --927015422081670144 --1073131342914269184 --4506765705898749952 -885555526356897792 --4366074783101640704 --652561717648223232 --970914367399565312 -3884631217280199680 -1742655716514779136 --1983205335941642240 --2435225022001111040 -3523370545676673024 --4508994494751428608 --3711202873079660544 --4534357010316966912 --70727371066877952 -4034091531759597568 --4568897043271749632 -4131593524408431616 -2492192453467459584 -809710723292447744 --2541994235537287168 -1590552511884972032 -3274028486742129664 --366027062090920960 --1821037588418025472 -1643867685448256512 --2268703153007167488 --664114783356993536 -58567078068475904 --1113061054537019392 --4245759045337175040 -3080576543834550272 -2092546158290710528 -422742994672777216 --2537498442100797440 -4425546876179733504 --3230388741798046720 --3549549408738275328 --3678212341968303104 -4365958478342904832 --3655295852058049536 -4066542558861798400 --3195130693111547904 --238064598778095616 -2964725431835415552 --849979466514738176 -4408675735279186944 --4564649131245678592 --1627420092030129152 -449553578116312064 -2049249443346553856 -3116455972933912576 -2164728192165496832 -3681211614199391232 --1628769663989866496 --2774946818671134720 --4096596381107232768 --2395099488663480320 --3834419220628728832 --1461048224715744256 -4531709919312998400 -748026829393947648 --2458900933631652864 -1002097977227913216 --1919329488651390976 --2089765957478649856 -4487070619041370112 --939472743524560896 -1447696572249098240 -3790170427563049984 -2136337821656391680 --63159792578823168 --3496125764305342464 --1183568626300418048 -361633198758069248 -4269943690294104064 -2890360342294446080 --1748729623997323264 -2797985567324418048 --2809939151236747264 -3829870220567896064 --3007965899421440000 -1290411409077192704 --4360052179365318656 -44195218040835072 --3155726848106306560 --396428815299356672 --3701812424613122048 -1326034261318436864 --4248099519838573568 -959577041288646656 --4550301819342424064 -4472720769577420800 --1352439258339251200 -646249174861058048 --3981906728128471040 -1396732097920512000 -2544442046860481536 -2779273768248432640 -2092494526145318912 --2709465772387704832 -3736659976936734720 --1792161079105126400 --482253033650050048 -1047244799631796224 -1019808032195811328 --584097312475027456 --3197186812745988096 -2567210702622535680 -3759781687686543360 -113902384484983808 --2320478455116384256 -874785706892533760 --3156496358284169216 --1617255538262456320 --4574634935661591552 -3523690988595320832 -3791187506707724288 --436751730002847744 --2245131878014237696 --2882971033753090048 -4505569631049853952 -4235774616276227072 -854402299168445440 --4129621342331570176 -2295193011514034176 -1319914172494483456 -4498389382152058880 --4608829980743874560 --116404492236466176 -3083840809364218880 --3209572335823165440 -2640405273234583552 --787559432757843968 -1246732084506251264 -848182890783565824 --4524003826635963392 -869691114727233536 -1015459208211987456 -3362171726687309824 -1186694017873617920 -4088500412510605312 -1230566965973203968 --1556500104535127040 --1453092157401969664 --2176618939061004288 --3482926463682429952 -2601087226035620864 -1831403355150567424 -1338309951457558528 --2602999364067840000 -2680600845990819840 --4140173417512461312 --1818956465195985920 -1342714414926157824 -1237596066352507904 -4037083153933831168 -2595575294057655296 --3245858702040012800 -4532503234713837568 --2521225434100321280 -2437968323185660928 --4471573341921353728 -1294880313202015232 -3464983559585670144 -2746174323596561408 --610716786031672320 --4221850685903248384 -2743326186602238976 -1955699625795992576 --2696879425937310720 -2505116592178266112 -1185081438323254272 -3608441762431350784 --2209352938696983552 --1522557156135906304 --4448363254622015488 --3712381011668349952 --2664126545221188608 -309322445733753856 --4576831792446342144 --4503458375628719104 --4409095073612942336 --4431051870249827328 -1570096136831191040 -2116030473667610624 --336327244786299904 --96797393702244352 -1864106949523614720 -1422603749773817856 --1669174732171431936 -4600116128232165376 --3042804137032900608 -1980010152467600384 --99886396784698368 -3546010512063741952 --2853101013369764864 --3351731090191047680 --17262780538951680 -3380085799018496000 -2311753660721308672 --4022844783058930688 --664710099939906560 --2289808522010275840 --4033781134294090752 -588617533667454976 --1175513231907404800 -293673371069889536 --4179046933433443328 --815281052801845248 -1436332203351136256 --3250594014587277312 --1026130399815230464 -1482881135730233344 --4054479252531831808 -581557048121541632 --3400182144258187264 -792942374168941568 -4326139228080335872 -222743428043404288 --1538442896663933952 --2613462251844198400 --4490777570725963776 -937333040668521472 --386540385968449536 --4319795224337926144 --400186347432105984 -241539592253835264 --2672687507620562944 --614819965107812352 -2110084366883094528 --2432526365517933568 -2679471395377408000 -1486350431442107392 --2292253649110553600 -1517367234456419328 -3529787819532887040 -4175921013992939520 -2300316090727178240 -2677037930104031232 --192059036805299200 -906865564867466240 -3976386761553028096 --3421285285341612032 --3709274712231435264 --3678740929328719872 --3027286545012990976 -385463434136326144 -3034409679119160320 --158747373261516800 -3576933161959671808 -3877719732569424896 -128101607515795456 -2646234237344619520 --3956940391449036800 --3842615778217574400 --529992470002034688 -2010767659504249856 -3000578666433750016 --1620586959700137984 --2051672431428466688 --80541033529632768 --918010404684778496 -2662269245150999552 --4582554707511305216 --1478907636205961216 --4312649909045373952 -3782599937239889920 -1520533259492930560 -2936986928555220992 --4564973066949036032 -2793209688288484352 --3838450212956694528 --669999192178935808 --1778164959740659712 -4391077531920768000 --3921665510903346176 -236907599341881344 -2347403539798292480 --733828788834455552 --3937501031139060736 -2769942385187916800 -1413361414892530688 -321606678718297088 --3684522089131037696 --2908148045235446784 -3163537508203755520 --690186883800480768 --663444579055635456 --95398094905380864 -1313585051417805824 --2522901496360823808 -2197247797599005696 --4239604712173341696 --3791956109017957376 --1269321158915249152 -2505246541886576640 --304868657588058112 --2424189448889495552 --501224332349333504 -3281413892368801792 -3649747729861081088 --492704194449179648 --646522407538723840 -869847523858230272 --3774325469483240448 -1085078131949064192 -454651451171122176 -1173279860877874176 --2771217414011209728 -2515822543919110144 -1584212299645409280 --1875134667305113600 --1207614586144706560 --1846407125908241408 --934147249492226048 -1955148486937194496 -2715907527225107456 --1472474953861839872 --2376348222330612736 --1179595759726876672 --374345219547618304 --1867669808982367232 --2260587522344359936 --1466235830730723328 -2787131856497411072 -3860379941891211264 -4082768109746657280 --4214343191217542144 -1242673423326718976 -3922504571349900288 -788551070618311680 -3536799944299183104 --1987781164791140352 --4347946461857597440 -2005937062540940288 -3448899795687480320 -3481714114357543936 -86280747303601152 --47716048464062464 -2197584388384928768 -1387267406329435136 --2882789147012578304 --3175028256922815488 --2304995622778309632 --1907973500092862464 -2236239363730461696 --3847694616274129920 --2392600326494427136 --2926082300004472832 --1196922582625255424 -2873356565615502336 --3729362292412459008 -3468683253701687296 --2480962501236096000 --843190541260777472 -3961242733117274112 --3942412372648259584 -2058764055683138560 -2128273213621332992 --363113888339511296 --3347144302421410816 -4588720322876376064 -4599929108668956672 --1342679071627210752 --2692425589152751616 --70655417919363072 -3537445033246996480 --3703435031038511104 --2593886417938691072 --2970502280535183360 -3662345369099876352 -1782197488351020032 --3031063586652087296 --1132585578926995456 --1118652184962788352 -2880805935818674176 -3783508583504388096 -1147078989298159616 -1887849213576244224 -3931670456845533184 --2949325578349303808 -3327666783336360960 --1832122383280993280 --4375662072307971072 -321577321707382784 --4058592856796797952 --4332173104504846336 --4203401486105955328 --1487474422256499712 -938946427049261056 --3730754500846909440 -4605899434772235264 -1505453659757018112 -2504221680366568448 --2231462350441578496 --3220313096435540992 -3843344174256572416 --720126925060525056 -4215282677882917888 --1032918871312677888 --4328285694199937024 --3585408229111540736 --1494200052231568384 -2077996288738239488 -1825999140710659072 --3513029022784182272 -3548111658011380736 --1981500682876144640 --3614174561296986112 -4586759650120641536 -3879637233662910464 -1481726243323315200 -1591404767839437824 -2510174775680794624 --2663513418830150656 --2460631539872309248 --3982210125759105024 -467523908599955456 --4568668727972387840 -3477617982068530176 -3860134672572145664 -2545766520754100224 --1005534590904193024 -4300484299155997696 -2113698088431073280 --2414853123245387776 -3116219598007805952 --2747901602533932032 -181519926506094592 -701264042524793856 -1966923860658286592 --578984308263307264 -2208269682591524864 -72326597501329408 -622708630764523520 -833494067803898880 --89018861838831616 -3689710693454470144 --2086166313881809920 -3322395175987523584 -3684157043166822400 --3292495896722102272 --42651169532587008 -3277504060828720128 --184888543070389248 -2655271889162041344 --1102307059863097344 --4276290841916584960 --2201145989496473600 --638770773973549056 --337095398299041792 --212602773538665472 -923086399507141632 -1129162656394696704 --2049439136914932736 -2844667257845038080 -4129045184353573888 --2478417815363526656 --3704037218735025152 -1825027311052946432 --1568612129245511680 --987696931943226368 --84279554762396672 --1427453456098709504 -1583080272312611840 --4215169160733633536 --2963503765155116032 --4055278987839194112 --1317693510192717824 -1023257087316052992 -3057175760964861952 -1580013684401240064 --4300780866457967616 --3424343954465562624 --1995197371933145088 -3495396409657316352 --3284743603936974848 --2461289496988239872 --3424481992195234816 --1146982129275085824 -1217705746883321856 --3878867895726635008 -2203782786710486016 -4176978587798477824 -183422732656559104 --1782092726228688896 --3005854137208514560 -1223067454576114688 -2309846376233676800 --1076376150335947776 -1058625537580236800 --4055753202462270464 --1780338712711723008 -3560314158411472896 --3916651331871032320 -4128475173697189888 --2891699317967926272 -20843686844395520 -1473133510246684672 --1627511998237314048 --4477284699227435008 -2680431932336390144 -2142013859429318656 -4472432039853580288 --2488652773959152640 --1403341189224606720 --2888571990358569984 --1562624947816066048 --1846611745438441472 -469125200497741824 --1226029737717295104 -5972945543285760 --3540939638315361280 -1956475008664796160 --766816561959806976 -579543731547023360 --4339482476333585408 --4582673199824441344 --3533065094240496640 -4294005961747273728 --104780895716119552 -4365568518875414528 -1641130865742172160 --3019472723200254976 --4112213384056940544 -566366401988107264 -4001052300200318976 --4268852661216141312 -3391047353568960512 -4213080076495669248 -566536647604084736 --2521383742502875136 -4473334249254214656 --1232779681348901888 -3288114829314469888 -4574299765481854976 --1850715146032606208 -2362607596130215936 -2262965117961573376 -4386286785785927680 -1819577938091064320 --1606672760148891648 --841351119667601408 -1637099195832724480 --1802600746417903616 -3111993263763336192 --3292645073823044608 --2736301631913363456 -4340002481522403328 --3865350614543900672 -3828794343122632704 --3691012076515430400 --2334163751338687488 -1329158178194675712 --2612961676441975808 --629183309451145216 -1777927573176982528 -3615192855775729664 --1003348888665011200 --3906196254285775872 --4535872167722219520 --2053812185921846272 --1827757461852890112 -2314406964940384256 -950413298040246272 --2187193611521825792 -872304672799101952 --884270266679260160 -3583750715035089920 -894992764793250816 --2961590882714616832 -452858172285393920 -2617399002171487232 -1733795941538203648 --568659501299599360 --4225398956369702912 --639612032576395264 --799199182225849344 -466020356532005888 -1778921800673633280 -1032029103013184512 --1950718781637661696 -1839215038643639296 -4264161324042726400 -4413973503322521600 -843849917748908032 --4015897701267139584 --1183182596436434944 --3236153030917110784 -4254772984080910336 --987289088570774528 --1293989827238643712 --896160342233218048 -2887694506282729472 -917953128207956992 --2128884490757441536 --3498024411252692992 -1688327217327098880 --272011916828106752 --1376705407504714752 -1597246807952873472 -1884800120624249856 --3152414763930450944 --687486090237118464 --3479705701746500608 --3882882520301149184 -1216640448651127808 --4392123706171386880 -4314174602225759232 --1910031068936317952 --4039281481863219200 --3988769551364846592 --3551269325196697600 -1919266650823601152 -1405685833928034304 --1075174634681499648 -3773216326765851648 -3795403451442511872 --4010111165717293056 --915748541488183296 -410721145272504320 -2228423317956601856 --743598594312871936 --3598365332901488640 --4346503576541521920 -4179261719732259840 -2517555844628081664 --3267976697539999744 -2903610120390473728 --3995205236169199616 -3591838518518871040 -3391688408803539968 --2439756456834612224 --2988651768567382016 --4608649732520819712 -184093566495978496 -1087718882437141504 -975107594886981632 --132862388031587328 -4216728881506642944 --2048625884199371776 -3824878658503244800 --1936341541504063488 --1163613102125675520 -284344211690755072 --2116633678760188928 --2246814190589143040 --931002467623400448 --812616209451639808 -1248669452181282816 -1667217954939030528 -3559555441972841472 -284623455466456064 --1813846460752329728 -1238676787372255232 --1244044571529841664 --561183972813616128 -3022478401500435456 --2670153409335395328 -3521325000463378432 -4593117054608336896 --3080216849364081664 -963204307177390080 --3755184371231815680 -833058780568323072 -2273833524279577600 -3688755811884708864 --937507350701174784 -676722937439111168 --386649612227514368 --3327669772662160384 --3947817967954973696 --4545459404381267968 --4125674331060768768 --1461419080071229440 --1178285668723141632 --2816157435501581312 -1469872795921934336 --3040964018456758272 --3960564823729251328 -2764941647374753792 --2525158651069178880 --3931667680729101312 -2784478217893291008 --1732988691047177216 --3067811148503272448 --3739787090192407552 -4272819514705380352 --1865046403724562432 -3913612211989877760 --771674862550865920 -2309610485377380352 --649078107270363136 -220498943755651072 --2469001901513708544 --210411995900778496 -528519582191699968 --3085068809334130688 -1887383452184119296 --3142222358850448384 -2022586599954971648 -2783742938135863296 -1178812133445397504 --4302323633571116032 -2551098591238002688 -4356113001986069504 --636924841877591040 --3741906369447255040 -2026168724753006592 -853995590413982720 -454892521188038656 --4027602925906329600 -4197294421013967872 --4021490719820161024 --3712833874094082048 -2125797015080431616 --2954360750533057536 --2239462466513640448 -1516516886665791488 --3657812289948268544 --1975416700516653056 --3542241253003785216 -3917899832667873280 -3454927579512085504 -4209804868411563008 --3354617648319068160 --3914884582972162048 -3593353429907471360 --3060195837081134080 -2077443524695887872 --827372535647710208 -3985617289233505280 --2265388155161175040 --2708154997746343936 -2804185548232950784 -353111979168103424 --4323023349858669568 --3422084905080254464 -674586850314184704 --2225580956328013824 --4423503314953028608 --2576948916038940672 -1424926284166032384 --1482533866974344192 --2335243466181492736 --4243320079985308672 --1111257871952145408 -4589531029083168768 -1397849464693025792 -3395018532517136384 -186008876951309312 -2262916423314894848 -1110785692709446656 -613173237568675840 -2166596532356111360 --1913799213184783360 --1452217264551200768 --4197476143804151808 --3165090807332974592 -3198369314552500224 -813938396713954304 -2952583148094505984 --2543186639900515328 --3204831595817323520 --617544957778086912 --2855789326970184704 --1593076061358545920 -826153924971432960 -146631789166592 --796685375089443840 --347152790640641024 --4254590933943159808 --2985763948167733248 -2852889638439092224 -3389389029482582016 --1770862816251552768 --4584629620617194496 --2687075014224839680 --386173797822276608 --3644997276964624384 -4415047872463201280 --784426089200735232 --3609452039028997120 -48732569770276864 -4237360084153824256 -2805757062710804480 -422874115963285504 --1777147906077927424 --3385102317752227840 --3789534977098121216 -888117522751520768 --1788324911003780096 -2177366037917004800 -1695635002795341824 -1727676774148818944 --2836303793426801664 -3612091273250398208 -2447878084668071936 -654864683508028416 -187436090074744832 --3264025068034166784 -2675341742893062144 --3849658023020452864 --1540115688735519744 --2223288941037513728 -2267049869349448704 -2150951899300135936 -1374702866045828096 -1067876237492124672 --2108031433468797952 --1489557161011365888 --1682512866847105024 -2696434367176385536 -3170125784860356608 -1221000732779874304 --3910707110844533760 -3675841010507918336 --529973390529300480 -4369938738567264256 -61242063081358336 -3765905521752999936 -1743566865162991616 --1920436914305679360 --3588036355615604736 --1894977867981026304 --3296212290862475264 -2907814353138972672 --2628560990602998784 --460501627275312128 --1866877896730629120 --1398928612525185024 --1730088508144049152 --4443066173339159552 --2413411180261731328 -2882485531150081024",$3055512838393176064$;$1864939115736911872$;$-1577328142765520896$;$335767374664564736$;$3045382075843539968$;$439667995708479488$;$-1316409260431646720$;$647942187289625600$;$3405847073300454400$;$-4337804611819923456$;$-256883574859695104$;$359699928266375168$;$1373160467131750400$;$1612580058859523072$;$2039282895947757568$;$-1344901521985736704$;$-1679152827453557760$;$-2799384227534292992$;$6745712979660800$;$-2222507279867383808$;$2700194744178921472$;$2114532747055864832$;$3829871084157752320$;$-1497419340272923648$;$-4289534714898700288$;$2558676434838623232$;$-4212429755946274816$;$3001929508185919488$;$3656458020374963200$;$-4533513596520295424$;$-1494547535727148032$;$-497088932937022464$;$-3112337177502457856$;$-2408281830247735296$;$-301834619152353280$;$1188191588339488768$;$4560230893315169280$;$-3979088099675663360$;$3715809427153107968$;$-2500430147304015872$;$-4079086000397952000$;$1914142129164111872$;$2738268878399708160$;$-2325404028703138816$;$1283494366163788800$;$1030281210453763072$;$-1131675405900314624$;$2016082284959073280$;$4090149531962636288$;$1363721669917135872$;$-3684231227439387648$;$-53484078190917632$;$-3725181665891150848$;$-2486322011256758272$;$4326414960675203072$;$-2617935279787018240$;$-230634036978476032$;$-2506709956972537856$;$1726469876902608896$;$-2430867899080249344$;$676963180924964864$;$821613180553807872$;$-600710386771440640$;$-2724921972671382528$;$352016119559516160$;$-588052973097266176$;$-1253077058227946496$;$1163016220355018752$;$-1026381591100785664$;$-449639738970605568$;$-1095614546196350976$;$2131140192318370816$;$3415983331838258176$;$3659710934911602688$;$4478799054157300736$;$-1483819630778866688$;$3755549110476410880$;$1905954394703262720$;$1912830724250360832$;$401839213546344448$;$-71507803274661888$;$-2852156951547882496$;$-832855588361843712$;$-2575337981636911104$;$4451635575004189696$;$-2570420026301602816$;$815213840174029824$;$-4273166585059891200$;$-4248738559377167360$;$-3534482224898066432$;$3439493267804372992$;$-4230315878789535744$;$550837723085453312$;$335780120145753088$;$-3794115073444452352$;$-3941156025283896320$;$-2338616492869680128$;$2345437789301764096$;$-187259690617823232$;$80851277873772544$;$-1583950698708338688$;$1758815839154035712$;$3053883366626105344$;$-4480774531307440128$;$-904488429077653504$;$4133388287805379584$;$-364757693862837248$;$134827111360905216$;$-2512434180688658432$;$-1921052817354294272$;$4112858511210841088$;$3882383463998295040$;$-2907378360205537280$;$-3492353776404940800$;$-779594570415934464$;$-1034215906652295168$;$3573289030130071552$;$-2364073156435313664$;$1696170360556687360$;$-2292852969362886656$;$-4343557743019053056$;$1390711672091108352$;$3558587105158072320$;$2928538030788058112$;$1432244130506809344$;$761891762503463936$;$3584922123327031296$;$-927015422081670144$;$-1073131342914269184$;$-4506765705898749952$;$885555526356897792$;$-4366074783101640704$;$-652561717648223232$;$-970914367399565312$;$3884631217280199680$;$1742655716514779136$;$-1983205335941642240$;$-2435225022001111040$;$3523370545676673024$;$-4508994494751428608$;$-3711202873079660544$;$-4534357010316966912$;$-70727371066877952$;$4034091531759597568$;$-4568897043271749632$;$4131593524408431616$;$2492192453467459584$;$809710723292447744$;$-2541994235537287168$;$1590552511884972032$;$3274028486742129664$;$-366027062090920960$;$-1821037588418025472$;$1643867685448256512$;$-2268703153007167488$;$-664114783356993536$;$58567078068475904$;$-1113061054537019392$;$-4245759045337175040$;$3080576543834550272$;$2092546158290710528$;$422742994672777216$;$-2537498442100797440$;$4425546876179733504$;$-3230388741798046720$;$-3549549408738275328$;$-3678212341968303104$;$4365958478342904832$;$-3655295852058049536$;$4066542558861798400$;$-3195130693111547904$;$-238064598778095616$;$2964725431835415552$;$-849979466514738176$;$4408675735279186944$;$-4564649131245678592$;$-1627420092030129152$;$449553578116312064$;$2049249443346553856$;$3116455972933912576$;$2164728192165496832$;$3681211614199391232$;$-1628769663989866496$;$-2774946818671134720$;$-4096596381107232768$;$-2395099488663480320$;$-3834419220628728832$;$-1461048224715744256$;$4531709919312998400$;$748026829393947648$;$-2458900933631652864$;$1002097977227913216$;$-1919329488651390976$;$-2089765957478649856$;$4487070619041370112$;$-939472743524560896$;$1447696572249098240$;$3790170427563049984$;$2136337821656391680$;$-63159792578823168$;$-3496125764305342464$;$-1183568626300418048$;$361633198758069248$;$4269943690294104064$;$2890360342294446080$;$-1748729623997323264$;$2797985567324418048$;$-2809939151236747264$;$3829870220567896064$;$-3007965899421440000$;$1290411409077192704$;$-4360052179365318656$;$44195218040835072$;$-3155726848106306560$;$-396428815299356672$;$-3701812424613122048$;$1326034261318436864$;$-4248099519838573568$;$959577041288646656$;$-4550301819342424064$;$4472720769577420800$;$-1352439258339251200$;$646249174861058048$;$-3981906728128471040$;$1396732097920512000$;$2544442046860481536$;$2779273768248432640$;$2092494526145318912$;$-2709465772387704832$;$3736659976936734720$;$-1792161079105126400$;$-482253033650050048$;$1047244799631796224$;$1019808032195811328$;$-584097312475027456$;$-3197186812745988096$;$2567210702622535680$;$3759781687686543360$;$113902384484983808$;$-2320478455116384256$;$874785706892533760$;$-3156496358284169216$;$-1617255538262456320$;$-4574634935661591552$;$3523690988595320832$;$3791187506707724288$;$-436751730002847744$;$-2245131878014237696$;$-2882971033753090048$;$4505569631049853952$;$4235774616276227072$;$854402299168445440$;$-4129621342331570176$;$2295193011514034176$;$1319914172494483456$;$4498389382152058880$;$-4608829980743874560$;$-116404492236466176$;$3083840809364218880$;$-3209572335823165440$;$2640405273234583552$;$-787559432757843968$;$1246732084506251264$;$848182890783565824$;$-4524003826635963392$;$869691114727233536$;$1015459208211987456$;$3362171726687309824$;$1186694017873617920$;$4088500412510605312$;$1230566965973203968$;$-1556500104535127040$;$-1453092157401969664$;$-2176618939061004288$;$-3482926463682429952$;$2601087226035620864$;$1831403355150567424$;$1338309951457558528$;$-2602999364067840000$;$2680600845990819840$;$-4140173417512461312$;$-1818956465195985920$;$1342714414926157824$;$1237596066352507904$;$4037083153933831168$;$2595575294057655296$;$-3245858702040012800$;$4532503234713837568$;$-2521225434100321280$;$2437968323185660928$;$-4471573341921353728$;$1294880313202015232$;$3464983559585670144$;$2746174323596561408$;$-610716786031672320$;$-4221850685903248384$;$2743326186602238976$;$1955699625795992576$;$-2696879425937310720$;$2505116592178266112$;$1185081438323254272$;$3608441762431350784$;$-2209352938696983552$;$-1522557156135906304$;$-4448363254622015488$;$-3712381011668349952$;$-2664126545221188608$;$309322445733753856$;$-4576831792446342144$;$-4503458375628719104$;$-4409095073612942336$;$-4431051870249827328$;$1570096136831191040$;$2116030473667610624$;$-336327244786299904$;$-96797393702244352$;$1864106949523614720$;$1422603749773817856$;$-1669174732171431936$;$4600116128232165376$;$-3042804137032900608$;$1980010152467600384$;$-99886396784698368$;$3546010512063741952$;$-2853101013369764864$;$-3351731090191047680$;$-17262780538951680$;$3380085799018496000$;$2311753660721308672$;$-4022844783058930688$;$-664710099939906560$;$-2289808522010275840$;$-4033781134294090752$;$588617533667454976$;$-1175513231907404800$;$293673371069889536$;$-4179046933433443328$;$-815281052801845248$;$1436332203351136256$;$-3250594014587277312$;$-1026130399815230464$;$1482881135730233344$;$-4054479252531831808$;$581557048121541632$;$-3400182144258187264$;$792942374168941568$;$4326139228080335872$;$222743428043404288$;$-1538442896663933952$;$-2613462251844198400$;$-4490777570725963776$;$937333040668521472$;$-386540385968449536$;$-4319795224337926144$;$-400186347432105984$;$241539592253835264$;$-2672687507620562944$;$-614819965107812352$;$2110084366883094528$;$-2432526365517933568$;$2679471395377408000$;$1486350431442107392$;$-2292253649110553600$;$1517367234456419328$;$3529787819532887040$;$4175921013992939520$;$2300316090727178240$;$2677037930104031232$;$-192059036805299200$;$906865564867466240$;$3976386761553028096$;$-3421285285341612032$;$-3709274712231435264$;$-3678740929328719872$;$-3027286545012990976$;$385463434136326144$;$3034409679119160320$;$-158747373261516800$;$3576933161959671808$;$3877719732569424896$;$128101607515795456$;$2646234237344619520$;$-3956940391449036800$;$-3842615778217574400$;$-529992470002034688$;$2010767659504249856$;$3000578666433750016$;$-1620586959700137984$;$-2051672431428466688$;$-80541033529632768$;$-918010404684778496$;$2662269245150999552$;$-4582554707511305216$;$-1478907636205961216$;$-4312649909045373952$;$3782599937239889920$;$1520533259492930560$;$2936986928555220992$;$-4564973066949036032$;$2793209688288484352$;$-3838450212956694528$;$-669999192178935808$;$-1778164959740659712$;$4391077531920768000$;$-3921665510903346176$;$236907599341881344$;$2347403539798292480$;$-733828788834455552$;$-3937501031139060736$;$2769942385187916800$;$1413361414892530688$;$321606678718297088$;$-3684522089131037696$;$-2908148045235446784$;$3163537508203755520$;$-690186883800480768$;$-663444579055635456$;$-95398094905380864$;$1313585051417805824$;$-2522901496360823808$;$2197247797599005696$;$-4239604712173341696$;$-3791956109017957376$;$-1269321158915249152$;$2505246541886576640$;$-304868657588058112$;$-2424189448889495552$;$-501224332349333504$;$3281413892368801792$;$3649747729861081088$;$-492704194449179648$;$-646522407538723840$;$869847523858230272$;$-3774325469483240448$;$1085078131949064192$;$454651451171122176$;$1173279860877874176$;$-2771217414011209728$;$2515822543919110144$;$1584212299645409280$;$-1875134667305113600$;$-1207614586144706560$;$-1846407125908241408$;$-934147249492226048$;$1955148486937194496$;$2715907527225107456$;$-1472474953861839872$;$-2376348222330612736$;$-1179595759726876672$;$-374345219547618304$;$-1867669808982367232$;$-2260587522344359936$;$-1466235830730723328$;$2787131856497411072$;$3860379941891211264$;$4082768109746657280$;$-4214343191217542144$;$1242673423326718976$;$3922504571349900288$;$788551070618311680$;$3536799944299183104$;$-1987781164791140352$;$-4347946461857597440$;$2005937062540940288$;$3448899795687480320$;$3481714114357543936$;$86280747303601152$;$-47716048464062464$;$2197584388384928768$;$1387267406329435136$;$-2882789147012578304$;$-3175028256922815488$;$-2304995622778309632$;$-1907973500092862464$;$2236239363730461696$;$-3847694616274129920$;$-2392600326494427136$;$-2926082300004472832$;$-1196922582625255424$;$2873356565615502336$;$-3729362292412459008$;$3468683253701687296$;$-2480962501236096000$;$-843190541260777472$;$3961242733117274112$;$-3942412372648259584$;$2058764055683138560$;$2128273213621332992$;$-363113888339511296$;$-3347144302421410816$;$4588720322876376064$;$4599929108668956672$;$-1342679071627210752$;$-2692425589152751616$;$-70655417919363072$;$3537445033246996480$;$-3703435031038511104$;$-2593886417938691072$;$-2970502280535183360$;$3662345369099876352$;$1782197488351020032$;$-3031063586652087296$;$-1132585578926995456$;$-1118652184962788352$;$2880805935818674176$;$3783508583504388096$;$1147078989298159616$;$1887849213576244224$;$3931670456845533184$;$-2949325578349303808$;$3327666783336360960$;$-1832122383280993280$;$-4375662072307971072$;$321577321707382784$;$-4058592856796797952$;$-4332173104504846336$;$-4203401486105955328$;$-1487474422256499712$;$938946427049261056$;$-3730754500846909440$;$4605899434772235264$;$1505453659757018112$;$2504221680366568448$;$-2231462350441578496$;$-3220313096435540992$;$3843344174256572416$;$-720126925060525056$;$4215282677882917888$;$-1032918871312677888$;$-4328285694199937024$;$-3585408229111540736$;$-1494200052231568384$;$2077996288738239488$;$1825999140710659072$;$-3513029022784182272$;$3548111658011380736$;$-1981500682876144640$;$-3614174561296986112$;$4586759650120641536$;$3879637233662910464$;$1481726243323315200$;$1591404767839437824$;$2510174775680794624$;$-2663513418830150656$;$-2460631539872309248$;$-3982210125759105024$;$467523908599955456$;$-4568668727972387840$;$3477617982068530176$;$3860134672572145664$;$2545766520754100224$;$-1005534590904193024$;$4300484299155997696$;$2113698088431073280$;$-2414853123245387776$;$3116219598007805952$;$-2747901602533932032$;$181519926506094592$;$701264042524793856$;$1966923860658286592$;$-578984308263307264$;$2208269682591524864$;$72326597501329408$;$622708630764523520$;$833494067803898880$;$-89018861838831616$;$3689710693454470144$;$-2086166313881809920$;$3322395175987523584$;$3684157043166822400$;$-3292495896722102272$;$-42651169532587008$;$3277504060828720128$;$-184888543070389248$;$2655271889162041344$;$-1102307059863097344$;$-4276290841916584960$;$-2201145989496473600$;$-638770773973549056$;$-337095398299041792$;$-212602773538665472$;$923086399507141632$;$1129162656394696704$;$-2049439136914932736$;$2844667257845038080$;$4129045184353573888$;$-2478417815363526656$;$-3704037218735025152$;$1825027311052946432$;$-1568612129245511680$;$-987696931943226368$;$-84279554762396672$;$-1427453456098709504$;$1583080272312611840$;$-4215169160733633536$;$-2963503765155116032$;$-4055278987839194112$;$-1317693510192717824$;$1023257087316052992$;$3057175760964861952$;$1580013684401240064$;$-4300780866457967616$;$-3424343954465562624$;$-1995197371933145088$;$3495396409657316352$;$-3284743603936974848$;$-2461289496988239872$;$-3424481992195234816$;$-1146982129275085824$;$1217705746883321856$;$-3878867895726635008$;$2203782786710486016$;$4176978587798477824$;$183422732656559104$;$-1782092726228688896$;$-3005854137208514560$;$1223067454576114688$;$2309846376233676800$;$-1076376150335947776$;$1058625537580236800$;$-4055753202462270464$;$-1780338712711723008$;$3560314158411472896$;$-3916651331871032320$;$4128475173697189888$;$-2891699317967926272$;$20843686844395520$;$1473133510246684672$;$-1627511998237314048$;$-4477284699227435008$;$2680431932336390144$;$2142013859429318656$;$4472432039853580288$;$-2488652773959152640$;$-1403341189224606720$;$-2888571990358569984$;$-1562624947816066048$;$-1846611745438441472$;$469125200497741824$;$-1226029737717295104$;$5972945543285760$;$-3540939638315361280$;$1956475008664796160$;$-766816561959806976$;$579543731547023360$;$-4339482476333585408$;$-4582673199824441344$;$-3533065094240496640$;$4294005961747273728$;$-104780895716119552$;$4365568518875414528$;$1641130865742172160$;$-3019472723200254976$;$-4112213384056940544$;$566366401988107264$;$4001052300200318976$;$-4268852661216141312$;$3391047353568960512$;$4213080076495669248$;$566536647604084736$;$-2521383742502875136$;$4473334249254214656$;$-1232779681348901888$;$3288114829314469888$;$4574299765481854976$;$-1850715146032606208$;$2362607596130215936$;$2262965117961573376$;$4386286785785927680$;$1819577938091064320$;$-1606672760148891648$;$-841351119667601408$;$1637099195832724480$;$-1802600746417903616$;$3111993263763336192$;$-3292645073823044608$;$-2736301631913363456$;$4340002481522403328$;$-3865350614543900672$;$3828794343122632704$;$-3691012076515430400$;$-2334163751338687488$;$1329158178194675712$;$-2612961676441975808$;$-629183309451145216$;$1777927573176982528$;$3615192855775729664$;$-1003348888665011200$;$-3906196254285775872$;$-4535872167722219520$;$-2053812185921846272$;$-1827757461852890112$;$2314406964940384256$;$950413298040246272$;$-2187193611521825792$;$872304672799101952$;$-884270266679260160$;$3583750715035089920$;$894992764793250816$;$-2961590882714616832$;$452858172285393920$;$2617399002171487232$;$1733795941538203648$;$-568659501299599360$;$-4225398956369702912$;$-639612032576395264$;$-799199182225849344$;$466020356532005888$;$1778921800673633280$;$1032029103013184512$;$-1950718781637661696$;$1839215038643639296$;$4264161324042726400$;$4413973503322521600$;$843849917748908032$;$-4015897701267139584$;$-1183182596436434944$;$-3236153030917110784$;$4254772984080910336$;$-987289088570774528$;$-1293989827238643712$;$-896160342233218048$;$2887694506282729472$;$917953128207956992$;$-2128884490757441536$;$-3498024411252692992$;$1688327217327098880$;$-272011916828106752$;$-1376705407504714752$;$1597246807952873472$;$1884800120624249856$;$-3152414763930450944$;$-687486090237118464$;$-3479705701746500608$;$-3882882520301149184$;$1216640448651127808$;$-4392123706171386880$;$4314174602225759232$;$-1910031068936317952$;$-4039281481863219200$;$-3988769551364846592$;$-3551269325196697600$;$1919266650823601152$;$1405685833928034304$;$-1075174634681499648$;$3773216326765851648$;$3795403451442511872$;$-4010111165717293056$;$-915748541488183296$;$410721145272504320$;$2228423317956601856$;$-743598594312871936$;$-3598365332901488640$;$-4346503576541521920$;$4179261719732259840$;$2517555844628081664$;$-3267976697539999744$;$2903610120390473728$;$-3995205236169199616$;$3591838518518871040$;$3391688408803539968$;$-2439756456834612224$;$-2988651768567382016$;$-4608649732520819712$;$184093566495978496$;$1087718882437141504$;$975107594886981632$;$-132862388031587328$;$4216728881506642944$;$-2048625884199371776$;$3824878658503244800$;$-1936341541504063488$;$-1163613102125675520$;$284344211690755072$;$-2116633678760188928$;$-2246814190589143040$;$-931002467623400448$;$-812616209451639808$;$1248669452181282816$;$1667217954939030528$;$3559555441972841472$;$284623455466456064$;$-1813846460752329728$;$1238676787372255232$;$-1244044571529841664$;$-561183972813616128$;$3022478401500435456$;$-2670153409335395328$;$3521325000463378432$;$4593117054608336896$;$-3080216849364081664$;$963204307177390080$;$-3755184371231815680$;$833058780568323072$;$2273833524279577600$;$3688755811884708864$;$-937507350701174784$;$676722937439111168$;$-386649612227514368$;$-3327669772662160384$;$-3947817967954973696$;$-4545459404381267968$;$-4125674331060768768$;$-1461419080071229440$;$-1178285668723141632$;$-2816157435501581312$;$1469872795921934336$;$-3040964018456758272$;$-3960564823729251328$;$2764941647374753792$;$-2525158651069178880$;$-3931667680729101312$;$2784478217893291008$;$-1732988691047177216$;$-3067811148503272448$;$-3739787090192407552$;$4272819514705380352$;$-1865046403724562432$;$3913612211989877760$;$-771674862550865920$;$2309610485377380352$;$-649078107270363136$;$220498943755651072$;$-2469001901513708544$;$-210411995900778496$;$528519582191699968$;$-3085068809334130688$;$1887383452184119296$;$-3142222358850448384$;$2022586599954971648$;$2783742938135863296$;$1178812133445397504$;$-4302323633571116032$;$2551098591238002688$;$4356113001986069504$;$-636924841877591040$;$-3741906369447255040$;$2026168724753006592$;$853995590413982720$;$454892521188038656$;$-4027602925906329600$;$4197294421013967872$;$-4021490719820161024$;$-3712833874094082048$;$2125797015080431616$;$-2954360750533057536$;$-2239462466513640448$;$1516516886665791488$;$-3657812289948268544$;$-1975416700516653056$;$-3542241253003785216$;$3917899832667873280$;$3454927579512085504$;$4209804868411563008$;$-3354617648319068160$;$-3914884582972162048$;$3593353429907471360$;$-3060195837081134080$;$2077443524695887872$;$-827372535647710208$;$3985617289233505280$;$-2265388155161175040$;$-2708154997746343936$;$2804185548232950784$;$353111979168103424$;$-4323023349858669568$;$-3422084905080254464$;$674586850314184704$;$-2225580956328013824$;$-4423503314953028608$;$-2576948916038940672$;$1424926284166032384$;$-1482533866974344192$;$-2335243466181492736$;$-4243320079985308672$;$-1111257871952145408$;$4589531029083168768$;$1397849464693025792$;$3395018532517136384$;$186008876951309312$;$2262916423314894848$;$1110785692709446656$;$613173237568675840$;$2166596532356111360$;$-1913799213184783360$;$-1452217264551200768$;$-4197476143804151808$;$-3165090807332974592$;$3198369314552500224$;$813938396713954304$;$2952583148094505984$;$-2543186639900515328$;$-3204831595817323520$;$-617544957778086912$;$-2855789326970184704$;$-1593076061358545920$;$826153924971432960$;$146631789166592$;$-796685375089443840$;$-347152790640641024$;$-4254590933943159808$;$-2985763948167733248$;$2852889638439092224$;$3389389029482582016$;$-1770862816251552768$;$-4584629620617194496$;$-2687075014224839680$;$-386173797822276608$;$-3644997276964624384$;$4415047872463201280$;$-784426089200735232$;$-3609452039028997120$;$48732569770276864$;$4237360084153824256$;$2805757062710804480$;$422874115963285504$;$-1777147906077927424$;$-3385102317752227840$;$-3789534977098121216$;$888117522751520768$;$-1788324911003780096$;$2177366037917004800$;$1695635002795341824$;$1727676774148818944$;$-2836303793426801664$;$3612091273250398208$;$2447878084668071936$;$654864683508028416$;$187436090074744832$;$-3264025068034166784$;$2675341742893062144$;$-3849658023020452864$;$-1540115688735519744$;$-2223288941037513728$;$2267049869349448704$;$2150951899300135936$;$1374702866045828096$;$1067876237492124672$;$-2108031433468797952$;$-1489557161011365888$;$-1682512866847105024$;$2696434367176385536$;$3170125784860356608$;$1221000732779874304$;$-3910707110844533760$;$3675841010507918336$;$-529973390529300480$;$4369938738567264256$;$61242063081358336$;$3765905521752999936$;$1743566865162991616$;$-1920436914305679360$;$-3588036355615604736$;$-1894977867981026304$;$-3296212290862475264$;$2907814353138972672$;$-2628560990602998784$;$-460501627275312128$;$-1866877896730629120$;$-1398928612525185024$;$-1730088508144049152$;$-4443066173339159552$;$-2413411180261731328$;$2882485531150081024$,⬝促뮇숷㱟爆첗ଥꁍ흕䠖⭠裡紽蝃ᅅൻ䀬ꬶꁡ⚌迮毷㎱픊ꑍ맴脪硕렧픶禍湼앃쒢짣砃s唞ᒏ﷓蔽쨋鎮ᑝ㖣垵膷⭪쏕ᥴ䥝芸ۡ릅錄軥㓴㑸揰薋빕㥂蛞⎢佚ᛡݸ啳ⶐ筽ꍡ旫泊ϴ耪ᱯ架쿿༌蒗燒⬦䜳藾齬쳂敛ቜἭꕈꎚ讔㍡船몯㫍郡ꍳ꧸柇「断鏳浹⡿쬃⸼㣲铷눊䉤쉣ࣈfi긯㨻ⶣ碄慙麰쪺壕측錑슏⴮颸ꊣ쒴⛊襾喛럝鵻侟䜫━Ę캡ΰ⩞䣒ᝁ㧥叓更炈䈢襟Ɥ灛맊⭨늦ꎬ뾮䯅쑚쨗韓㒰鴭ꡝ쒽刃醒䩩ٗ鷞﹖貅뜛ᝂ쨉蒰௬厅ꇗ⺻㔀앾䛪ᥝ콘䫓趄噏뫛损텉幽Ἐ᪈䒴㪻暽ፎ╀㎌橸矖䵽搴茄ੲ虑∍睾ꃋ覴瓹侘Ꝇ嫧傝랯䔜踞羀򊕊씈숢櫑껇ݨ픧꽖鋅逎㔓ᱠ璋쪙놦Ἃ葮㲢魮휗䀄䢯벓岻쓝뫳⏼從⼭ꊳꯦ墄Ვ鰏妇燐弫ᷢ㲺笀៲慯⌷툒탭ツᎭ㓚顛療緄գꉵ๒龼㳩眾屽꺦훤턧ꅄ饍틩ፌퟫⲋ⭿ㄠᶨ봬䥇羽頋ㅿ艼䳻㶆쒬䗉ᡔࡎኳ山蛸᫿덣殬瞴羦﹅㐏矑腻鱗㺋뗚ㄒ金䳒崳쯴谗窂Є൤퐪杫효襹啫ಋ櫂镓ᗆ群瓞ቻⷸ᫂蓏첶⚅嬄₍崇汯䔥邟敱ٯ뎞嫹밒묺阁残巌㣠۶輊넪鲐椰測㹈Ᲊൈ䭄뼰鲕쬒価‽먁⊄䫫竎킗ꄦ魺എ絖Ჱᜠ蟴㲚봍쯇䉃葿㺃ꔪ뽲腸딽蝬섦橣ꯪ猥靸냟煗h꪿䲢賷३契ᷪ郯遅鯁㼘ဃ闕ถ벦㱋﬒ꢣ쩹ƨ﷏阣眔후摈틹߳䇬컹롺偝璶ꋽ䍠Ⲏ턻ힸ㝘憔ꓞꮱ㺛桱ﳎ雰锃ꤜߡ岡徫Ⲁ茌訇⸆೴땂籷璉ங캼燳选桤ꐢ睼㫣ꋩ륟坜⧴㴨ᗔ纼㈣ᶸ焏㈌᯲霏됎籓뵰怌ᣨ耟虘ᨙෂ䟼ᠿ摰煕䞋띹Ꞅ潪꬘䄽㗑쥲䠏焈⩪愓趱쇼㿇▽ꮃ峘㘩닷꺺鴶쨬䆿趧뾀閛⭍탈큧倯뭊뺹分⑃逷翠헳ꩣᶧᅱ뤢絲Ŧ⧛ಧ๼獇砸擈㊢⾾颧튩锸強󹙎崰뼤ㄳ섶묎柉熱꼋吉똿쌨퓄囄厵㥱뭐阻꒜⩿㔱섞ꥸ橑걎㸒⁀ⷉᲁ칾컷ᘤᎦ䟈켟觲휄ᦱ宏팍䅄쎿ᄘ䳢멉빤ᙈ⦏勼墌ṁ乹N꺢굉⤩̎㐽睈គ係촖騙럳桴箇跥ꫭ⵿濘ₗᖅ顋誄ሧ攌⋌䣖閬띭㿟략㸐첉賝鎨᎘苻첳絍稀尟쳖㐄粟䪌ﯜ䭎䊐ˁ㵻烌꛴傦궾ஓ긜䟻퐂敘饃鹬㦦紕ၰ칅缾ೆ蜑벾ৢ運⭟咑籨択軫芋再풣ᢹퟞ᩻戾鿻瞹뤉່継轲赔䴌၄⍒煴맟瀸ῇ꼄ꮼᏢﴍ覑闶胣쉞显兀掽탏򉡗䝣馱㒹ⴳ隌찗秡ힳ⛺뻈됀죏㉘ɯ↊䱵좥䳈뼯養뛛༥켻ꛌ᚞ԯ彆㴲ᜤ옛ᤨﶈﰔ浌勽펦弙㨔득ᕌ䅶蟎궽ꃩ佭⭦蹞瑣ď럆˱䦏캙⤐焙끩뢿쎜䴞牕, -26,,1443154423.15,,߷=.dc$FΪcHiɏIenJd=QV 3,,"{""a"":3.0874081573352093e+307,""b"":""\u8c33\uf579\ufeb9\ub592\uada7\u3ce8\uc85c\u3315\u504d\u7754(\u2ab4\u4e76\u8be4\uab02\u00c7\ub25c\ueb83\u4a72\u8fb7\u7eef\ua67f\uf6c2\u1489\ufd0b\ubf90\ue427\ua6cf\ud571\uc5a0\u82db\ucda0\u32c1\udb8f\ue6af\ub23c\u4078\u7c8b\ude4e\ucb2d\udcb5\uf811\uf242\u552a\u80c8\u0192\ubbed\u01ca\ub527\u2cc6\u2ca1\u78d9\u4938\u73b6\u329d\u7f9e\ud8e3\u95dc\u1fe2\uf98b\ub719\u7798\u08dc\u6d86\uf54b\u37c8\u8175\ude86\u266a\ue8d4\u55d7\u2d13\ua32c\u1d2d\u04e2"",""\u798f \u9152\u5427"":{""fu"":8.29056908880049e+307,""bar"":1.6906549971498146e+308}}",,"4219766984959730688 --4224296857999632384 --3615285906003154944 -596649663357489152 -2153328528551640064 --2447947479096686592 -1607064892734479360 --1204857329305271296 -1625765037486238720 --1751075928353612800 -3379211627343312896 -3022882952471340032 --2020519551743922176 -4415571343826828288 -1528588779931985920 --2190323809656860672 -1897044771920835584 -1115130729148132352 -1564041000058445824 --3726774142484661248 -696594169554203648 -670622546621566976 --1643049290194140160 --2480636685355618304 -288254370289789952 --2116451483971129344 --3465156483942844416 --3814497991121645568 -512591896846434304 -2121088379203471360 --3401064924231228416 --3240363593734083584 -4296664112995721216 -931661063156769792 -3112672400858363904 -1418521321759624192 --2451474495611613184 --44268023912101888 --3518222177115870208 --239832786017385472 -3637396732194591744 -2745959901736562688 -3675478002119069696 --709177442999021568 --213226944665835520 --1289550615194679296 -3675180953494870016 -474054135598503936 -4551793155262864384 --581174890579348480 -3577481772310633472 -3760301666023890944 -4233283873798022144 --3935019403497143296 --36605533666649088 -3922766999862710272 --4051197964709643264 -2557156913727513600 -2060154580500034560 --3961019167057153024 -866388431815986176 --333254120183488512 -591610100703041536 --662149500265437184 -4520934733022289920 --1148316894964248576 --1722257046234699776 -2477894549799728128 -411517898455984128 --2388053617463856128 --1475234813268936704 -495106434751894528 --860185801036795904 -1441274875244804096 --686126250441911296 --3202041990267547648 --2188463657516372992 -2368596819152212992 --3678002157566067712 -515813434523089920 -879427428329761792 --3794673881091470336 -3898073613371108352 --921057543360353280 -2145033417062999040 --1427360865582941184 --2737825571599046656 -3049721012868299776 --3120299274987328512 -3799004070392303616 -1511573984554054656 -3917564003156618240 --4514360764873426944 -3700491166816138240 -1021458461166920704 --1950392255230801920 --3569149327919521792 --4065131521761069056 -695567591694407680 -2900301793677930496 --785124457781908480 --3740067010502567936 --3226340489052180480 --470792654368305152 -1057089289788609536 -3971145393790130176 -3146490067641720832 --1785114549991589888 --4179847809955886080 --720193897829299200 --588907094646677504 -2046177805230324736 --2068535550296886272 --2134916959603727360 --2056701897357601792 -4411952443212444672 -2971892430480540672 -3092369321612261376 --2192746646520491008 -1922972113637709824 -2655521778310615040 --3910654317911638016 --1605808793767491584 -1392194755301233664 --3232453688556262400 --827738275563829248 -629397411793817600 -3753089653618988032 --1491302054012815360 -2566845716148672512 -2883524951486513152 --2100598833945825280 --2820834981959081984 --4327902550422164480 --1425826873371188224 -1958101372069739520 -3434563905565109248 -4407904078988529664 -2619666761615544320 -2678881304766163968 --3231301556053794816 --1530116973095438336 -4283207921884570624 -3032831057013148672 --171111913299059712 -1222843459745475584 --4363081207557468160 --37449287272534016 --2300276296610601984 -3849517388294202368 --2716304280379845632 --3546468929682401280 -2809783686487976960 --2479344945448359936 --3193816395711413248 -2961352666318880768 -2776391191411786752 --880138951843290112 -858522050983412736 -3619278212266897408 --1404032326231757824",$4219766984959730688$;$-4224296857999632384$;$-3615285906003154944$;$596649663357489152$;$2153328528551640064$;$-2447947479096686592$;$1607064892734479360$;$-1204857329305271296$;$1625765037486238720$;$-1751075928353612800$;$3379211627343312896$;$3022882952471340032$;$-2020519551743922176$;$4415571343826828288$;$1528588779931985920$;$-2190323809656860672$;$1897044771920835584$;$1115130729148132352$;$1564041000058445824$;$-3726774142484661248$;$696594169554203648$;$670622546621566976$;$-1643049290194140160$;$-2480636685355618304$;$288254370289789952$;$-2116451483971129344$;$-3465156483942844416$;$-3814497991121645568$;$512591896846434304$;$2121088379203471360$;$-3401064924231228416$;$-3240363593734083584$;$4296664112995721216$;$931661063156769792$;$3112672400858363904$;$1418521321759624192$;$-2451474495611613184$;$-44268023912101888$;$-3518222177115870208$;$-239832786017385472$;$3637396732194591744$;$2745959901736562688$;$3675478002119069696$;$-709177442999021568$;$-213226944665835520$;$-1289550615194679296$;$3675180953494870016$;$474054135598503936$;$4551793155262864384$;$-581174890579348480$;$3577481772310633472$;$3760301666023890944$;$4233283873798022144$;$-3935019403497143296$;$-36605533666649088$;$3922766999862710272$;$-4051197964709643264$;$2557156913727513600$;$2060154580500034560$;$-3961019167057153024$;$866388431815986176$;$-333254120183488512$;$591610100703041536$;$-662149500265437184$;$4520934733022289920$;$-1148316894964248576$;$-1722257046234699776$;$2477894549799728128$;$411517898455984128$;$-2388053617463856128$;$-1475234813268936704$;$495106434751894528$;$-860185801036795904$;$1441274875244804096$;$-686126250441911296$;$-3202041990267547648$;$-2188463657516372992$;$2368596819152212992$;$-3678002157566067712$;$515813434523089920$;$879427428329761792$;$-3794673881091470336$;$3898073613371108352$;$-921057543360353280$;$2145033417062999040$;$-1427360865582941184$;$-2737825571599046656$;$3049721012868299776$;$-3120299274987328512$;$3799004070392303616$;$1511573984554054656$;$3917564003156618240$;$-4514360764873426944$;$3700491166816138240$;$1021458461166920704$;$-1950392255230801920$;$-3569149327919521792$;$-4065131521761069056$;$695567591694407680$;$2900301793677930496$;$-785124457781908480$;$-3740067010502567936$;$-3226340489052180480$;$-470792654368305152$;$1057089289788609536$;$3971145393790130176$;$3146490067641720832$;$-1785114549991589888$;$-4179847809955886080$;$-720193897829299200$;$-588907094646677504$;$2046177805230324736$;$-2068535550296886272$;$-2134916959603727360$;$-2056701897357601792$;$4411952443212444672$;$2971892430480540672$;$3092369321612261376$;$-2192746646520491008$;$1922972113637709824$;$2655521778310615040$;$-3910654317911638016$;$-1605808793767491584$;$1392194755301233664$;$-3232453688556262400$;$-827738275563829248$;$629397411793817600$;$3753089653618988032$;$-1491302054012815360$;$2566845716148672512$;$2883524951486513152$;$-2100598833945825280$;$-2820834981959081984$;$-4327902550422164480$;$-1425826873371188224$;$1958101372069739520$;$3434563905565109248$;$4407904078988529664$;$2619666761615544320$;$2678881304766163968$;$-3231301556053794816$;$-1530116973095438336$;$4283207921884570624$;$3032831057013148672$;$-171111913299059712$;$1222843459745475584$;$-4363081207557468160$;$-37449287272534016$;$-2300276296610601984$;$3849517388294202368$;$-2716304280379845632$;$-3546468929682401280$;$2809783686487976960$;$-2479344945448359936$;$-3193816395711413248$;$2961352666318880768$;$2776391191411786752$;$-880138951843290112$;$858522050983412736$;$3619278212266897408$;$-1404032326231757824$,ꧥ鐿颀⁰ꇍﻒય脰蝱㕷뷖颚Ⓢ桳㉄廰獯↓揪쇏學镄穥ᯩナ䅀쾼ࡤ怬誽Ʋ杌䦉헊ﳯ杧㢑篓ᥐ殟⻚㯙㳨깤將ᘎ돱䠱଺虈屸認基壬ᓧ釿䅛冶滦ꗦ⃹臰߀췙愃슎줵뾬ⳁㅐ硋枊옶菚昉碐ﷻ꒨㎏ቈ灯욹㧼⃍蛸㫰鶶駉렁ዴ寖Ᏽ䵚鮥鼝펮剛丄풴錛娈啻삭좀䞧෎Ù䊜觱峯셤豓蛘᧤ř軑俆淭꬝長⬷豇鰮迆窅챘᪵琗쉋緫푮㹧בụ⌊爬嚕皍씿쿠뢫}ೄ㨣뾪菦笞ퟘᵕ謶팙㣛鹤›靉ﻇ㑯ꦸ⥕랮ᱲ殌￙귧졻糊腪Ƣ뉣粎䃷䤈癘䓟䌾풝ဣꪫ럷헅녽杠뉳钅豨稅ೡ쟠﯒ﻡ쬏썂腴࿀够ዚ关閚正㒡ոね⢝겥㹘篈屎蟭멸㰸㪃㸘苻慡픗獗ߍꊔ터㨑뉍ᗶ霅鑢ဎ勠㩙ꅳ㱩ꮑ䀃⧟껸橊줇读Ä叚鿉ꤎํṦ싔댇욲杓꿍뛹麷䔢䰣㩚뉛旮필㸦ﴧᤝኪﱉ絋᳦쌛洴Ꝑ줼Წ쓱묮䲔講Ƴ햗単穰進腙嚾闏唦頑儠⌆禽岯፵簁椕듖ꮔ겄췜뤲𯖥炰췦词༣鿠੡崜昬䱻㔂恸乥ꭚ奻簡昭핒濌쐌ꊓ顓튊놫ꓱ老풹礪㓾ꊄ榖騬풉䣌ⷆ柵ﳛ겼ﰅ鑻골횐톕鈗ᶇ魦⢹ꪒ蕶ྠ귰폟戳盛⡂⇽灍繷ꊊ씇麥馁挸ᑫ⋍꿎䱸默컶ﳣ뺺䵺톿㺁焥螊䀺꼺枪睩浻郞㫖䢎뺔쬘ⵢﳾ絛뙖︫沬‭鰢潡⊲竛촷䜼㗋Êﬢﰡ祥ॷ점맷஥턠醆鶌, -27,,1443154423.16,, ռ}`19LH'Q2hrMpICR~#%:-w<%LU,,"{""a"":5.56878791276051e+307,""b"":""\u92d2\u37bc\u8d79\u5e24\ub85b\ua3b3\uac2d\ua3c8\u0178\u29c8\uba12\u8ea8\u500f\u0797\udbe5\ufd07\u28dc\uddf3\u66c3\u00bc\u8322\ucc0d\ua940\ud9bc\ue887\u2677\uab3e\u68e0\uffce\u1f77\u67ed\u757a\u8e54\udc9f\u12da\ua44d\u6cd2\u0503\u0207\u1ff8\u9387\u2ea0\u32ba\u3d03\ub8dd\uaf38\u2a9a\u8245\u446d\u6380\u93df\u3f14\u7f44\u58a8\u241c\uf641\uaa93\uc104\ue5be\u01dd\ucd38\u9cbf\u3dde\u82ce\u942e\uf51e\u0ce6\u1571\ua95f\ud99c\ue29f\u473e\u3e54\u00e1\ua6f4\u2562\u3b84\ue00e\ub21e\u5190\ufae3\uda0d\ub3f5\u3598\uf06d\u66d0\u03b5\u5c4d\u8748\u79e1\u549a\u9071\uaf19\u7ef1\uef4c\u62ca\u8209\ub40c\ucd9c\u4937\uddeb\u23c0\u9dc7\u6fbe\u8d53\u34cd\u4ebb\ub0d0\u4dd6\u8c31\uea27\ufbee\ue4cf\u3cc7\u2d80\u39a8\u5cf2\ue826\ufa13\u1dec\u10a0\ubefc\u9a0f\u7ead\ua032\u42f9\uc988\ud8a2\u3a7e\u1717\u5620\u15ce\u63c2\u1e57\uc3c5\u9de3\u923f\u09a2\u3bc4\u17b0\uc8de\u9a68\u1611\u4ab1\ud71d\u2a75\u58be\uc419\u0253\u4bcf\ub04f\u6407\uc673\ucbba\ub0b7\u9af4\u8f5c\u272a\u990d\uec17\u4500\uf885\ua63b\ua06d\uc3d5\u07c4\u4c6f\ub71f\u2c7e\u9fa4\u7c9d\u45e7\ua483\uc5b3\u82e8\u961f\uf4d6\u9d16\u2bb9\u47ab\ufc31\u4178\u9dee\u2a41\u87f2\u41f5\u8cfe\u7f2c\uf268\u23f5\u7416\u9750\uf15b\uedb0\ucb76\u6fb8\ue2fc\u21cc\u133d\ue938\udc1f\u75cd\uead2\u7492\u55ac\u4cb1\u3e31\uac35\u48cf\u56d8\u0be8\u8b0b\ua366\ueafd\u3679\u07d7\uece8\u91ba\u463d\u36c9\u44b5\u7fd6\u8ce4\uc0be\ue362\u305f\uea87\u2f81\u6b0a\u64c0\u85d2\u7460\u07f8\u41b9\u3cc4\ua643\uadb0\ueeb1\u7d81\u98d4\u7e27\u3a39\u65bc\u73eb\ua3b0\u11f9\u470c\u47f7\u5eb8\u4268\u5d72\uf9e5\uad9e\ua094\u1c38\u0dd9\ude65\u86db\u8f20\u6b22\ud775\ude1b\u2ca5\u5efd\udec3\u5bb8\u89d2\u17f9\ub8c2\u6719\u73d5\u7b55\u48fd\u470f\u4d1a\u9261\ucabd\u66bf\u8839\u9fb8\u6591\u321b\u963f\u6686\u7bd3\u6fa6\u9dbf\udbbd\u71f9\uc5cc\uad4e\u544b\u9d02\u833d\u5de7\u9089\u60e6\u4b59\uf7e7\u9e8b\ub1ad\u328e\u9add\uf73f\uc08e\u47ba\ubd28\u55c5\u11d9\ua858\uabcb\u1bc7\ud303\u633c\u0da3\uf254\ud03f\ued70\u0586\u96ec\u6469\uc8ee\u5081\u09ab\udbf1\u8e5a\u532f\u1dff\u7f61\uff8d\u979e\u11a3\udce4\u8039\ua1ad\u287c\u43f6\u37e4\udc63\u5516\u3d8e\u8609\uc7d2\uee53\uf2f0\u5edc\u8a31\u6ac1\u4e76\u1d50\u73e4\u3e6c\ucbf3\u29c2\u1ed9\u43ce\uba7f\u1815\u55cb\u0ee3\u9f6f\u0d02\u934a\u9860\u4464\uc69f\u4be3\u59af\u372e\u358f\u0600"",""\u798f \u9152\u5427"":{""fu"":8.149760865299456e+306,""bar"":9.961837172331789e+307}}",,"-4087097555636043776 --2644243975589797888 --4102151366275915776 -1603418564679649280 -896575305343654912 --1490979734756367360 -3910760620166977536 -1548681966850765824 -1692889810368073728 -1008524160876428288 -919055443145771008 --4029298427409730560 --4220803143489627136 --4350374928564656128 -231633997189439488 -1311265276028036096 --2813401714713080832 -1545804145768638464 -3690181554402592768 --1070164310267352064 -1207312494302613504 --2124787944254053376 -1545291310786046976 -3547368211856274432 -3500056105941795840 --2042037947998584832 -3741520330474355712 -3884778937662714880 --1531025379024437248 -102298147047488512 --1748167679179860992 --732852177855918080 -1261122418815314944 --1968375796857547776 -1811377190129436672 --297604152453527552 -3452194988093303808 --4328154251966217216 --3771618365397267456 -1816698628206247936 --1493493663124614144 -4235912406238014464 -3427297260558813184 -3538240653619224576 -2747358535451084800 --4250371275264102400 -1501014009010849792 -1170577385658126336 -518468012801034240 --3485330952108583936 --1569641541723985920 --574962376727255040 -28416897901017088 -3352689332129344512 -2068430588830216192 --1367371994707353600 -407683339295421440 -4367127832554279936 --2607476061267601408 -2477403859059318784 -4461072065085442048 -129367092017746944 -2761498581306719232 --2525851049453047808 --4217876367852333056 -948873001959470080 --2305733686281148416 --311082846017529856 --2687820875633461248 --2143332145276427264 --1049499975999314944 -309822004717691904 -2697813391395154944 --1046563959813925888 -4560043452171356160 -4292449678126074880 --114587435385950208 --1006885628557350912 --4421043502328769536 --677981549068487680 -3900546102870591488 --1680494496428678144 --3573248342816909312 -3875527292845504512 --2803035667432824832 --2347620375212277760 -2695971145499314176 -667688683659590656 -1565158028449732608 -1315504602219011072 --1932943646397172736 -997966034940309504 --2900154722003376128 --3117695919796241408 -4254103338302932992 --4462404445060645888 --18629115689410560 -3915673202003368960 --2809581819079837696 --3091797338729049088 -1410420355937828864 --981362379398726656 -2790690341360016384 -4128070468959770624 -3533811532345882624 -2955461992193167360 --2472968625538674688 --1438533540202811392 --301355542681710592 --736233062978139136 --944648416228884480 --1789604165405181952 -3510396468303589376 --1247069601472192512 --4328070298181780480 --776961754926397440 -2879140940748594176 --4034304546883862528 --3471502695683419136 -1573829620214663168 --2149294839390306304 -2363393370927403008 --2476472312874295296 --2397640911995506688 -1807607999755536384 -392401093271943168 -2483261739242179584 -4328944976938233856 --3056976859015287808 --3185427163250629632 --4264378961042715648 --2754014868465132544 --2312564782263636992 --3994037404347769856 --719978499949691904 --476024725710857216 -3691058758720481280 --4218756450843671552 --2023256688202184704 --3265264079378058240 --3765257214776371200 -2857971770884172800 -2686739330103521280 --2855386382289321984 --3789460032593700864 --2028214398845438976 --2582147110570202112 -4490138964242804736 --774054101164078080 --3838534070659823616 -3769464608724302848 --2772871618514287616 --1425987905221464064 -1564005914041059328 -4490924778774541312 -596791488083860480 -4409252590506222592 --4370027348268466176 --658585569316921344 -1478582444570929152 -2108836705005757440 -356179453462480896 --843275116313550848 --1389757831409353728 -52211904206447616 --2133981640681140224 --3601851477280921600 --4230234512541222912 --1453174691462837248 --3915665998979244032 -839147878666814464 --2596867608329019392 -2734645841966127104 --1860231046542555136 --3789885678436380672 --4586029779337878528 --2690908269495738368 --4263660097084538880 -3119419387661475840 -3669709184734257152 -675500320913685504 -4511973216871547904 -82301834802492416 --4116913434307409920 --1303181920366906368 --3668596642458949632 --2067355195382379520 -804503386499253248 -527830283565624320 --4264073032006888448 -1390539732581905408 --1983320126353060864 --3883754683775469568 --2452799043522825216 --2107527217190407168 -1660572839250684928 --2608509581776437248 -255204967149204480 -441175738337374208 --38400605851502592 -2357438599112094720 -1847057402640001024 --3085044700163727360 --2441844751873526784 -18346493253943296 --1308663207955694592 -4190027983974269952 --2653509286155044864 -2600693377864115200 -4610029003773147136 --1192009988756967424 --2137435643213600768 -2160535491910170624 --2934067741425684480 -4529044939057471488 -4209576364556067840 --574827913513484288 -1822497083145906176 -2729783035665071104 --3505436399804025856 -1634596945738566656 -2164912244396258304 -3537377058084513792 -3759901563966328832 --171051750664530944 --2798822954040003584 -806093418817111040 -3387639287149854720 -1050146782949784576 --3534040955152642048 -401444177555353600 -463783181566881792 --2108274746149598208 -1184926258976788480 --2641185846670820352 -1835298851336940544 --3014620471981756416 -3996815859946749952 -3647792707950191616 --1970708951365587968 -4045379158544828416 -1953354472911835136 -3031644096222410752 -1797109834745300992 --437056226740920320 -1159248230011210752 --2895984646743358464 --1561234027636399104 -145194824636794880 --3054807940769202176 --972814182818531328 --3827018477006092288 --1643524683414541312 --68398683106719744 -2726142719131390976 -3038261052534902784 -2630642575448525824 -4576087869158523904 -717360350443812864 -3491717225505963008 -3042136862248071168 -817158632580684800 -2135105609321818112 -1046404176863488000 --2250830956229014528 -4276221647182664704 --1935787558000673792 -3386691006704558080 -2188883440699550720 --4013209190608209920 --1965175061749206016 --664688333707303936 --4583439402627183616 -55982251374123008 --4362995822785326080 --2312268273888676864 --2580891023685274624 --570940727127727104 --643772923979931648 -1577861427541889024 --3792216473511590912 --1742074173340688384 --1264831562667892736 -3207763320514726912 --783574416123230208 --1222001694237150208 -2147393283098626048 -702923781716577280 -3071089982830783488 --385241566524438528 -346207567790806016 -2821538047069806592 --3270813421237957632 --2725859996586891264 --499708966219143168 --1365643604664088576 --59559974975262720 --2905917642031761408 -1212640737766351872 --1783763861265933312 --2563933227322907648 --144772583474451456 -3168984724590852096 -982123931595992064 -3428008077379942400 -4149563404149088256 -4278913949777881088 -1192033061704366080 -4303641101315786752 -1234369365273509888 -778024728602431488 -3864443259814651904 --1427939731231345664 -4440697490376506368 --3064256252182045696 --899520058399795200 --3628586556140978176 --4131109195599403008 -3289664058657534976 --2557066733654261760 -2189456697560014848 --3811693096769640448 --3159290742734584832 -4510122823312353280 -195407035553350656 -2372659298425092096 -904534752760417280 --367523375668426752 -1474781817402314752 --2379177813371231232 -252878548143295488 --2414290206048482304 -4346717747712234496 --1736357919764100096 -847805594564944896 --4510811072044768256 -2004170302125417472 --3450164557807316992 -3666836914930809856 -4362565901595229184 --1415786516073176064 -2733571956158747648 -4552301160553365504 --944729189366521856 -4158338892525617152 -4275912593637560320 --1605299680028965888 --4246358808279720960 --3534458643089051648 -4104260837580153856 -4109470556345671680 -3951438761241843712 -2917495707117645824 --4073718834087669760 --1666831737949245440 -1512979008473318400 --1368297415028922368 -2993938184052761600 -1014257544434116608 --1535793882355335168 -849571192434632704 -2719297000954165248 --2194642703008529408 -1080045746852744192 --1791643410375944192 -3771944959865914368 --4122313136999913472 -4598544942986810368 -3791497995050580992 --1881563646837849088 -1131180290620032000 --4413410663679982592 -4216712419908537344 -3540103341587352576 -2007440273076258816 -57065564547001344 -1011621180911986688 -612754486013122560 -1924131507588864000 -3789290731136193536 --167603892386365440 -2085329255616195584 -470177174356325376 -4307745588020382720 -4170055030643575808 --2665479232595348480 --3662420270530345984 -1917960735501594624 -2203710599385909248 --3113289605191216128 -1699225828386208768 -3761590315623164928 --3730061103694155776 -833989995619637248 --4103005200097242112 -4063254026588798976 -1149747934761165824 --1003793856705446912 -4286179135407862784 -3117665404894507008 --4340935042296930304 --4072304762945707008 -2378378770204907520 -3491488368186332160 --3529178224763922432 --4420946999045137408 --4455500490000454656 --3665983977052347392 -3681576370718731264 --2695115053993455616 --1274087950285511680 --2004014576412911616 -2769860913478234112 -564960783943842816 -833086363281942528 -3381115027782202368 --1738906414166468608 -4450751928419429376 --3677946971663019008 -2940252003680534528 --1240331424014057472 -4103738600835357696 --4686118116945920 --1609284447263304704 -3071809827705293824 -885395328393004032 -3482502658803420160 -1387292574383503360 --1649363731053631488 -1147042903945444352 --3448591993233914880 -4012784418530230272 --4114170257129609216 -2001421622369207296 --2461446285121523712 -3031092957135842304 -4201762411148862464 -3282378421176636416 --1139457595537540096 -2634398003930074112 -545825121504019456 --2725837505012516864 --855210690583055360 -75711777069679616 -3540089103137388544 -4570801929666562048 -2116295160309912576 -2762352244000884736 --2633589829169616896 -630137970895645696 -138932659595880448 -767705108727639040 -3152456297893129216 --4282849408948489216 --4265459122145091584 -4275793819058394112 --1145433348741306368 -2033049641311602688 -4063848153025157120 --4222258788623910912 -4008915438976006144 -3229042512473477120 -1097076263214909440 --87666597431535616 --3572464504485534720 --2962589633059732480 --348565388125049856 --3741120915877943296 -1594395108654290944 --3123605820416621568 -1066244724534598656 --2413446156341052416 -3088214284797340672 -3235703548538923008 -254821513616910336 -651898962000466944 --1803821960800364544 -2269551602327657472 --131680149033319424 -3190285881633117184 -3204870296831928320 -4300875582469912576 -4002684796532259840 --3680823588684545024 -3662999549611335680 --357399754867055616 -4508787794069537792 --1177346175658643456 --1272821784133297152 -4134418702645644288 -3690419435151015936 --3868729937528911872 -3724617612982894592 --1703023363696999424 -4327376524312871936 --3611460618092731392 --3253142739210625024 --2445840767228242944 --1060580575459018752 -791206061926249472 -2952605962911977472 -1983985129445880832 -1042686850135758848 --2165716868610383872 --1093703302200583168 -1799805007923995648 -2449873960259636224 --1347145482128285696 --355803385533479936 -572846004789867520 -3805318211224829952 --4132942453393265664 --3209923814331860992 -1043954646155315200 -3949197745325003776 -2903295887770509312 --1431697052281596928 -2367623680055370752 --233877283548290048 -3586760542247847936 -1649827776146462720 --990624840785685504 --617187980985666560 --1342615545481505792 -1157723920535363584 --1662376274722425856 -3840510845632476160 --4189942310996661248 -17123930512228352 -412971123988864000 --870142941588404224 --2924120443702404096 --2739436800611673088 -688517627715443712 --1800826561377878016 --746777792619857920 --1242890893298553856 -3123709378446030848 --4465775600155863040 -4174875817211612160 --246649783004426240 --3364092608638116864 -2522806747157900288 -2012596797493256192 --751153699560252416 -70376918741909504 --471447944940045312 --4596064095089103872 --3392225419822925824 --756939459812338688 -2727894866378346496 --458005773425671168 -3604839294130350080 --2276744608012261376 -3108816796875877376 --1397898676168822784 -2061049288582710272 -1208972859124216832 -1993532717213200384 --3187491862643313664 --370097419902905344 --1772004217643405312 --1269952713949562880 -3725850416484842496 --3228272331089352704 --4192986968227494912 -3530808141018894336 -4019620611299963904 -2619887473478713344 --4309018265788012544 -4611471283808854016 --1226618110443951104 --400091920036469760 -3780613047405072384 -4504472039667259392 -320676250735305728 -1078634915901380608 -992461201210836992 -757436702923474944 -1776691685854428160 -312244436734274560 --2770131792815040512 --1333846360016320512 --2164129277469361152 --1297799096905579520 -4445125685671840768 --2241081263523427328 --1376236547847093248 -2492012663270618112 --4066986841455294464 -2043308712422045696 -1487058072791046144 --3319421903632530432 --3633082853991115776 --4604487072413405184 -740162760731737088 --1448040971703482368 -1716318845172929536 --168697773047001088 -2583462095811175424 -3038880478017718272 --4001300934698688512 -921885606223656960 -3634659343666479104 -2773208125461530624 --956993054689391616 -1671942254051454976 --4561833719113710592 --3251712388050236416 --1971314744519063552 --3100997015746423808 -3660587641836682240 --292198207340595200 -2715479051760280576 -2898402741650567168 --3038241751606889472 --2773745270098165760 -931825285868971008 --4012092746488414208 --1002115006116023296 --3768721072828508160 --898621746520020992 -3965273878885291008 --3681968546904358912 -1451511307711214592 --2753232534533528576 -1282503383432310784 -3458978115282567168 -265892364943586304 --1465862309822642176 -1027394633991912448 --1919444383540744192 -1959679423872706560 -469846418659672064 --497822673940997120 -2901117465021452288 --2848355119907784704 --1178655759952743424 --56109936484245504 --1991393331272421376 --4054747655763961856 --4054254757477092352 --2354895712947175424 -3451184288985913344 --2851797678527703040 -3422291641231211520 -4181175732236931072 --464718290461142016 --64358890501040128 -4324984964492136448 -2079075361135546368 -1533484499691927552 -758006757181996032 --3162864518908301312 --1492511790597149696 -236299369609700352 -136910755308657664 --3493080760754380800 --3167475609411436544 --2077983563342597120 --3089944043995179008 -4276516670766002176 -1223977809504685056 --942947305084303360 --1845258800079217664 --3456058440232925184 -1876196543252159488 --4540373675573981184 --2203132273252578304 --1088698264656647168 -1280745801350941696 --4484653679513807872 -533939245359321088 -45199239155523584 -3729826859277517824 -2286304681817375744 --1451521173029354496 -2835965443684623360 -2196076677731061760 -2234725339928707072 -167250924478986240 --2885029243342742528 --3510066151006098432 --605261687216939008 --2784235052227747840 --4404104461256647680 -613477786939612160 -2453131482135548928 -3296449168005664768 --1512938822040096768 -3393303534497909760 -1236959246103980032 --621287562782436352 --2315905813785238528 --3656727898996342784 --2984633605228929024 -3577188267336281088 -3651411267660508160 -2754677342264499200 -3227304368264451072 --4470173638277652480 --120075323883486208 -3662512163899431936 -1558055050486863872 --186430126959158272 -3830532559980040192 --653241370042988544 --1027440745130527744 --418812085006008320 -100383624062357504 --4283632644428183552 --782282299338671104 -3777381455466436608 --3449962289929940992 -3881707487628032000 --1543599947124965376",$-4087097555636043776$;$-2644243975589797888$;$-4102151366275915776$;$1603418564679649280$;$896575305343654912$;$-1490979734756367360$;$3910760620166977536$;$1548681966850765824$;$1692889810368073728$;$1008524160876428288$;$919055443145771008$;$-4029298427409730560$;$-4220803143489627136$;$-4350374928564656128$;$231633997189439488$;$1311265276028036096$;$-2813401714713080832$;$1545804145768638464$;$3690181554402592768$;$-1070164310267352064$;$1207312494302613504$;$-2124787944254053376$;$1545291310786046976$;$3547368211856274432$;$3500056105941795840$;$-2042037947998584832$;$3741520330474355712$;$3884778937662714880$;$-1531025379024437248$;$102298147047488512$;$-1748167679179860992$;$-732852177855918080$;$1261122418815314944$;$-1968375796857547776$;$1811377190129436672$;$-297604152453527552$;$3452194988093303808$;$-4328154251966217216$;$-3771618365397267456$;$1816698628206247936$;$-1493493663124614144$;$4235912406238014464$;$3427297260558813184$;$3538240653619224576$;$2747358535451084800$;$-4250371275264102400$;$1501014009010849792$;$1170577385658126336$;$518468012801034240$;$-3485330952108583936$;$-1569641541723985920$;$-574962376727255040$;$28416897901017088$;$3352689332129344512$;$2068430588830216192$;$-1367371994707353600$;$407683339295421440$;$4367127832554279936$;$-2607476061267601408$;$2477403859059318784$;$4461072065085442048$;$129367092017746944$;$2761498581306719232$;$-2525851049453047808$;$-4217876367852333056$;$948873001959470080$;$-2305733686281148416$;$-311082846017529856$;$-2687820875633461248$;$-2143332145276427264$;$-1049499975999314944$;$309822004717691904$;$2697813391395154944$;$-1046563959813925888$;$4560043452171356160$;$4292449678126074880$;$-114587435385950208$;$-1006885628557350912$;$-4421043502328769536$;$-677981549068487680$;$3900546102870591488$;$-1680494496428678144$;$-3573248342816909312$;$3875527292845504512$;$-2803035667432824832$;$-2347620375212277760$;$2695971145499314176$;$667688683659590656$;$1565158028449732608$;$1315504602219011072$;$-1932943646397172736$;$997966034940309504$;$-2900154722003376128$;$-3117695919796241408$;$4254103338302932992$;$-4462404445060645888$;$-18629115689410560$;$3915673202003368960$;$-2809581819079837696$;$-3091797338729049088$;$1410420355937828864$;$-981362379398726656$;$2790690341360016384$;$4128070468959770624$;$3533811532345882624$;$2955461992193167360$;$-2472968625538674688$;$-1438533540202811392$;$-301355542681710592$;$-736233062978139136$;$-944648416228884480$;$-1789604165405181952$;$3510396468303589376$;$-1247069601472192512$;$-4328070298181780480$;$-776961754926397440$;$2879140940748594176$;$-4034304546883862528$;$-3471502695683419136$;$1573829620214663168$;$-2149294839390306304$;$2363393370927403008$;$-2476472312874295296$;$-2397640911995506688$;$1807607999755536384$;$392401093271943168$;$2483261739242179584$;$4328944976938233856$;$-3056976859015287808$;$-3185427163250629632$;$-4264378961042715648$;$-2754014868465132544$;$-2312564782263636992$;$-3994037404347769856$;$-719978499949691904$;$-476024725710857216$;$3691058758720481280$;$-4218756450843671552$;$-2023256688202184704$;$-3265264079378058240$;$-3765257214776371200$;$2857971770884172800$;$2686739330103521280$;$-2855386382289321984$;$-3789460032593700864$;$-2028214398845438976$;$-2582147110570202112$;$4490138964242804736$;$-774054101164078080$;$-3838534070659823616$;$3769464608724302848$;$-2772871618514287616$;$-1425987905221464064$;$1564005914041059328$;$4490924778774541312$;$596791488083860480$;$4409252590506222592$;$-4370027348268466176$;$-658585569316921344$;$1478582444570929152$;$2108836705005757440$;$356179453462480896$;$-843275116313550848$;$-1389757831409353728$;$52211904206447616$;$-2133981640681140224$;$-3601851477280921600$;$-4230234512541222912$;$-1453174691462837248$;$-3915665998979244032$;$839147878666814464$;$-2596867608329019392$;$2734645841966127104$;$-1860231046542555136$;$-3789885678436380672$;$-4586029779337878528$;$-2690908269495738368$;$-4263660097084538880$;$3119419387661475840$;$3669709184734257152$;$675500320913685504$;$4511973216871547904$;$82301834802492416$;$-4116913434307409920$;$-1303181920366906368$;$-3668596642458949632$;$-2067355195382379520$;$804503386499253248$;$527830283565624320$;$-4264073032006888448$;$1390539732581905408$;$-1983320126353060864$;$-3883754683775469568$;$-2452799043522825216$;$-2107527217190407168$;$1660572839250684928$;$-2608509581776437248$;$255204967149204480$;$441175738337374208$;$-38400605851502592$;$2357438599112094720$;$1847057402640001024$;$-3085044700163727360$;$-2441844751873526784$;$18346493253943296$;$-1308663207955694592$;$4190027983974269952$;$-2653509286155044864$;$2600693377864115200$;$4610029003773147136$;$-1192009988756967424$;$-2137435643213600768$;$2160535491910170624$;$-2934067741425684480$;$4529044939057471488$;$4209576364556067840$;$-574827913513484288$;$1822497083145906176$;$2729783035665071104$;$-3505436399804025856$;$1634596945738566656$;$2164912244396258304$;$3537377058084513792$;$3759901563966328832$;$-171051750664530944$;$-2798822954040003584$;$806093418817111040$;$3387639287149854720$;$1050146782949784576$;$-3534040955152642048$;$401444177555353600$;$463783181566881792$;$-2108274746149598208$;$1184926258976788480$;$-2641185846670820352$;$1835298851336940544$;$-3014620471981756416$;$3996815859946749952$;$3647792707950191616$;$-1970708951365587968$;$4045379158544828416$;$1953354472911835136$;$3031644096222410752$;$1797109834745300992$;$-437056226740920320$;$1159248230011210752$;$-2895984646743358464$;$-1561234027636399104$;$145194824636794880$;$-3054807940769202176$;$-972814182818531328$;$-3827018477006092288$;$-1643524683414541312$;$-68398683106719744$;$2726142719131390976$;$3038261052534902784$;$2630642575448525824$;$4576087869158523904$;$717360350443812864$;$3491717225505963008$;$3042136862248071168$;$817158632580684800$;$2135105609321818112$;$1046404176863488000$;$-2250830956229014528$;$4276221647182664704$;$-1935787558000673792$;$3386691006704558080$;$2188883440699550720$;$-4013209190608209920$;$-1965175061749206016$;$-664688333707303936$;$-4583439402627183616$;$55982251374123008$;$-4362995822785326080$;$-2312268273888676864$;$-2580891023685274624$;$-570940727127727104$;$-643772923979931648$;$1577861427541889024$;$-3792216473511590912$;$-1742074173340688384$;$-1264831562667892736$;$3207763320514726912$;$-783574416123230208$;$-1222001694237150208$;$2147393283098626048$;$702923781716577280$;$3071089982830783488$;$-385241566524438528$;$346207567790806016$;$2821538047069806592$;$-3270813421237957632$;$-2725859996586891264$;$-499708966219143168$;$-1365643604664088576$;$-59559974975262720$;$-2905917642031761408$;$1212640737766351872$;$-1783763861265933312$;$-2563933227322907648$;$-144772583474451456$;$3168984724590852096$;$982123931595992064$;$3428008077379942400$;$4149563404149088256$;$4278913949777881088$;$1192033061704366080$;$4303641101315786752$;$1234369365273509888$;$778024728602431488$;$3864443259814651904$;$-1427939731231345664$;$4440697490376506368$;$-3064256252182045696$;$-899520058399795200$;$-3628586556140978176$;$-4131109195599403008$;$3289664058657534976$;$-2557066733654261760$;$2189456697560014848$;$-3811693096769640448$;$-3159290742734584832$;$4510122823312353280$;$195407035553350656$;$2372659298425092096$;$904534752760417280$;$-367523375668426752$;$1474781817402314752$;$-2379177813371231232$;$252878548143295488$;$-2414290206048482304$;$4346717747712234496$;$-1736357919764100096$;$847805594564944896$;$-4510811072044768256$;$2004170302125417472$;$-3450164557807316992$;$3666836914930809856$;$4362565901595229184$;$-1415786516073176064$;$2733571956158747648$;$4552301160553365504$;$-944729189366521856$;$4158338892525617152$;$4275912593637560320$;$-1605299680028965888$;$-4246358808279720960$;$-3534458643089051648$;$4104260837580153856$;$4109470556345671680$;$3951438761241843712$;$2917495707117645824$;$-4073718834087669760$;$-1666831737949245440$;$1512979008473318400$;$-1368297415028922368$;$2993938184052761600$;$1014257544434116608$;$-1535793882355335168$;$849571192434632704$;$2719297000954165248$;$-2194642703008529408$;$1080045746852744192$;$-1791643410375944192$;$3771944959865914368$;$-4122313136999913472$;$4598544942986810368$;$3791497995050580992$;$-1881563646837849088$;$1131180290620032000$;$-4413410663679982592$;$4216712419908537344$;$3540103341587352576$;$2007440273076258816$;$57065564547001344$;$1011621180911986688$;$612754486013122560$;$1924131507588864000$;$3789290731136193536$;$-167603892386365440$;$2085329255616195584$;$470177174356325376$;$4307745588020382720$;$4170055030643575808$;$-2665479232595348480$;$-3662420270530345984$;$1917960735501594624$;$2203710599385909248$;$-3113289605191216128$;$1699225828386208768$;$3761590315623164928$;$-3730061103694155776$;$833989995619637248$;$-4103005200097242112$;$4063254026588798976$;$1149747934761165824$;$-1003793856705446912$;$4286179135407862784$;$3117665404894507008$;$-4340935042296930304$;$-4072304762945707008$;$2378378770204907520$;$3491488368186332160$;$-3529178224763922432$;$-4420946999045137408$;$-4455500490000454656$;$-3665983977052347392$;$3681576370718731264$;$-2695115053993455616$;$-1274087950285511680$;$-2004014576412911616$;$2769860913478234112$;$564960783943842816$;$833086363281942528$;$3381115027782202368$;$-1738906414166468608$;$4450751928419429376$;$-3677946971663019008$;$2940252003680534528$;$-1240331424014057472$;$4103738600835357696$;$-4686118116945920$;$-1609284447263304704$;$3071809827705293824$;$885395328393004032$;$3482502658803420160$;$1387292574383503360$;$-1649363731053631488$;$1147042903945444352$;$-3448591993233914880$;$4012784418530230272$;$-4114170257129609216$;$2001421622369207296$;$-2461446285121523712$;$3031092957135842304$;$4201762411148862464$;$3282378421176636416$;$-1139457595537540096$;$2634398003930074112$;$545825121504019456$;$-2725837505012516864$;$-855210690583055360$;$75711777069679616$;$3540089103137388544$;$4570801929666562048$;$2116295160309912576$;$2762352244000884736$;$-2633589829169616896$;$630137970895645696$;$138932659595880448$;$767705108727639040$;$3152456297893129216$;$-4282849408948489216$;$-4265459122145091584$;$4275793819058394112$;$-1145433348741306368$;$2033049641311602688$;$4063848153025157120$;$-4222258788623910912$;$4008915438976006144$;$3229042512473477120$;$1097076263214909440$;$-87666597431535616$;$-3572464504485534720$;$-2962589633059732480$;$-348565388125049856$;$-3741120915877943296$;$1594395108654290944$;$-3123605820416621568$;$1066244724534598656$;$-2413446156341052416$;$3088214284797340672$;$3235703548538923008$;$254821513616910336$;$651898962000466944$;$-1803821960800364544$;$2269551602327657472$;$-131680149033319424$;$3190285881633117184$;$3204870296831928320$;$4300875582469912576$;$4002684796532259840$;$-3680823588684545024$;$3662999549611335680$;$-357399754867055616$;$4508787794069537792$;$-1177346175658643456$;$-1272821784133297152$;$4134418702645644288$;$3690419435151015936$;$-3868729937528911872$;$3724617612982894592$;$-1703023363696999424$;$4327376524312871936$;$-3611460618092731392$;$-3253142739210625024$;$-2445840767228242944$;$-1060580575459018752$;$791206061926249472$;$2952605962911977472$;$1983985129445880832$;$1042686850135758848$;$-2165716868610383872$;$-1093703302200583168$;$1799805007923995648$;$2449873960259636224$;$-1347145482128285696$;$-355803385533479936$;$572846004789867520$;$3805318211224829952$;$-4132942453393265664$;$-3209923814331860992$;$1043954646155315200$;$3949197745325003776$;$2903295887770509312$;$-1431697052281596928$;$2367623680055370752$;$-233877283548290048$;$3586760542247847936$;$1649827776146462720$;$-990624840785685504$;$-617187980985666560$;$-1342615545481505792$;$1157723920535363584$;$-1662376274722425856$;$3840510845632476160$;$-4189942310996661248$;$17123930512228352$;$412971123988864000$;$-870142941588404224$;$-2924120443702404096$;$-2739436800611673088$;$688517627715443712$;$-1800826561377878016$;$-746777792619857920$;$-1242890893298553856$;$3123709378446030848$;$-4465775600155863040$;$4174875817211612160$;$-246649783004426240$;$-3364092608638116864$;$2522806747157900288$;$2012596797493256192$;$-751153699560252416$;$70376918741909504$;$-471447944940045312$;$-4596064095089103872$;$-3392225419822925824$;$-756939459812338688$;$2727894866378346496$;$-458005773425671168$;$3604839294130350080$;$-2276744608012261376$;$3108816796875877376$;$-1397898676168822784$;$2061049288582710272$;$1208972859124216832$;$1993532717213200384$;$-3187491862643313664$;$-370097419902905344$;$-1772004217643405312$;$-1269952713949562880$;$3725850416484842496$;$-3228272331089352704$;$-4192986968227494912$;$3530808141018894336$;$4019620611299963904$;$2619887473478713344$;$-4309018265788012544$;$4611471283808854016$;$-1226618110443951104$;$-400091920036469760$;$3780613047405072384$;$4504472039667259392$;$320676250735305728$;$1078634915901380608$;$992461201210836992$;$757436702923474944$;$1776691685854428160$;$312244436734274560$;$-2770131792815040512$;$-1333846360016320512$;$-2164129277469361152$;$-1297799096905579520$;$4445125685671840768$;$-2241081263523427328$;$-1376236547847093248$;$2492012663270618112$;$-4066986841455294464$;$2043308712422045696$;$1487058072791046144$;$-3319421903632530432$;$-3633082853991115776$;$-4604487072413405184$;$740162760731737088$;$-1448040971703482368$;$1716318845172929536$;$-168697773047001088$;$2583462095811175424$;$3038880478017718272$;$-4001300934698688512$;$921885606223656960$;$3634659343666479104$;$2773208125461530624$;$-956993054689391616$;$1671942254051454976$;$-4561833719113710592$;$-3251712388050236416$;$-1971314744519063552$;$-3100997015746423808$;$3660587641836682240$;$-292198207340595200$;$2715479051760280576$;$2898402741650567168$;$-3038241751606889472$;$-2773745270098165760$;$931825285868971008$;$-4012092746488414208$;$-1002115006116023296$;$-3768721072828508160$;$-898621746520020992$;$3965273878885291008$;$-3681968546904358912$;$1451511307711214592$;$-2753232534533528576$;$1282503383432310784$;$3458978115282567168$;$265892364943586304$;$-1465862309822642176$;$1027394633991912448$;$-1919444383540744192$;$1959679423872706560$;$469846418659672064$;$-497822673940997120$;$2901117465021452288$;$-2848355119907784704$;$-1178655759952743424$;$-56109936484245504$;$-1991393331272421376$;$-4054747655763961856$;$-4054254757477092352$;$-2354895712947175424$;$3451184288985913344$;$-2851797678527703040$;$3422291641231211520$;$4181175732236931072$;$-464718290461142016$;$-64358890501040128$;$4324984964492136448$;$2079075361135546368$;$1533484499691927552$;$758006757181996032$;$-3162864518908301312$;$-1492511790597149696$;$236299369609700352$;$136910755308657664$;$-3493080760754380800$;$-3167475609411436544$;$-2077983563342597120$;$-3089944043995179008$;$4276516670766002176$;$1223977809504685056$;$-942947305084303360$;$-1845258800079217664$;$-3456058440232925184$;$1876196543252159488$;$-4540373675573981184$;$-2203132273252578304$;$-1088698264656647168$;$1280745801350941696$;$-4484653679513807872$;$533939245359321088$;$45199239155523584$;$3729826859277517824$;$2286304681817375744$;$-1451521173029354496$;$2835965443684623360$;$2196076677731061760$;$2234725339928707072$;$167250924478986240$;$-2885029243342742528$;$-3510066151006098432$;$-605261687216939008$;$-2784235052227747840$;$-4404104461256647680$;$613477786939612160$;$2453131482135548928$;$3296449168005664768$;$-1512938822040096768$;$3393303534497909760$;$1236959246103980032$;$-621287562782436352$;$-2315905813785238528$;$-3656727898996342784$;$-2984633605228929024$;$3577188267336281088$;$3651411267660508160$;$2754677342264499200$;$3227304368264451072$;$-4470173638277652480$;$-120075323883486208$;$3662512163899431936$;$1558055050486863872$;$-186430126959158272$;$3830532559980040192$;$-653241370042988544$;$-1027440745130527744$;$-418812085006008320$;$100383624062357504$;$-4283632644428183552$;$-782282299338671104$;$3777381455466436608$;$-3449962289929940992$;$3881707487628032000$;$-1543599947124965376$,䡋䴩不帳뜚䡶ᢶ熝妛纺Ð鬩潑亯쟈ᖈ㚆烈ﶢ㚎ﭚ剎멑䤒ꛄ枞ᱢ㋊迨揦畍濅쌗ཿ깕昉ᨛ뻷豪﫽㵿㆕䍥뾎귀ퟓ씛ᄃ鑼瑩䀺⨮Ḭꯈ㛒嚗펰„㘗昄ᇫ褓ᶉኂႼ쐉썉ꢰ殤䳢, -28,,1443154423.16,,"V _041",,"{""a"":1.0051664473417822e+308,""b"":""\u8fbc\uab22\udb84\ufea5\u2fb2\uf1a1\u9c7b\uc0c1\u7be2\u345f\u8078\ub937\udf9d\ua814\ue7b5\u48e2\u792f\ub9fb\ud3ba\u2876\u6608\uc9fe\u54bc\uc270\u57d2\uc205\ubbf1\u08e7\u0e5e\ue516\uf43d\u7f47\u82da\u1c71\u44c1\u069f\u718f\ufd12\u152e\u9663\u14c2\udf88\u3a24\u7278\u679f\u9f62\ucf25\u45ff\u0fc5\uf0f0\u2131\u396e\u7ee0\u2c2b\u75f4\ua51d\u4020\ub5aa\ue21f\u2db1\ub41a\u07d1\uae78\u223e\ue504\u993a\ue368\u5a5d\ua5b6\uff1f\u4c2a\u3831\u9ce2\ud65c\u53dc\ua61d\u1c4a\u0f36\u2b73\ua060\u287e\ubfb1\u1ae2\u0a88\ud196\u920a\ubea6\u963c\u91f4\uc168\ue7cb\u617a\ud8a7\u87c1\u63f4\u6cad\u97e6\u305c\u6e30\uf0ec\u5c8d\uf3db\ucfca\ub6b7\u8e2f\u37f5\ua782\u40a7\u4d22\uc193\ufa66\u56d9\uaafa\uf1f9\u29eb\u8c3d\u7da3\u101d\ue925\udc72\ubdc8\u79fe\uaf06\u15e4\u67d8\u7e06\uc80f\ucdda\uef51\u92e7\u4eb4\uf867\u2848\u8925\u44b5\u620a\ubcd9\ub401\ue414\u2b66\u2c3d\u8916\uf3d7\u1dbe\u62b7\ub9b1\u80f1\u6665\u4b15\u766b\ub799\ue328\u6e8a\uca1b\uecb8\ua42c\u0755\uc9b4\ufc2c\u5781\u95d5\ucaa3\uf57b\u2882\u6962\u1650\u4959\u75bb\ua0f5\ub21b\uda48\u76c6\ud9cd\u2270\uab20\uda4f\u64f5\ud1ec\u85c4\u04ff\ua42e\uc600\ued37\u1159\ued30\u1344\u416a\u2dca\ub0ff\u4826\u3b79\uddbc\u1528\uc765\u2607\u98a6\u3942\u5d4c\ud875\u437d\uc582\uca00\u990b\u4485\ud6e5\ua9d9\u597a\u234f\ufcf5\u2256\u0e9c\u8a21\u87aa\ue217\u28e6\u13fe\u538e\ue1ab\u3071\u8d37\u82d3\u60ef\u0e35\u8834\u5fdd\ue35c\u5916\u114c\ubaf5\u6b0c\ubc8c\u1d91\u0a99\uc272\u209a\uabc9\ue841\ub905\u946c\ucebe\ud4c9\ua79e\ud9f6\u7c4d\u2486\ub652\u167e\u74d5\ucd12\uf010\u1a02\u9e3c\u59c3\u4248\u1f8d\ud2d1\u6507\u394e\u39d0\u9a77\ue1ad\u10f5\u8846\ua475\u5952\u5466\u4b08\ub132\u4865\u4082\udf95\uf6ce\u0dc9\u87e9\u55d2\ub69c\u57f1\u20d7\ub5d0\u7bcc\udfde\u62e8\ub028\u96d9\u187f\u3e08\uf994\u84d9\uaede\u5102\u03c2\ubeaf\u9dd3\u9d0c\uf861\u6718\uebb4\u6ec6\u33c1\uaeeb\u16b1\u4036\uf4a5\u5282\uc99c\u8303\u6e2e\u70c2\u69d6\u7f56\uda5b\u70a6\uff8c\u362b\uc509\uf384\u3881\uee65\u14a2\uc529\u6b32\u978c\u04f3\u66e4\u65d7\ue095\u5f26\u42e8\u5ed1\ue0fb\u1cce\u3a8c\u6e7b\u272b\ufb28\ua080\u94f0\u2a29\u3719\uc803\u6042\u8b5b\u44c7\uee9a\ue258\u7785\u1c7f\udf94\u8b17\uf18e\u7d8c\uf30a\u2c9b\uda43\u575c\u3f81\u52d1\u00f4\ue83e\ucee5\u4663\u1fd7\u3133\u77eb\ue521\u6241\u2739\u812e\u9048\u656f\u6e3b\u00a9\uea22\u2e98\ubf6f\uef59\u98f0\uc6f1\uaa7b\u1deb\u8be3\uc48f\u1c6b\u8efe\u168c\ufa4b\ub260\uca7b\ufb8c\uccd8\u966d\uf50d\ua4da\ue993\uf863\u9f79\u2e4d\ufa50\u61f7\u1230\ub5ae\u30d6\uc7b7\u093b\u2549\u4648\u0a3b\u128a\u8df4\u3763\u0345\u42e5\u6f66\u74b0\u5d35\ucd80\u646b\uff98\u67aa\u1e1e\u5dde\ua979\u6dbf\uad72\u5f69\u6ade\u86ee\ub15b\u1ec0\u0de5\u76ee\u8f66\u1d98\u4535\ud81c\u4fc8\uc929\u846e\u5b31\ua1c8\u1012\u652c\ua846\uae49\u1171\udb39\uc167\u7e84\ud1f6\u62d9\ua3c6\u19d6\u7429\u60a7\u6234\u612e\u36c7\u8965\uca0b\uc8fe\u11bb\u6cfc\u51f9\u17a9\uc936\u14b8\u567b\u853b\u2271\uac04\u15a3\u5bda\u5d7d\u2474\u7b70\uc537\u7f29\u343b\u0bf1\u0f20\u7903\uf214\u035c\u257a\u3f62\u15f7\ude51\udf04\u3421\u9fa2\u6101\u5eec\udbba\ue837\u8cd8\u6d72\u69f7\uc4a6\ub88c\u2acc\ub5bb\uf3a0\u44ac\u8cc7\uc147\u8586\u6d40\ub0f5\u3800\ude3b\uacc6\u63da\u8441\u67b1\u8eeb\ua22e\ud40f\u870c\u5cfc\u4bf0\u546e\u0b63\u0a9f\u00c3\ucdb0\uc9f7\u053f\u9e40\ucaaa\uf391\u85cd\ub46f\u23a1\u8ee8\u47f2\u5173\u3cc5\u1e4e\u0abe\ua7a4\u23ed\u70a3\u4fc9\u24b6\u9e7e\u622d\u47d0\ud0cd\uf9e6\u43b4\u7a82\u74b8\uf20b\u8d17\u712b\ue234\u558c\u75a8\u715b\u5790\u69d5\u4683\u2ab3\uc5d8\u1646\u5ed3\u2c5c\u0211\u4916\u953a\u74af\u841f\udbc7\u4542\u8c3b\uc842\u04a3\u0c89\ue879\u878e\ubb2b\u2ff0\u6f77\u3f5a\udcf0\u2649\ud23a\u45f1\u2e8a\u75c7\uf162\ufef1\ufd53\ua31d\ud0a7\u5a2c\ua11a\u3222\uf202\u5ae4\ud5ea\u528a\uc566\ub17c\u30b7\u861f\uccf0\u5a78\u7823\ud6c4\uffda\u14df\uec1e\ued7d\u7976\u105a\uafb7\u1572\u9941\u1d28\ub79e\uc8a9\u3a26\ue3f6\uc83a\u4568\u9e9d\u313a\u85a5\u5b82\u944a\u17bd\uf5ca\uff05\u0415\u306b\ucae5\uf7d5\u90b5\u26a8\ude8d\u7a2f\u29f3"",""\u798f \u9152\u5427"":{""fu"":1.1220827332759587e+307,""bar"":1.0428017132398293e+307}}",,"2726076400339471360 -1683897022745818112 --3999855787715976192 -3310561680027505664 -3412192970830939136 --281559351348581376 --4095737139795617792 --2693782902942664704 --4308753621278069760 --614905141794949120 --2493851375735990272 -2872398405710600192 -2718183072185969664 -1130594349018113024 --882097741849019392 --200793273694800896 --3336738445418742784 -2166536876838495232 -3569909431933645824 -2946659982361410560 -4055744059467784192 -1060928348332378112 --1822029056516798464 -3300163098535832576 --3953816025384934400 --3365149945519322112 --1741256443587633152 -2245581611656042496 -4276028931804740608 -3059060208653663232 -112771808244423680 -3651787864171414528 --955368841598659584 --3373883804281563136 --3712242429276052480 --1542566006096748544 -973789583654330368 --1379856546795315200 --4298526433656955904 --2718223395131019264 -2427923152170120192 --304355888160095232 -1833318654058355712 -1672807736836870144 -2508826670339540992 --235803479266052096 --2266029143141347328 --2335430962547826688 --763793497472629760 --4340997517076005888 --2759341690938517504 --3809724136755760128 -1156865194988063744 -3885596279071349760 -432488135122886656 --2606225048761668608 -754744528980105216 --3529256451923303424 -649949363797430272 -1792059154607352832 --1735212079767941120 -4254087948832103424 -3266066610077586432 --1827374118373861376 -4053798367623895040 --3563499600847219712 --894577029864238080 --1483852864825669632 --888965226075474944 -3759612029712964608 -42465121862899712 --3971975165561268224 --611761559301181440 --4213914968866107392 --3290547286489994240 -1954286104155356160 -216895169097408512 -3972713274749406208 --4060034422947198976 --2204632639238625280 -2877393442325763072 --583051132177744896 --1986235477309048832 -3873569898483383296 -3600961944927392768 --2546468906547293184 --1793263780962177024 -3349246098044846080 --2151473783542763520 --3902837700939231232 --3313996024565406720 -2443093181238419456 --3308785308667009024 -635630308034139136 --2030011927788477440 -1766880804024514560 -2794455416969154560 --1652585560944671744 -997355685108678656 -2071981331217000448 --112936190002505728 --3526721369346580480 -1093468134213694464 -4539234066208163840 --1943008016638184448 -2266993875447670784 --554726109554296832 -1654252721568028672 -3220852898560188416 -4372237679978701824 --3000867946295371776 -3521204310171632640 -1393012597844187136 --4057228741501002752 -3058646868662344704 -4051654361394971648 -3822086552997235712 --1759260139676019712 -3845052724544857088 -256225326970625024 -2776754623844624384 -3297003472799481856 -2255673627900490752 -3684104989258739712 --948443434020547584 -3638040553021297664 --3665051450359343104 -3578291079941330944 --2035790975812484096 -136516198953737216 -4494674549482739712 -2040235836215455744 -399939478674472960 -3750970772889079808 -3585711684492729344 --1288132384957584384 --3684952649243103232 --3181615276138183680 -2386078251982039040 -1617944878831176704 -1622912472870037504 --710065096248620032 --2735312186300285952 --2430979443905911808 -3409808631245217792 --2471691248172168192 -2329102466463430656 --2171997232747057152 -1857633509531988992 -4354969312490961920 --2423321552313443328 -1701452898922280960 --4143127595544100864 --2644713301260141568 -3229788014575267840 --3554960200347981824 -999328649975090176 -735812325097802752 -1580180921456233472 --516105188217421824 -658614615589974016 --680866325142989824 --2630141375555722240 -525324990504121344 --1161473188865848320 --1548111646227661824 -1364826636695232512 --1769398963999195136 -262066387557213184 --4318558816170918912 -2635732717076384768 -3457975907981899776 -2902384198955032576 -2642810865006911488 -3828604698178109440 --2405525799398099968 --4455824619917313024 --2631041139457055744 --1026371949866986496 --2816631607433454592 --2288748577867502592 --4114536431733938176 --3964070782586186752 -3620838099691784192 -1846294071719575552 --3342724375598182400 -3702724869599982592 -2842807394261419008 --1786137096846358528 --1717148872150002688 -2587184889202863104 --3915218285654569984 --1954625726929977344 --1988191395224930304 --1820610686949911552 -3788567572807563264 --2262322540208210944 -3541705931049170944 --1482585179080536064 -847366085179533312 -637815469286529024 --3776157001976830976 -3112952771513208832 -1061460431750293504 --1646930868986232832 --2478982612903181312 --3607979981463217152 --3109241620576138240 -1288908902026396672 -164587178158897152 -1074822174628028416 --274665966156520448 --1868220246198476800 --1624634912012013568 --1790274535458814976 --236208046661791744 --4497454391998962688 -2709899521518013440 --4156931595231062016 -2601652271614830592 --4247995102687601664 --2478016837931099136 -1551404844497292288 --1202238466164435968 -1288210609005058048 -2196664301047882752 --2263694422418216960 -1826882817786577920 --2009665869542947840 --2366738541981356032 --2373839784171666432 --1201590760986589184 -798158123144263680 -659399841310095360 --2642538717358599168 --3870360952042024960 --2760975940834812928 --949422942706639872 -4416130595732766720 -114756124477051904 -2519886709862692864 --3534586727175259136 --2516367598266306560 -1507820728865112064 -3275055364519837696 --2737727429479653376 -414166166223155200 -1076488301895444480 --3929847653404174336 --3407612664159003648 -3836615737544467456 --3475767255088747520 --2767675985208162304 --77191584280089600 --2996491122415375360 --2253983508249470976 --2017136521213983744 -2738067437525855232 -1573663733309703168 --3430149014687097856 --4256000255488759808 --306224348067434496 --1201788820889620480 --1470323232045772800 -1453954584994831360 --1671851132856571904 -812600422249945088 --3827810231427250176 --3102338235868776448 --71591320885816320 -1462924461934635008 -4190655868477088768 -2323609327033307136 --1727815304396697600 --2662294375142220800 --1768618210217187328 -3101750418881568768 -182374073818699776 --358992087730390016 -4241386725678989312 -200553428910014464 --4159310453838739456 --25596982440012800 -3817090864798776320 -1601522395260727296 -4161795462667040768 --4081110821905733632 -62572559711488000 --953686158997317632 --3669420399748654080 -490743362759219200 -2068351381883838464 -4268589973697223680 -4511958584684038144 -1863060983518004224 --1449124510585854976 --3917024490369911808 --4281391623714698240 -1593334256328758272 -1887334198215946240 --2760489960445479936 --2770210192350376960 --2498786763728022528 -654490068064816128 -1161162744719008768 -2110024949438708736 -3958271320861409280 -750167666500990976 -4043712645754836992 --1818513014432254976 -4306849445269870592 -1893504330594128896 --2465627357916158976 -2302499827448347648 --1750016468586860544 -360200652225477632 --2739815914465219584 -1812053386463127552 --1951501307869944832 --3990487559750958080 --62944234851373056 --1447554534013207552 --2009108366131987456 -3705117091519643648 --249124897181090816 --2755298030225341440 -1851287987011717120 -611373447652413440 -2471739440242354176 --3595257509091197952 --4330226793288894464 --3422817718152941568 -2680782094878043136 --2552421330916558848 -2887037506751674368 --2022429107059817472 -4483842714775543808 -507157269388104704 -427792950243408896 -4182848933268277248 -2924303369781049344 --2524329568882461696 -1892962465220133888 -2983320859878070272 -1063977976594642944 --1704098120277497856 --354517892090868736 --1253059284742192128 -3509191330652551168 -2770247464587682816 --3647036690337695744 -2517038373288156160 -612018949616500736 --1922979656956315648 --2056716751794962432 --3107420111345117184 --4335450253242640384 -2028542005703480320 -956555825102881792 -252876649540651008 -2074638099437513728 -1733628271773200384 -3479613975598155776 -4001896715121287168 --1166651016185489408 -2475241366680129536 --2269889623958084608 -1319773768394248192 --3758941752032187392 -626424139066025984 --1798803638720147456 -2810927492023432192 --3481924541303127040 -705931064422349824 --2306418974077947904 -3640375902362138624 --4338793975042620416 -1224047153823649792 --3067782976216856576 --1431104097684867072 -525075318308617216 -488565746176264192 -3318523498778248192 -645226998736125952 --3693568524859481088 --2217014509375427584 -2936781076188876800 -2161554683818867712 --4572253413626105856 --1775308067131133952 -3721042017643132928 --3507336834297596928 -351403480134609920 --2571134016382369792 --4584111980477895680 --544583081107634176 --1777574880662822912 -1312525030827983872 --2139441574373118976 -2713052548073934848 --475171238174985216 --3730360401052539904 -78415478756409344 -462057641928482816 -2385222058399951872 --422027423154764800 -4420385758456760320 --1251822352537825280 -4537308993352553472 -1716010317102667776 --3497322512342114304 -1876654308808547328 -1501001414794560512 --1351767181918808064 -3442927396169668608 --1190163034746158080 --2685550743240041472 --357748294644029440 --2062464025751535616 -1844453572548626432 -1515470997215608832 --3071589987884990464 -219330328452596736 --4334842981785878528 -2844351725257559040 --131655398473856000 --897851153705439232 -4008230004104856576 -3577995337018543104 --2979397790137928704 -3605477445429404672 -1191969332617826304 --778679846779058176 --631245803953456128 -1056926425128560640 --1933280063418826752 --107355861451964416 -2613893046233870336 -1598822629565038592 -294524930291592192 --3930671942739514368 -161035921774637056 --2147493686870538240 -1892796822943358976 -1350700217396593664 -1474520142422800384 -3308785422934724608 --3759974039131720704 -1639077679750345728 -1565904540989771776 -3411639254404548608 --1771312238687800320 -183653068212429824 --568345295253821440 --3365875732508619776 -1580370416231672832 -575952213096770560 -3937846781011078144 --3271490569454672896 -3261463859919066112 --3374992722636129280 --2175007691612653568 -3275264598212250624 -1264210550404130816 -3624509824951017472 --4569496243920701440 --4222649373776649216 -836874922786089984 -4295994485174821888 --3055540560670338048 -3050552860156441600 -359122921566699520 --2054411605203158016 --1995417555638497280 -117789947634906112 --4499304676930283520 --3547491907500306432 -374249488873318400 -1144846240991599616 -1112146414870490112 --3465434416874719232 --1307276309289237504 -3250089784904532992 -3473563554490944512 -2422823982348497920 --4136654431241305088 -3824946988997773312 --44543803937105920 -2328177196317051904 --3760513345867285504 --3505836201291707392 --2048375966464823296 -4127428918057349120 --1494982110642341888 --64294989326347264 --510755659610192896 --3346371826013576192 -4335738128333598720 -3765388349368202240 -1899637841177809920 -1884412817791712256 --718742797542642688 -3071117006512507904 -3343705510923395072 -4199359637584457728 --975943370037354496 --1951824564323784704 -4027035876839916544 --1683207737930671104 -3241380899104404480 -1061977686331232256 -3417445082905648128 --2433592458465401856 -773076373632055296 --850531945304642560 -1709902571474287616 --2759410864722321408 --3960381012223884288 -158142372536603648 --3705860808136044544 -2484630206179612672 -3242865270414854144 -2921732362821185536 -2119185490178771968 -954911657749630976 -3179806144411488256 -2785822701768428544 --2462357817121993728 -1705372866762219520 -3940147296362802176 --3254817662260752384 --87808981372517376 --1863207668876385280 --489438628755909632 --1405599132007791616 --22891476251242496 -4486120189599868928 -1294808671562984448 --372800883790985216 -4313001294879024128 -2757058355190582272 -245791475667716096 --3564060061788361728 --2383277877279780864 --3630003374638013440 --363318211034769408 -2220830276210830336 -3309662435894537216 -3374648591812282368 --2896003737984100352 -3756473745193764864 --4140218614167107584 --2192311602011348992 --417430351763093504 -878874293158124544 --1785565671922428928 -4384909407105917952 -317393000935700480 --3068164627312466944 --1592755146469915648 --1299104077370341376 --4261691172366717952 --1524789989452694528 --239904870476379136 -1815672245439254528 -532144738607585280 --119003860308103168 --3511195627051026432 --1401821934511895552 --384147425927046144 --157292169424529408 --2851812017568799744 --351703306941363200 --2889876289970207744 -2999329257208036352 --3488582732678821888 -3247812694103554048 --2783360535237490688 -3325847122349008896 --2216824105698920448 --1247602172591878144 --1600877769629474816 -670660404549606400 -3586820890509778944 -289837698129881088 --3385007566928378880 --480264512247232512 --2775229305570473984 --2775815417773492224 -4198405022875180032 --882937062574715904 -634468173823357952 -263748246593196032 --2092237525676960768 -1298814016848330752 --2772182811522767872 -3418037475937947648 -2289915859938467840 --1059569983364971520 --3020516970690163712 -3821968770156024832 --467771838254633984 --1239211984198443008 --288131419362379776 --1562222240998242304 -239708279686724608 --706206680211400704 -19345053037846528 -2657335547593718784 -1219167248974530560 --4406192632878824448 --3045339017214439424 --4288451901814396928 --3259111504149344256 --1468575585317088256 --1051180747705268224 --3438458323831795712 --407976112656333824 -3576213237138740224 --3827048604311975936 -3614977547652270080 -83090705843610624 -3770120019640541184 --3985695250651630592 --4522347076336404480 --3796765468060763136 -3033782187920947200 -1060889864406049792 -2708423017258147840 --2884447225004990464 --3937257518313962496 -2321724377137152000 --1127952997918265344 -1461371600335953920 --1568670881690202112 --4485789258091810816 -3159971741475328000 -435287673281290240 -2111095142246396928 -2290687540793034752 --116521984454177792 -3144435446769400832 --936686165143873536 --1121164529851402240 -1335487017839022080 --3711118699363369984 --2053949857274508288 -231882507397634048 --4577829390314546176 -3243063879765539840 --3511198923741209600 -607072867329031168 --1892334563541051392 -2583316227984785408 --2643523720182718464 -1535988976171030528 -807470110127709184 -2744383925272147968",$2726076400339471360$;$1683897022745818112$;$-3999855787715976192$;$3310561680027505664$;$3412192970830939136$;$-281559351348581376$;$-4095737139795617792$;$-2693782902942664704$;$-4308753621278069760$;$-614905141794949120$;$-2493851375735990272$;$2872398405710600192$;$2718183072185969664$;$1130594349018113024$;$-882097741849019392$;$-200793273694800896$;$-3336738445418742784$;$2166536876838495232$;$3569909431933645824$;$2946659982361410560$;$4055744059467784192$;$1060928348332378112$;$-1822029056516798464$;$3300163098535832576$;$-3953816025384934400$;$-3365149945519322112$;$-1741256443587633152$;$2245581611656042496$;$4276028931804740608$;$3059060208653663232$;$112771808244423680$;$3651787864171414528$;$-955368841598659584$;$-3373883804281563136$;$-3712242429276052480$;$-1542566006096748544$;$973789583654330368$;$-1379856546795315200$;$-4298526433656955904$;$-2718223395131019264$;$2427923152170120192$;$-304355888160095232$;$1833318654058355712$;$1672807736836870144$;$2508826670339540992$;$-235803479266052096$;$-2266029143141347328$;$-2335430962547826688$;$-763793497472629760$;$-4340997517076005888$;$-2759341690938517504$;$-3809724136755760128$;$1156865194988063744$;$3885596279071349760$;$432488135122886656$;$-2606225048761668608$;$754744528980105216$;$-3529256451923303424$;$649949363797430272$;$1792059154607352832$;$-1735212079767941120$;$4254087948832103424$;$3266066610077586432$;$-1827374118373861376$;$4053798367623895040$;$-3563499600847219712$;$-894577029864238080$;$-1483852864825669632$;$-888965226075474944$;$3759612029712964608$;$42465121862899712$;$-3971975165561268224$;$-611761559301181440$;$-4213914968866107392$;$-3290547286489994240$;$1954286104155356160$;$216895169097408512$;$3972713274749406208$;$-4060034422947198976$;$-2204632639238625280$;$2877393442325763072$;$-583051132177744896$;$-1986235477309048832$;$3873569898483383296$;$3600961944927392768$;$-2546468906547293184$;$-1793263780962177024$;$3349246098044846080$;$-2151473783542763520$;$-3902837700939231232$;$-3313996024565406720$;$2443093181238419456$;$-3308785308667009024$;$635630308034139136$;$-2030011927788477440$;$1766880804024514560$;$2794455416969154560$;$-1652585560944671744$;$997355685108678656$;$2071981331217000448$;$-112936190002505728$;$-3526721369346580480$;$1093468134213694464$;$4539234066208163840$;$-1943008016638184448$;$2266993875447670784$;$-554726109554296832$;$1654252721568028672$;$3220852898560188416$;$4372237679978701824$;$-3000867946295371776$;$3521204310171632640$;$1393012597844187136$;$-4057228741501002752$;$3058646868662344704$;$4051654361394971648$;$3822086552997235712$;$-1759260139676019712$;$3845052724544857088$;$256225326970625024$;$2776754623844624384$;$3297003472799481856$;$2255673627900490752$;$3684104989258739712$;$-948443434020547584$;$3638040553021297664$;$-3665051450359343104$;$3578291079941330944$;$-2035790975812484096$;$136516198953737216$;$4494674549482739712$;$2040235836215455744$;$399939478674472960$;$3750970772889079808$;$3585711684492729344$;$-1288132384957584384$;$-3684952649243103232$;$-3181615276138183680$;$2386078251982039040$;$1617944878831176704$;$1622912472870037504$;$-710065096248620032$;$-2735312186300285952$;$-2430979443905911808$;$3409808631245217792$;$-2471691248172168192$;$2329102466463430656$;$-2171997232747057152$;$1857633509531988992$;$4354969312490961920$;$-2423321552313443328$;$1701452898922280960$;$-4143127595544100864$;$-2644713301260141568$;$3229788014575267840$;$-3554960200347981824$;$999328649975090176$;$735812325097802752$;$1580180921456233472$;$-516105188217421824$;$658614615589974016$;$-680866325142989824$;$-2630141375555722240$;$525324990504121344$;$-1161473188865848320$;$-1548111646227661824$;$1364826636695232512$;$-1769398963999195136$;$262066387557213184$;$-4318558816170918912$;$2635732717076384768$;$3457975907981899776$;$2902384198955032576$;$2642810865006911488$;$3828604698178109440$;$-2405525799398099968$;$-4455824619917313024$;$-2631041139457055744$;$-1026371949866986496$;$-2816631607433454592$;$-2288748577867502592$;$-4114536431733938176$;$-3964070782586186752$;$3620838099691784192$;$1846294071719575552$;$-3342724375598182400$;$3702724869599982592$;$2842807394261419008$;$-1786137096846358528$;$-1717148872150002688$;$2587184889202863104$;$-3915218285654569984$;$-1954625726929977344$;$-1988191395224930304$;$-1820610686949911552$;$3788567572807563264$;$-2262322540208210944$;$3541705931049170944$;$-1482585179080536064$;$847366085179533312$;$637815469286529024$;$-3776157001976830976$;$3112952771513208832$;$1061460431750293504$;$-1646930868986232832$;$-2478982612903181312$;$-3607979981463217152$;$-3109241620576138240$;$1288908902026396672$;$164587178158897152$;$1074822174628028416$;$-274665966156520448$;$-1868220246198476800$;$-1624634912012013568$;$-1790274535458814976$;$-236208046661791744$;$-4497454391998962688$;$2709899521518013440$;$-4156931595231062016$;$2601652271614830592$;$-4247995102687601664$;$-2478016837931099136$;$1551404844497292288$;$-1202238466164435968$;$1288210609005058048$;$2196664301047882752$;$-2263694422418216960$;$1826882817786577920$;$-2009665869542947840$;$-2366738541981356032$;$-2373839784171666432$;$-1201590760986589184$;$798158123144263680$;$659399841310095360$;$-2642538717358599168$;$-3870360952042024960$;$-2760975940834812928$;$-949422942706639872$;$4416130595732766720$;$114756124477051904$;$2519886709862692864$;$-3534586727175259136$;$-2516367598266306560$;$1507820728865112064$;$3275055364519837696$;$-2737727429479653376$;$414166166223155200$;$1076488301895444480$;$-3929847653404174336$;$-3407612664159003648$;$3836615737544467456$;$-3475767255088747520$;$-2767675985208162304$;$-77191584280089600$;$-2996491122415375360$;$-2253983508249470976$;$-2017136521213983744$;$2738067437525855232$;$1573663733309703168$;$-3430149014687097856$;$-4256000255488759808$;$-306224348067434496$;$-1201788820889620480$;$-1470323232045772800$;$1453954584994831360$;$-1671851132856571904$;$812600422249945088$;$-3827810231427250176$;$-3102338235868776448$;$-71591320885816320$;$1462924461934635008$;$4190655868477088768$;$2323609327033307136$;$-1727815304396697600$;$-2662294375142220800$;$-1768618210217187328$;$3101750418881568768$;$182374073818699776$;$-358992087730390016$;$4241386725678989312$;$200553428910014464$;$-4159310453838739456$;$-25596982440012800$;$3817090864798776320$;$1601522395260727296$;$4161795462667040768$;$-4081110821905733632$;$62572559711488000$;$-953686158997317632$;$-3669420399748654080$;$490743362759219200$;$2068351381883838464$;$4268589973697223680$;$4511958584684038144$;$1863060983518004224$;$-1449124510585854976$;$-3917024490369911808$;$-4281391623714698240$;$1593334256328758272$;$1887334198215946240$;$-2760489960445479936$;$-2770210192350376960$;$-2498786763728022528$;$654490068064816128$;$1161162744719008768$;$2110024949438708736$;$3958271320861409280$;$750167666500990976$;$4043712645754836992$;$-1818513014432254976$;$4306849445269870592$;$1893504330594128896$;$-2465627357916158976$;$2302499827448347648$;$-1750016468586860544$;$360200652225477632$;$-2739815914465219584$;$1812053386463127552$;$-1951501307869944832$;$-3990487559750958080$;$-62944234851373056$;$-1447554534013207552$;$-2009108366131987456$;$3705117091519643648$;$-249124897181090816$;$-2755298030225341440$;$1851287987011717120$;$611373447652413440$;$2471739440242354176$;$-3595257509091197952$;$-4330226793288894464$;$-3422817718152941568$;$2680782094878043136$;$-2552421330916558848$;$2887037506751674368$;$-2022429107059817472$;$4483842714775543808$;$507157269388104704$;$427792950243408896$;$4182848933268277248$;$2924303369781049344$;$-2524329568882461696$;$1892962465220133888$;$2983320859878070272$;$1063977976594642944$;$-1704098120277497856$;$-354517892090868736$;$-1253059284742192128$;$3509191330652551168$;$2770247464587682816$;$-3647036690337695744$;$2517038373288156160$;$612018949616500736$;$-1922979656956315648$;$-2056716751794962432$;$-3107420111345117184$;$-4335450253242640384$;$2028542005703480320$;$956555825102881792$;$252876649540651008$;$2074638099437513728$;$1733628271773200384$;$3479613975598155776$;$4001896715121287168$;$-1166651016185489408$;$2475241366680129536$;$-2269889623958084608$;$1319773768394248192$;$-3758941752032187392$;$626424139066025984$;$-1798803638720147456$;$2810927492023432192$;$-3481924541303127040$;$705931064422349824$;$-2306418974077947904$;$3640375902362138624$;$-4338793975042620416$;$1224047153823649792$;$-3067782976216856576$;$-1431104097684867072$;$525075318308617216$;$488565746176264192$;$3318523498778248192$;$645226998736125952$;$-3693568524859481088$;$-2217014509375427584$;$2936781076188876800$;$2161554683818867712$;$-4572253413626105856$;$-1775308067131133952$;$3721042017643132928$;$-3507336834297596928$;$351403480134609920$;$-2571134016382369792$;$-4584111980477895680$;$-544583081107634176$;$-1777574880662822912$;$1312525030827983872$;$-2139441574373118976$;$2713052548073934848$;$-475171238174985216$;$-3730360401052539904$;$78415478756409344$;$462057641928482816$;$2385222058399951872$;$-422027423154764800$;$4420385758456760320$;$-1251822352537825280$;$4537308993352553472$;$1716010317102667776$;$-3497322512342114304$;$1876654308808547328$;$1501001414794560512$;$-1351767181918808064$;$3442927396169668608$;$-1190163034746158080$;$-2685550743240041472$;$-357748294644029440$;$-2062464025751535616$;$1844453572548626432$;$1515470997215608832$;$-3071589987884990464$;$219330328452596736$;$-4334842981785878528$;$2844351725257559040$;$-131655398473856000$;$-897851153705439232$;$4008230004104856576$;$3577995337018543104$;$-2979397790137928704$;$3605477445429404672$;$1191969332617826304$;$-778679846779058176$;$-631245803953456128$;$1056926425128560640$;$-1933280063418826752$;$-107355861451964416$;$2613893046233870336$;$1598822629565038592$;$294524930291592192$;$-3930671942739514368$;$161035921774637056$;$-2147493686870538240$;$1892796822943358976$;$1350700217396593664$;$1474520142422800384$;$3308785422934724608$;$-3759974039131720704$;$1639077679750345728$;$1565904540989771776$;$3411639254404548608$;$-1771312238687800320$;$183653068212429824$;$-568345295253821440$;$-3365875732508619776$;$1580370416231672832$;$575952213096770560$;$3937846781011078144$;$-3271490569454672896$;$3261463859919066112$;$-3374992722636129280$;$-2175007691612653568$;$3275264598212250624$;$1264210550404130816$;$3624509824951017472$;$-4569496243920701440$;$-4222649373776649216$;$836874922786089984$;$4295994485174821888$;$-3055540560670338048$;$3050552860156441600$;$359122921566699520$;$-2054411605203158016$;$-1995417555638497280$;$117789947634906112$;$-4499304676930283520$;$-3547491907500306432$;$374249488873318400$;$1144846240991599616$;$1112146414870490112$;$-3465434416874719232$;$-1307276309289237504$;$3250089784904532992$;$3473563554490944512$;$2422823982348497920$;$-4136654431241305088$;$3824946988997773312$;$-44543803937105920$;$2328177196317051904$;$-3760513345867285504$;$-3505836201291707392$;$-2048375966464823296$;$4127428918057349120$;$-1494982110642341888$;$-64294989326347264$;$-510755659610192896$;$-3346371826013576192$;$4335738128333598720$;$3765388349368202240$;$1899637841177809920$;$1884412817791712256$;$-718742797542642688$;$3071117006512507904$;$3343705510923395072$;$4199359637584457728$;$-975943370037354496$;$-1951824564323784704$;$4027035876839916544$;$-1683207737930671104$;$3241380899104404480$;$1061977686331232256$;$3417445082905648128$;$-2433592458465401856$;$773076373632055296$;$-850531945304642560$;$1709902571474287616$;$-2759410864722321408$;$-3960381012223884288$;$158142372536603648$;$-3705860808136044544$;$2484630206179612672$;$3242865270414854144$;$2921732362821185536$;$2119185490178771968$;$954911657749630976$;$3179806144411488256$;$2785822701768428544$;$-2462357817121993728$;$1705372866762219520$;$3940147296362802176$;$-3254817662260752384$;$-87808981372517376$;$-1863207668876385280$;$-489438628755909632$;$-1405599132007791616$;$-22891476251242496$;$4486120189599868928$;$1294808671562984448$;$-372800883790985216$;$4313001294879024128$;$2757058355190582272$;$245791475667716096$;$-3564060061788361728$;$-2383277877279780864$;$-3630003374638013440$;$-363318211034769408$;$2220830276210830336$;$3309662435894537216$;$3374648591812282368$;$-2896003737984100352$;$3756473745193764864$;$-4140218614167107584$;$-2192311602011348992$;$-417430351763093504$;$878874293158124544$;$-1785565671922428928$;$4384909407105917952$;$317393000935700480$;$-3068164627312466944$;$-1592755146469915648$;$-1299104077370341376$;$-4261691172366717952$;$-1524789989452694528$;$-239904870476379136$;$1815672245439254528$;$532144738607585280$;$-119003860308103168$;$-3511195627051026432$;$-1401821934511895552$;$-384147425927046144$;$-157292169424529408$;$-2851812017568799744$;$-351703306941363200$;$-2889876289970207744$;$2999329257208036352$;$-3488582732678821888$;$3247812694103554048$;$-2783360535237490688$;$3325847122349008896$;$-2216824105698920448$;$-1247602172591878144$;$-1600877769629474816$;$670660404549606400$;$3586820890509778944$;$289837698129881088$;$-3385007566928378880$;$-480264512247232512$;$-2775229305570473984$;$-2775815417773492224$;$4198405022875180032$;$-882937062574715904$;$634468173823357952$;$263748246593196032$;$-2092237525676960768$;$1298814016848330752$;$-2772182811522767872$;$3418037475937947648$;$2289915859938467840$;$-1059569983364971520$;$-3020516970690163712$;$3821968770156024832$;$-467771838254633984$;$-1239211984198443008$;$-288131419362379776$;$-1562222240998242304$;$239708279686724608$;$-706206680211400704$;$19345053037846528$;$2657335547593718784$;$1219167248974530560$;$-4406192632878824448$;$-3045339017214439424$;$-4288451901814396928$;$-3259111504149344256$;$-1468575585317088256$;$-1051180747705268224$;$-3438458323831795712$;$-407976112656333824$;$3576213237138740224$;$-3827048604311975936$;$3614977547652270080$;$83090705843610624$;$3770120019640541184$;$-3985695250651630592$;$-4522347076336404480$;$-3796765468060763136$;$3033782187920947200$;$1060889864406049792$;$2708423017258147840$;$-2884447225004990464$;$-3937257518313962496$;$2321724377137152000$;$-1127952997918265344$;$1461371600335953920$;$-1568670881690202112$;$-4485789258091810816$;$3159971741475328000$;$435287673281290240$;$2111095142246396928$;$2290687540793034752$;$-116521984454177792$;$3144435446769400832$;$-936686165143873536$;$-1121164529851402240$;$1335487017839022080$;$-3711118699363369984$;$-2053949857274508288$;$231882507397634048$;$-4577829390314546176$;$3243063879765539840$;$-3511198923741209600$;$607072867329031168$;$-1892334563541051392$;$2583316227984785408$;$-2643523720182718464$;$1535988976171030528$;$807470110127709184$;$2744383925272147968$,㙹絒ხ睑툸藡甎䳵ﲘたټ뇕볖▛࣡ϫứᾤ䣎᫪扺持퟽䇠Ἧ퓯了㪠̗⑱偌끡꠬曷䕵ᦫǬૣ냜电鈑Ò흀ʩ籫䜷舣勞‏퀷瑋᪅ϯᨐ徻⫴祿캕怑Ꮹ莨冬탭縖퓭﫬쒏㪺쯍秗쨟䚑啙⮫ﲵ營抠࣢퇗瘂䧗﷟ၜ誦䄓擬년⹈曼૗刻⧅ࣔ녃ဒ뜂䮮묯뗤඾ে႟嘫䲬︿Ộ됤뭏鋝옉菕쉋塛啶㸲眔ጯ浃࠻뼆ꀉꛡ囹Ň䳓誻횔嵁瑣舁帔尳ছЧ⮟뀔ꂵ༛뻪Ŀ垡靇胡酗겉薜컬⽝乍忘㓯鿆驫ᗱド蕆✷ꅸ䬡ɲ梀덈ᜤ沌ꔸ돦粏丿砵嚈˷ﭸ⊡昺ᇀ᱐䘄灺찣艫䉹蟴ᵣ㕬䲒ᛘ辌侀뉍気䪻ょᏸ碷믧栎τॶ倛ຌ쪐盛Ἀ갭ɺ秧໵菆丼껝岋㰧㙽䊼﮳缼밙鋆궈ꞃ﵎튱뻌蠅蠙⭝㛳ㆴ晉뼳퉑ყ䫪䚉䢤఍贡및ꁂ̮ၞ剀꿍Цﯖ滐앒뇼㐓⡭K꾶ᲄ펂﵃⌭ꍰ䱘낫閜ࣱퟢ惯쟺뤰傗忉ʷ颔媚褿៌ꔂꌵ鈏᫶ᖞ㟧Ꝃ窕샠ᤚꥡ兤넴椓皶⠤藢閐黜, -29,,1443154423.17,,"L'q eljnYҴ4r$P˨۱grvWJ!ҰkE[0'f8۰g""6$;pq(tW MB%Je& {kX)i k$,} -#R eĔ$dYg8L}eW-꯯`""NEV{ׅp'>j|1+sc?n4,=ޞ*wB1=Zm$QWJٯ ;RKr$2T_ CRF>0m""&B"";uNut.h#[$}QP$HDB""z>C",,"{""a"":7.87750178648453e+307,""b"":""\u1199\ub467\uf904\u2849\u9e4f\uef40\u827b\u11bc\u9a92\ud2e8\ue1a7\ubcfe\uaec2\u5ba8\ua267\u3b01\u1f4c\ud5a5\ud87d\ue45f\ufeb2\u24de\u8751\u9732\ube00\u7c5d\u2af8\u2f73\u0307\uc35a\ufd8f\ua030\u97b0\u3cca\uebb9\u0326\u7956\ufe9b\u5b6d\uf7df\u86ef\u171e\u1900\u3a04\ub82f\u010d\uc8a3\u3008\ued57\uc193\ue988\u8738\uae68\ub6d8\u0bb8\u49fa\u5ed8\u0638\u92ac\ue5d4\u3ff4\u5a6b\u43f9\u9596\ucddb\u0f89\uaba2\ud653\udb20\u0926\u7c8b\u472e\ua2b2\u39eb\u9f39\ua202\u130c\uc5ca\ua3f3\u4930\ua791\u4e53\ua3eb\u5986\u725c\u08e2\u70b4\ue1eb\ubdaa\uff3f\ua096\u7ab2\ue0f4\u01db\uea03\ufdd5\u07b2\u4472\u8b06\uec52\u4b95\u739c\ubb41\ufb76\ueb54\u61c9\ufd6f\u4382\u1c80\u871e\uee8a\uaec7\u282f\u1278\u464b\u511c\ud84a\ufa1f\ude9f\u2b87\u08d6\ude59\u4fbd\u6ed3\u7f16\udb1f\ud19a\uc153\u09db\uf093\ud369\u3913\uc62b\ucff6\u4f70\ub129\u6e3c\u2664\u7def\u55ba\u949c\u8787\u3743\uece2\u9130\uc9aa\udbb7\udd79\u5cf0\u515b\uaa90\u47f2\udfb5\u52fd\u7eea\u71ed\u5217\u4c03\u1f8c\ucbcc\u7385\u0d19\u2dc2\ud23f\u47ba\ue495\ucfb1\u4716\ud921\ude5f\uc6c6\u74d9\u02c3\ub9b4\u69b6\u21ac\u9293\ufd62\u2a58\u0bd0\ua9dd\u46c8\u5e74\ub0a4\ubcd1\uad01\uff99\uf180\u0298\u5160\u9742\u2412\u7409\u1ba2\u792e\u2728\u630c\u6ac1\ub10d\uc915\u6951\u6110\u531d\ue1ed\u47ed\u06f5\u78c9\u5b9a\u8e56\ucc14\u7793\ua988\u5b82\u6357\ud425\u7676\u0fc7\uf4cb\u3a46\u5600\u97bc\u5659\ufb29\u893d\ufc2c\u190e\u7c9d\u276b\u6898\ue9a6\u5b54\u31e7\u17b4\ue0dd\udd6c\ud184\u549e\u3e14\u8165\ue2f9\ub299\u3646\u9a3e\u7e86\ubf1b\u7192\u6ad8\ub401\u4aa1\u6dec\uec0b\ua34e\u7959\u3305\uf134\uc75a\u0d1a\ua0c8\u5768\u2653\u4ad9\uc6a6\uc145\u5299\u5fd2\u833e\ubbcf\u2e76\u6f76\u33ce\ud41c\u2ab4\uab0d\ud6ac\u206c\u0b44\u7652\u47de\u7377\u8746\uce69\u80cc\u36c5\uc45e\ub4f9\uabd9\u9dbb\u6367\ube42\u0b60\u8e8c\u252a\u5233\u2782\u20c6\u1280\u4ef3\ucd7b\ub1ae\ucbfb\uc677\u3065\ud206\u0f10\u9aa5\u542b\u4fae\u47d6\u8230\u1267\u569c\u5a64\u27f8\ue407\ubedb\u769b\ubfba\u2b45"",""\u798f \u9152\u5427"":{""fu"":3.446611065427374e+307,""bar"":4.0179216522449437e+307}}",,"8438292955909120 -3191462112282466304 --940985485151939584 -1581386805363154944 -2419638903672910848 -2436976733314998272 -2635587719746094080 -3049455788169887744 -2734446169738254336 -3802370240159539200 --3197793889711984640 --2034079121219833856 --3517638042499688448 -2756999241045108736 --1412265644228725760 -498571406695812096 -1945268558396673024 -1067709049175296000 --1755186001096647680 -1209827512450835456 -1136039929766154240 -4312034546036769792 --1399867091509181440 -4290417301117100032 --2921394816520898560 -2496880800803959808 -965473784240115712 -1182774026808799232 --204187429932446720 --1962763105531218944 --4187805140317569024 --1090674096672538624 -388428273977304064 --2964416501088735232 -1247864933181831168 -3018320011868167168 --2922434649079937024 --2827244412656866304 --3941730724942339072 -413922725061238784 --1618565128455656448 -1670593075480481792 --113529630987033600 -3579116315990105088 -1316506630711250944 --3278024262913878016 --1791772379654441984 -148357060326915072 --1254464141464833024 --1219358170260856832 --2487186464879950848 --985666436233937920 --4492790386172960768 -859578435120121856 -1069511686914102272 --2546881994435684352 -1383763304766642176 --1976291571616159744 --219007750171569152 --689365801733415936 --3032017309191276544 -1305037600192734208 --822730724151449600 -3896004358894362624 --185389333132044288 -2828439957331303424 -3265540318841452544 -1196403371857777664 --865747885723894784 -991927485922191360 -1829173012796702720 -3003777791880087552 -875864942004777984 --3906930367163794432 --3556992320143121408 -360875131684518912 -1097192526183027712 --4329698010673551360 -1583869490970557440 --3605038796927935488 -3551902197500027904 --3756081063055204352 --2031738830261118976 --3213796178926836736 -1941016281421272064 -1947884591993230336 --1753168290509890560 --2786095117063500800 --1175249783729773568 --4560451260953735168 -3635989984301326336 -2077423486181774336 --3219702903282367488 --1133662662501934080 -3805300068743445504 -2885471987442015232 -943411261838943232 --758896149326300160 -2243762487234868224 --4396042532596916224 -4135675584231220224 --3520719017587573760 --2489596685452412928 -3087919608796354560 -5528103612744704 -3984978153643215872 -752292869852181504 --156753170762930176 --2893513703776205824 --3042015697772354560 --4472526803908539392 --3363167393493800960 --1211209248059123712 --3599354006913178624 --381658921576709120 --3283553007060512768 --1794909374936779776 -1434993633169009664 --4135047841340421120 -2155453210560419840 -2207629829822789632 --547915819442563072 -874473219361768448 --2865784086497923072 -866183627139550208 -1605554808600632320 -3924157859730817024 --1483456978135007232 --1787387014346009600 --3761499118655625216 -2607848997433774080 --4305731084018494464 --556519101405495296 --1550344309458666496 --2599009180434294784 --3742143353491180544 -3295753798649701376 --1865235429104310272 --916816830343925760 -2347816567161783296 -1292253523911275520 --2501458772983001088 --2126610914109842432 -3715132599812982784 -4030667509350548480 -552883453941745664 --3760474043195269120 -2138958318865470464 --1623589068932134912 --1538092436835293184 -3061440769178159104 -3783395860755009536 --259052143205985280 --1465068668876350464 --824879572047962112 -313612749329996800 -1976544364672239616 --630043356984383488 --3808783791078208512 --4447784430417692672 --707871505956334592 --4502487026027439104 -3733155208764919808 -1384002906617015296 -2705327876392069120 -2082824782198162432 --1707795592846550016 --1480446091780483072 --3772047796341188608 -2860292405842053120 -1150965604032849920 --921874374067450880 --1756405622534000640 --606918868952970240 -1968172921011727360 --2410710703205997568 --2631668596273142784 -116432236419461120 -499292297914398720 -3950518634245045248 --730011106101321728 -772359699756941312 --565138831814352896 --637129089809658880 -472755215864609792 --4346366009139140608 -1424062774258440192 -1074622078487896064 --301682219353498624 -3381982494888665088 -1005544803525699584 --1102422604603555840 --1611207800009017344 --308414549748593664 --2370778767141907456 -678791810155948032 -2296073191090452480 --894393969579761664 --2483338217858549760 -2245765618347062272 -4547045043054349312 -2500170985445691392 -4060446647411333120 --2056134768871380992 -4141998942567520256 -4436169906467319808 --2314947722957155328 -1449777880288125952 -4348005321560975360 -2605198588451698688 --1216866616054532096 -81455232026447872 -1228172063514024960 -354113203630968832 -2876740218269125632 --286999824291438592 -3267106243849363456 --2204819152603501568 -467047740494441472 -1229027142895760384 --2849004281069290496 -3956323621370105856 -728539998524811264 -3377542670090201088 --2460588499543487488 --3506294664695409664 -1793426603864946688 -2554928238940706816 --1994477299259719680 --2069857744266329088 --969447160880882688 -2482166488429510656 -3648402956157810688 --2792968961201695744 -244328426770544640 --933494323840156672 --1903052486083652608 -2205046747831684096 -1738259820910504960 --3158763901808333824 --2940416433848264704 -251487108741044224 --2981101983161366528 -4008501577064066048 -112870864937577472 --1538412971057686528 -4030653247548403712 --448116067237608448 -1685964095330436096 --2548064594973215744 -1216158681481757696 -3073480853728247808 --2720897625309955072 -3282034257887199232 -4291841462539063296 -1913420139835613184 -106136359300726784 -1382348118514027520 --877983796506977280 -2620010890922416128 --796947237052668928 -1701070514574127104 -829880012948048896 --886260485053447168 --3157653090634101760 --4600217661691915264 --2115119742694455296 --1275699731274881024 --780081019538821120 --1412899943801031680 -299359790449330176 -2483683071268614144 --2007975101880255488 -1616910116833945600 -3400569152697065472 -2608223252443358208 --4387355909692024832 --4289487028500612096 --330279687743645696 --893706817042361344 -4438731359991838720 --1063594024376604672 --2331604979180184576 --558154999088692224 -4330395195567512576 --4280267229501865984 --3727655072124467200 --2134028589617930240 -415990283598601216 -1837715407542832128 --4053111305696914432 --2925676139263220736 -534951725802401792 --2597868371335531520 -1906408088867907584 --1940865470368508928 --3741371620885942272 --2048031598012971008 -3496728585046983680 -3014493782880439296 -1973838757835657216 -1010617298263571456 -3013679739434469376 -1078426402619181056 -3308920603089494016 -3627128748274140160 --3643014633046628352 --3547730406796413952 -4240522538770545664 -3110188381391722496 --3744375577830531072 -2652571163788207104 --1185739344454897664 --451154272455317504 -4104545681359179776 --4099320474509290496 --2770409142939696128 --1753463052835097600 --1072038882919142400 -2620730489284322304 --2648454310891182080 -2211673919167782912 --3943198975976566784 --1676860892380646400 --3914398716814397440 --377879514176622592 -1525549072139565056 -634861115508934656 --1453982598290299904 -2640711167371713536 -731982956370466816 --2390151252035962880 -2204305317296646144 -457895013594889216 -1049261825418380288 -1586742110418430976",$8438292955909120$;$3191462112282466304$;$-940985485151939584$;$1581386805363154944$;$2419638903672910848$;$2436976733314998272$;$2635587719746094080$;$3049455788169887744$;$2734446169738254336$;$3802370240159539200$;$-3197793889711984640$;$-2034079121219833856$;$-3517638042499688448$;$2756999241045108736$;$-1412265644228725760$;$498571406695812096$;$1945268558396673024$;$1067709049175296000$;$-1755186001096647680$;$1209827512450835456$;$1136039929766154240$;$4312034546036769792$;$-1399867091509181440$;$4290417301117100032$;$-2921394816520898560$;$2496880800803959808$;$965473784240115712$;$1182774026808799232$;$-204187429932446720$;$-1962763105531218944$;$-4187805140317569024$;$-1090674096672538624$;$388428273977304064$;$-2964416501088735232$;$1247864933181831168$;$3018320011868167168$;$-2922434649079937024$;$-2827244412656866304$;$-3941730724942339072$;$413922725061238784$;$-1618565128455656448$;$1670593075480481792$;$-113529630987033600$;$3579116315990105088$;$1316506630711250944$;$-3278024262913878016$;$-1791772379654441984$;$148357060326915072$;$-1254464141464833024$;$-1219358170260856832$;$-2487186464879950848$;$-985666436233937920$;$-4492790386172960768$;$859578435120121856$;$1069511686914102272$;$-2546881994435684352$;$1383763304766642176$;$-1976291571616159744$;$-219007750171569152$;$-689365801733415936$;$-3032017309191276544$;$1305037600192734208$;$-822730724151449600$;$3896004358894362624$;$-185389333132044288$;$2828439957331303424$;$3265540318841452544$;$1196403371857777664$;$-865747885723894784$;$991927485922191360$;$1829173012796702720$;$3003777791880087552$;$875864942004777984$;$-3906930367163794432$;$-3556992320143121408$;$360875131684518912$;$1097192526183027712$;$-4329698010673551360$;$1583869490970557440$;$-3605038796927935488$;$3551902197500027904$;$-3756081063055204352$;$-2031738830261118976$;$-3213796178926836736$;$1941016281421272064$;$1947884591993230336$;$-1753168290509890560$;$-2786095117063500800$;$-1175249783729773568$;$-4560451260953735168$;$3635989984301326336$;$2077423486181774336$;$-3219702903282367488$;$-1133662662501934080$;$3805300068743445504$;$2885471987442015232$;$943411261838943232$;$-758896149326300160$;$2243762487234868224$;$-4396042532596916224$;$4135675584231220224$;$-3520719017587573760$;$-2489596685452412928$;$3087919608796354560$;$5528103612744704$;$3984978153643215872$;$752292869852181504$;$-156753170762930176$;$-2893513703776205824$;$-3042015697772354560$;$-4472526803908539392$;$-3363167393493800960$;$-1211209248059123712$;$-3599354006913178624$;$-381658921576709120$;$-3283553007060512768$;$-1794909374936779776$;$1434993633169009664$;$-4135047841340421120$;$2155453210560419840$;$2207629829822789632$;$-547915819442563072$;$874473219361768448$;$-2865784086497923072$;$866183627139550208$;$1605554808600632320$;$3924157859730817024$;$-1483456978135007232$;$-1787387014346009600$;$-3761499118655625216$;$2607848997433774080$;$-4305731084018494464$;$-556519101405495296$;$-1550344309458666496$;$-2599009180434294784$;$-3742143353491180544$;$3295753798649701376$;$-1865235429104310272$;$-916816830343925760$;$2347816567161783296$;$1292253523911275520$;$-2501458772983001088$;$-2126610914109842432$;$3715132599812982784$;$4030667509350548480$;$552883453941745664$;$-3760474043195269120$;$2138958318865470464$;$-1623589068932134912$;$-1538092436835293184$;$3061440769178159104$;$3783395860755009536$;$-259052143205985280$;$-1465068668876350464$;$-824879572047962112$;$313612749329996800$;$1976544364672239616$;$-630043356984383488$;$-3808783791078208512$;$-4447784430417692672$;$-707871505956334592$;$-4502487026027439104$;$3733155208764919808$;$1384002906617015296$;$2705327876392069120$;$2082824782198162432$;$-1707795592846550016$;$-1480446091780483072$;$-3772047796341188608$;$2860292405842053120$;$1150965604032849920$;$-921874374067450880$;$-1756405622534000640$;$-606918868952970240$;$1968172921011727360$;$-2410710703205997568$;$-2631668596273142784$;$116432236419461120$;$499292297914398720$;$3950518634245045248$;$-730011106101321728$;$772359699756941312$;$-565138831814352896$;$-637129089809658880$;$472755215864609792$;$-4346366009139140608$;$1424062774258440192$;$1074622078487896064$;$-301682219353498624$;$3381982494888665088$;$1005544803525699584$;$-1102422604603555840$;$-1611207800009017344$;$-308414549748593664$;$-2370778767141907456$;$678791810155948032$;$2296073191090452480$;$-894393969579761664$;$-2483338217858549760$;$2245765618347062272$;$4547045043054349312$;$2500170985445691392$;$4060446647411333120$;$-2056134768871380992$;$4141998942567520256$;$4436169906467319808$;$-2314947722957155328$;$1449777880288125952$;$4348005321560975360$;$2605198588451698688$;$-1216866616054532096$;$81455232026447872$;$1228172063514024960$;$354113203630968832$;$2876740218269125632$;$-286999824291438592$;$3267106243849363456$;$-2204819152603501568$;$467047740494441472$;$1229027142895760384$;$-2849004281069290496$;$3956323621370105856$;$728539998524811264$;$3377542670090201088$;$-2460588499543487488$;$-3506294664695409664$;$1793426603864946688$;$2554928238940706816$;$-1994477299259719680$;$-2069857744266329088$;$-969447160880882688$;$2482166488429510656$;$3648402956157810688$;$-2792968961201695744$;$244328426770544640$;$-933494323840156672$;$-1903052486083652608$;$2205046747831684096$;$1738259820910504960$;$-3158763901808333824$;$-2940416433848264704$;$251487108741044224$;$-2981101983161366528$;$4008501577064066048$;$112870864937577472$;$-1538412971057686528$;$4030653247548403712$;$-448116067237608448$;$1685964095330436096$;$-2548064594973215744$;$1216158681481757696$;$3073480853728247808$;$-2720897625309955072$;$3282034257887199232$;$4291841462539063296$;$1913420139835613184$;$106136359300726784$;$1382348118514027520$;$-877983796506977280$;$2620010890922416128$;$-796947237052668928$;$1701070514574127104$;$829880012948048896$;$-886260485053447168$;$-3157653090634101760$;$-4600217661691915264$;$-2115119742694455296$;$-1275699731274881024$;$-780081019538821120$;$-1412899943801031680$;$299359790449330176$;$2483683071268614144$;$-2007975101880255488$;$1616910116833945600$;$3400569152697065472$;$2608223252443358208$;$-4387355909692024832$;$-4289487028500612096$;$-330279687743645696$;$-893706817042361344$;$4438731359991838720$;$-1063594024376604672$;$-2331604979180184576$;$-558154999088692224$;$4330395195567512576$;$-4280267229501865984$;$-3727655072124467200$;$-2134028589617930240$;$415990283598601216$;$1837715407542832128$;$-4053111305696914432$;$-2925676139263220736$;$534951725802401792$;$-2597868371335531520$;$1906408088867907584$;$-1940865470368508928$;$-3741371620885942272$;$-2048031598012971008$;$3496728585046983680$;$3014493782880439296$;$1973838757835657216$;$1010617298263571456$;$3013679739434469376$;$1078426402619181056$;$3308920603089494016$;$3627128748274140160$;$-3643014633046628352$;$-3547730406796413952$;$4240522538770545664$;$3110188381391722496$;$-3744375577830531072$;$2652571163788207104$;$-1185739344454897664$;$-451154272455317504$;$4104545681359179776$;$-4099320474509290496$;$-2770409142939696128$;$-1753463052835097600$;$-1072038882919142400$;$2620730489284322304$;$-2648454310891182080$;$2211673919167782912$;$-3943198975976566784$;$-1676860892380646400$;$-3914398716814397440$;$-377879514176622592$;$1525549072139565056$;$634861115508934656$;$-1453982598290299904$;$2640711167371713536$;$731982956370466816$;$-2390151252035962880$;$2204305317296646144$;$457895013594889216$;$1049261825418380288$;$1586742110418430976$,嶗஁缠ᗖ鰱阙梁䷺ࣕᆚ种뷻슘锪Ӣ腦毘ꬅ쮥옔熇䴑廒迂ᥱ曎梾蹕ꒂ鲳蟲뺭釴㚶쯩ьꓱ罉䭪ㄅ縡듉쳾쥁鐵㤞죮꼁റ쉑鍛⛯튣᥸駧郌䗦匲嘥ᇭ匛⇭ꤎ둯䠵㪎⓮ἡﮛꗉh蠧䩏ꦛ⏍Ꞟ㘌瀲颢紑훌抹ᖻꎢ᯻䮝ᅠ퍻ߥ⬛詙滃辛쁱⴬̷ᚥ癱ꕗ틅ꠟﱲ斈遍跿昍ω蔮⯬ꝊȣḮཱྀ摫ࠋ诇뻜ಜ㼥ﴱ뵶羛倓슣佔죋鰣ꍁᰅ뗸赠鱪팰귃✫ﺓ싘焜䜽쌟葬遛봻匁舗叠䖧ꄿ졼ꕘᇏ砶኿ү畏蕥註췑箳ⴺ붋쫢㓳ਘ涥릨呟ೝ۾㊂흁ი宓㤟恩馶ၕӪⳍ⭼鞤⠃⒖౧ᰫ勋픨ꦴꠉ鿸ᄯꬎ膰눭ꁸ鮅ᄂ♼爃災賩씡갰愽荻࿐㼖휕͞ध鑶씀獦뉲╛㯦㱐࣪᤯踠稅鑼籊㓿塕犬鋾ꢠ碔Ꝃ뤢묰壜扼ﯺㄜ㡼㛐쫲ꏉ擑轶ᬙ赇㓲䟪跧왈椯岤璱諽爋탵끌◆䪍﹮뺋뗰䴲֐㛒콙㶔唰ᛮٖ։蝺鹍䏛蚢】④処춢ꬂ䆖覕ᄝ蚡뵭泿眼쮘뽓ጌ⩤∱᠃খ琘绹낍俪԰嘵튻貌Ƃᬋѽꤊ野磩阑킟触᪖幽㇏석㙚龰蘧᠝Ḷɯ䲀⬷궥䢮ᘜ쯛웒ꙻ啯९鿢섌繆潓渻ꟾㅳﱽtᕧꤞ䫗奅족䱲鴕ﯫ泹湝퐦沜䡖媯햳骪㜙㺦㿹䤍蕐庣๡ㇶ跷㡂溫蔔䏣츣횿쁐뼀֢软ⶫ䬡릤뛕ႋꒌⴛﬕ䘧獵䠗툴銖沃൲晴㭥클ա쐡ဧ㢔鱆絀讏펢뮇㛇ꍒ酁퐇嶦뤫ᇢ﭂㰥멀랄ּ࡛⩳쪟⽘꜐䢗缈ৡ茢ᶓ럼믿䨕ꗹ胪塖雙欘쉧ŷユ正闄㿮쮆囋䏑➁솔아⏳개㱘弽羕흿禟籙뭙儸讳꺄㊯䔸Ვ螣뾋亳㑁뷁罕岔씼ﭾッ䱑⪶൑鋔⽖リ䠩危Ჿ㢲㣎冽᠇鍎뭉ᤅ엧쭺矲⊘䨏枫짴乖賓醱ⷹᴈ퉵֡뎆ᢨ溿졺㼑汽썝맵썄鮿ⷥ㬜箷순蛧射它葧⟝潬⏫ꦨᓗ᠁쁳럂痾者ꐨ봠銇黟鵠䀎쳀쮮鹀˥吇壳聒⻺嬧ᨛ믍ﵥ⺐좞ἲ䌙破쿧ﭚ靥ش飢ꉲꢦ錗뺅账뉩ᢑ帖荜噅穳⣳쎘ƁЕコ䣸ិ䋺뀦옕쨄훨⥍㢒ዠ宼麭⵰舘ﱘ쬵뜕䮵퀊댋ꍔ쀌ꆃ懸᭻⯨ꅔ賳锫ॻꝪ緼촘᲻ὐㅠ咕愿䎿ꭧ㉰끻뺐൙Ä쥒Ħ鉦ꢳ鱘ﮟ㌚甃뛑恛뙛橚 攞䒹퐲鷬晒沒梽ㆦ齲絥ꆠữ뮮ࡕᛐ瘝箓傴뵩ᖋጕ睄픴亇☯ܖ漤⋴㵠㘇숄⪝綀惈硝略漑䢩杉瓲擯몀Ɫ缩৴헣ࡴ횣쌜ᗕ栴죿ቔ䤖媕㠝劅挒긑譽첾愒規ര䮈ᖂ獁鎢憩䞦έﳺ颃ꣳ靟鎏쩳촩骮淕੩뢅魄韰䣢柟襻욫祉佒丷젉갻鄜䥾늵ﮅ⊄쎷뗲꼣ㅫ◑걇傖籝굈ဝ珱큐ꧡꄝ关籜祷ᖃ㉚ᒳ겡ᵢ坂숰గ魰컏얅׬砐즵盓䎱萺Ϸ᫑즸୾顝渙칍炥드轤㴱最ꭎᇖ럘兌㮪뽺䄁똘敊嶷웦⃀᫲礠䀻⾺푖닡锒찼ꃡ恔樥麤ꕅꨶ摹賦ꓚ쏅䀔孼፠ꨈﶸ薷㳯㆘諷꣱鯀ኑ唿敓氻ӐŠ鶈䒭벒靭⃚ꩇT痻묻鋑릇漟䁨뾦ⷠ㒊ێ, -30,,1443154423.18,,>sЗ6LOK;3QN4ՄŒ 5Džvo Ǚ*ݓ/,,"{""a"":4.485629169067438e+307,""b"":""\u3405\uc56e\u1656\u3f3e\u14ec\u6e7f\u0bf3\u398d\uf960\u3e3b\ub0a4\u4108\ud039\u1daf\u8b4a\u7fcd\u7c3c\u8146\u9537\u2af9\u45ba\u7b57\u3549\u936b\ued65\u3940\u21d8\u4e54\u6cce\uc465\u580c\ue3eb\u7bbc\u86ef\uf546\u038f\u9b08\u6da4\ubd60\udb28\ubfa6\u5614\uf069\u4f23\ube9a\u5c6f\u0680\udcf0\u5c25\ubdb8\ua6aa\u5010\ub56b\u82d3\u892d\u6b66\ua0d1\u76ed\u2726\u51cf\u392b\uf56d\ua421\u44ed\u29fd\udc47\ub6a0\ue891\u574b\udb44\u1e9b\u66cc\u48f8\u44e6\u3c6f\u82ff\uaab0\ua21d\ue2d1\ueaf4\u8976\ub000\uba03\u194f\u1865\u6f45\ua6c6\ue2d3\ub77e\uffed\u9fb8\u436f\u3211\ubeee\udb45\ue5b9\u8403\u2a25\u0319\u1cf2\ub25d\ue1de\u02ba\u6acf\uf5c6\u2fc8\u17ec\ud19c\ua025\u4f28\u01b2\u39d3\u17ee\u3a6e\u76bd\u8d5b\u370e\u6bee\u1029\ua211\u3f9b\uc0a8\u6386\u25b3\u4311\u3bb0\ue012\u7cd9\u2136\uc37e\u376e\u86fb\u15a3\u4035\u8c44\u11cb\uc184\u22a8\u423f\u9959\ufe30\u9169\u1443\uecd0\ua5bd\u46e6\ub573\u2aff\u18dc\u38ab\uf435\u8319\uc25c\u64d0\uee25\u78e6\u6dba\u3f68\ucc48\u0f39\uea80\u26b3\u4ebf\u5124\u0c1e\u325c\u4f86\u28bc\ub5f2\u2cb1\u86f2\u1225\u5570\u7f0a\u41d5\u7a93\ud402\u8dae\u0f67\u99b7\u11cc\u419a\u1550\ue362\u4639\u3415\u7b9a\u836c\u3f29\u951e\u3ec6\uce4c\u9101\ua824\u3cbc\u03d9\u60c7\u41c3\ua221\u6d20\u1969\ue59c\ufcbb\u240e\ue4ad\ub1a7\uf952\ueeba\u5f1c\u56c9\u0c39\u13b2\u9962\u539b\u894c\uf067\u80b0\u57ee\uedbf\ubce0\u8998\u3864\ua2f2\u462a\u42ac\uba5e\uea38\u3731\udf21\udf4c\uf150\uf0a5\u9618\u594a\u14a5\ude34\ue549\u326c\u2917\u4293\u50b7\ua91e\u35af\u3900\u59a8\ud1f0\u4938\udfc8\u9178\u7d86\ud921\ude1d\u23f9\u785d\u4725\u70a8\u2b75\u1676\uf424\u11a2\ua8ec\ua3ec\u9af8\u3293\ud7a9\ue794\u1acc\u2848\u08c7\u043a\u9b13\uddfe\u702e\u88c6\uabc7\u238a\u9a86\ud606\u5e61\u8a6b\u97d0\u30ef\u0cc8\ud605\uac35\ud761\u9ea9\u1cf6\u8418\uf252\u3381\u85a3\u8d76\u66b2\u7418\u3223\u8d93\ud58b\u84c8\u450d\u2f77\ua87c\u03cd\u57dd\uc20d\uf3a9\u3adb\u412c\uab8a\u7988\ubf1c\ub276\u4d89\u8993\u09da\ub179\uf21c\u8605\u00b5\u3326\ud88f\u11d5\uf1bb\u58e6\ufbb6\ud0c8\u2c43\u4dda\u5b28\u0729\u6abf\u22ac\u390c\u4394\u0331\u0a0d\u9335\u2c71\u4734\u8996\u672a\u1f58\u5386\u46b4\u47f4\udbd4\ub64b\ua839\u4a1e\ua3f8\uae9e\ue0c7\u30a6\u9fbf\ua56c\u0575\u6f02\u2680\u7125\uc100\ud8db\uebd6\u7bd6\u191b\uf298\u252d\u7d03\u0ad2\u8b2d\uc154\u9c36\ubfad\ub526\u70a4\u1cc3\ud8b2\u7670\u97c6\ue4f6\u4a6f\u359d\uac7e\uaa06\u7cb6\uce57\u1fc5\u1f44\ue464\u0fa1\u9999\uf8c3\u5de9\u227f\u4843\u9ebc\u8ecd\u66fe\u1447\u6b54\uce05\uaabf\u7a28\ub1df\uea6b\u090e\u5a6b\u65c1\ufc8f\ued10\u0a08\uf01d\uf427\u4024\u2f6e\u9147\u77c0\uc7e5\u0d31\u12d2\ub0e4\u90a7\u6b0f\u94fc\u4864\uec2c\ued55\u7a32\u236f\ud4e1\u15a9\u3f64\ub664\ua98e\uc0a7\u118f\ub9fd\ue961\u5f2e\ud213\u5b26\ubde0\u2067\u9e1f\u2d12\u3e86\u9f5a\ufc7f\u27fa\u6459\u9e06\ua99d\ub1d1\u5d5f\u8aa6\u59c9\uf766\u6b4f\u18a7\uf7d6\ua59e\uaa4f\u9ece\u9e99\u34f1\u7de4\u9b8c\u0f85\u4b7d\uf52b\ub1da\u3f12\u18c9\ud532\u0aab\uc84d\ud755\uaef9\u3347\u1179\u9572\ub008\ub927\u8621\uaac9\u50d5\u7e56\u0821\u0afb\u9809\ub7e7\u0f6b\ue913\u3a0e\u646a\u4c3e\u4a51\uca65\ud576\u48b0\u8307\u9621\ue4eb\uc24c\u8c73\u11a0\u1ab2\ucad9\u7f76\u0bd6\ua352\u8fee\ude7c\uc000\u3fb1\u1522\u3f47\u4014\u13e9\u1af0\u7211\ua79b\u4abe\ud850\u1f5d\uf8b9\u61a0\ub5af\u58bb\ub0b2\ua390\ua74a\uff94\u4a3e\ud7e9\ub903\u7a67\u02bc\u4a88\u310e\ud371\ub26b\u576d\u0f97\u4277\ue5cf\u8597\ubd30\u1d94\ucc23\u1ecf\u805a\u9071\u7046\u45e9\u02ea\u2132\u2100\u5b1b\u3333\ubb6d\u1c9f\ueda2\ud956\u1e33\u4931\u7e2a\u8417\u0012\u4f6b\u7e47\u26e4\u490a\u277d\uc810\u50f1\ud7f7\ub5ae\u81cb\u7c08\u4edc\u6c4a\uc3ed\uc83b\u5683\u05b0\u26b7\u86c1\u231f\u066b\u7f0f\ude80\ua172\ua10c\uf8ca\ub924\u51b2\u4202\ubeaf\udd14\ua8d5\uf520\u7b56\ue6a2\u5c4a\ub72d\u6737\u4d76\ub75e\ud5a3\ub742\u1592\u3bfc\u729c\u998d\u2643\ub2d4\u4bf9\ub907\u5f9c\ue54b\udc07\u6cd9\u7556\u5d1a\uc901\ue299\u75ed\ub8e4\u5e0c\ud3ae\uc6e8\ub381\u3a96\u2a58\u00a6\ub981\u1ff1\ue849\u8bf7\u071c\ue57a\u0f9b\u61d2\u8f00\u759a\u3a2a\u8f1f\ub31c\uf5ba\u3567\u42d0\uffba\uec29\u31ba\u5e15\u9477\ue86e\ufc9c\uf4a7\u51df\u2a74\uf1af\ua538\u602a\u7010\u01a5\u3c06\u18bf\u2938\u608b\uaf95\u1250\ufdc4\u5c5b\uc7b7\uade9\uf693\u624b\u13bf\u4cff\u6ced\u68e1\u0c5d\u72ee\u3e0b\u7c12\u4f76\ub6c5\u53d7\u83be\u6733\u0dce\ufbd2\u4b17\u0f7f\u59f0\u1486\u2a37\ue50c\ud06c\u38da\u3d40\ue802\u245f\u229e\u1073\u388d\ub3eb\udd3f\u1e3f\uffb7\u050d\u5d2f\u32ba\ued16\u47ee\ue14c\u648c\ud994\u9109\u39cc"",""\u798f \u9152\u5427"":{""fu"":1.3784681212841968e+308,""bar"":1.2184596174189031e+307}}",,"-1322536697583593472 --4210579812174846976 --417050970830199808 --2615951364510444544 -1140948380418718720 --2692298089647763456 --3197447632671010816 -2612251760438716416 -2334444285349967872 -2275597812397635584 --3825971597161625600 --2802084747384930304 -2748836214806661120 --3793010974615416832 -4211913904039998464 --1376732125274891264 --1185437056892748800 -670459383435429888 -2916433605052199936 -2256895332902026240 --12869489332592640 -4483817681986173952 -2595689884822983680 -201237012318809088 -3409547585360657408 --3469079221908122624 --4378336374321665024 -4241883823817875456 --4388949974989818880 --2990141102855891968 --406080287875304448 --1325698926640445440 -3985254128449094656 --1607808539617639424 -149541895396816896 --97816875722259456 -4289490254550162432 --1750157093721372672 --865911480832241664 -3163780529000616960 -2965098078378215424 -899792453534616576 --3006708477045470208 --813850189437107200 --446231825549195264 --3027708299935735808 --4361802354647367680 --3257057719144993792 --2486787923600690176 --4595043847907694592 -1910961065001773056 -4068929844290248704 --904077028656842752 --971087656798149632 -2290810585539902464 -2809705770516379648 -4227668811337610240 -830687734626848768 -1310632327372526592 --4225548362978202624 --1918296879988563968 -2641907424776335360 --653757906384754688 -1114657149333101568 --3061671612291366912 --3614290641076979712 --2232653813550218240 -3696120216550404096 -3289230386349048832 --1051705089384317952 --801171142713533440 -2274317116781583360 --4462808241971595264 --768209891761140736 -3021412282824132608 --3162281522694964224 --1862616498916296704 -3551096819516997632 -826020392692366336 --1813254936286481408 -4156183929090951168 -902016987236107264 -2134116411553243136 --4098634933663673344 -184580983554813952 --3703586712101234688 --2433715829449705472 -2253850543032382464 -2794505127454770176 -872232475673469952 -1666725343153277952 -5420870957895680 -662978270431188992 --943138506631907328 --1377018664567674880 -2456696485566587904 -1763584667655184384 --1842461912094394368 -1483275232916744192 --3309274103842945024 --3137236137461711872 --3787605594813733888 --2427043382871117824 -1113480540281482240 --2528029555059688448 --1814824001513928704 --1760927091618163712 -764186618188118016 -4190044183260912640 --4441213342788350976 -315105756683087872 --488078197323354112 -855208267290021888 -1129417585092246528 --847517772756571136 -1660453917861949440 -3760357519125470208 --3943023110000471040 -1702716060656672768 -1351014576794529792 --3763046762746622976 --338693607662040064 --3268496564747983872 -1456817486559455232 -290230186741790720 -2218140223980561408 -2629407041504914432 --2747104830328834048 --1021669524123027456 --3727261115547959296 --4051113612715878400 --301598254400926720 -2475621054131061760 -733514811351962624 --2103745676329872384 --3980874067625035776 --3799469420609856512 -1597494532570834944 --1848916016061237248 -3130190561451868160 --1184817902276963328 -4541176538005126144 --2648485340503289856 -4520197736714334208 -1381751074477885440 -1506522442748692480 --4267630396508063744 -2461507774601901056 -680738828539209728 --2250421853746798592 --2149764855828345856 -4454180849717728256 --3632149931960974336 --3945090678218807296 -3469716375691322368 -3065737605458937856 --4237056315444777984 -3971044797291367424 --53022456032786432 --3393270157059588096 --3058028693952427008 -4296768269618634752 -2241350177440626688 --4085054151384403968 --3171750863687826432 -4526074407281827840 -4337173922971275264 --3108671681075386368 --542932469010138112 --4225244240006700032 -555679560657285120 -3365706465366000640 --749589812224982016 --3718746026925888512 --2162270284293604352 --1624946940295289856 --4143140057415526400 --1257716578629127168 -3565002487607028736 -2495490129266202624 -3413362611466588160 --1392162497721948160 -2475098912557251584 -588647324252206080 -770464118147923968 --1001528134314765312 -2110550143320326144 --632587598797537280 --1753582261738585088 -4174746227877255168 --2905810420416621568 -2047080121990034432 --2041881481101969408 -828483687632240640 -596014716361844736 --4252134104991984640 --750117880827436032 -878292640220062720 --480701255393476608 --3332409100762787840 -913803230931894272 -170250305728126976 --460644319444850688 --1363059277429871616 -596200745341887488 -1557998771648217088 --717323897046412288 --145890269805760512 --4159450094927659008 -4235590223063372800 -1984187998380095488 -4526341599890001920 -1173738849198520320 --3009787248360381440 -4323053543918823424 --2888316513877279744 --3729704024715080704 --1629837896635196416 --1050751083379220480 -1311567694986178560 -3021192497145847808 --4170917351108977664 --1540959679682320384 --786553997360600064 --1959710206617165824 -13402889790659584 --1783557257865458688 -4167961016563262464 --957963817408155648 --1253673331579753472 --3201894275239016448 -78989723704837120 --3895474394882922496 --4608040051130179584 -4594030140305638400 --3028078969457721344 -2525639349673643008 --787660316095707136 -3484353592480884736",$-1322536697583593472$;$-4210579812174846976$;$-417050970830199808$;$-2615951364510444544$;$1140948380418718720$;$-2692298089647763456$;$-3197447632671010816$;$2612251760438716416$;$2334444285349967872$;$2275597812397635584$;$-3825971597161625600$;$-2802084747384930304$;$2748836214806661120$;$-3793010974615416832$;$4211913904039998464$;$-1376732125274891264$;$-1185437056892748800$;$670459383435429888$;$2916433605052199936$;$2256895332902026240$;$-12869489332592640$;$4483817681986173952$;$2595689884822983680$;$201237012318809088$;$3409547585360657408$;$-3469079221908122624$;$-4378336374321665024$;$4241883823817875456$;$-4388949974989818880$;$-2990141102855891968$;$-406080287875304448$;$-1325698926640445440$;$3985254128449094656$;$-1607808539617639424$;$149541895396816896$;$-97816875722259456$;$4289490254550162432$;$-1750157093721372672$;$-865911480832241664$;$3163780529000616960$;$2965098078378215424$;$899792453534616576$;$-3006708477045470208$;$-813850189437107200$;$-446231825549195264$;$-3027708299935735808$;$-4361802354647367680$;$-3257057719144993792$;$-2486787923600690176$;$-4595043847907694592$;$1910961065001773056$;$4068929844290248704$;$-904077028656842752$;$-971087656798149632$;$2290810585539902464$;$2809705770516379648$;$4227668811337610240$;$830687734626848768$;$1310632327372526592$;$-4225548362978202624$;$-1918296879988563968$;$2641907424776335360$;$-653757906384754688$;$1114657149333101568$;$-3061671612291366912$;$-3614290641076979712$;$-2232653813550218240$;$3696120216550404096$;$3289230386349048832$;$-1051705089384317952$;$-801171142713533440$;$2274317116781583360$;$-4462808241971595264$;$-768209891761140736$;$3021412282824132608$;$-3162281522694964224$;$-1862616498916296704$;$3551096819516997632$;$826020392692366336$;$-1813254936286481408$;$4156183929090951168$;$902016987236107264$;$2134116411553243136$;$-4098634933663673344$;$184580983554813952$;$-3703586712101234688$;$-2433715829449705472$;$2253850543032382464$;$2794505127454770176$;$872232475673469952$;$1666725343153277952$;$5420870957895680$;$662978270431188992$;$-943138506631907328$;$-1377018664567674880$;$2456696485566587904$;$1763584667655184384$;$-1842461912094394368$;$1483275232916744192$;$-3309274103842945024$;$-3137236137461711872$;$-3787605594813733888$;$-2427043382871117824$;$1113480540281482240$;$-2528029555059688448$;$-1814824001513928704$;$-1760927091618163712$;$764186618188118016$;$4190044183260912640$;$-4441213342788350976$;$315105756683087872$;$-488078197323354112$;$855208267290021888$;$1129417585092246528$;$-847517772756571136$;$1660453917861949440$;$3760357519125470208$;$-3943023110000471040$;$1702716060656672768$;$1351014576794529792$;$-3763046762746622976$;$-338693607662040064$;$-3268496564747983872$;$1456817486559455232$;$290230186741790720$;$2218140223980561408$;$2629407041504914432$;$-2747104830328834048$;$-1021669524123027456$;$-3727261115547959296$;$-4051113612715878400$;$-301598254400926720$;$2475621054131061760$;$733514811351962624$;$-2103745676329872384$;$-3980874067625035776$;$-3799469420609856512$;$1597494532570834944$;$-1848916016061237248$;$3130190561451868160$;$-1184817902276963328$;$4541176538005126144$;$-2648485340503289856$;$4520197736714334208$;$1381751074477885440$;$1506522442748692480$;$-4267630396508063744$;$2461507774601901056$;$680738828539209728$;$-2250421853746798592$;$-2149764855828345856$;$4454180849717728256$;$-3632149931960974336$;$-3945090678218807296$;$3469716375691322368$;$3065737605458937856$;$-4237056315444777984$;$3971044797291367424$;$-53022456032786432$;$-3393270157059588096$;$-3058028693952427008$;$4296768269618634752$;$2241350177440626688$;$-4085054151384403968$;$-3171750863687826432$;$4526074407281827840$;$4337173922971275264$;$-3108671681075386368$;$-542932469010138112$;$-4225244240006700032$;$555679560657285120$;$3365706465366000640$;$-749589812224982016$;$-3718746026925888512$;$-2162270284293604352$;$-1624946940295289856$;$-4143140057415526400$;$-1257716578629127168$;$3565002487607028736$;$2495490129266202624$;$3413362611466588160$;$-1392162497721948160$;$2475098912557251584$;$588647324252206080$;$770464118147923968$;$-1001528134314765312$;$2110550143320326144$;$-632587598797537280$;$-1753582261738585088$;$4174746227877255168$;$-2905810420416621568$;$2047080121990034432$;$-2041881481101969408$;$828483687632240640$;$596014716361844736$;$-4252134104991984640$;$-750117880827436032$;$878292640220062720$;$-480701255393476608$;$-3332409100762787840$;$913803230931894272$;$170250305728126976$;$-460644319444850688$;$-1363059277429871616$;$596200745341887488$;$1557998771648217088$;$-717323897046412288$;$-145890269805760512$;$-4159450094927659008$;$4235590223063372800$;$1984187998380095488$;$4526341599890001920$;$1173738849198520320$;$-3009787248360381440$;$4323053543918823424$;$-2888316513877279744$;$-3729704024715080704$;$-1629837896635196416$;$-1050751083379220480$;$1311567694986178560$;$3021192497145847808$;$-4170917351108977664$;$-1540959679682320384$;$-786553997360600064$;$-1959710206617165824$;$13402889790659584$;$-1783557257865458688$;$4167961016563262464$;$-957963817408155648$;$-1253673331579753472$;$-3201894275239016448$;$78989723704837120$;$-3895474394882922496$;$-4608040051130179584$;$4594030140305638400$;$-3028078969457721344$;$2525639349673643008$;$-787660316095707136$;$3484353592480884736$,뮯톚ꊳ缝⮉縯뚈콌璤芙龛ш, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/args.txt deleted file mode 100644 index 9013e44a8..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/args.txt +++ /dev/null @@ -1,10 +0,0 @@ ---id=1433261392.159 ---maxbuckets=0 ---ttl=60 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/info.csv deleted file mode 100644 index 4d7a2799e..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/info.csv +++ /dev/null @@ -1,4 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1433261392.159","1433261392.936374000","1433261392.000000000","1433261392.934936000","","","",0,0,0,"duration.dispatch.writeStatus;2;duration.startup.configuration;34;duration.startup.handoff;79;invocations.dispatch.writeStatus;1;invocations.startup.configuration;1;invocations.startup.handoff;1;",0,"","","","",0,0,1,1,0,0,disabled,"*","","",1,0,"UQZSgWwE2f9oIKrj1QG^kVhW^T_cR4H5Z65bPtMhwlHytS5jFrFYyH^dGzjTusDjVTgoBNeR7bvIzctHF7DrLJ1ANevgDOWEWRvABNj6d_k0koqxw9Io",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup random_data max=50000 | sum total=total value1 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","","","","{}","","",0,"","",0,0,0,0,0,0,"chunked_searchcommands",admin,"$SPLUNK_HOME/etc",0,0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1433261392.159); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""chunked_searchcommands"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/metadata.csv deleted file mode 100644 index bed325fb5..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"chunked_searchcommands",60 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/peers.csv deleted file mode 100644 index 69ce012be..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/request.csv deleted file mode 100644 index e269aa5c6..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -"warn_unused_args",search,"__mv_warn_unused_args","__mv_search" -1,"| inputlookup random_data max=50000 | sum total=total value1 record=t",, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/runtime.csv deleted file mode 100644 index 4d53414ff..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -0,0,,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/status.csv deleted file mode 100644 index 259fdfb70..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","max_time","max_count","reduce_freq","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"column_order","searched_buckets","eliminated_buckets" -PARSING,admin,1433261393,"0.002000",0,0,0,0,0,2147483647,"",0,0,0,8640000,500000,10,1,1,0,0,0,1,0,"| inputlookup random_data max=50000 | sum total=total value1 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","",1,"",1,desc,"",0,"*","",1,0,1,"",41593,5,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.input.gz b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.input.gz deleted file mode 100644 index 000222924..000000000 Binary files a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.output b/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.output deleted file mode 100644 index 7183382f3..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/countmatches.output +++ /dev/null @@ -1,632 +0,0 @@ -chunked 1.0,20,0 -{"type":"streaming"} -chunked 1.0,17,49651 -{"finished":true}_serial,__mv__serial,_time,__mv__time,text,__mv_text,word_count,__mv_word_count -0,,1380899494,,excellent review my friend loved it yours always guppyman @GGreeny62... http://t.co/fcvq7NDHxl,,14, -1,,1380899494,,Tú novia te ama mucho,,5, -2,,1380899494,,"RT @Cindystaysjdm: @MannyYHT girls are like the Feds, they always watching 👀",,11, -3,,1380899494,,no me alcanza las palabras para el verbo amar..♫,,9, -4,,1380899494,,@__AmaT 요즘은 곡안쓰시고 귀농하시는군요 ㅋㅋ,,1, -5,,1380899494,,melhor geração #DiaMundialDeRBD,,4, -6,,1380899494,,@mariam_n_k من أي ناحية مين أنا ؟ ، إذا كان السؤال هل اعرفك او لا الجواب : لا .,,1, -7,,1380899494,,Oreka Sud lance #DEMplus un logiciel de simulation du démantèlement d'un réacteur #nucléaire http://t.co/lyC9nWxnWk,,22, -8,,1380899494,,@gusosama そんなことないですよ(。•́︿•̀。)でも有難うございます♡,,1, -9,,1380899494,,11:11 pwede pwends ta? HAHAHA,,6, -10,,1380899494,,RT @royalTee_x3: Football players >>> 😍😎,,7, -11,,1380899494,,"#FF Belles lettres @ChTwDe In est comme in est, in s'arfait nin Ben lui y'a rien à changer Poèsie, amitié, tendresse SUIVEZ Un chou ce ch'ti",,29, -12,,1380899494,,@_AbdullaS @Hawazn1993 @bntmisfr1 @prh00M @nhLa_30 هههههههههههههههههههههههههههههههههههههههههههههه.,,5, -13,,1380899494,,"RT @alrweili12: #متابعين -✳ اضفني @alrweili12✅ -✳ رتويـت ✅ -✳ أضف مـن يقـوم بالرتويـــت ✅ -✳أضف مـن يضيفـك ✅ -#زيادة_متابعين -1",,5, -14,,1380899494,,RT @CHSExplorer: Monzon with a 20 yard rushing TD off an option play. T-Birds up 37-21 with 30 seconds left in the game,,25, -15,,1380899494,,Margarita (8),,2, -16,,1380899494,,RT @chikichikiko: ぶふぁっ! なんぞ、これ!?(^0^;) しかもNHKって、、。RT 【祝】NHKで跡部様が紹介される http://t.co/i7WB0pMHrj,,10, -17,,1380899494,,#fact directioners love one direction,,5, -18,,1380899494,,https://t.co/2b10ScKlAo cuanto? — 5 http://t.co/ldtoRMvpnB,,10, -19,,1380899494,,Still make 11:11 wishes..,,5, -20,,1380899494,,Estar tan cansada y agotada que no te queda energía ni para abrir los ojos mas de 5 segundos seguidos.,,21, -21,,1380899494,,The man of the night #killem #otp #lastshot http://t.co/EFrJ7upMu1,,12, -22,,1380899494,,"@MaintainNGain so I've had just a bad/frustrating morning, but then I saw this on my feed which made me smile! Thanks! #neededadvice #smile",,25, -23,,1380899494,,RT @1yuki1yuki9: 日経エンタはエイターを殺す気。 http://t.co/MyzxDZJOGD,,6, -24,,1380899494,,"@michael_snape Oi, what the fuck happened last night! I know I was in town but I do not remember one place we went! Just know I was with you",,29, -25,,1380899494,,@taku_is_ahoo 苦しかったわわら。,,1, -26,,1380899494,,“@pinulbilang: Iklan tvm yg baru ada @apriliokevin sama @Princess_Ind masa :* :D *poke @AprilioKingdom”,,13, -27,,1380899494,,RT @ArsenalNewsUK: WEST BROM v ARSENAL: Latest team news and stats http://t.co/u9BsfrGF45,,15, -28,,1380899494,,Se siente tocada Terenzano.-,,4, -29,,1380899494,,"أحياناً العقلانيه تكون سيئه وتجعلك تتحفظ وتنظر للحياة بواقعيتها ، -بينما الجنون يرفع من سقف أفكارك ويجعلك لا تعرف معنى المستحيل .!",,0, -30,,1380899494,,RT @TweetUstazAzhar: Cinta itu bukannya suatu permainan . Cinta adalah suatu anugerah dari Allah . Jagalah anugerah Allah ini dengan sebaik…,,19, -31,,1380899494,,I hope I don't have to take my child care test today,,13, -32,,1380899494,,RT @chingjoyce: Kaya naman palaaaaaaaaaa!! My goodness!,,7, -33,,1380899494,,"たのしかったww -けどくっそねむいし - -あしたおきれんw",,2, -34,,1380899494,,RT @LeVraiHoroscope: La #Balance est toujours là pour aider ceux qu'elle aime vraiment.,,14, -35,,1380899494,,"RT @KertomTorres: La gente dice que ''odiar'' es una palabra muy fuerte, pero van por ahí diciendo ""te amo"" como si eso no significara nada.",,25, -36,,1380899494,,"RT @samkinah: ""@TimmyAisha: Are you Copper? - -Because I Cu in my dreams!"" Hehehe",,13, -37,,1380899494,,In here tryin think wat ima eat,,7, -38,,1380899494,,"Yeah, after I thank The Lord 4 wakin me 🙌🙏",,9, -39,,1380899494,,,,0, -40,,1380899494,,RT @tryna_be_famous: RT @tryna_be_famous Nigga look like a microwaved hot dog http://t.co/T6IQpYrzCh,,15, -41,,1380899494,,RT @9493_room: 1004 에인줠Day..... http://t.co/mwVnEREljF,,8, -42,,1380899494,,@dudaribeiro_13 q engraçado em.,,5, -43,,1380899494,,RT @Mzhs81: この雑コラが個人的にツボ #艦これ http://t.co/0OIUkfj8FR,,6, -44,,1380899494,,"【PCMAX】サイトに登録するだけで女性からメールが来ると思っているあなた!女の子は奪うものですよ!気合でいきしょう!\(^0^)/ -◎http://t.co/zZjw8KLUsB(登録無料)",,6, -45,,1380899494,,"http://t.co/8Yq0AHnoDd -「枯れずの花」更新しました! -#narou #narouN5047BT -少し日付をオーバーしましたが、第七話「薔花、散る。」を投稿しました。 -これにて、第一次薔藤時代編は終わりです。",,6, -46,,1380899494,,@u2w3c_ 譲りますヽ(`・ω・´)ノどちらに住んでますかね?,,1, -47,,1380899494,,RT @IamLEGIT: @mizzaaaa_ @ahaiqall aku handsome lagiii,,7, -48,,1380899494,,,,0, -49,,1380899494,,紙が若干ペロンって曲がってしまったせいかチビ信乃の背景が歪んでてワロタ,,0, -50,,1380899494,,Don't act like it is a bad thing to be in love with me. You might find out your dreams come true.,,23, -51,,1380899494,,"RT @ahmethc: basgan'a ""sakin ol şampiyon"" derken http://t.co/Q2YNjKV8P7",,12, -52,,1380899494,,明日ひーろー行く人?(^o^),,1, -53,,1380899494,,. http://t.co/bMgug5LdP2,,4, -54,,1380899494,,"越谷EASYGOINGSに行ってきた。 -江崎さん、松崎さん、絵かきの手、パプリカン -素晴らしかった。久々に完全客でのライブハウス。リフレッシュできた。 -あまり酒飲まないと決めたのに結局へろへ。 - -さて、明後日は浅草で僕の企画、明々後日は越谷で乗り込みPAです。 -楽しみワクワク。",,2, -55,,1380899494,,"【イククル】会員登録前にモチベーションを上げてからいきましょう!男性の場合は「超モーレツアタックするぞー!」、女性の場合は「プロフィール超充実させちゃうー!」ですね。\(^^)/ -◎http://t.co/jNcIgBoS2W【登録無料】4",,5, -56,,1380899494,,常に呼ばれている陽菜です(ノシ・ω・)ノシ(ノシ・ω・)ノシ,,0, -57,,1380899494,,@nflhqm yesssss. Hahahahaha,,3, -58,,1380899494,,RT @nobunaga_s: 跡部様がNHKに出演されたというのは誠ですか!?…流石です!,,3, -59,,1380899494,,There are screaming children RIGHT outside my window. Make it stop.,,11, -60,,1380899494,,*fly*,,1, -61,,1380899494,,Ah shit! I'm just waking up from what can only be describe as a comma. I hope I won't be up all night because of this.,,28, -62,,1380899494,,BBQの追い込みTL合間のシット君に癒されたwwwww,,3, -63,,1380899493,,,,0, -64,,1380899493,,,,0, -65,,1380899493,,,,0, -66,,1380899493,,,,0, -67,,1380899493,,,,0, -68,,1380899493,,RT @LeVraiHoroscope: Ce que le #Cancer aime en automne : regarder des films d'horreur et faire la fête avec ses amis.,,22, -69,,1380899493,,,,0, -70,,1380899493,,,,0, -71,,1380899493,,@emunmun @crnpi32 そー中毒なるねん! やめられへん (笑),,2, -72,,1380899493,,RT @TOWER_Revo: 【あと3日】10/7(月)21時~初音階段『生初音ミク降臨!?ボーカロイドとノイズの融合!』開催&配信まであと3日となりました!月曜日からノイズの世界を楽しみましょう! http://t.co/k0zn9J6tQ5 詳細⇒http://t.co/…,,14, -73,,1380899493,,BOA TARDE A TODOS CLIENTES E AMIGOS!!!! O PERFIL DE NOSSA EMPRESA NO FACEBOOK AGORA SE TORNOU UMA Fà PAGE! ABRAÇOS http://t.co/kroqZuJYi5,,26, -74,,1380899493,,これうまい http://t.co/YlT8pAMxse,,4, -75,,1380899493,,@LMurilloV de estos? http://t.co/uZ2s8jYRZE,,7, -76,,1380899493,,,,0, -77,,1380899493,,@rikaaaa714 てか、どうせなら一緒に写ろう!,,1, -78,,1380899493,,@Mesho_2002 لآ تحتكك :) هههههههههههه آمزح,,1, -79,,1380899493,,RT @Axwell: @Palmesus YEs! can't wait to party with my neighbors in your beautiful country!,,16, -80,,1380899493,,http://t.co/CNvqHVecpf #про ститутки в челябинске,,4, -81,,1380899493,,"@MileyCyrus Oh yes Miley, I love taking selfies in bed also, you look so happy, your happiness in this picture just radiates off",,23, -82,,1380899493,,"@community_kpop Sone , Baby :)",,3, -83,,1380899493,,"cowok gak boleh cengeng ah.. RT @Amberrlliu92: [] ini gue ragu -.- nangis gara2 masalah RP, atau nangis gara2 denger lagu ini berulang2 T_T",,22, -84,,1380899493,,Vova что?! RT @engpravda: Putin calls professor of Higher School of Economics a jerk http://t.co/GOx4jfdfND,,17, -85,,1380899493,,RT @gtapics: Drake is probably playing GTA V right now picking up prostitutes and driving them to safer cities,,19, -86,,1380899493,,The Byte Me Daily is out! http://t.co/yaIpTnubC8 ▸ Top stories today via @Bitdefender @billnelson @misterfergusson,,17, -87,,1380899493,,"RT @BornOfEternity: Jonathan Rhys Meyers con el que hizo del Jace pequeño, y el halcón. A mi este hombre me mata. http://t.co/nxdk1uZbdD",,27, -88,,1380899493,,@_lonyma وين راح الم راسك هاإاإاه,,1, -89,,1380899493,,,,0, -90,,1380899493,,"RT @SenRandPaul: . @BarackObama sent 7 security guards to #WWIIMemorial this AM to keep out our vets. Sadly, that is 2 more than were prese…",,24, -91,,1380899493,,Los odio . @MJSantorelli,,3, -92,,1380899493,,"I've harvested 967 of food! http://t.co/VjlsTijdQc #ipad, #ipadgames, #gameinsight",,13, -93,,1380899493,,My boy Thor is a Sore loser https://t.co/KTtwAlHqr2,,11, -94,,1380899493,,@bibikunhiy だあああ‼またですか!,,1, -95,,1380899493,,"@_desytriana beneran kok, gak sepik.-.",,5, -96,,1380899493,,"Oq q era aquela cena do Matt da Rebekah e da outra desconhecida lá, já suspeitava q a Rebekah cortava pros dois lado",,23, -97,,1380899493,,"RT @SastraRevolusi: Seandainya pria tahu, perempuan yang menanyakan status adalah perempuan yang tidak ingin kehilangan, bukan malah ingin …",,18, -98,,1380899493,,serious selekeh sangat! badan mcm kayu nak pakai baju ketat ketat. dengan tangan mcm sotong klau bercakap. wuuuuu --',,18, -99,,1380899493,,"رب أني مسني الضر و انت ارحم الراحمين.. - شاهد: http://t.co/MIc0UNNkaQ -#غرد_بذكر_الله -#دعاء_لربي",,7, -100,,1380899493,,@ellzaamay ok,,2, -101,,1380899493,,흐아ㅜ래으루ㅏ이닭발... #소연아생일축하해,,0, -102,,1380899493,,"RT @OhTheFameGaga: Put your hands up, make ‘em touch! Make it real loud!",,13, -103,,1380899493,,12 12,,2, -104,,1380899493,,"RT @Keenzah_: ""@lesxviezvous: Au Portugal, dans les fêtes foraines, on trouve de la barbe à Maman."" PTTTTTTTTTTTTTDR JAI RIGOLÉE 6FOIS",,21, -105,,1380899493,,RT @kozara: 透明飲んでも隠し切れないイケメン ぽぺん,,2, -106,,1380899493,,RT @AfifSyakir_: Saya harap saya jadi yang terakhir buat ibu bapa ku di saat-saat mereka perlukan ku untuk membacakan syahadah untuk mereka…,,23, -107,,1380899493,,Especially loads of the gay men who bizarrely feel they have a right to tut at a 20 yo woman for being too sexy or whatever it is.,,28, -108,,1380899493,,"@berry_berryss めーーーん!!! -おめでとおめでとおめでと♡",,1, -109,,1380899493,,"RT @imas_anime: この後、24:00〜東京MXにて第1話が再放送です。同時にバンダイチャンネルでも配信します。 -http://t.co/1KdQhC6aNm -久しぶりに765プロのアイドル達とアニメで再会できます!楽しみにお待ち下さい。 #imas #projec…",,13, -110,,1380899493,,"RT @_OfficialAkim: ♬ Rokok Yang Dulu Bukanlah Yang Sekarang, Dulu RM10 , Sekarang Up 12 Ringgit. Dulu Dulu Dulu Perokok Bahagia, Sekarang M…",,21, -111,,1380899493,,Libtards blame Tea Party for shutdown. Yer welcome America! #RiseUp #PatriotsUnite #StopLibtards #ImCute #ncot #tcot #!,,15, -112,,1380899493,,"RT @himybradfordboy: @_Gr_in_ szczerze to nic się nie zgadza xD wiek -14, kolor oczu- brązowe, ulubiony kolor - czarny, ulubiona gwiazda - …",,21, -113,,1380899493,,"RT @TwerkForJustin: FOLLOW TRICK -RT TO GAIN -FOLLOW @ACIDICVODCA -FOLLOW EVERYONE WHO RTS -GAIN LIKE CRAZY -#twerkforjustinfollowtrick",,17, -114,,1380899493,,"RT @Habibies: When you were born, you cried and the world rejoiced. Live your life so that when you die, the world will cry and you will re…",,28, -115,,1380899493,,"@aaaaasukaaaaaa -じゃあサイゼ行く?(^_^)笑",,2, -116,,1380899493,,@RGH0DY @jana_abdullah ههههههههههههههه,,2, -117,,1380899493,,みんなくん付けなのか かわいい,,0, -118,,1380899493,,@fishaessi follback,,2, -119,,1380899493,,おぽぽぽぽぽぽぽう!!!ーー!ぴぽーおおおぽ!!!!,,0, -120,,1380899493,,รู้ป่าวใคร http://t.co/Nq101xcU82,,4, -121,,1380899493,,"luthfinya iya dhiya salsabilanya enggak""@itceem: Salsaaawrs dhiyasalsabilaluthfi hehehe""",,9, -122,,1380899493,,The rioting youths in Mbsa should use their brains not emotions.,,11, -123,,1380899493,,多分威圧感のあるくしゃみなんだろうな,,0, -124,,1380899493,,"inuejulawo taye replied to Samuel Date360's discussion I Gave Him A BJ On Our First Date, Would He Still Respe... http://t.co/oOCx1IaXES",,25, -125,,1380899493,,me separo do amor da minha vida mas não me separo do meu celular,,15, -126,,1380899492,,,,0, -127,,1380899492,,,,0, -128,,1380899492,,,,0, -129,,1380899492,,,,0, -130,,1380899492,,,,0, -131,,1380899492,,@Njr92 :) http://t.co/W7nnZqSEo2,,5, -132,,1380899492,,Probably going to hell for that one time that nun substitute teacher yelled at me and sent me to the office LOL #memories,,23, -133,,1380899492,,http://t.co/RlSuI4KxLT,,4, -134,,1380899492,,@rachel_abby15 we make your day baby girl ? http://t.co/F1y9SgYhYP,,11, -135,,1380899492,,"RT @__mur_____: . - -. - -. - -    》    三.浦.翔.平 NrKr - -    俺が君の居場所に為る -    寶絶対に離れん麝無えよ ? - -    ! ..    Rt呉れた奴迎え - -. - -. - -.",,4, -136,,1380899492,,RT @discasp: @HWoodEnding CAN YOU PLEASE WISH MY FRIEND @glenroyjls A HAPPY 14TH BIRTHDAY PLEASE?!!XX @HollywoodTyler @HollywoodCamB @Holly…,,19, -137,,1380899492,,@soumar1991 مساء الأنوار,,1, -138,,1380899492,,MAYBE,,1, -139,,1380899492,,@VasundharaBJP @drramansingh @ChouhanShivraj @VijayGoelBJP @CVoter just indication of trend.With @narendramodi's support BJP landslide win,,16, -140,,1380899492,,寒い寒い。暖かいシャワー浴びたのに。寒い寒い。,,0, -141,,1380899492,,@littleofharold pronto,,2, -142,,1380899492,,This is not a list of reasons to read the bible http://t.co/o1np7jd8WI #bible,,16, -143,,1380899492,,,,0, -144,,1380899492,,もう1回ききたい!笑,,1, -145,,1380899492,,la tua celebrity crush? — ian somerhalder. http://t.co/jikyDEWoON,,10, -146,,1380899492,,Np : Best song ever - One Direction :))))))),,6, -147,,1380899492,,RT @BuketOzdmr: Beyler bugün eve gidemiyoz hayırlı olsun @almancik @bbkanikli,,12, -148,,1380899492,,야갤중계 ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ,,0, -149,,1380899492,,Lmao!!! RT @miskoom: They have put my guy in camera zone. Lmao,,12, -150,,1380899492,,Got my first referral woho senior year,,7, -151,,1380899492,,@myjkys_08sf おお?,,1, -152,,1380899492,,@VeraVonMonika even UK has sun today :-) @geoff_deweaver @ThitiaOfficial @DonDraper_NY @wade_corrina @MarlenaWells @josephjett @JZspeaks,,13, -153,,1380899492,,I duno what it is but you just my type 😋,,10, -154,,1380899492,,@xxsanox 豪快なのにお肉はちっちゃいってのがまたステキね♥︎,,1, -155,,1380899492,,Yayyyy I just bought my mom and dad so much gear 😍💜💛 #lovethem,,12, -156,,1380899492,,Ostéopathe de merde grouille toi,,6, -157,,1380899492,,@IsmiFadillahRzy sampai bertemu di alam mimpi yah..haha,,8, -158,,1380899492,,"RT @untidm: コーナーキックの時マークついてた奴に点を決められた時に、みんなの視線が怖い。 -#サッカー部あるある",,2, -159,,1380899492,,http://t.co/JUifcH9fXe где купить экстракт зеленого кофе,,4, -160,,1380899492,,I got da moneeeyyyyyy,,4, -161,,1380899492,,@vvip_jihyung omg?,,2, -162,,1380899492,,"どうせ行くなら一番美味しいもの食べたい!デート!合コン!女子会!での注文の参考に!「金の蔵jr」人気メニューランキングBEST10 -http://t.co/XCiXxigsBC",,6, -163,,1380899492,,"@ria_ash1217 多分知らないかなー? -大丈夫だよ〜聞き専門でも! -一応俺の rain-t ねー(´ω`)",,3, -164,,1380899492,,"@A_xoxo_red - -チョンスジョンのお迎え",,1, -165,,1380899492,,RT @alajavivi7: Os espero esta noche en el Voy Bien señores!!!! http://t.co/c306QYYh7U,,16, -166,,1380899492,,RT @perfxctpayne: poseeeeey en perm avec juliette,,7, -167,,1380899492,,"RT @bLoOdyBeEtRut85: Πήγα για τσιγάρα, και γύρισα. Τέτοιος μαλάκας.",,2, -168,,1380899492,,"القبض على اللاجئين الفلسطينيين في الإسكندرية و قتلهم في البحر -#وبكرة_تشوفوا_مصر -#السيسي_خائن",,3, -169,,1380899492,,"@narryykissme thank you so much babe, please can u send my username to niall? it would mean everything to me♥",,20, -170,,1380899492,,RT @ActorLeeMinHo: On air. http://t.co/6cJGMoYCD9 http://t.co/7evlV6m5Ua,,12, -171,,1380899492,,@mdr58dncdm うぇーーーーーい!!!観よう!観たい!,,1, -172,,1380899492,,"RT @RT_ARAB_RT: 🔲〰◾〰◾〰◾〰🔲 - -➊ فرصتك ✔ -➋ لزيادة متابعينك✔ -➌ رتويت✔ -➍ فولومي @RT_ARAB_RT ✔ -➎ فولوباك✔ -➏ اضافة من عمل رتويت✔ -➐ فولوباك للجميع✔ -…",,3, -173,,1380899492,,@mafasmk so sry bro ur kerala boy gone !!,,8, -174,,1380899492,,RT @TheXFactorUSA: @ddlovato also... #GLEEKS + #LOVATICS = #GLOVATIKS (and will probably take over the world),,14, -175,,1380899492,,Bazıları sosyal sorumluluklarin altinda kalmis sosyal devletten uzaklasmis;al sadaka ver oy al kaputulasyon ver oy,,17, -176,,1380899492,,RT @gamthestar: Gravity หนังดีที่กลั้นหายใจทั้งเรื่อง ดูIMAXยิ่งเพิ่มความตื่นเต้น ภาพสวยมากกกก ลุ้นมากกกก คือแนะนำมากๆ ดี๊ดีค่ะคุณผู้ชม,,4, -177,,1380899492,,RT @Mooomoo3333: : بنت المدينة أشد الإناث فتنة في لهجتها عذوبة وفي غنجها أعجوبة تعجز حروفي عن الوصف بل هُنَ أجمل من ذلك وكفى♡❤”,,2, -178,,1380899492,,Uhuk makasih uhuk RT @_Reiruki: Galah uhuk emng uhuk manis uhuk (?) RT Ricoziel: Kaga uhuk kok uhuk (cont) http://t.co/rH6dcTwu83,,22, -179,,1380899492,,相性悪いのかなぁ,,0, -180,,1380899492,,RT @DianaYourCousin: No es guapa ni na mi @EstherCabreraa :) http://t.co/Tbsxt0DYTv,,13, -181,,1380899492,,RT @EXO_FANBASE: 131004 Xiumin @ The 18th Busan International Film Festival Blue Carpet {cr. melting} http://t.co/nu9i4bxupj,,18, -182,,1380899492,,海より深く納得>RT,,1, -183,,1380899492,,"@H21uw -ありがとうございます!♡",,1, -184,,1380899492,,"@taigaohba -分かる。 -ほんとぐっすり寝させてください",,1, -185,,1380899492,,FC CRIADO PARA ROSA CATERINA DE ANGELIS.,,7, -186,,1380899492,,"Dhan :( gitu ya ? Oke @ardhankhalis: @yraudina gue udah balik beb, kenapa emg?""",,12, -187,,1380899492,,"Жизнь в темпе бешеном , петли не вешали мы",,0, -188,,1380899492,,Niyaya ni DJ si Kath sa isang room para kausapin at i-comfort. Naks! 😊💕 http://t.co/CM02frV3N9 -Joche,,19, -189,,1380899492,,ชอบผช.แบบเกรท วรินทรอ่ะ ขี้เล่นๆ เจ้าชู้นิดๆ เป็นผู้ใหญ่ด้วย ดูพี่แกเล่นหนังก็เคลิ้ม หลงเบย 😘,,0, -190,,1380899492,,"@AndiDarfiantoPD iyo2, sembarang ji, traning moo",,6, -191,,1380899492,,"Today stats: One follower, No unfollowers via http://t.co/tmuKc0tddl",,11, -192,,1380899492,,David Beckham: I was always going to second guess decision to retire from playing football: Exclusive intervie... http://t.co/IaKf4St5B9,,21, -193,,1380899492,,"@jorgeheredia85 ""EL PREPAGO"" UNICA FUNCION.HOY 20H30. FEDENADOR.ENTRADAS A LA VENTA FEDENADOR Y TEATRO DEL ANGEL. INFO:2380585. VALOR $20,o",,22, -194,,1380899492,,電車ぱんぱんすぎて腰がやべー(;_;),,0, -195,,1380899492,,All These Exploding Cars Will Make You Feel Different About Burning Teslas: A Tesla caught fire yesterday. Thi... http://t.co/c8XlVp8uLi,,22, -196,,1380899492,,Se em 2009 nos fizesse a campanha de 2008 e de 2010 eramos campeões POR QUE DEUS POR QUE DEUSSS POR QUEEEEEEEE,,23, -197,,1380899492,,"It's the 'Dark Star'/ 'Black Sun' which is Saturn. And, the Colorful band around it is Saturn's rings. http://t.co/p3975DtSlg",,24, -198,,1380899492,,Minha Mãe recebeu um Bilhete da diretora da escola '' Reação da minha mãe '' : O que eu pago uma das melhores escolas Particulares pra que,,27, -199,,1380899492,,じぶが書いた言葉からは逃げられませんって前に教授がいってたけどその通りだなー,,0, -200,,1380899492,,今夜はブランキージェットシティ聴いてますーん。,,0, -201,,1380899492,,まえぬうううううううううううう雨,,0, -202,,1380899492,,Évelin marcou seu Tweet como favorito,,6, -203,,1380899492,,동생도 좋아요. 그러니까 나만 두고 가지마.,,0, -204,,1380899491,,,,0, -205,,1380899491,,,,0, -206,,1380899491,,,,0, -207,,1380899491,,,,0, -208,,1380899491,,,,0, -209,,1380899491,,,,0, -210,,1380899491,,,,0, -211,,1380899491,,,,0, -212,,1380899491,,Bush teacher exposed! Lmfao http://t.co/JWhaXLIgqM,,8, -213,,1380899491,,,,0, -214,,1380899491,,,,0, -215,,1380899491,,@KPamyu2 まほパーフェクト♡,,1, -216,,1380899491,,,,0, -217,,1380899491,,"{ما خلقنا السماوات والأرض وما بينهما إلا بالحق وأجل مسمى والذين كفروا عما أنذروا معرضون} [الأحقاف:3] -http://t.co/fXuz2BeCx4",,5, -218,,1380899491,,We're just rlly in love http://t.co/KIwbVLBqOO,,10, -219,,1380899491,,"<3 <3 <3 ""@OFFICIALBTOB #BTOB #THRILLER 마지막 방송을 시작한 #비투비 멤버들의 떼샷 ver.2 Happy미카엘1004day! http://t.co/6nF0a8TXeW""",,17, -220,,1380899491,,Canım canım :) @pinaruzkuc http://t.co/T3N9x9DU6E,,9, -221,,1380899491,,,,0, -222,,1380899491,,@MLB Cardinals Braves Tigers Red Sox #TGI4Day,,7, -223,,1380899491,,@mf_hp えー!むっちゃんの大好きな人物だよ?,,1, -224,,1380899491,,"RT @mohmadbinfetais: ″خَدَعك من أخبَرك -بأنّ التّجاهُل يجذب الأنثى ويَزيد تَعلّقها بك.! -فأكثَر ما تَحتقِر المرأة ""التّجاهُل - -#كلام_جميل",,3, -225,,1380899491,,"¡Viernes! Y ¡hoy toca! -#HoyToca Van Gogh Pachuca! - -Puedes reservar vía MD!",,13, -226,,1380899491,,"ボスがなかなか倒せないヽ(`Д´)ノ -みんなもコレはじめて殴ったらいいよ ´∀`)≡〇)`Д゚) -【http://t.co/ntpSE5PnqV】",,4, -227,,1380899491,,They got it'$,,3, -228,,1380899491,,RT @Niken_adisti: @Salsabilathlita @muhammad13adtyo hha :D,,6, -229,,1380899491,,@seonai_ thanku gal! 💞 Xx,,4, -230,,1380899491,,@maaikewind Dank je wel! 15 oktober weet ik meer.,,9, -231,,1380899491,,"Y es un hecho triste, mi naturaleza. Mi destino insiste con tenerte cerca.",,13, -232,,1380899491,,RT @matty_parsons: Some proper chavs in Bradford.....,,7, -233,,1380899491,,,,0, -234,,1380899491,,"RT @oursupaluv: Angels, have you wished Chunji @wowous a happy birthday yet? It seems he's online! #happy21stchunji",,18, -235,,1380899491,,@unxcorn_ did u ever cut yourself ?,,6, -236,,1380899491,,@Fatima_Haya eeecht niet... Gij straalt altijd 🙊,,6, -237,,1380899491,,@broken_star_ he hasn't been in for three days now! At least that means I didn't miss anything today ;) what happened in English!!!,,24, -238,,1380899491,,@Salgado_lb 봇주님도 감기시라니88 푹 쉬셔요...!,,2, -239,,1380899491,,"Si anda rondando la felicidad, no tengas tanto temor de cambiar",,11, -240,,1380899491,,I really could walk to waffle House but no,,9, -241,,1380899491,,"When I get rid of these social networks, who you gone want me to tell then ??... I'll wait on that one...😐💭",,22, -242,,1380899491,,RT @pittsavedme: #KCAARGENTINA #PETERLANZANI,,4, -243,,1380899491,,"RT @_cococruz: FIESTA PROMO HRT 2013!!!! NO TE QUEDES AFUERAAA, QUEDAN LAS ULTIMAS PULSERAS",,14, -244,,1380899491,,http://t.co/MIgvnX7TW3 физикадан дипломды ж мыстар http://t.co/MIgvnX7TW3,,8, -245,,1380899491,,@wtknhey わかる,,1, -246,,1380899491,,"Hamla means Attack, not pregnant wala hamla. ;-)",,7, -247,,1380899491,,"A kid in my driving class just took off his pants in the middle of the room. Okay then, that's cool",,22, -248,,1380899491,,憂鬱やな〜自己嫌悪,,0, -249,,1380899491,,13 <3 blue *__* @loretun13,,6, -250,,1380899491,,@Charli_FCB are you serious?!! Omg that's ridiculous!! Didn't know the Uni was open till so late!,,18, -251,,1380899491,,DIGO MILANESAS JAJAJAJAJJAA QUE PAJERO QUE SOY,,7, -252,,1380899491,,"@1125yik 気分wwww - -暇人かwww",,3, -253,,1380899491,,X Factor Noww,,3, -254,,1380899491,,@Risa_v_rock 声優陣いつもいいポジションよなw,,2, -255,,1380899491,,ショボン,,0, -256,,1380899491,,@AsNana_RM is that Kevin? :3,,5, -257,,1380899491,,oeps dierendag gauw zien dat ik Rosie kan pakken om effe te knuffelen.....,,13, -258,,1380899491,,@arvachova026 ты всю дорогу шла одна ?,,1, -259,,1380899491,,@DopeAss_Chyna just texted u fat girl,,6, -260,,1380899491,,@shiina1230  いっこだけ言い方微妙にちゃうやつあってわろたww,,2, -261,,1380899491,,Omwt appie w thesie en daarna na theess.,,8, -262,,1380899491,,É impressão minha ou o Twitter mudou alguma coisa??!!,,9, -263,,1380899491,,Ela olha o céu encoberto e acha graça em tudo que não pode ver..,,17, -264,,1380899491,,@Yoboth_b2st จริงนะ,,1, -265,,1380899491,,#Во Владимире предприниматели жестоко избили трех полицейских,,0, -266,,1380899491,,"RT @bani_saja: ba'unggut ba'unggut ""@Ujankwara: @syirajmufti sdh""",,9, -267,,1380899491,,RT @Bailey_brown4: Why did I not know more than half of the stuff on that AP chem test!? #retakes?,,19, -268,,1380899491,,"【ワクワク】女性の方はまず掲示板へ投稿しましょう!次に男性から届いたメールを見て、自分の理想の男性はいるか、どの男性とメールやり取りを始めるか決めましょう。(^-^)v -◎http://t.co/vlu0iRKzdR【登録無料】",,5, -269,,1380899491,,家賃が大幅値上げされるようなら引っ越しもありよね、と検索してみたものの、結構厳しいなーと思い知る。,,0, -270,,1380899491,,11:11,,2, -271,,1380899491,,#serveur restaurant 75 GARE DE LYON BERCY: EMPLOYE POLYVALENT: Vous etes disponible et pret meme à la dernière... http://t.co/4xITYPCb51,,22, -272,,1380899491,,キルラキルってやっぱグレンラガン作った人たちが作ってるのか~やっぱこのチームはいろいろとセンス感じる!!,,0, -273,,1380899491,,ah porque me rtw eso o.O,,7, -274,,1380899491,,足先の冷えがww,,1, -275,,1380899491,,あ、年くった。,,0, -276,,1380899491,,日本海のシラス(^O^),,0, -277,,1380899491,,"antonimnya :p eh yg terakhr jangan! RT @hvsyawn: -_- kok RT CIC_BebyChae: kai pesek jelek item idup, puas? wkwk RT hvsyawn: tapi",,22, -278,,1380899491,,"POR CIERTO, ME HAN PUESTO UN PUTO 9 EN UN TRABAJO DE PLÁSTICA. OLE.",,15, -279,,1380899491,,"É #BigFollow, imagina ter mais de 20.000 followers por apenas R$ 750,00? #DEMIWentPlatinumInBrazil: -bigfollow.net",,16, -280,,1380899491,,rocio esta re triste porque nunca gana,,7, -281,,1380899491,,"ながもんさん -20時間の入渠に入りました",,1, -282,,1380899490,,,,0, -283,,1380899490,,,,0, -284,,1380899490,,,,0, -285,,1380899490,,,,0, -286,,1380899490,,,,0, -287,,1380899490,,,,0, -288,,1380899490,,,,0, -289,,1380899490,,,,0, -290,,1380899490,,,,0, -291,,1380899490,,i officially ship krisbaek now! \O/ http://t.co/z1BB7X8RpP,,10, -292,,1380899490,,,,0, -293,,1380899490,,Mending berangkat deh malem ini~,,5, -294,,1380899490,,@YSJSU what's on at the SU tonight?,,8, -295,,1380899490,,@remembrance0810 ありがとう(。-_-。),,2, -296,,1380899490,,,,0, -297,,1380899490,,"..... #절망 -아 존못임 ㅠㅠ http://t.co/UOnpEYPsdW",,4, -298,,1380899490,,@ka_iskw 宣言したから起きれそうじゃんヽ(・∀・)ノ笑,,1, -299,,1380899490,,http://t.co/8lNH2jyjxh,,4, -300,,1380899490,,,,0, -301,,1380899490,,"Menurut lo? ""@Lok206: Ini bukan lagu kan? ""@nuningalvia: Don't you ever forget about me when you toss and turn in your sleep I hope it's",,27, -302,,1380899490,,RT @KidSexyyRauhl: #BEAUTYANDABEAT IS A MAKE UP LINE OMG 😍 http://t.co/qLL4JEQfPW,,13, -303,,1380899490,,http://t.co/qqchmHemKP,,4, -304,,1380899490,,RT @moojmela: The study of fruits is known as Pomology.,,10, -305,,1380899490,,"Aww excited na ako... xD -#OneRunOnePhilippines http://t.co/H1coYMF1Kp",,10, -306,,1380899490,,¿Pocos Seguidores? [█ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅] 17% Obten Seguidores siguiendo a ► @granhijodeperra y ganas hasta 5O Seguidores,,13, -307,,1380899490,,@thewolf6 @M_ALHMAIDANI البركة فيك اجتهد وورنا شطارتك 😉,,2, -308,,1380899490,,@kamenriderw1006 エロい,,1, -309,,1380899490,,RT @bokaled_q8: واللـّہ لو تعطيهم من الطيب أطنان تبقى ( النفوس الرديہ) رديہ,,2, -310,,1380899490,,@Giuli_liotard que sos voa,,4, -311,,1380899490,,@ControlSrk druže je l' se ti drogiraš?,,8, -312,,1380899490,,学校前の小川のやる気のなさ #二水あるある,,0, -313,,1380899490,,THE BOYS KILL ME EVERYDAY,,5, -314,,1380899490,,#Normal RT @eguierootz Ea tiraera temprano aqui,,7, -315,,1380899490,,@sukiyaki86 フハハハッ,,1, -316,,1380899490,,"RT @n_almisbah: ذبح الأضاحي يتم بالتعاون مع الأمانة العامة للأوقاف وإدارة مسلخ محافظة حولي -1/5 -http://t.co/8lXe2e3FBQ",,8, -317,,1380899490,,5 Articles needed urgently | Academic Writing | Article Rewriting … http://t.co/4qaCbVNKP7 #copywriting,,13, -318,,1380899490,,@LauraneMolac t as vu !!,,4, -319,,1380899490,,まっきん&来来キョンシーズわろた,,0, -320,,1380899490,,#bridetips Lake Michigan Engagement from Kristin La Voie Photography http://t.co/I9tskzI6qI,,13, -321,,1380899490,,RT @Genesyslab: Top 5 Mistakes To Avoid When Moving Your Contact Center To the Cloud | Oct 9th 2PM ET / 11AM PT >> http://t.co/f1LH3sxB8f <…,,28, -322,,1380899490,,"CGI 3D Animated Short HD: ""I, Pet Goat II"" by - Heliofant(+ 再生リスト): http://t.co/LA2zJYuWbV @youtubeさんから",,16, -323,,1380899490,,ME VIOLAN LA OREJA. http://t.co/TgpGfC3i94,,8, -324,,1380899490,,Piro gente.,,2, -325,,1380899490,,@emdiemey solangs keine apfelpfannkuchen sind bleiben bratkartoffelz besser,,8, -326,,1380899490,,RT @JONBOOGIEE: I don't think y'all ready. #musicmonday @justinbieber http://t.co/FA0w0Z1bup,,15, -327,,1380899490,,RT @ohgirIquotes: I'm still in love with you.,,9, -328,,1380899490,,"RT @stargirlkah: @lloydmahoned eu te amo amiga,eu ja vou agora amo vc ♥",,13, -329,,1380899490,,Pues vamos ha hacer algo de tarea:),,7, -330,,1380899490,,@yumeminemu レシピ教えて♡,,1, -331,,1380899490,,the bling ring,,3, -332,,1380899490,,"ela ama ele ,ele ama ela , eles se amam , tudo mundo sabe , menos eles -#boa tarde",,16, -333,,1380899490,,@Atsinganoi Victimless!,,2, -334,,1380899490,,"RT @shinema7253: 伝説のサスペンス映画 -アイデンティティー http://t.co/ZP5ciPB3km",,6, -335,,1380899490,,سبحان الله وبحمدهِ عدد خلقهِ ورضى نفسه وزنة عرشه ومداد كلماته.,,0, -336,,1380899490,,"@nyemiliamolins entra aquí https://t.co/7sG2URtcJ6 … … ve a ""ver galería"", luego, busca ""Franciel herrera de jesus"" y vota por mi. GRACIAS!",,23, -337,,1380899490,,"RT @PuisiDariHati: Silap aku juga -Terlalu menyayangimu, dalam-dalam -Bukan ini mahu aku, tapi kalau ini untuk aku -Ya, terima kasih, semuanya…",,22, -338,,1380899490,,Mi madre vaya risazas.,,4, -339,,1380899490,,bakit kaya ako paboritong papakin ng mga langgam,,8, -340,,1380899490,,RT @diarykecilkuu: Tuhan telah menciptakan bahagia untuk aku lewat kamu :),,10, -341,,1380899490,,@tonia_ysmgo 私の意味不明な連想に反応ありがとうございます。toniaさんがすごいってことだったんだけど自分が読んでも意味わかんない。レス不要~^^;,,2, -342,,1380899490,,เป็นผู้หญิงที่ The badest female กันทั้งคู่เลยนะครับ 555555 #thesixthsense2,,5, -343,,1380899490,,Duit? Kaga butuh | pacar? Kaga penting | lalu? | gue lagi butuh tukang pijat karna dia lebih penting. Ahahaa,,17, -344,,1380899490,,"4巻読了なので、復習にガーシュウィン「ラプソディ・イン・ブルー」とラフマニノフ「ピアノ協奏曲 2, ハ短調, Op. 18 - 1.」を聴いてみる…。",,5, -345,,1380899490,,RT @Faeez_petak: Done with fb.. thanks to all the wishes again.. hamoir 500org yg post di fb telah ku reply.. harap xde sape yg ketinggalan…,,25, -346,,1380899490,,¿Pocos Seguidores? [█ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅] 17% Obten Seguidores siguiendo a ► @granhijodeperra y ganas hasta 5O Seguidores,,13, -347,,1380899490,,Mais quelle journée de kk. Vive le WE.,,9, -348,,1380899490,,I just added this to my closet on Poshmark: Juicy Couture bracelet. http://t.co/089qVTTfK8 via @poshmarkapp #shopmycloset,,19, -349,,1380899490,,"RT @medaGrumpyCat: Ghost hunters: Can you communicate with us? *Door creeks* Ghost hunters: Oh, so your name is Laura??",,19, -350,,1380899490,,RT @AFuckingPooh: @lovelyteenager2 xD pahahahahah,,5, -351,,1380899490,,RT @Ff3Raguna: #起きてる人rt,,3, -352,,1380899490,,RT @CynthiaIvette_: Happy early Birthday🎉🎈🎊@RuthlessE_ thanks for the cupcake😁👌,,10, -353,,1380899490,,http://t.co/is4V8MQxKL,,4, -354,,1380899490,,学校に泊まってたから、バスなの忘れてた。この時間、バスない\(^o^)/オワタ,,1, -355,,1380899490,,¿Pocos Seguidores? [█ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅ ̅] 17% Obten Seguidores siguiendo a ► @granhijodeperra y ganas hasta 5O Seguidores,,13, -356,,1380899490,,@ljoeljoe1123 yahh today is your wife birthday. #happy21stchunji,,8, -357,,1380899490,,"Indahnya berbagi dengan Anak Yatim untuk Pembangunan ""KOBONG ANAK YATIM"" | aksi @ Rp.10.000,- http://t.co/e37MFyK8GU",,18, -358,,1380899490,,"vou me arrumar, e ir beeeeijú :*",,6, -359,,1380899490,,明日(今日)は木崎湖をに行く予定,,0, -360,,1380899490,,気持ちよかった,,0, -361,,1380899490,,"esto me parecio muy tierno, fue amor a primera vista!! -10051 ByakuranxShoichi - ->Karina< http://t.co/AZiYNglm5v",,19, -362,,1380899490,,"Hay que armar una bicicleteada (?) tuitera, que recorra la ciudad tomando fernet en los bares emblemáticos.",,17, -363,,1380899490,,eating organge,,2, -364,,1380899489,,,,0, -365,,1380899489,,RT @MyersCorii: Home early,,4, -366,,1380899489,,Аватария в одноклассниках http://t.co/TjcB0vckIm,,4, -367,,1380899489,,,,0, -368,,1380899489,,,,0, -369,,1380899489,,RT @yuuki820: U-16の快挙を喜びつつチーム東京振り返り。スレイマンの怪我で急遽招集されたサワくん(ちなみに正しくはトカチョフ)は13得点11リバウンド。簡易だから出てないけどレイアップのブロックも上手かった。髪が伸びてるのも今日で見慣れましたw http://t…,,8, -370,,1380899489,,@03_7_3 @km_72どんなまいでもかわいいから大丈夫♪,,2, -371,,1380899489,,"@fahmykun kesimpulan yg ditarik? Iya dr yg udah tjd dan/atau terbukti. - -Untuk kasus gitu, itulah gunanya pemahaman konsep sm adanya teori…",,22, -372,,1380899489,,cansada,,1, -373,,1380899489,,Sick and tired of you r shit I'm done,,10, -374,,1380899489,,“@GoGoHoratio: @out10emma @GoGoGorillas @AlanGorilla @_BlingKong @CatchMeWhileYo1 I'm going to live in a beautiful garden! :)” Good for you!,,18, -375,,1380899489,,Mackin' on Harry 😘 @ Oxford Street http://t.co/YG8SLWEeVM,,9, -376,,1380899489,,This lightweight read. http://t.co/3hymPoSi2R,,7, -377,,1380899489,,@vin_bio_ardoneo bienvenue merci de suivre nos news!,,7, -378,,1380899489,,Hj a prof. Eloiza quase me mato rindo,,8, -379,,1380899489,,"Wkwk :D tau aja kmu din :P ""@didinfabregas: kalo si @wadiep mah penasaran itu tuh, haha jaim ajj dia nggk mau ngaku, wkwkkwkwk @himieumy""",,24, -380,,1380899489,,j'en vais le dire mtn,,6, -381,,1380899489,,3 people followed me // automatically checked by http://t.co/oMjDTMTE3s,,11, -382,,1380899489,,"RT @itsnarrycrew: RT if LIAM, HARRY, NIALL, ZAYN, AND LOUIS are NOT following you! and i'll dm them to follow you! but you MUST be followin…",,27, -383,,1380899489,,"RT @heyyouapp: » http://t.co/Kvu5w9Hd5j @heyyouapp Zombie Fitness PRO - aerobic,strength training workout app | #Health & Fitness #iPhone #…",,19, -384,,1380899489,,「立てよ、立て、セオデンの騎士らよ! 捨身の勇猛が眼ざめた、火と殺戮ぞ! 槍を振え、盾をくだけよ、剣の日ぞ、赤き血の日よぞ、日の上る前ぞ! いざ進め、いざ進め、ゴンドールへ乗り進め!」 ―セオデン,,0, -385,,1380899489,,Having tea cooked by Emily this evening :),,7, -386,,1380899489,,@JBGill I dont think I've sobbed while watching a music video before. It is also a great song.,,19, -387,,1380899489,,@bugyo_mi Oh…!跡部様にかっさらわれた…。そして7日は手塚誕なんで…!!,,2, -388,,1380899489,,@ilivelifedaily @CMB_Yungblack32 @Nikenando25 that nigga lips look like he having an allergic reaction. Looking like will smith in Hitch 😳.,,19, -389,,1380899489,,@kituinoippattt こんばんわ #fxch #usdjpy http://t.co/IkeoJJlMxGで実況中,,7, -390,,1380899489,,"اُمِي وأم من يقرأ : جَعلكم الله مِن السَبعِينْ ألفاً ؛ الذَينَ يَدخُلُونَ الجَنةّ بَلا حِسَاب ولا سابق عذاب ♥ - -#ساعة_استجابه""",,1, -391,,1380899489,,@daddy_yankee Buen día Sr. Ayala :),,6, -392,,1380899489,,Parce que ma mere va changer de iPhone et je veux avoir son iPhone mais elle dit que je peux pas parce que je dois avoir un forfait-,,28, -393,,1380899489,,"""@dianadeanfi: Jangan negative thinking atuh ih! asli gasukaa!!!""",,8, -394,,1380899489,,Mas nunca mais é 16:45?,,5, -395,,1380899489,,"Tamires: ""olha lá o Pichani!"" Huehue",,6, -396,,1380899489,,アレン「あ、いたいた。」デビット「んあ?弟子じゃねーか。」ジャスデロ「ヒッ、何か用?」アレン「僕のバイト先で、ちょっと不足がありまして…短期で人材募集してるんです。よかったら来ませんか?」デビット「んー…今月割と手一杯…「まかないありの日給一万円(ぼそっ)」行く。やる。」,,0, -397,,1380899489,,,,0, -398,,1380899489,,kawaii desu ne :(,,3, -399,,1380899489,,الاف مبروك للامه العيناويه والاداره والاعبين وكل من ينتمي الي الصرح العيناوي ع الفوز,,0, -400,,1380899489,,@ninoyui_a 意外と田舎なんだよ〜(笑),,1, -401,,1380899489,,"Eu muito mal.. -(cólica)",,5, -402,,1380899489,,リミックスアルバムかっこよ過ぎるがなあああ!,,0, -403,,1380899489,,"i hate that stupid old burgundy truck, you never let me drive. you're a redneck heartbreak whos really bad at lying.",,22, -404,,1380899489,,アルティメットか何か忘れた、∞ランクでSランク帯のがよく出るみたいのはあったけど今作のドロ率だと悟りを開くかエリハムになるか,,1, -405,,1380899489,,"graças a deus, sexta feira já çç",,7, -406,,1380899489,,#kangsomm ชอบทำให้ยิ้มตามอยู่เรื่อยเด็กบ้าเอ้ยยย >///<,,3, -407,,1380899489,,,,0, -408,,1380899489,,Kowangg memangggg osammmmmm :) :*,,3, -409,,1380899489,,サークルチェックしたいもん,,0, -410,,1380899489,,"Target Deals: Sale Week of October 6 via http://t.co/nb367jX06n - Before you shop, check out ... http://t.co/YEIWi5ylL6",,21, -411,,1380899489,,ごっちさんいけめんんんんんん( ;∀;),,0, -412,,1380899489,,Piction oh piction xD,,4, -413,,1380899489,,"#96persen Penyelam tidak akan bisa kentut saat menyelam, pada kedalaman lebih dari 10 meter.",,14, -414,,1380899488,,,,0, -415,,1380899488,,,,0, -416,,1380899488,,,,0, -417,,1380899488,,,,0, -418,,1380899488,,,,0, -419,,1380899488,,,,0, -420,,1380899488,,,,0, -421,,1380899488,,"俺の部屋にバッタがぁぁぁあぁあ!!! -キモすぎーーーーーーー! -うぉぉぉおぉぉお!!! http://t.co/tcgHPWgKaT",,4, -422,,1380899488,,,,0, -423,,1380899488,,,,0, -424,,1380899488,,,,0, -425,,1380899488,,,,0, -426,,1380899488,,@MarelysQuintero #Viernesdebelloszapatosypies que no falte tu foto amiga mia,,9, -427,,1380899488,,,,0, -428,,1380899488,,Acting like I've finished the uni term! #3weeksIn,,9, -429,,1380899488,,@DiilennyDuran_ tato ;$,,2, -430,,1380899488,,@LeVraiHoroscope Les Taureau on toujours raison ! ;),,6, -431,,1380899488,,,,0, -432,,1380899488,,RT @dear_my_deer: 131003 LUHAN INDEX UPDATE♥(2pics) #LUHAN 루한이 또 이러케 멋있쟈나 오빠쟈나 → http://t.co/lTMrB1swQR http://t.co/ci57MDOjca,,16, -433,,1380899488,,RT @reham54696: هل تريد السعادة ؟ دعني اضمك قليلاً وستنسى حياتك ~,,2, -434,,1380899488,,@CouniyaMamaw mdrrrrr,,2, -435,,1380899488,,"RT @Fun_Beard: A year ago today my beautiful wife attempted suicide. People love you. There IS help: -1-800-273-8255 -http://t.co/6njoVkxVba -…",,25, -436,,1380899488,,@ayakasa_36 @momota_ro そうなんだよね でもそうもいかないのが人生だからマタニティマークつけてるんじゃない?,,2, -437,,1380899488,,@KimDibbers the pillow should be nigel ;),,6, -438,,1380899488,,RT @slam173: صاااااادوووه 🙈🙉🙉👅 http://t.co/RCFyXTJFw9,,6, -439,,1380899488,,RT @Colonos_Cs: Vean a los asistentes a la #ViaCatalana: peligrosos radicales q desean romper la convivencia y fracturar la sociedad. http:…,,21, -440,,1380899488,,"""@TalaAltaweel: احب وقتي معك اكثر من اي شي ثاني..""",,1, -441,,1380899488,,@chairunnisaAG ahluu... temen lo noh ah,,6, -442,,1380899488,,Degreee kat luar negara . Start a new life hehe,,9, -443,,1380899488,,@midokon407sj ありがとうございます。本来は暑いのダメなんで涼しいのwelcome!!なんですけどね。これだけ急激に涼しくなると、それはそれでしんどいです(^^; お休みなさいませ~☆,,2, -444,,1380899488,,RT @Fact: McDonald's hamburgers contains only 15% real beef while the other 85% is meat filler & pink slime cleansed with ammonia which cau…,,25, -445,,1380899488,,RT @elsya_yonata: @reginaivanova4 @NovitaDewiXF @chelseaolivia92. Precious Moments Eau de Parfum .. ID Line : elsyayonata(msh bnyk bermacam…,,16, -446,,1380899488,,"RT @TuiterHits: - ¿Es aquí la reunión de poetas violentos? - -- Bienvenido, -toma asiento -y como hagas ruido -te reviento.",,19, -447,,1380899488,,@Tech_NIQ_ue Thatsssss Crazyyyyyyy ,,3, -448,,1380899488,,"Wkakakak,make up dlu cyiinn""@SukartiPutri: Aku cinta, tapi gengsi ~""",,10, -449,,1380899488,,@GummyRebel will pray fr you mann ! Thiss time kau cmfrm pass witb flying colours lahh .. :) where you ?,,17, -450,,1380899488,,abis ngadep laptop cuci muka jadi segerr ¤(^_^)¤,,8, -451,,1380899488,,"Bence kışın en güzel yanı; kahve, yatak, film üçlüsü.",,12, -452,,1380899488,,Siiiike :p,,2, -453,,1380899488,,@LaloSaenger wow yo amo a John Mayer y que te guste a ti hace tu musica perfecta,,17, -454,,1380899488,,[名古屋イベント] 動物フェスティバル2013なごや http://t.co/iFfaFxwimJ #Event_Nagoya,,6, -455,,1380899488,,RT @YldzOguz: Yargıçlar Sendikası Başk. Ö.Faruk Eminağaoğlu'nun da geziden dolayı meslekten ihraç ve 11 yıla kadar hapsi isteniyor http://t…,,26, -456,,1380899488,,"RT @shona_0507: *はるちゃん* -・優しい -・錦戸 -・最強eighter - -雑www",,4, -457,,1380899488,,Slmtketemubskyaaaa❤!,,1, -458,,1380899488,,,,0, -459,,1380899488,,@yukkuri_bouto 気をつけて帰ってくださいね(´・ω・)背後から見守ってま(ry,,2, -460,,1380899488,,RT @TeamPusongBato: Swerte mo. Iniyakan kita.,,6, -461,,1380899488,,Amr Diab - Odam Oyounak عمرو دياب - قدام عيونك http://t.co/dSJIM4IIaX,,8, -462,,1380899488,,#BringBackMoorman #BillsMafia,,2, -463,,1380899488,,try lah @rynnfreaxy,,3, -464,,1380899488,,"RT @TitsTatsAssKink: →#PussyDayEveryDay #GreatAss #FingeringHerAss ◄ » #Ass_TitsTatsAssKink -#PicGods «Tits♦Tats♦Ass♦Kink» http://t.co/xObqL…",,15, -465,,1380899488,,@afiqahhamidi96 ohh pkul brp kau pi?,,6, -466,,1380899488,,"Pharmacy Staff Pharmacist - Decatur, TX http://t.co/sZijNJnbDY",,9, -467,,1380899488,,Haaa yelaaa qiss @QJaine,,4, -468,,1380899488,,@secretakz ぜ、ぜってーかわいくねえすから 大人のなでなでっつうのは〜、女の子とかがやるよしよしみたいのじゃなくてこう、くしゃってやるやつっすよ!ほらやるじゃん男が女にさ…こう、くしゃって…あれっすよアレ,,1, -469,,1380899488,,RT @supertud: มันเป็นโมเม้นหนึ่งที่ใครๆก็เคยรู้สึก.. http://t.co/wChE3gy3kg,,6, -470,,1380899488,,♫ In time it will reveal ♫ That special love that's deep inside of us ♫ will all reveal in time ♫ #NowPlaying http://t.co/hiGI3uSejG,,24, -471,,1380899488,,RT @MonkeyJo_: @maribellymora okay! When it syops raining. Tomorrow night?,,10, -472,,1380899488,,11:11 peace of mind,,5, -473,,1380899488,,"Aml ♡ - - حِينْ يسِألوُنيَ عٌنكك : سَ أقوُل سعادهہ دخلت في حياتي ولا اريدهآ أن تزول ....(=| <3",,3, -474,,1380899488,,wskqwsoidkiejdoqjdijsak,,1, -475,,1380899488,,@nuratiqahmad kann! Terus teringat kau hahahah 🙊,,6, -476,,1380899488,,Vi el mosco mas horrible del mundo!!!,,7, -477,,1380899488,,RT @RealGyptian: Wanna speak to @RealGyptian LIVE on Mon 7 Oct via the new #BBMChannels from @BBM & @UK_BlackBerry find out more here: http…,,24, -478,,1380899488,,@ulanwln @bratha_wide coba tanya bang rama. Ulan leh ikut tau gak,,11, -479,,1380899488,,Nuovo genius loci. Storia e antologia della letteratura latina. Con espansione online. Per le Scuole superiori: 3 http://t.co/ysW2jvctgw,,21, -480,,1380899488,,"Ketemu sama lo itu kaya udah ketemu -neraka!! Bawaannya panes mulu!!",,11, -481,,1380899488,,気が付いたらよるほーでした,,0, -482,,1380899488,,I.G!うおおおお楽しみだなあああ,,2, -483,,1380899488,,"Je Ne Comprends Pas Diego , Il Connait Violetta Sa Va Faire Une Heure & Il L'aime Déjà o.0 Veut-Il Rendre Jaloux Léon ? o.0",,29, -484,,1380899488,,_(┐ ノε¦)_,,2, -485,,1380899488,,はじまった!,,0, -486,,1380899488,,Kepikiran mimpi td siang....pengen bgt jd nyata :)),,8, -487,,1380899487,,,,0, -488,,1380899487,,,,0, -489,,1380899487,,@SyafiSalehan ada apa??,,3, -490,,1380899487,,,,0, -491,,1380899487,,Yo no soy capaz de dejarte http://t.co/KsZF4AUeqL,,10, -492,,1380899487,,1 MONTH http://t.co/DftUuaTcmB,,6, -493,,1380899487,,,,0, -494,,1380899487,,,,0, -495,,1380899487,,Polémique...? #LT,,3, -496,,1380899487,,คือวันนี้ให้เวลาทำข้อสอบ 3 ชม. ชม.แรกดูคลิปแล้ววิจารณ์ก็เสียเวลาตรงนั้นไปเยอะ ทำข้อสอบทีต้องร่างก่อนนะแล้วค่อยลงกระดาษส่งจริง แล้วก็ทำไม่ทัน,,1, -497,,1380899487,,"かわいい。どうしよう。かわいい。 -にこにこしてるかわいい!",,0, -498,,1380899487,,"有名なのは、この オルチャンブレスです^^ -市販のシリコンゴムなどで簡単に作れます★ -みなさんもぜひつくってみてください! - -(外国にいくときは、はずしたほうがいいです!) http://t.co/kdInkAIGnj",,4, -499,,1380899487,,,,0, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/args.txt deleted file mode 100644 index 6814d730b..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/args.txt +++ /dev/null @@ -1,10 +0,0 @@ ---id=1433261368.155 ---maxbuckets=0 ---ttl=60 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/info.csv deleted file mode 100644 index 15319fd6e..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/info.csv +++ /dev/null @@ -1,5 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1433261368.155","1433261369.009617000","1433261368.000000000","1433261369.003598000","","","",0,0,0,"duration.dispatch.createdSearchResultInfrastructure;2;duration.dispatch.evaluate;267;duration.dispatch.evaluate.export;1;duration.dispatch.evaluate.generatehello;266;duration.dispatch.writeStatus;3;duration.startup.configuration;32;duration.startup.handoff;74;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.export;1;invocations.dispatch.evaluate.generatehello;1;invocations.dispatch.writeStatus;2;invocations.startup.configuration;1;invocations.startup.handoff;1;",384,"","","","",0,0,1,1,0,0,disabled,"*","","",1,0,"_a861xJBcnm2zF69SqAKpvR6exj2_D3TROPWtJqMcNs5KlF8LGDAW7JzVnox^meDtyRHqvT3CyCoRit412dsGm3PYH8sXPxCM5Ah0qbB7sq^B9pdHLWW",8089,https,"https://127.0.0.1:8089",0,none,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| generatehello count=1000 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","generatehello count=1000 record=t | fields keepcolorder=t ""_raw"" ""_serial"" ""_time"" ""host"" ""index"" ""source"" ""sourcetype"" ""splunk_server""","","","{}","","generatehello count=1000 record=t | fields keepcolorder=t ""_raw"" ""_serial"" ""_time"" ""host"" ""index"" ""source"" ""sourcetype"" ""splunk_server""","958513E3-8716-4ABF-9559-DA0C9678437F_chunked_searchcommands_admin_3d90dcd0c5b3ee87","958513E3-8716-4ABF-9559-DA0C9678437F_chunked_searchcommands_admin_NSd804885efad5f95c",0,"","",0,0,0,0,0,0,"chunked_searchcommands",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,1,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (32ms) when dispatching a search (search ID: 1433261368.155); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'generatehello' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""chunked_searchcommands"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/metadata.csv deleted file mode 100644 index bed325fb5..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"chunked_searchcommands",60 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/peers.csv deleted file mode 100644 index 69ce012be..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/request.csv deleted file mode 100644 index 350bb8911..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -"warn_unused_args",search,"__mv_warn_unused_args","__mv_search" -1,"| generatehello count=1000 record=t",, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/runtime.csv deleted file mode 100644 index 4d53414ff..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -0,0,,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/status.csv deleted file mode 100644 index 8a96c8454..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","can_summarize","max_time","max_count","reduce_freq","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","normalized_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"time_cursored","column_order","searched_buckets","eliminated_buckets" -RUNNING,admin,1433261369,"0.273000",0,0,0,0,0,2147483647,"",0,0,0,0,8640000,500000,10,0,1,0,0,0,1,0,"| generatehello count=1000 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","",1,"generatehello count=1000 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw",1,none,"",0,"*","generatehello count=1000 record=t | fields keepcolorder=t ""_raw"" ""_serial"" ""_time"" ""host"" ""index"" ""source"" ""sourcetype"" ""splunk_server""","generatehello count=1000 record=t | fields keepcolorder=t ""_raw"" ""_serial"" ""_time"" ""host"" ""index"" ""source"" ""sourcetype"" ""splunk_server""",1,0,1,"dnoble-mbp.splunk.local",41535,5,0,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.input.gz b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.input.gz deleted file mode 100644 index 37fc590e1..000000000 Binary files a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.output b/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.output deleted file mode 100644 index 05eb565b3..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/generatehello.output +++ /dev/null @@ -1,1004 +0,0 @@ -chunked 1.0,38,0 -{"generating":true,"type":"stateful"} -chunked 1.0,17,37842 -{"finished":true}_time,__mv__time,event_no,__mv_event_no,_raw,__mv__raw -1500765588.65,,1,,Hello World 1, -1500765588.65,,2,,Hello World 2, -1500765588.65,,3,,Hello World 3, -1500765588.65,,4,,Hello World 4, -1500765588.65,,5,,Hello World 5, -1500765588.65,,6,,Hello World 6, -1500765588.65,,7,,Hello World 7, -1500765588.65,,8,,Hello World 8, -1500765588.65,,9,,Hello World 9, -1500765588.65,,10,,Hello World 10, -1500765588.65,,11,,Hello World 11, -1500765588.65,,12,,Hello World 12, -1500765588.65,,13,,Hello World 13, -1500765588.65,,14,,Hello World 14, -1500765588.65,,15,,Hello World 15, -1500765588.65,,16,,Hello World 16, -1500765588.65,,17,,Hello World 17, -1500765588.65,,18,,Hello World 18, -1500765588.65,,19,,Hello World 19, -1500765588.65,,20,,Hello World 20, -1500765588.65,,21,,Hello World 21, -1500765588.65,,22,,Hello World 22, -1500765588.65,,23,,Hello World 23, -1500765588.65,,24,,Hello World 24, -1500765588.65,,25,,Hello World 25, -1500765588.65,,26,,Hello World 26, -1500765588.65,,27,,Hello World 27, -1500765588.65,,28,,Hello World 28, -1500765588.65,,29,,Hello World 29, -1500765588.65,,30,,Hello World 30, -1500765588.65,,31,,Hello World 31, -1500765588.65,,32,,Hello World 32, -1500765588.65,,33,,Hello World 33, -1500765588.65,,34,,Hello World 34, -1500765588.65,,35,,Hello World 35, -1500765588.65,,36,,Hello World 36, -1500765588.65,,37,,Hello World 37, -1500765588.65,,38,,Hello World 38, -1500765588.65,,39,,Hello World 39, -1500765588.65,,40,,Hello World 40, -1500765588.65,,41,,Hello World 41, -1500765588.65,,42,,Hello World 42, -1500765588.65,,43,,Hello World 43, -1500765588.65,,44,,Hello World 44, -1500765588.65,,45,,Hello World 45, -1500765588.65,,46,,Hello World 46, -1500765588.65,,47,,Hello World 47, -1500765588.65,,48,,Hello World 48, -1500765588.65,,49,,Hello World 49, -1500765588.65,,50,,Hello World 50, -1500765588.65,,51,,Hello World 51, -1500765588.65,,52,,Hello World 52, -1500765588.65,,53,,Hello World 53, -1500765588.65,,54,,Hello World 54, -1500765588.65,,55,,Hello World 55, -1500765588.65,,56,,Hello World 56, -1500765588.65,,57,,Hello World 57, -1500765588.65,,58,,Hello World 58, -1500765588.65,,59,,Hello World 59, -1500765588.65,,60,,Hello World 60, -1500765588.65,,61,,Hello World 61, -1500765588.65,,62,,Hello World 62, -1500765588.65,,63,,Hello World 63, -1500765588.65,,64,,Hello World 64, -1500765588.65,,65,,Hello World 65, -1500765588.65,,66,,Hello World 66, -1500765588.65,,67,,Hello World 67, -1500765588.65,,68,,Hello World 68, -1500765588.65,,69,,Hello World 69, -1500765588.65,,70,,Hello World 70, -1500765588.65,,71,,Hello World 71, -1500765588.65,,72,,Hello World 72, -1500765588.65,,73,,Hello World 73, -1500765588.65,,74,,Hello World 74, -1500765588.65,,75,,Hello World 75, -1500765588.65,,76,,Hello World 76, -1500765588.65,,77,,Hello World 77, -1500765588.65,,78,,Hello World 78, -1500765588.65,,79,,Hello World 79, -1500765588.65,,80,,Hello World 80, -1500765588.65,,81,,Hello World 81, -1500765588.65,,82,,Hello World 82, -1500765588.65,,83,,Hello World 83, -1500765588.65,,84,,Hello World 84, -1500765588.65,,85,,Hello World 85, -1500765588.65,,86,,Hello World 86, -1500765588.65,,87,,Hello World 87, -1500765588.65,,88,,Hello World 88, -1500765588.65,,89,,Hello World 89, -1500765588.65,,90,,Hello World 90, -1500765588.65,,91,,Hello World 91, -1500765588.65,,92,,Hello World 92, -1500765588.65,,93,,Hello World 93, -1500765588.65,,94,,Hello World 94, -1500765588.65,,95,,Hello World 95, -1500765588.65,,96,,Hello World 96, -1500765588.65,,97,,Hello World 97, -1500765588.65,,98,,Hello World 98, -1500765588.65,,99,,Hello World 99, -1500765588.65,,100,,Hello World 100, -1500765588.65,,101,,Hello World 101, -1500765588.65,,102,,Hello World 102, -1500765588.65,,103,,Hello World 103, -1500765588.65,,104,,Hello World 104, -1500765588.65,,105,,Hello World 105, -1500765588.65,,106,,Hello World 106, -1500765588.65,,107,,Hello World 107, -1500765588.65,,108,,Hello World 108, -1500765588.65,,109,,Hello World 109, -1500765588.65,,110,,Hello World 110, -1500765588.65,,111,,Hello World 111, -1500765588.65,,112,,Hello World 112, -1500765588.65,,113,,Hello World 113, -1500765588.65,,114,,Hello World 114, -1500765588.65,,115,,Hello World 115, -1500765588.65,,116,,Hello World 116, -1500765588.65,,117,,Hello World 117, -1500765588.65,,118,,Hello World 118, -1500765588.65,,119,,Hello World 119, -1500765588.65,,120,,Hello World 120, -1500765588.65,,121,,Hello World 121, -1500765588.65,,122,,Hello World 122, -1500765588.65,,123,,Hello World 123, -1500765588.65,,124,,Hello World 124, -1500765588.65,,125,,Hello World 125, -1500765588.65,,126,,Hello World 126, -1500765588.65,,127,,Hello World 127, -1500765588.65,,128,,Hello World 128, -1500765588.65,,129,,Hello World 129, -1500765588.65,,130,,Hello World 130, -1500765588.65,,131,,Hello World 131, -1500765588.65,,132,,Hello World 132, -1500765588.65,,133,,Hello World 133, -1500765588.65,,134,,Hello World 134, -1500765588.65,,135,,Hello World 135, -1500765588.65,,136,,Hello World 136, -1500765588.65,,137,,Hello World 137, -1500765588.65,,138,,Hello World 138, -1500765588.65,,139,,Hello World 139, -1500765588.65,,140,,Hello World 140, -1500765588.65,,141,,Hello World 141, -1500765588.65,,142,,Hello World 142, -1500765588.65,,143,,Hello World 143, -1500765588.65,,144,,Hello World 144, -1500765588.65,,145,,Hello World 145, -1500765588.65,,146,,Hello World 146, -1500765588.65,,147,,Hello World 147, -1500765588.65,,148,,Hello World 148, -1500765588.65,,149,,Hello World 149, -1500765588.65,,150,,Hello World 150, -1500765588.65,,151,,Hello World 151, -1500765588.65,,152,,Hello World 152, -1500765588.65,,153,,Hello World 153, -1500765588.65,,154,,Hello World 154, -1500765588.65,,155,,Hello World 155, -1500765588.65,,156,,Hello World 156, -1500765588.65,,157,,Hello World 157, -1500765588.65,,158,,Hello World 158, -1500765588.65,,159,,Hello World 159, -1500765588.65,,160,,Hello World 160, -1500765588.65,,161,,Hello World 161, -1500765588.65,,162,,Hello World 162, -1500765588.65,,163,,Hello World 163, -1500765588.65,,164,,Hello World 164, -1500765588.65,,165,,Hello World 165, -1500765588.65,,166,,Hello World 166, -1500765588.65,,167,,Hello World 167, -1500765588.65,,168,,Hello World 168, -1500765588.65,,169,,Hello World 169, -1500765588.65,,170,,Hello World 170, -1500765588.65,,171,,Hello World 171, -1500765588.65,,172,,Hello World 172, -1500765588.65,,173,,Hello World 173, -1500765588.65,,174,,Hello World 174, -1500765588.65,,175,,Hello World 175, -1500765588.65,,176,,Hello World 176, -1500765588.65,,177,,Hello World 177, -1500765588.65,,178,,Hello World 178, -1500765588.65,,179,,Hello World 179, -1500765588.65,,180,,Hello World 180, -1500765588.65,,181,,Hello World 181, -1500765588.65,,182,,Hello World 182, -1500765588.65,,183,,Hello World 183, -1500765588.65,,184,,Hello World 184, -1500765588.65,,185,,Hello World 185, -1500765588.65,,186,,Hello World 186, -1500765588.65,,187,,Hello World 187, -1500765588.65,,188,,Hello World 188, -1500765588.65,,189,,Hello World 189, -1500765588.65,,190,,Hello World 190, -1500765588.65,,191,,Hello World 191, -1500765588.65,,192,,Hello World 192, -1500765588.65,,193,,Hello World 193, -1500765588.65,,194,,Hello World 194, -1500765588.65,,195,,Hello World 195, -1500765588.65,,196,,Hello World 196, -1500765588.65,,197,,Hello World 197, -1500765588.65,,198,,Hello World 198, -1500765588.65,,199,,Hello World 199, -1500765588.65,,200,,Hello World 200, -1500765588.65,,201,,Hello World 201, -1500765588.65,,202,,Hello World 202, -1500765588.65,,203,,Hello World 203, -1500765588.65,,204,,Hello World 204, -1500765588.65,,205,,Hello World 205, -1500765588.65,,206,,Hello World 206, -1500765588.65,,207,,Hello World 207, -1500765588.65,,208,,Hello World 208, -1500765588.65,,209,,Hello World 209, -1500765588.65,,210,,Hello World 210, -1500765588.65,,211,,Hello World 211, -1500765588.65,,212,,Hello World 212, -1500765588.65,,213,,Hello World 213, -1500765588.65,,214,,Hello World 214, -1500765588.65,,215,,Hello World 215, -1500765588.65,,216,,Hello World 216, -1500765588.65,,217,,Hello World 217, -1500765588.65,,218,,Hello World 218, -1500765588.65,,219,,Hello World 219, -1500765588.65,,220,,Hello World 220, -1500765588.65,,221,,Hello World 221, -1500765588.65,,222,,Hello World 222, -1500765588.65,,223,,Hello World 223, -1500765588.65,,224,,Hello World 224, -1500765588.65,,225,,Hello World 225, -1500765588.65,,226,,Hello World 226, -1500765588.65,,227,,Hello World 227, -1500765588.65,,228,,Hello World 228, -1500765588.65,,229,,Hello World 229, -1500765588.65,,230,,Hello World 230, -1500765588.65,,231,,Hello World 231, -1500765588.65,,232,,Hello World 232, -1500765588.65,,233,,Hello World 233, -1500765588.65,,234,,Hello World 234, -1500765588.65,,235,,Hello World 235, -1500765588.65,,236,,Hello World 236, -1500765588.65,,237,,Hello World 237, -1500765588.65,,238,,Hello World 238, -1500765588.65,,239,,Hello World 239, -1500765588.65,,240,,Hello World 240, -1500765588.65,,241,,Hello World 241, -1500765588.65,,242,,Hello World 242, -1500765588.65,,243,,Hello World 243, -1500765588.65,,244,,Hello World 244, -1500765588.65,,245,,Hello World 245, -1500765588.65,,246,,Hello World 246, -1500765588.65,,247,,Hello World 247, -1500765588.65,,248,,Hello World 248, -1500765588.65,,249,,Hello World 249, -1500765588.65,,250,,Hello World 250, -1500765588.65,,251,,Hello World 251, -1500765588.65,,252,,Hello World 252, -1500765588.65,,253,,Hello World 253, -1500765588.65,,254,,Hello World 254, -1500765588.65,,255,,Hello World 255, -1500765588.65,,256,,Hello World 256, -1500765588.65,,257,,Hello World 257, -1500765588.65,,258,,Hello World 258, -1500765588.65,,259,,Hello World 259, -1500765588.65,,260,,Hello World 260, -1500765588.65,,261,,Hello World 261, -1500765588.65,,262,,Hello World 262, -1500765588.65,,263,,Hello World 263, -1500765588.65,,264,,Hello World 264, -1500765588.65,,265,,Hello World 265, -1500765588.65,,266,,Hello World 266, -1500765588.65,,267,,Hello World 267, -1500765588.65,,268,,Hello World 268, -1500765588.65,,269,,Hello World 269, -1500765588.65,,270,,Hello World 270, -1500765588.65,,271,,Hello World 271, -1500765588.65,,272,,Hello World 272, -1500765588.65,,273,,Hello World 273, -1500765588.65,,274,,Hello World 274, -1500765588.65,,275,,Hello World 275, -1500765588.65,,276,,Hello World 276, -1500765588.65,,277,,Hello World 277, -1500765588.65,,278,,Hello World 278, -1500765588.65,,279,,Hello World 279, -1500765588.65,,280,,Hello World 280, -1500765588.65,,281,,Hello World 281, -1500765588.65,,282,,Hello World 282, -1500765588.65,,283,,Hello World 283, -1500765588.65,,284,,Hello World 284, -1500765588.65,,285,,Hello World 285, -1500765588.65,,286,,Hello World 286, -1500765588.65,,287,,Hello World 287, -1500765588.65,,288,,Hello World 288, -1500765588.65,,289,,Hello World 289, -1500765588.65,,290,,Hello World 290, -1500765588.65,,291,,Hello World 291, -1500765588.65,,292,,Hello World 292, -1500765588.65,,293,,Hello World 293, -1500765588.65,,294,,Hello World 294, -1500765588.65,,295,,Hello World 295, -1500765588.65,,296,,Hello World 296, -1500765588.65,,297,,Hello World 297, -1500765588.65,,298,,Hello World 298, -1500765588.65,,299,,Hello World 299, -1500765588.65,,300,,Hello World 300, -1500765588.65,,301,,Hello World 301, -1500765588.65,,302,,Hello World 302, -1500765588.65,,303,,Hello World 303, -1500765588.65,,304,,Hello World 304, -1500765588.65,,305,,Hello World 305, -1500765588.65,,306,,Hello World 306, -1500765588.65,,307,,Hello World 307, -1500765588.65,,308,,Hello World 308, -1500765588.65,,309,,Hello World 309, -1500765588.65,,310,,Hello World 310, -1500765588.65,,311,,Hello World 311, -1500765588.65,,312,,Hello World 312, -1500765588.65,,313,,Hello World 313, -1500765588.65,,314,,Hello World 314, -1500765588.65,,315,,Hello World 315, -1500765588.65,,316,,Hello World 316, -1500765588.65,,317,,Hello World 317, -1500765588.65,,318,,Hello World 318, -1500765588.65,,319,,Hello World 319, -1500765588.65,,320,,Hello World 320, -1500765588.65,,321,,Hello World 321, -1500765588.65,,322,,Hello World 322, -1500765588.65,,323,,Hello World 323, -1500765588.65,,324,,Hello World 324, -1500765588.65,,325,,Hello World 325, -1500765588.65,,326,,Hello World 326, -1500765588.65,,327,,Hello World 327, -1500765588.65,,328,,Hello World 328, -1500765588.65,,329,,Hello World 329, -1500765588.65,,330,,Hello World 330, -1500765588.65,,331,,Hello World 331, -1500765588.65,,332,,Hello World 332, -1500765588.65,,333,,Hello World 333, -1500765588.65,,334,,Hello World 334, -1500765588.65,,335,,Hello World 335, -1500765588.65,,336,,Hello World 336, -1500765588.65,,337,,Hello World 337, -1500765588.65,,338,,Hello World 338, -1500765588.65,,339,,Hello World 339, -1500765588.65,,340,,Hello World 340, -1500765588.65,,341,,Hello World 341, -1500765588.65,,342,,Hello World 342, -1500765588.65,,343,,Hello World 343, -1500765588.65,,344,,Hello World 344, -1500765588.65,,345,,Hello World 345, -1500765588.65,,346,,Hello World 346, -1500765588.65,,347,,Hello World 347, -1500765588.65,,348,,Hello World 348, -1500765588.65,,349,,Hello World 349, -1500765588.65,,350,,Hello World 350, -1500765588.65,,351,,Hello World 351, -1500765588.65,,352,,Hello World 352, -1500765588.65,,353,,Hello World 353, -1500765588.65,,354,,Hello World 354, -1500765588.65,,355,,Hello World 355, -1500765588.65,,356,,Hello World 356, -1500765588.65,,357,,Hello World 357, -1500765588.65,,358,,Hello World 358, -1500765588.65,,359,,Hello World 359, -1500765588.65,,360,,Hello World 360, -1500765588.65,,361,,Hello World 361, -1500765588.65,,362,,Hello World 362, -1500765588.65,,363,,Hello World 363, -1500765588.65,,364,,Hello World 364, -1500765588.65,,365,,Hello World 365, -1500765588.65,,366,,Hello World 366, -1500765588.65,,367,,Hello World 367, -1500765588.65,,368,,Hello World 368, -1500765588.65,,369,,Hello World 369, -1500765588.65,,370,,Hello World 370, -1500765588.65,,371,,Hello World 371, -1500765588.65,,372,,Hello World 372, -1500765588.65,,373,,Hello World 373, -1500765588.65,,374,,Hello World 374, -1500765588.65,,375,,Hello World 375, -1500765588.65,,376,,Hello World 376, -1500765588.65,,377,,Hello World 377, -1500765588.65,,378,,Hello World 378, -1500765588.65,,379,,Hello World 379, -1500765588.65,,380,,Hello World 380, -1500765588.65,,381,,Hello World 381, -1500765588.65,,382,,Hello World 382, -1500765588.65,,383,,Hello World 383, -1500765588.65,,384,,Hello World 384, -1500765588.65,,385,,Hello World 385, -1500765588.65,,386,,Hello World 386, -1500765588.65,,387,,Hello World 387, -1500765588.65,,388,,Hello World 388, -1500765588.65,,389,,Hello World 389, -1500765588.65,,390,,Hello World 390, -1500765588.65,,391,,Hello World 391, -1500765588.65,,392,,Hello World 392, -1500765588.65,,393,,Hello World 393, -1500765588.65,,394,,Hello World 394, -1500765588.65,,395,,Hello World 395, -1500765588.65,,396,,Hello World 396, -1500765588.65,,397,,Hello World 397, -1500765588.65,,398,,Hello World 398, -1500765588.65,,399,,Hello World 399, -1500765588.65,,400,,Hello World 400, -1500765588.65,,401,,Hello World 401, -1500765588.65,,402,,Hello World 402, -1500765588.65,,403,,Hello World 403, -1500765588.65,,404,,Hello World 404, -1500765588.65,,405,,Hello World 405, -1500765588.65,,406,,Hello World 406, -1500765588.65,,407,,Hello World 407, -1500765588.65,,408,,Hello World 408, -1500765588.65,,409,,Hello World 409, -1500765588.65,,410,,Hello World 410, -1500765588.65,,411,,Hello World 411, -1500765588.65,,412,,Hello World 412, -1500765588.65,,413,,Hello World 413, -1500765588.65,,414,,Hello World 414, -1500765588.65,,415,,Hello World 415, -1500765588.65,,416,,Hello World 416, -1500765588.65,,417,,Hello World 417, -1500765588.65,,418,,Hello World 418, -1500765588.65,,419,,Hello World 419, -1500765588.65,,420,,Hello World 420, -1500765588.65,,421,,Hello World 421, -1500765588.65,,422,,Hello World 422, -1500765588.65,,423,,Hello World 423, -1500765588.65,,424,,Hello World 424, -1500765588.65,,425,,Hello World 425, -1500765588.65,,426,,Hello World 426, -1500765588.65,,427,,Hello World 427, -1500765588.65,,428,,Hello World 428, -1500765588.65,,429,,Hello World 429, -1500765588.65,,430,,Hello World 430, -1500765588.65,,431,,Hello World 431, -1500765588.65,,432,,Hello World 432, -1500765588.65,,433,,Hello World 433, -1500765588.65,,434,,Hello World 434, -1500765588.65,,435,,Hello World 435, -1500765588.65,,436,,Hello World 436, -1500765588.65,,437,,Hello World 437, -1500765588.65,,438,,Hello World 438, -1500765588.65,,439,,Hello World 439, -1500765588.65,,440,,Hello World 440, -1500765588.65,,441,,Hello World 441, -1500765588.65,,442,,Hello World 442, -1500765588.65,,443,,Hello World 443, -1500765588.65,,444,,Hello World 444, -1500765588.65,,445,,Hello World 445, -1500765588.65,,446,,Hello World 446, -1500765588.65,,447,,Hello World 447, -1500765588.65,,448,,Hello World 448, -1500765588.65,,449,,Hello World 449, -1500765588.65,,450,,Hello World 450, -1500765588.65,,451,,Hello World 451, -1500765588.65,,452,,Hello World 452, -1500765588.65,,453,,Hello World 453, -1500765588.65,,454,,Hello World 454, -1500765588.65,,455,,Hello World 455, -1500765588.65,,456,,Hello World 456, -1500765588.65,,457,,Hello World 457, -1500765588.65,,458,,Hello World 458, -1500765588.65,,459,,Hello World 459, -1500765588.65,,460,,Hello World 460, -1500765588.65,,461,,Hello World 461, -1500765588.65,,462,,Hello World 462, -1500765588.65,,463,,Hello World 463, -1500765588.65,,464,,Hello World 464, -1500765588.65,,465,,Hello World 465, -1500765588.65,,466,,Hello World 466, -1500765588.65,,467,,Hello World 467, -1500765588.65,,468,,Hello World 468, -1500765588.65,,469,,Hello World 469, -1500765588.65,,470,,Hello World 470, -1500765588.65,,471,,Hello World 471, -1500765588.65,,472,,Hello World 472, -1500765588.65,,473,,Hello World 473, -1500765588.65,,474,,Hello World 474, -1500765588.65,,475,,Hello World 475, -1500765588.65,,476,,Hello World 476, -1500765588.65,,477,,Hello World 477, -1500765588.65,,478,,Hello World 478, -1500765588.65,,479,,Hello World 479, -1500765588.65,,480,,Hello World 480, -1500765588.65,,481,,Hello World 481, -1500765588.65,,482,,Hello World 482, -1500765588.65,,483,,Hello World 483, -1500765588.65,,484,,Hello World 484, -1500765588.65,,485,,Hello World 485, -1500765588.65,,486,,Hello World 486, -1500765588.65,,487,,Hello World 487, -1500765588.65,,488,,Hello World 488, -1500765588.65,,489,,Hello World 489, -1500765588.65,,490,,Hello World 490, -1500765588.65,,491,,Hello World 491, -1500765588.65,,492,,Hello World 492, -1500765588.65,,493,,Hello World 493, -1500765588.65,,494,,Hello World 494, -1500765588.65,,495,,Hello World 495, -1500765588.65,,496,,Hello World 496, -1500765588.65,,497,,Hello World 497, -1500765588.65,,498,,Hello World 498, -1500765588.65,,499,,Hello World 499, -1500765588.65,,500,,Hello World 500, -1500765588.65,,501,,Hello World 501, -1500765588.65,,502,,Hello World 502, -1500765588.65,,503,,Hello World 503, -1500765588.65,,504,,Hello World 504, -1500765588.65,,505,,Hello World 505, -1500765588.65,,506,,Hello World 506, -1500765588.65,,507,,Hello World 507, -1500765588.65,,508,,Hello World 508, -1500765588.65,,509,,Hello World 509, -1500765588.65,,510,,Hello World 510, -1500765588.65,,511,,Hello World 511, -1500765588.65,,512,,Hello World 512, -1500765588.65,,513,,Hello World 513, -1500765588.65,,514,,Hello World 514, -1500765588.65,,515,,Hello World 515, -1500765588.65,,516,,Hello World 516, -1500765588.65,,517,,Hello World 517, -1500765588.65,,518,,Hello World 518, -1500765588.65,,519,,Hello World 519, -1500765588.65,,520,,Hello World 520, -1500765588.65,,521,,Hello World 521, -1500765588.65,,522,,Hello World 522, -1500765588.65,,523,,Hello World 523, -1500765588.65,,524,,Hello World 524, -1500765588.65,,525,,Hello World 525, -1500765588.65,,526,,Hello World 526, -1500765588.65,,527,,Hello World 527, -1500765588.65,,528,,Hello World 528, -1500765588.65,,529,,Hello World 529, -1500765588.65,,530,,Hello World 530, -1500765588.65,,531,,Hello World 531, -1500765588.65,,532,,Hello World 532, -1500765588.65,,533,,Hello World 533, -1500765588.65,,534,,Hello World 534, -1500765588.65,,535,,Hello World 535, -1500765588.65,,536,,Hello World 536, -1500765588.65,,537,,Hello World 537, -1500765588.65,,538,,Hello World 538, -1500765588.65,,539,,Hello World 539, -1500765588.65,,540,,Hello World 540, -1500765588.65,,541,,Hello World 541, -1500765588.65,,542,,Hello World 542, -1500765588.65,,543,,Hello World 543, -1500765588.65,,544,,Hello World 544, -1500765588.65,,545,,Hello World 545, -1500765588.65,,546,,Hello World 546, -1500765588.65,,547,,Hello World 547, -1500765588.65,,548,,Hello World 548, -1500765588.65,,549,,Hello World 549, -1500765588.65,,550,,Hello World 550, -1500765588.65,,551,,Hello World 551, -1500765588.65,,552,,Hello World 552, -1500765588.65,,553,,Hello World 553, -1500765588.65,,554,,Hello World 554, -1500765588.65,,555,,Hello World 555, -1500765588.65,,556,,Hello World 556, -1500765588.65,,557,,Hello World 557, -1500765588.65,,558,,Hello World 558, -1500765588.65,,559,,Hello World 559, -1500765588.65,,560,,Hello World 560, -1500765588.65,,561,,Hello World 561, -1500765588.65,,562,,Hello World 562, -1500765588.65,,563,,Hello World 563, -1500765588.65,,564,,Hello World 564, -1500765588.65,,565,,Hello World 565, -1500765588.65,,566,,Hello World 566, -1500765588.65,,567,,Hello World 567, -1500765588.65,,568,,Hello World 568, -1500765588.65,,569,,Hello World 569, -1500765588.65,,570,,Hello World 570, -1500765588.65,,571,,Hello World 571, -1500765588.65,,572,,Hello World 572, -1500765588.65,,573,,Hello World 573, -1500765588.65,,574,,Hello World 574, -1500765588.65,,575,,Hello World 575, -1500765588.65,,576,,Hello World 576, -1500765588.65,,577,,Hello World 577, -1500765588.65,,578,,Hello World 578, -1500765588.65,,579,,Hello World 579, -1500765588.65,,580,,Hello World 580, -1500765588.65,,581,,Hello World 581, -1500765588.65,,582,,Hello World 582, -1500765588.65,,583,,Hello World 583, -1500765588.65,,584,,Hello World 584, -1500765588.65,,585,,Hello World 585, -1500765588.65,,586,,Hello World 586, -1500765588.65,,587,,Hello World 587, -1500765588.65,,588,,Hello World 588, -1500765588.65,,589,,Hello World 589, -1500765588.65,,590,,Hello World 590, -1500765588.65,,591,,Hello World 591, -1500765588.65,,592,,Hello World 592, -1500765588.65,,593,,Hello World 593, -1500765588.65,,594,,Hello World 594, -1500765588.65,,595,,Hello World 595, -1500765588.65,,596,,Hello World 596, -1500765588.65,,597,,Hello World 597, -1500765588.65,,598,,Hello World 598, -1500765588.65,,599,,Hello World 599, -1500765588.65,,600,,Hello World 600, -1500765588.65,,601,,Hello World 601, -1500765588.65,,602,,Hello World 602, -1500765588.65,,603,,Hello World 603, -1500765588.65,,604,,Hello World 604, -1500765588.65,,605,,Hello World 605, -1500765588.65,,606,,Hello World 606, -1500765588.65,,607,,Hello World 607, -1500765588.65,,608,,Hello World 608, -1500765588.65,,609,,Hello World 609, -1500765588.65,,610,,Hello World 610, -1500765588.65,,611,,Hello World 611, -1500765588.65,,612,,Hello World 612, -1500765588.65,,613,,Hello World 613, -1500765588.65,,614,,Hello World 614, -1500765588.65,,615,,Hello World 615, -1500765588.65,,616,,Hello World 616, -1500765588.65,,617,,Hello World 617, -1500765588.65,,618,,Hello World 618, -1500765588.65,,619,,Hello World 619, -1500765588.65,,620,,Hello World 620, -1500765588.65,,621,,Hello World 621, -1500765588.65,,622,,Hello World 622, -1500765588.65,,623,,Hello World 623, -1500765588.65,,624,,Hello World 624, -1500765588.65,,625,,Hello World 625, -1500765588.65,,626,,Hello World 626, -1500765588.65,,627,,Hello World 627, -1500765588.65,,628,,Hello World 628, -1500765588.65,,629,,Hello World 629, -1500765588.65,,630,,Hello World 630, -1500765588.65,,631,,Hello World 631, -1500765588.65,,632,,Hello World 632, -1500765588.65,,633,,Hello World 633, -1500765588.65,,634,,Hello World 634, -1500765588.65,,635,,Hello World 635, -1500765588.65,,636,,Hello World 636, -1500765588.65,,637,,Hello World 637, -1500765588.65,,638,,Hello World 638, -1500765588.65,,639,,Hello World 639, -1500765588.65,,640,,Hello World 640, -1500765588.65,,641,,Hello World 641, -1500765588.65,,642,,Hello World 642, -1500765588.65,,643,,Hello World 643, -1500765588.65,,644,,Hello World 644, -1500765588.65,,645,,Hello World 645, -1500765588.65,,646,,Hello World 646, -1500765588.65,,647,,Hello World 647, -1500765588.65,,648,,Hello World 648, -1500765588.65,,649,,Hello World 649, -1500765588.65,,650,,Hello World 650, -1500765588.65,,651,,Hello World 651, -1500765588.65,,652,,Hello World 652, -1500765588.65,,653,,Hello World 653, -1500765588.65,,654,,Hello World 654, -1500765588.65,,655,,Hello World 655, -1500765588.65,,656,,Hello World 656, -1500765588.65,,657,,Hello World 657, -1500765588.65,,658,,Hello World 658, -1500765588.65,,659,,Hello World 659, -1500765588.65,,660,,Hello World 660, -1500765588.65,,661,,Hello World 661, -1500765588.65,,662,,Hello World 662, -1500765588.65,,663,,Hello World 663, -1500765588.65,,664,,Hello World 664, -1500765588.65,,665,,Hello World 665, -1500765588.65,,666,,Hello World 666, -1500765588.65,,667,,Hello World 667, -1500765588.65,,668,,Hello World 668, -1500765588.65,,669,,Hello World 669, -1500765588.65,,670,,Hello World 670, -1500765588.65,,671,,Hello World 671, -1500765588.65,,672,,Hello World 672, -1500765588.65,,673,,Hello World 673, -1500765588.65,,674,,Hello World 674, -1500765588.65,,675,,Hello World 675, -1500765588.65,,676,,Hello World 676, -1500765588.65,,677,,Hello World 677, -1500765588.65,,678,,Hello World 678, -1500765588.65,,679,,Hello World 679, -1500765588.65,,680,,Hello World 680, -1500765588.65,,681,,Hello World 681, -1500765588.65,,682,,Hello World 682, -1500765588.65,,683,,Hello World 683, -1500765588.65,,684,,Hello World 684, -1500765588.65,,685,,Hello World 685, -1500765588.65,,686,,Hello World 686, -1500765588.65,,687,,Hello World 687, -1500765588.65,,688,,Hello World 688, -1500765588.65,,689,,Hello World 689, -1500765588.65,,690,,Hello World 690, -1500765588.65,,691,,Hello World 691, -1500765588.65,,692,,Hello World 692, -1500765588.65,,693,,Hello World 693, -1500765588.65,,694,,Hello World 694, -1500765588.65,,695,,Hello World 695, -1500765588.65,,696,,Hello World 696, -1500765588.65,,697,,Hello World 697, -1500765588.65,,698,,Hello World 698, -1500765588.65,,699,,Hello World 699, -1500765588.65,,700,,Hello World 700, -1500765588.65,,701,,Hello World 701, -1500765588.65,,702,,Hello World 702, -1500765588.65,,703,,Hello World 703, -1500765588.65,,704,,Hello World 704, -1500765588.65,,705,,Hello World 705, -1500765588.65,,706,,Hello World 706, -1500765588.65,,707,,Hello World 707, -1500765588.65,,708,,Hello World 708, -1500765588.65,,709,,Hello World 709, -1500765588.65,,710,,Hello World 710, -1500765588.65,,711,,Hello World 711, -1500765588.65,,712,,Hello World 712, -1500765588.65,,713,,Hello World 713, -1500765588.65,,714,,Hello World 714, -1500765588.65,,715,,Hello World 715, -1500765588.65,,716,,Hello World 716, -1500765588.65,,717,,Hello World 717, -1500765588.65,,718,,Hello World 718, -1500765588.65,,719,,Hello World 719, -1500765588.65,,720,,Hello World 720, -1500765588.65,,721,,Hello World 721, -1500765588.65,,722,,Hello World 722, -1500765588.65,,723,,Hello World 723, -1500765588.65,,724,,Hello World 724, -1500765588.65,,725,,Hello World 725, -1500765588.65,,726,,Hello World 726, -1500765588.65,,727,,Hello World 727, -1500765588.65,,728,,Hello World 728, -1500765588.65,,729,,Hello World 729, -1500765588.65,,730,,Hello World 730, -1500765588.65,,731,,Hello World 731, -1500765588.65,,732,,Hello World 732, -1500765588.65,,733,,Hello World 733, -1500765588.65,,734,,Hello World 734, -1500765588.65,,735,,Hello World 735, -1500765588.65,,736,,Hello World 736, -1500765588.65,,737,,Hello World 737, -1500765588.65,,738,,Hello World 738, -1500765588.65,,739,,Hello World 739, -1500765588.65,,740,,Hello World 740, -1500765588.65,,741,,Hello World 741, -1500765588.65,,742,,Hello World 742, -1500765588.65,,743,,Hello World 743, -1500765588.65,,744,,Hello World 744, -1500765588.65,,745,,Hello World 745, -1500765588.65,,746,,Hello World 746, -1500765588.65,,747,,Hello World 747, -1500765588.65,,748,,Hello World 748, -1500765588.65,,749,,Hello World 749, -1500765588.65,,750,,Hello World 750, -1500765588.65,,751,,Hello World 751, -1500765588.65,,752,,Hello World 752, -1500765588.65,,753,,Hello World 753, -1500765588.65,,754,,Hello World 754, -1500765588.65,,755,,Hello World 755, -1500765588.65,,756,,Hello World 756, -1500765588.65,,757,,Hello World 757, -1500765588.65,,758,,Hello World 758, -1500765588.65,,759,,Hello World 759, -1500765588.65,,760,,Hello World 760, -1500765588.65,,761,,Hello World 761, -1500765588.65,,762,,Hello World 762, -1500765588.65,,763,,Hello World 763, -1500765588.65,,764,,Hello World 764, -1500765588.65,,765,,Hello World 765, -1500765588.65,,766,,Hello World 766, -1500765588.65,,767,,Hello World 767, -1500765588.65,,768,,Hello World 768, -1500765588.65,,769,,Hello World 769, -1500765588.65,,770,,Hello World 770, -1500765588.65,,771,,Hello World 771, -1500765588.65,,772,,Hello World 772, -1500765588.65,,773,,Hello World 773, -1500765588.65,,774,,Hello World 774, -1500765588.65,,775,,Hello World 775, -1500765588.65,,776,,Hello World 776, -1500765588.65,,777,,Hello World 777, -1500765588.65,,778,,Hello World 778, -1500765588.65,,779,,Hello World 779, -1500765588.65,,780,,Hello World 780, -1500765588.65,,781,,Hello World 781, -1500765588.65,,782,,Hello World 782, -1500765588.65,,783,,Hello World 783, -1500765588.65,,784,,Hello World 784, -1500765588.65,,785,,Hello World 785, -1500765588.65,,786,,Hello World 786, -1500765588.65,,787,,Hello World 787, -1500765588.65,,788,,Hello World 788, -1500765588.65,,789,,Hello World 789, -1500765588.65,,790,,Hello World 790, -1500765588.65,,791,,Hello World 791, -1500765588.65,,792,,Hello World 792, -1500765588.65,,793,,Hello World 793, -1500765588.65,,794,,Hello World 794, -1500765588.65,,795,,Hello World 795, -1500765588.65,,796,,Hello World 796, -1500765588.65,,797,,Hello World 797, -1500765588.65,,798,,Hello World 798, -1500765588.65,,799,,Hello World 799, -1500765588.65,,800,,Hello World 800, -1500765588.65,,801,,Hello World 801, -1500765588.65,,802,,Hello World 802, -1500765588.65,,803,,Hello World 803, -1500765588.65,,804,,Hello World 804, -1500765588.65,,805,,Hello World 805, -1500765588.65,,806,,Hello World 806, -1500765588.65,,807,,Hello World 807, -1500765588.65,,808,,Hello World 808, -1500765588.65,,809,,Hello World 809, -1500765588.65,,810,,Hello World 810, -1500765588.65,,811,,Hello World 811, -1500765588.65,,812,,Hello World 812, -1500765588.65,,813,,Hello World 813, -1500765588.65,,814,,Hello World 814, -1500765588.65,,815,,Hello World 815, -1500765588.65,,816,,Hello World 816, -1500765588.65,,817,,Hello World 817, -1500765588.65,,818,,Hello World 818, -1500765588.65,,819,,Hello World 819, -1500765588.65,,820,,Hello World 820, -1500765588.65,,821,,Hello World 821, -1500765588.65,,822,,Hello World 822, -1500765588.65,,823,,Hello World 823, -1500765588.65,,824,,Hello World 824, -1500765588.65,,825,,Hello World 825, -1500765588.65,,826,,Hello World 826, -1500765588.65,,827,,Hello World 827, -1500765588.65,,828,,Hello World 828, -1500765588.65,,829,,Hello World 829, -1500765588.65,,830,,Hello World 830, -1500765588.65,,831,,Hello World 831, -1500765588.65,,832,,Hello World 832, -1500765588.65,,833,,Hello World 833, -1500765588.65,,834,,Hello World 834, -1500765588.65,,835,,Hello World 835, -1500765588.65,,836,,Hello World 836, -1500765588.65,,837,,Hello World 837, -1500765588.65,,838,,Hello World 838, -1500765588.65,,839,,Hello World 839, -1500765588.65,,840,,Hello World 840, -1500765588.65,,841,,Hello World 841, -1500765588.65,,842,,Hello World 842, -1500765588.65,,843,,Hello World 843, -1500765588.65,,844,,Hello World 844, -1500765588.65,,845,,Hello World 845, -1500765588.65,,846,,Hello World 846, -1500765588.65,,847,,Hello World 847, -1500765588.65,,848,,Hello World 848, -1500765588.65,,849,,Hello World 849, -1500765588.65,,850,,Hello World 850, -1500765588.65,,851,,Hello World 851, -1500765588.65,,852,,Hello World 852, -1500765588.65,,853,,Hello World 853, -1500765588.65,,854,,Hello World 854, -1500765588.65,,855,,Hello World 855, -1500765588.65,,856,,Hello World 856, -1500765588.65,,857,,Hello World 857, -1500765588.65,,858,,Hello World 858, -1500765588.65,,859,,Hello World 859, -1500765588.65,,860,,Hello World 860, -1500765588.65,,861,,Hello World 861, -1500765588.65,,862,,Hello World 862, -1500765588.65,,863,,Hello World 863, -1500765588.65,,864,,Hello World 864, -1500765588.65,,865,,Hello World 865, -1500765588.65,,866,,Hello World 866, -1500765588.65,,867,,Hello World 867, -1500765588.65,,868,,Hello World 868, -1500765588.65,,869,,Hello World 869, -1500765588.65,,870,,Hello World 870, -1500765588.65,,871,,Hello World 871, -1500765588.65,,872,,Hello World 872, -1500765588.65,,873,,Hello World 873, -1500765588.65,,874,,Hello World 874, -1500765588.65,,875,,Hello World 875, -1500765588.65,,876,,Hello World 876, -1500765588.65,,877,,Hello World 877, -1500765588.65,,878,,Hello World 878, -1500765588.65,,879,,Hello World 879, -1500765588.65,,880,,Hello World 880, -1500765588.65,,881,,Hello World 881, -1500765588.65,,882,,Hello World 882, -1500765588.65,,883,,Hello World 883, -1500765588.65,,884,,Hello World 884, -1500765588.65,,885,,Hello World 885, -1500765588.65,,886,,Hello World 886, -1500765588.65,,887,,Hello World 887, -1500765588.65,,888,,Hello World 888, -1500765588.65,,889,,Hello World 889, -1500765588.65,,890,,Hello World 890, -1500765588.65,,891,,Hello World 891, -1500765588.65,,892,,Hello World 892, -1500765588.65,,893,,Hello World 893, -1500765588.65,,894,,Hello World 894, -1500765588.65,,895,,Hello World 895, -1500765588.65,,896,,Hello World 896, -1500765588.65,,897,,Hello World 897, -1500765588.65,,898,,Hello World 898, -1500765588.65,,899,,Hello World 899, -1500765588.65,,900,,Hello World 900, -1500765588.65,,901,,Hello World 901, -1500765588.65,,902,,Hello World 902, -1500765588.65,,903,,Hello World 903, -1500765588.65,,904,,Hello World 904, -1500765588.65,,905,,Hello World 905, -1500765588.65,,906,,Hello World 906, -1500765588.65,,907,,Hello World 907, -1500765588.65,,908,,Hello World 908, -1500765588.65,,909,,Hello World 909, -1500765588.65,,910,,Hello World 910, -1500765588.65,,911,,Hello World 911, -1500765588.65,,912,,Hello World 912, -1500765588.65,,913,,Hello World 913, -1500765588.65,,914,,Hello World 914, -1500765588.65,,915,,Hello World 915, -1500765588.65,,916,,Hello World 916, -1500765588.65,,917,,Hello World 917, -1500765588.65,,918,,Hello World 918, -1500765588.65,,919,,Hello World 919, -1500765588.65,,920,,Hello World 920, -1500765588.65,,921,,Hello World 921, -1500765588.65,,922,,Hello World 922, -1500765588.65,,923,,Hello World 923, -1500765588.65,,924,,Hello World 924, -1500765588.65,,925,,Hello World 925, -1500765588.65,,926,,Hello World 926, -1500765588.65,,927,,Hello World 927, -1500765588.65,,928,,Hello World 928, -1500765588.65,,929,,Hello World 929, -1500765588.65,,930,,Hello World 930, -1500765588.65,,931,,Hello World 931, -1500765588.65,,932,,Hello World 932, -1500765588.65,,933,,Hello World 933, -1500765588.65,,934,,Hello World 934, -1500765588.65,,935,,Hello World 935, -1500765588.65,,936,,Hello World 936, -1500765588.65,,937,,Hello World 937, -1500765588.65,,938,,Hello World 938, -1500765588.65,,939,,Hello World 939, -1500765588.65,,940,,Hello World 940, -1500765588.65,,941,,Hello World 941, -1500765588.65,,942,,Hello World 942, -1500765588.65,,943,,Hello World 943, -1500765588.65,,944,,Hello World 944, -1500765588.65,,945,,Hello World 945, -1500765588.65,,946,,Hello World 946, -1500765588.65,,947,,Hello World 947, -1500765588.65,,948,,Hello World 948, -1500765588.65,,949,,Hello World 949, -1500765588.65,,950,,Hello World 950, -1500765588.65,,951,,Hello World 951, -1500765588.65,,952,,Hello World 952, -1500765588.65,,953,,Hello World 953, -1500765588.65,,954,,Hello World 954, -1500765588.65,,955,,Hello World 955, -1500765588.65,,956,,Hello World 956, -1500765588.65,,957,,Hello World 957, -1500765588.65,,958,,Hello World 958, -1500765588.65,,959,,Hello World 959, -1500765588.65,,960,,Hello World 960, -1500765588.65,,961,,Hello World 961, -1500765588.65,,962,,Hello World 962, -1500765588.65,,963,,Hello World 963, -1500765588.65,,964,,Hello World 964, -1500765588.65,,965,,Hello World 965, -1500765588.65,,966,,Hello World 966, -1500765588.65,,967,,Hello World 967, -1500765588.65,,968,,Hello World 968, -1500765588.65,,969,,Hello World 969, -1500765588.65,,970,,Hello World 970, -1500765588.65,,971,,Hello World 971, -1500765588.65,,972,,Hello World 972, -1500765588.65,,973,,Hello World 973, -1500765588.65,,974,,Hello World 974, -1500765588.65,,975,,Hello World 975, -1500765588.65,,976,,Hello World 976, -1500765588.65,,977,,Hello World 977, -1500765588.65,,978,,Hello World 978, -1500765588.65,,979,,Hello World 979, -1500765588.65,,980,,Hello World 980, -1500765588.65,,981,,Hello World 981, -1500765588.65,,982,,Hello World 982, -1500765588.65,,983,,Hello World 983, -1500765588.65,,984,,Hello World 984, -1500765588.65,,985,,Hello World 985, -1500765588.65,,986,,Hello World 986, -1500765588.65,,987,,Hello World 987, -1500765588.65,,988,,Hello World 988, -1500765588.65,,989,,Hello World 989, -1500765588.65,,990,,Hello World 990, -1500765588.65,,991,,Hello World 991, -1500765588.65,,992,,Hello World 992, -1500765588.65,,993,,Hello World 993, -1500765588.65,,994,,Hello World 994, -1500765588.65,,995,,Hello World 995, -1500765588.65,,996,,Hello World 996, -1500765588.65,,997,,Hello World 997, -1500765588.65,,998,,Hello World 998, -1500765588.65,,999,,Hello World 999, -1500765588.65,,1000,,Hello World 1000, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/args.txt deleted file mode 100644 index ec1500f11..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/args.txt +++ /dev/null @@ -1,10 +0,0 @@ ---id=1433261369.156 ---maxbuckets=0 ---ttl=60 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/info.csv deleted file mode 100644 index dbea917a6..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/info.csv +++ /dev/null @@ -1,5 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","_normalized_search","summary_id","normalized_summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_tz","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1433261369.156","1433261369.792404000","1433261369.000000000","1433261369.790413000","","","",0,0,0,"duration.dispatch.createdSearchResultInfrastructure;2;duration.dispatch.evaluate;792;duration.dispatch.evaluate.export;1;duration.dispatch.evaluate.pypygeneratehello;791;duration.dispatch.writeStatus;4;duration.startup.configuration;29;duration.startup.handoff;73;invocations.dispatch.createdSearchResultInfrastructure;1;invocations.dispatch.evaluate;1;invocations.dispatch.evaluate.export;1;invocations.dispatch.evaluate.pypygeneratehello;1;invocations.dispatch.writeStatus;2;invocations.startup.configuration;1;invocations.startup.handoff;1;",901,"","","","",0,0,1,1,0,0,disabled,"*","","",1,0,"REDwFC^06sgqJZFAV7o1bxi5XRem^zgjHgQsCmLzg4jEpYMu6gkkbJmn1Jf35pucWPbA135ne2GD1tHCsqZvede5adnTvTU99RIiGzXOjE9q3YTKhkJa7I1OMvY",8089,https,"https://127.0.0.1:8089",0,none,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| pypygeneratehello count=1000 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","pypygeneratehello count=1000 record=t | fields keepcolorder=t ""_raw"" ""_serial"" ""_time"" ""host"" ""index"" ""source"" ""sourcetype"" ""splunk_server""","","","{}","","pypygeneratehello count=1000 record=t | fields keepcolorder=t ""_raw"" ""_serial"" ""_time"" ""host"" ""index"" ""source"" ""sourcetype"" ""splunk_server""","958513E3-8716-4ABF-9559-DA0C9678437F_chunked_searchcommands_admin_8f7638f2ad8417a4","958513E3-8716-4ABF-9559-DA0C9678437F_chunked_searchcommands_admin_NS73f8b8e6d9e95df7",0,"","",0,0,0,0,0,0,"chunked_searchcommands",admin,"$SPLUNK_HOME/etc",0,"### SERIALIZED TIMEZONE FORMAT 1.0;Y-25200 YW 50 44 54;Y-28800 NW 50 53 54;Y-25200 YW 50 57 54;Y-25200 YG 50 50 54;@-1633269600 0;@-1615129200 1;@-1601820000 0;@-1583679600 1;@-880207200 2;@-769395600 3;@-765385200 1;@-687967200 0;@-662655600 1;@-620834400 0;@-608137200 1;@-589384800 0;@-576082800 1;@-557935200 0;@-544633200 1;@-526485600 0;@-513183600 1;@-495036000 0;@-481734000 1;@-463586400 0;@-450284400 1;@-431532000 0;@-418230000 1;@-400082400 0;@-386780400 1;@-368632800 0;@-355330800 1;@-337183200 0;@-323881200 1;@-305733600 0;@-292431600 1;@-273679200 0;@-260982000 1;@-242229600 0;@-226508400 1;@-210780000 0;@-195058800 1;@-179330400 0;@-163609200 1;@-147880800 0;@-131554800 1;@-116431200 0;@-100105200 1;@-84376800 0;@-68655600 1;@-52927200 0;@-37206000 1;@-21477600 0;@-5756400 1;@9972000 0;@25693200 1;@41421600 0;@57747600 1;@73476000 0;@89197200 1;@104925600 0;@120646800 1;@126698400 0;@152096400 1;@162381600 0;@183546000 1;@199274400 0;@215600400 1;@230724000 0;@247050000 1;@262778400 0;@278499600 1;@294228000 0;@309949200 1;@325677600 0;@341398800 1;@357127200 0;@372848400 1;@388576800 0;@404902800 1;@420026400 0;@436352400 1;@452080800 0;@467802000 1;@483530400 0;@499251600 1;@514980000 0;@530701200 1;@544615200 0;@562150800 1;@576064800 0;@594205200 1;@607514400 0;@625654800 1;@638964000 0;@657104400 1;@671018400 0;@688554000 1;@702468000 0;@720003600 1;@733917600 0;@752058000 1;@765367200 0;@783507600 1;@796816800 0;@814957200 1;@828871200 0;@846406800 1;@860320800 0;@877856400 1;@891770400 0;@909306000 1;@923220000 0;@941360400 1;@954669600 0;@972810000 1;@986119200 0;@1004259600 1;@1018173600 0;@1035709200 1;@1049623200 0;@1067158800 1;@1081072800 0;@1099213200 1;@1112522400 0;@1130662800 1;@1143972000 0;@1162112400 1;@1173607200 0;@1194166800 1;@1205056800 0;@1225616400 1;@1236506400 0;@1257066000 1;@1268560800 0;@1289120400 1;@1300010400 0;@1320570000 1;@1331460000 0;@1352019600 1;@1362909600 0;@1383469200 1;@1394359200 0;@1414918800 1;@1425808800 0;@1446368400 1;@1457863200 0;@1478422800 1;@1489312800 0;@1509872400 1;@1520762400 0;@1541322000 1;@1552212000 0;@1572771600 1;@1583661600 0;@1604221200 1;@1615716000 0;@1636275600 1;@1647165600 0;@1667725200 1;@1678615200 0;@1699174800 1;@1710064800 0;@1730624400 1;@1741514400 0;@1762074000 1;@1772964000 0;@1793523600 1;@1805018400 0;@1825578000 1;@1836468000 0;@1857027600 1;@1867917600 0;@1888477200 1;@1899367200 0;@1919926800 1;@1930816800 0;@1951376400 1;@1962871200 0;@1983430800 1;@1994320800 0;@2014880400 1;@2025770400 0;@2046330000 1;@2057220000 0;@2077779600 1;@2088669600 0;@2109229200 1;@2120119200 0;@2140678800 1;$",0,0,1,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (29ms) when dispatching a search (search ID: 1433261369.156); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"The 'pypygeneratehello' command is implemented as an external script and may cause the search to be significantly slower.",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""chunked_searchcommands"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/metadata.csv deleted file mode 100644 index bed325fb5..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"chunked_searchcommands",60 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/peers.csv deleted file mode 100644 index 69ce012be..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/request.csv deleted file mode 100644 index d77fc9502..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -"warn_unused_args",search,"__mv_warn_unused_args","__mv_search" -1,"| pypygeneratehello count=1000 record=t",, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/runtime.csv deleted file mode 100644 index 4d53414ff..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -0,0,,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/status.csv deleted file mode 100644 index 5ba65e18d..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","can_summarize","max_time","max_count","reduce_freq","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","normalized_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"time_cursored","column_order","searched_buckets","eliminated_buckets" -RUNNING,admin,1433261369,"0.800000",0,0,0,0,0,2147483647,"",0,0,0,0,8640000,500000,10,0,1,0,0,0,1,0,"| pypygeneratehello count=1000 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","",1,"pypygeneratehello count=1000 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw",1,none,"",0,"*","pypygeneratehello count=1000 record=t | fields keepcolorder=t ""_raw"" ""_serial"" ""_time"" ""host"" ""index"" ""source"" ""sourcetype"" ""splunk_server""","pypygeneratehello count=1000 record=t | fields keepcolorder=t ""_raw"" ""_serial"" ""_time"" ""host"" ""index"" ""source"" ""sourcetype"" ""splunk_server""",1,0,1,"dnoble-mbp.splunk.local",41548,5,0,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.input.gz b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.input.gz deleted file mode 100644 index a99bb8905..000000000 Binary files a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.output b/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.output deleted file mode 100644 index b10da91f2..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/pypygeneratetext.output +++ /dev/null @@ -1,1004 +0,0 @@ -chunked 1.0,38,0 -{"generating":true,"type":"streaming"} -chunked 1.0,17,39840 -{"finished":true}_time,__mv__time,_serial,__mv__serial,_raw,__mv__raw -1433261371.25,,1,,1. Hello World!, -1433261371.25,,2,,2. Hello World!, -1433261371.25,,3,,3. Hello World!, -1433261371.25,,4,,4. Hello World!, -1433261371.25,,5,,5. Hello World!, -1433261371.25,,6,,6. Hello World!, -1433261371.25,,7,,7. Hello World!, -1433261371.25,,8,,8. Hello World!, -1433261371.25,,9,,9. Hello World!, -1433261371.25,,10,,10. Hello World!, -1433261371.25,,11,,11. Hello World!, -1433261371.25,,12,,12. Hello World!, -1433261371.25,,13,,13. Hello World!, -1433261371.25,,14,,14. Hello World!, -1433261371.25,,15,,15. Hello World!, -1433261371.25,,16,,16. Hello World!, -1433261371.25,,17,,17. Hello World!, -1433261371.25,,18,,18. Hello World!, -1433261371.25,,19,,19. Hello World!, -1433261371.25,,20,,20. Hello World!, -1433261371.25,,21,,21. Hello World!, -1433261371.25,,22,,22. Hello World!, -1433261371.25,,23,,23. Hello World!, -1433261371.25,,24,,24. Hello World!, -1433261371.25,,25,,25. Hello World!, -1433261371.25,,26,,26. Hello World!, -1433261371.25,,27,,27. Hello World!, -1433261371.25,,28,,28. Hello World!, -1433261371.25,,29,,29. Hello World!, -1433261371.25,,30,,30. Hello World!, -1433261371.25,,31,,31. Hello World!, -1433261371.25,,32,,32. Hello World!, -1433261371.25,,33,,33. Hello World!, -1433261371.25,,34,,34. Hello World!, -1433261371.25,,35,,35. Hello World!, -1433261371.25,,36,,36. Hello World!, -1433261371.25,,37,,37. Hello World!, -1433261371.25,,38,,38. Hello World!, -1433261371.25,,39,,39. Hello World!, -1433261371.25,,40,,40. Hello World!, -1433261371.25,,41,,41. Hello World!, -1433261371.25,,42,,42. Hello World!, -1433261371.25,,43,,43. Hello World!, -1433261371.25,,44,,44. Hello World!, -1433261371.25,,45,,45. Hello World!, -1433261371.25,,46,,46. Hello World!, -1433261371.25,,47,,47. Hello World!, -1433261371.25,,48,,48. Hello World!, -1433261371.25,,49,,49. Hello World!, -1433261371.25,,50,,50. Hello World!, -1433261371.25,,51,,51. Hello World!, -1433261371.25,,52,,52. Hello World!, -1433261371.25,,53,,53. Hello World!, -1433261371.25,,54,,54. Hello World!, -1433261371.25,,55,,55. Hello World!, -1433261371.25,,56,,56. Hello World!, -1433261371.25,,57,,57. Hello World!, -1433261371.25,,58,,58. Hello World!, -1433261371.25,,59,,59. Hello World!, -1433261371.25,,60,,60. Hello World!, -1433261371.25,,61,,61. Hello World!, -1433261371.25,,62,,62. Hello World!, -1433261371.25,,63,,63. Hello World!, -1433261371.25,,64,,64. Hello World!, -1433261371.25,,65,,65. Hello World!, -1433261371.25,,66,,66. Hello World!, -1433261371.25,,67,,67. Hello World!, -1433261371.25,,68,,68. Hello World!, -1433261371.25,,69,,69. Hello World!, -1433261371.25,,70,,70. Hello World!, -1433261371.25,,71,,71. Hello World!, -1433261371.25,,72,,72. Hello World!, -1433261371.25,,73,,73. Hello World!, -1433261371.25,,74,,74. Hello World!, -1433261371.25,,75,,75. Hello World!, -1433261371.25,,76,,76. Hello World!, -1433261371.25,,77,,77. Hello World!, -1433261371.25,,78,,78. Hello World!, -1433261371.25,,79,,79. Hello World!, -1433261371.25,,80,,80. Hello World!, -1433261371.25,,81,,81. Hello World!, -1433261371.25,,82,,82. Hello World!, -1433261371.25,,83,,83. Hello World!, -1433261371.25,,84,,84. Hello World!, -1433261371.25,,85,,85. Hello World!, -1433261371.25,,86,,86. Hello World!, -1433261371.25,,87,,87. Hello World!, -1433261371.25,,88,,88. Hello World!, -1433261371.25,,89,,89. Hello World!, -1433261371.25,,90,,90. Hello World!, -1433261371.25,,91,,91. Hello World!, -1433261371.25,,92,,92. Hello World!, -1433261371.25,,93,,93. Hello World!, -1433261371.25,,94,,94. Hello World!, -1433261371.25,,95,,95. Hello World!, -1433261371.25,,96,,96. Hello World!, -1433261371.25,,97,,97. Hello World!, -1433261371.25,,98,,98. Hello World!, -1433261371.25,,99,,99. Hello World!, -1433261371.25,,100,,100. Hello World!, -1433261371.25,,101,,101. Hello World!, -1433261371.25,,102,,102. Hello World!, -1433261371.25,,103,,103. Hello World!, -1433261371.25,,104,,104. Hello World!, -1433261371.25,,105,,105. Hello World!, -1433261371.25,,106,,106. Hello World!, -1433261371.25,,107,,107. Hello World!, -1433261371.25,,108,,108. Hello World!, -1433261371.25,,109,,109. Hello World!, -1433261371.25,,110,,110. Hello World!, -1433261371.25,,111,,111. Hello World!, -1433261371.25,,112,,112. Hello World!, -1433261371.25,,113,,113. Hello World!, -1433261371.25,,114,,114. Hello World!, -1433261371.25,,115,,115. Hello World!, -1433261371.25,,116,,116. Hello World!, -1433261371.25,,117,,117. Hello World!, -1433261371.25,,118,,118. Hello World!, -1433261371.25,,119,,119. Hello World!, -1433261371.25,,120,,120. Hello World!, -1433261371.25,,121,,121. Hello World!, -1433261371.25,,122,,122. Hello World!, -1433261371.25,,123,,123. Hello World!, -1433261371.25,,124,,124. Hello World!, -1433261371.25,,125,,125. Hello World!, -1433261371.25,,126,,126. Hello World!, -1433261371.25,,127,,127. Hello World!, -1433261371.25,,128,,128. Hello World!, -1433261371.25,,129,,129. Hello World!, -1433261371.25,,130,,130. Hello World!, -1433261371.25,,131,,131. Hello World!, -1433261371.25,,132,,132. Hello World!, -1433261371.25,,133,,133. Hello World!, -1433261371.25,,134,,134. Hello World!, -1433261371.25,,135,,135. Hello World!, -1433261371.25,,136,,136. Hello World!, -1433261371.25,,137,,137. Hello World!, -1433261371.25,,138,,138. Hello World!, -1433261371.25,,139,,139. Hello World!, -1433261371.25,,140,,140. Hello World!, -1433261371.25,,141,,141. Hello World!, -1433261371.25,,142,,142. Hello World!, -1433261371.25,,143,,143. Hello World!, -1433261371.25,,144,,144. Hello World!, -1433261371.25,,145,,145. Hello World!, -1433261371.25,,146,,146. Hello World!, -1433261371.25,,147,,147. Hello World!, -1433261371.25,,148,,148. Hello World!, -1433261371.25,,149,,149. Hello World!, -1433261371.25,,150,,150. Hello World!, -1433261371.25,,151,,151. Hello World!, -1433261371.25,,152,,152. Hello World!, -1433261371.25,,153,,153. Hello World!, -1433261371.25,,154,,154. Hello World!, -1433261371.25,,155,,155. Hello World!, -1433261371.25,,156,,156. Hello World!, -1433261371.25,,157,,157. Hello World!, -1433261371.25,,158,,158. Hello World!, -1433261371.25,,159,,159. Hello World!, -1433261371.25,,160,,160. Hello World!, -1433261371.25,,161,,161. Hello World!, -1433261371.25,,162,,162. Hello World!, -1433261371.25,,163,,163. Hello World!, -1433261371.25,,164,,164. Hello World!, -1433261371.26,,165,,165. Hello World!, -1433261371.26,,166,,166. Hello World!, -1433261371.26,,167,,167. Hello World!, -1433261371.26,,168,,168. Hello World!, -1433261371.26,,169,,169. Hello World!, -1433261371.26,,170,,170. Hello World!, -1433261371.26,,171,,171. Hello World!, -1433261371.26,,172,,172. Hello World!, -1433261371.26,,173,,173. Hello World!, -1433261371.26,,174,,174. Hello World!, -1433261371.26,,175,,175. Hello World!, -1433261371.26,,176,,176. Hello World!, -1433261371.26,,177,,177. Hello World!, -1433261371.26,,178,,178. Hello World!, -1433261371.26,,179,,179. Hello World!, -1433261371.26,,180,,180. Hello World!, -1433261371.26,,181,,181. Hello World!, -1433261371.26,,182,,182. Hello World!, -1433261371.26,,183,,183. Hello World!, -1433261371.26,,184,,184. Hello World!, -1433261371.26,,185,,185. Hello World!, -1433261371.26,,186,,186. Hello World!, -1433261371.26,,187,,187. Hello World!, -1433261371.26,,188,,188. Hello World!, -1433261371.26,,189,,189. Hello World!, -1433261371.26,,190,,190. Hello World!, -1433261371.26,,191,,191. Hello World!, -1433261371.26,,192,,192. Hello World!, -1433261371.26,,193,,193. Hello World!, -1433261371.26,,194,,194. Hello World!, -1433261371.26,,195,,195. Hello World!, -1433261371.26,,196,,196. Hello World!, -1433261371.26,,197,,197. Hello World!, -1433261371.26,,198,,198. Hello World!, -1433261371.26,,199,,199. Hello World!, -1433261371.26,,200,,200. Hello World!, -1433261371.26,,201,,201. Hello World!, -1433261371.26,,202,,202. Hello World!, -1433261371.26,,203,,203. Hello World!, -1433261371.26,,204,,204. Hello World!, -1433261371.26,,205,,205. Hello World!, -1433261371.26,,206,,206. Hello World!, -1433261371.26,,207,,207. Hello World!, -1433261371.26,,208,,208. Hello World!, -1433261371.26,,209,,209. Hello World!, -1433261371.26,,210,,210. Hello World!, -1433261371.26,,211,,211. Hello World!, -1433261371.26,,212,,212. Hello World!, -1433261371.26,,213,,213. Hello World!, -1433261371.26,,214,,214. Hello World!, -1433261371.26,,215,,215. Hello World!, -1433261371.26,,216,,216. Hello World!, -1433261371.26,,217,,217. Hello World!, -1433261371.26,,218,,218. Hello World!, -1433261371.26,,219,,219. Hello World!, -1433261371.26,,220,,220. Hello World!, -1433261371.26,,221,,221. Hello World!, -1433261371.26,,222,,222. Hello World!, -1433261371.26,,223,,223. Hello World!, -1433261371.26,,224,,224. Hello World!, -1433261371.26,,225,,225. Hello World!, -1433261371.26,,226,,226. Hello World!, -1433261371.26,,227,,227. Hello World!, -1433261371.26,,228,,228. Hello World!, -1433261371.26,,229,,229. Hello World!, -1433261371.26,,230,,230. Hello World!, -1433261371.26,,231,,231. Hello World!, -1433261371.26,,232,,232. Hello World!, -1433261371.26,,233,,233. Hello World!, -1433261371.26,,234,,234. Hello World!, -1433261371.26,,235,,235. Hello World!, -1433261371.26,,236,,236. Hello World!, -1433261371.26,,237,,237. Hello World!, -1433261371.26,,238,,238. Hello World!, -1433261371.26,,239,,239. Hello World!, -1433261371.26,,240,,240. Hello World!, -1433261371.26,,241,,241. Hello World!, -1433261371.26,,242,,242. Hello World!, -1433261371.26,,243,,243. Hello World!, -1433261371.26,,244,,244. Hello World!, -1433261371.26,,245,,245. Hello World!, -1433261371.26,,246,,246. Hello World!, -1433261371.26,,247,,247. Hello World!, -1433261371.26,,248,,248. Hello World!, -1433261371.26,,249,,249. Hello World!, -1433261371.26,,250,,250. Hello World!, -1433261371.26,,251,,251. Hello World!, -1433261371.26,,252,,252. Hello World!, -1433261371.26,,253,,253. Hello World!, -1433261371.26,,254,,254. Hello World!, -1433261371.26,,255,,255. Hello World!, -1433261371.26,,256,,256. Hello World!, -1433261371.26,,257,,257. Hello World!, -1433261371.26,,258,,258. Hello World!, -1433261371.26,,259,,259. Hello World!, -1433261371.26,,260,,260. Hello World!, -1433261371.26,,261,,261. Hello World!, -1433261371.26,,262,,262. Hello World!, -1433261371.26,,263,,263. Hello World!, -1433261371.26,,264,,264. Hello World!, -1433261371.26,,265,,265. Hello World!, -1433261371.26,,266,,266. Hello World!, -1433261371.26,,267,,267. Hello World!, -1433261371.26,,268,,268. Hello World!, -1433261371.26,,269,,269. Hello World!, -1433261371.26,,270,,270. Hello World!, -1433261371.27,,271,,271. Hello World!, -1433261371.27,,272,,272. Hello World!, -1433261371.27,,273,,273. Hello World!, -1433261371.27,,274,,274. Hello World!, -1433261371.27,,275,,275. Hello World!, -1433261371.27,,276,,276. Hello World!, -1433261371.27,,277,,277. Hello World!, -1433261371.27,,278,,278. Hello World!, -1433261371.27,,279,,279. Hello World!, -1433261371.27,,280,,280. Hello World!, -1433261371.27,,281,,281. Hello World!, -1433261371.27,,282,,282. Hello World!, -1433261371.27,,283,,283. Hello World!, -1433261371.27,,284,,284. Hello World!, -1433261371.27,,285,,285. Hello World!, -1433261371.27,,286,,286. Hello World!, -1433261371.27,,287,,287. Hello World!, -1433261371.27,,288,,288. Hello World!, -1433261371.27,,289,,289. Hello World!, -1433261371.27,,290,,290. Hello World!, -1433261371.27,,291,,291. Hello World!, -1433261371.27,,292,,292. Hello World!, -1433261371.27,,293,,293. Hello World!, -1433261371.27,,294,,294. Hello World!, -1433261371.27,,295,,295. Hello World!, -1433261371.27,,296,,296. Hello World!, -1433261371.27,,297,,297. Hello World!, -1433261371.27,,298,,298. Hello World!, -1433261371.27,,299,,299. Hello World!, -1433261371.27,,300,,300. Hello World!, -1433261371.27,,301,,301. Hello World!, -1433261371.27,,302,,302. Hello World!, -1433261371.27,,303,,303. Hello World!, -1433261371.27,,304,,304. Hello World!, -1433261371.27,,305,,305. Hello World!, -1433261371.27,,306,,306. Hello World!, -1433261371.27,,307,,307. Hello World!, -1433261371.27,,308,,308. Hello World!, -1433261371.27,,309,,309. Hello World!, -1433261371.27,,310,,310. Hello World!, -1433261371.27,,311,,311. Hello World!, -1433261371.27,,312,,312. Hello World!, -1433261371.27,,313,,313. Hello World!, -1433261371.27,,314,,314. Hello World!, -1433261371.27,,315,,315. Hello World!, -1433261371.27,,316,,316. Hello World!, -1433261371.27,,317,,317. Hello World!, -1433261371.27,,318,,318. Hello World!, -1433261371.27,,319,,319. Hello World!, -1433261371.27,,320,,320. Hello World!, -1433261371.27,,321,,321. Hello World!, -1433261371.27,,322,,322. Hello World!, -1433261371.27,,323,,323. Hello World!, -1433261371.27,,324,,324. Hello World!, -1433261371.27,,325,,325. Hello World!, -1433261371.27,,326,,326. Hello World!, -1433261371.27,,327,,327. Hello World!, -1433261371.27,,328,,328. Hello World!, -1433261371.27,,329,,329. Hello World!, -1433261371.27,,330,,330. Hello World!, -1433261371.27,,331,,331. Hello World!, -1433261371.27,,332,,332. Hello World!, -1433261371.27,,333,,333. Hello World!, -1433261371.27,,334,,334. Hello World!, -1433261371.27,,335,,335. Hello World!, -1433261371.27,,336,,336. Hello World!, -1433261371.27,,337,,337. Hello World!, -1433261371.27,,338,,338. Hello World!, -1433261371.27,,339,,339. Hello World!, -1433261371.27,,340,,340. Hello World!, -1433261371.27,,341,,341. Hello World!, -1433261371.27,,342,,342. Hello World!, -1433261371.27,,343,,343. Hello World!, -1433261371.27,,344,,344. Hello World!, -1433261371.27,,345,,345. Hello World!, -1433261371.27,,346,,346. Hello World!, -1433261371.27,,347,,347. Hello World!, -1433261371.27,,348,,348. Hello World!, -1433261371.27,,349,,349. Hello World!, -1433261371.27,,350,,350. Hello World!, -1433261371.27,,351,,351. Hello World!, -1433261371.27,,352,,352. Hello World!, -1433261371.27,,353,,353. Hello World!, -1433261371.27,,354,,354. Hello World!, -1433261371.27,,355,,355. Hello World!, -1433261371.27,,356,,356. Hello World!, -1433261371.27,,357,,357. Hello World!, -1433261371.27,,358,,358. Hello World!, -1433261371.27,,359,,359. Hello World!, -1433261371.27,,360,,360. Hello World!, -1433261371.27,,361,,361. Hello World!, -1433261371.27,,362,,362. Hello World!, -1433261371.27,,363,,363. Hello World!, -1433261371.27,,364,,364. Hello World!, -1433261371.27,,365,,365. Hello World!, -1433261371.27,,366,,366. Hello World!, -1433261371.27,,367,,367. Hello World!, -1433261371.27,,368,,368. Hello World!, -1433261371.27,,369,,369. Hello World!, -1433261371.27,,370,,370. Hello World!, -1433261371.27,,371,,371. Hello World!, -1433261371.27,,372,,372. Hello World!, -1433261371.27,,373,,373. Hello World!, -1433261371.27,,374,,374. Hello World!, -1433261371.27,,375,,375. Hello World!, -1433261371.27,,376,,376. Hello World!, -1433261371.27,,377,,377. Hello World!, -1433261371.27,,378,,378. Hello World!, -1433261371.27,,379,,379. Hello World!, -1433261371.27,,380,,380. Hello World!, -1433261371.27,,381,,381. Hello World!, -1433261371.27,,382,,382. Hello World!, -1433261371.27,,383,,383. Hello World!, -1433261371.27,,384,,384. Hello World!, -1433261371.27,,385,,385. Hello World!, -1433261371.27,,386,,386. Hello World!, -1433261371.27,,387,,387. Hello World!, -1433261371.27,,388,,388. Hello World!, -1433261371.27,,389,,389. Hello World!, -1433261371.27,,390,,390. Hello World!, -1433261371.27,,391,,391. Hello World!, -1433261371.27,,392,,392. Hello World!, -1433261371.27,,393,,393. Hello World!, -1433261371.27,,394,,394. Hello World!, -1433261371.27,,395,,395. Hello World!, -1433261371.27,,396,,396. Hello World!, -1433261371.27,,397,,397. Hello World!, -1433261371.27,,398,,398. Hello World!, -1433261371.27,,399,,399. Hello World!, -1433261371.27,,400,,400. Hello World!, -1433261371.27,,401,,401. Hello World!, -1433261371.27,,402,,402. Hello World!, -1433261371.27,,403,,403. Hello World!, -1433261371.27,,404,,404. Hello World!, -1433261371.27,,405,,405. Hello World!, -1433261371.27,,406,,406. Hello World!, -1433261371.27,,407,,407. Hello World!, -1433261371.27,,408,,408. Hello World!, -1433261371.27,,409,,409. Hello World!, -1433261371.27,,410,,410. Hello World!, -1433261371.27,,411,,411. Hello World!, -1433261371.27,,412,,412. Hello World!, -1433261371.27,,413,,413. Hello World!, -1433261371.27,,414,,414. Hello World!, -1433261371.27,,415,,415. Hello World!, -1433261371.27,,416,,416. Hello World!, -1433261371.27,,417,,417. Hello World!, -1433261371.27,,418,,418. Hello World!, -1433261371.27,,419,,419. Hello World!, -1433261371.27,,420,,420. Hello World!, -1433261371.27,,421,,421. Hello World!, -1433261371.27,,422,,422. Hello World!, -1433261371.27,,423,,423. Hello World!, -1433261371.27,,424,,424. Hello World!, -1433261371.27,,425,,425. Hello World!, -1433261371.27,,426,,426. Hello World!, -1433261371.27,,427,,427. Hello World!, -1433261371.27,,428,,428. Hello World!, -1433261371.27,,429,,429. Hello World!, -1433261371.27,,430,,430. Hello World!, -1433261371.27,,431,,431. Hello World!, -1433261371.27,,432,,432. Hello World!, -1433261371.27,,433,,433. Hello World!, -1433261371.27,,434,,434. Hello World!, -1433261371.27,,435,,435. Hello World!, -1433261371.27,,436,,436. Hello World!, -1433261371.27,,437,,437. Hello World!, -1433261371.27,,438,,438. Hello World!, -1433261371.27,,439,,439. Hello World!, -1433261371.27,,440,,440. Hello World!, -1433261371.27,,441,,441. Hello World!, -1433261371.27,,442,,442. Hello World!, -1433261371.27,,443,,443. Hello World!, -1433261371.27,,444,,444. Hello World!, -1433261371.27,,445,,445. Hello World!, -1433261371.27,,446,,446. Hello World!, -1433261371.27,,447,,447. Hello World!, -1433261371.27,,448,,448. Hello World!, -1433261371.27,,449,,449. Hello World!, -1433261371.27,,450,,450. Hello World!, -1433261371.27,,451,,451. Hello World!, -1433261371.27,,452,,452. Hello World!, -1433261371.27,,453,,453. Hello World!, -1433261371.27,,454,,454. Hello World!, -1433261371.27,,455,,455. Hello World!, -1433261371.27,,456,,456. Hello World!, -1433261371.27,,457,,457. Hello World!, -1433261371.27,,458,,458. Hello World!, -1433261371.27,,459,,459. Hello World!, -1433261371.27,,460,,460. Hello World!, -1433261371.27,,461,,461. Hello World!, -1433261371.27,,462,,462. Hello World!, -1433261371.27,,463,,463. Hello World!, -1433261371.27,,464,,464. Hello World!, -1433261371.27,,465,,465. Hello World!, -1433261371.27,,466,,466. Hello World!, -1433261371.27,,467,,467. Hello World!, -1433261371.27,,468,,468. Hello World!, -1433261371.27,,469,,469. Hello World!, -1433261371.27,,470,,470. Hello World!, -1433261371.27,,471,,471. Hello World!, -1433261371.27,,472,,472. Hello World!, -1433261371.27,,473,,473. Hello World!, -1433261371.27,,474,,474. Hello World!, -1433261371.27,,475,,475. Hello World!, -1433261371.27,,476,,476. Hello World!, -1433261371.27,,477,,477. Hello World!, -1433261371.27,,478,,478. Hello World!, -1433261371.27,,479,,479. Hello World!, -1433261371.27,,480,,480. Hello World!, -1433261371.27,,481,,481. Hello World!, -1433261371.27,,482,,482. Hello World!, -1433261371.27,,483,,483. Hello World!, -1433261371.27,,484,,484. Hello World!, -1433261371.27,,485,,485. Hello World!, -1433261371.27,,486,,486. Hello World!, -1433261371.27,,487,,487. Hello World!, -1433261371.27,,488,,488. Hello World!, -1433261371.27,,489,,489. Hello World!, -1433261371.27,,490,,490. Hello World!, -1433261371.27,,491,,491. Hello World!, -1433261371.27,,492,,492. Hello World!, -1433261371.27,,493,,493. Hello World!, -1433261371.27,,494,,494. Hello World!, -1433261371.27,,495,,495. Hello World!, -1433261371.27,,496,,496. Hello World!, -1433261371.27,,497,,497. Hello World!, -1433261371.27,,498,,498. Hello World!, -1433261371.27,,499,,499. Hello World!, -1433261371.27,,500,,500. Hello World!, -1433261371.27,,501,,501. Hello World!, -1433261371.27,,502,,502. Hello World!, -1433261371.27,,503,,503. Hello World!, -1433261371.27,,504,,504. Hello World!, -1433261371.27,,505,,505. Hello World!, -1433261371.27,,506,,506. Hello World!, -1433261371.27,,507,,507. Hello World!, -1433261371.27,,508,,508. Hello World!, -1433261371.27,,509,,509. Hello World!, -1433261371.27,,510,,510. Hello World!, -1433261371.27,,511,,511. Hello World!, -1433261371.27,,512,,512. Hello World!, -1433261371.27,,513,,513. Hello World!, -1433261371.27,,514,,514. Hello World!, -1433261371.27,,515,,515. Hello World!, -1433261371.27,,516,,516. Hello World!, -1433261371.27,,517,,517. Hello World!, -1433261371.27,,518,,518. Hello World!, -1433261371.27,,519,,519. Hello World!, -1433261371.27,,520,,520. Hello World!, -1433261371.27,,521,,521. Hello World!, -1433261371.27,,522,,522. Hello World!, -1433261371.27,,523,,523. Hello World!, -1433261371.27,,524,,524. Hello World!, -1433261371.27,,525,,525. Hello World!, -1433261371.27,,526,,526. Hello World!, -1433261371.27,,527,,527. Hello World!, -1433261371.27,,528,,528. Hello World!, -1433261371.27,,529,,529. Hello World!, -1433261371.27,,530,,530. Hello World!, -1433261371.27,,531,,531. Hello World!, -1433261371.27,,532,,532. Hello World!, -1433261371.27,,533,,533. Hello World!, -1433261371.27,,534,,534. Hello World!, -1433261371.27,,535,,535. Hello World!, -1433261371.27,,536,,536. Hello World!, -1433261371.27,,537,,537. Hello World!, -1433261371.27,,538,,538. Hello World!, -1433261371.27,,539,,539. Hello World!, -1433261371.27,,540,,540. Hello World!, -1433261371.27,,541,,541. Hello World!, -1433261371.27,,542,,542. Hello World!, -1433261371.27,,543,,543. Hello World!, -1433261371.27,,544,,544. Hello World!, -1433261371.27,,545,,545. Hello World!, -1433261371.27,,546,,546. Hello World!, -1433261371.27,,547,,547. Hello World!, -1433261371.27,,548,,548. Hello World!, -1433261371.27,,549,,549. Hello World!, -1433261371.27,,550,,550. Hello World!, -1433261371.27,,551,,551. Hello World!, -1433261371.27,,552,,552. Hello World!, -1433261371.27,,553,,553. Hello World!, -1433261371.27,,554,,554. Hello World!, -1433261371.27,,555,,555. Hello World!, -1433261371.27,,556,,556. Hello World!, -1433261371.27,,557,,557. Hello World!, -1433261371.27,,558,,558. Hello World!, -1433261371.27,,559,,559. Hello World!, -1433261371.27,,560,,560. Hello World!, -1433261371.27,,561,,561. Hello World!, -1433261371.27,,562,,562. Hello World!, -1433261371.27,,563,,563. Hello World!, -1433261371.27,,564,,564. Hello World!, -1433261371.27,,565,,565. Hello World!, -1433261371.27,,566,,566. Hello World!, -1433261371.27,,567,,567. Hello World!, -1433261371.27,,568,,568. Hello World!, -1433261371.27,,569,,569. Hello World!, -1433261371.27,,570,,570. Hello World!, -1433261371.27,,571,,571. Hello World!, -1433261371.27,,572,,572. Hello World!, -1433261371.27,,573,,573. Hello World!, -1433261371.27,,574,,574. Hello World!, -1433261371.27,,575,,575. Hello World!, -1433261371.27,,576,,576. Hello World!, -1433261371.27,,577,,577. Hello World!, -1433261371.27,,578,,578. Hello World!, -1433261371.27,,579,,579. Hello World!, -1433261371.27,,580,,580. Hello World!, -1433261371.27,,581,,581. Hello World!, -1433261371.27,,582,,582. Hello World!, -1433261371.27,,583,,583. Hello World!, -1433261371.27,,584,,584. Hello World!, -1433261371.27,,585,,585. Hello World!, -1433261371.27,,586,,586. Hello World!, -1433261371.27,,587,,587. Hello World!, -1433261371.27,,588,,588. Hello World!, -1433261371.27,,589,,589. Hello World!, -1433261371.27,,590,,590. Hello World!, -1433261371.27,,591,,591. Hello World!, -1433261371.27,,592,,592. Hello World!, -1433261371.27,,593,,593. Hello World!, -1433261371.27,,594,,594. Hello World!, -1433261371.27,,595,,595. Hello World!, -1433261371.27,,596,,596. Hello World!, -1433261371.27,,597,,597. Hello World!, -1433261371.27,,598,,598. Hello World!, -1433261371.27,,599,,599. Hello World!, -1433261371.27,,600,,600. Hello World!, -1433261371.27,,601,,601. Hello World!, -1433261371.27,,602,,602. Hello World!, -1433261371.27,,603,,603. Hello World!, -1433261371.27,,604,,604. Hello World!, -1433261371.27,,605,,605. Hello World!, -1433261371.27,,606,,606. Hello World!, -1433261371.27,,607,,607. Hello World!, -1433261371.27,,608,,608. Hello World!, -1433261371.27,,609,,609. Hello World!, -1433261371.27,,610,,610. Hello World!, -1433261371.27,,611,,611. Hello World!, -1433261371.27,,612,,612. Hello World!, -1433261371.27,,613,,613. Hello World!, -1433261371.27,,614,,614. Hello World!, -1433261371.27,,615,,615. Hello World!, -1433261371.27,,616,,616. Hello World!, -1433261371.27,,617,,617. Hello World!, -1433261371.27,,618,,618. Hello World!, -1433261371.27,,619,,619. Hello World!, -1433261371.27,,620,,620. Hello World!, -1433261371.27,,621,,621. Hello World!, -1433261371.27,,622,,622. Hello World!, -1433261371.27,,623,,623. Hello World!, -1433261371.27,,624,,624. Hello World!, -1433261371.27,,625,,625. Hello World!, -1433261371.27,,626,,626. Hello World!, -1433261371.27,,627,,627. Hello World!, -1433261371.27,,628,,628. Hello World!, -1433261371.27,,629,,629. Hello World!, -1433261371.27,,630,,630. Hello World!, -1433261371.27,,631,,631. Hello World!, -1433261371.27,,632,,632. Hello World!, -1433261371.27,,633,,633. Hello World!, -1433261371.27,,634,,634. Hello World!, -1433261371.27,,635,,635. Hello World!, -1433261371.27,,636,,636. Hello World!, -1433261371.27,,637,,637. Hello World!, -1433261371.27,,638,,638. Hello World!, -1433261371.27,,639,,639. Hello World!, -1433261371.27,,640,,640. Hello World!, -1433261371.27,,641,,641. Hello World!, -1433261371.27,,642,,642. Hello World!, -1433261371.27,,643,,643. Hello World!, -1433261371.27,,644,,644. Hello World!, -1433261371.27,,645,,645. Hello World!, -1433261371.27,,646,,646. Hello World!, -1433261371.27,,647,,647. Hello World!, -1433261371.27,,648,,648. Hello World!, -1433261371.27,,649,,649. Hello World!, -1433261371.27,,650,,650. Hello World!, -1433261371.27,,651,,651. Hello World!, -1433261371.27,,652,,652. Hello World!, -1433261371.27,,653,,653. Hello World!, -1433261371.27,,654,,654. Hello World!, -1433261371.27,,655,,655. Hello World!, -1433261371.27,,656,,656. Hello World!, -1433261371.27,,657,,657. Hello World!, -1433261371.27,,658,,658. Hello World!, -1433261371.27,,659,,659. Hello World!, -1433261371.27,,660,,660. Hello World!, -1433261371.27,,661,,661. Hello World!, -1433261371.27,,662,,662. Hello World!, -1433261371.27,,663,,663. Hello World!, -1433261371.27,,664,,664. Hello World!, -1433261371.27,,665,,665. Hello World!, -1433261371.27,,666,,666. Hello World!, -1433261371.27,,667,,667. Hello World!, -1433261371.27,,668,,668. Hello World!, -1433261371.27,,669,,669. Hello World!, -1433261371.27,,670,,670. Hello World!, -1433261371.27,,671,,671. Hello World!, -1433261371.27,,672,,672. Hello World!, -1433261371.27,,673,,673. Hello World!, -1433261371.27,,674,,674. Hello World!, -1433261371.27,,675,,675. Hello World!, -1433261371.27,,676,,676. Hello World!, -1433261371.28,,677,,677. Hello World!, -1433261371.28,,678,,678. Hello World!, -1433261371.28,,679,,679. Hello World!, -1433261371.28,,680,,680. Hello World!, -1433261371.28,,681,,681. Hello World!, -1433261371.28,,682,,682. Hello World!, -1433261371.28,,683,,683. Hello World!, -1433261371.28,,684,,684. Hello World!, -1433261371.28,,685,,685. Hello World!, -1433261371.28,,686,,686. Hello World!, -1433261371.28,,687,,687. Hello World!, -1433261371.28,,688,,688. Hello World!, -1433261371.28,,689,,689. Hello World!, -1433261371.28,,690,,690. Hello World!, -1433261371.28,,691,,691. Hello World!, -1433261371.28,,692,,692. Hello World!, -1433261371.28,,693,,693. Hello World!, -1433261371.28,,694,,694. Hello World!, -1433261371.28,,695,,695. Hello World!, -1433261371.28,,696,,696. Hello World!, -1433261371.28,,697,,697. Hello World!, -1433261371.28,,698,,698. Hello World!, -1433261371.28,,699,,699. Hello World!, -1433261371.28,,700,,700. Hello World!, -1433261371.28,,701,,701. Hello World!, -1433261371.28,,702,,702. Hello World!, -1433261371.28,,703,,703. Hello World!, -1433261371.28,,704,,704. Hello World!, -1433261371.28,,705,,705. Hello World!, -1433261371.28,,706,,706. Hello World!, -1433261371.28,,707,,707. Hello World!, -1433261371.28,,708,,708. Hello World!, -1433261371.28,,709,,709. Hello World!, -1433261371.28,,710,,710. Hello World!, -1433261371.28,,711,,711. Hello World!, -1433261371.28,,712,,712. Hello World!, -1433261371.28,,713,,713. Hello World!, -1433261371.28,,714,,714. Hello World!, -1433261371.28,,715,,715. Hello World!, -1433261371.28,,716,,716. Hello World!, -1433261371.28,,717,,717. Hello World!, -1433261371.28,,718,,718. Hello World!, -1433261371.28,,719,,719. Hello World!, -1433261371.28,,720,,720. Hello World!, -1433261371.28,,721,,721. Hello World!, -1433261371.28,,722,,722. Hello World!, -1433261371.28,,723,,723. Hello World!, -1433261371.28,,724,,724. Hello World!, -1433261371.28,,725,,725. Hello World!, -1433261371.28,,726,,726. Hello World!, -1433261371.28,,727,,727. Hello World!, -1433261371.28,,728,,728. Hello World!, -1433261371.28,,729,,729. Hello World!, -1433261371.28,,730,,730. Hello World!, -1433261371.28,,731,,731. Hello World!, -1433261371.28,,732,,732. Hello World!, -1433261371.28,,733,,733. Hello World!, -1433261371.28,,734,,734. Hello World!, -1433261371.28,,735,,735. Hello World!, -1433261371.28,,736,,736. Hello World!, -1433261371.28,,737,,737. Hello World!, -1433261371.28,,738,,738. Hello World!, -1433261371.28,,739,,739. Hello World!, -1433261371.28,,740,,740. Hello World!, -1433261371.28,,741,,741. Hello World!, -1433261371.28,,742,,742. Hello World!, -1433261371.28,,743,,743. Hello World!, -1433261371.28,,744,,744. Hello World!, -1433261371.28,,745,,745. Hello World!, -1433261371.28,,746,,746. Hello World!, -1433261371.28,,747,,747. Hello World!, -1433261371.28,,748,,748. Hello World!, -1433261371.28,,749,,749. Hello World!, -1433261371.28,,750,,750. Hello World!, -1433261371.28,,751,,751. Hello World!, -1433261371.28,,752,,752. Hello World!, -1433261371.28,,753,,753. Hello World!, -1433261371.28,,754,,754. Hello World!, -1433261371.28,,755,,755. Hello World!, -1433261371.28,,756,,756. Hello World!, -1433261371.28,,757,,757. Hello World!, -1433261371.28,,758,,758. Hello World!, -1433261371.28,,759,,759. Hello World!, -1433261371.28,,760,,760. Hello World!, -1433261371.28,,761,,761. Hello World!, -1433261371.28,,762,,762. Hello World!, -1433261371.28,,763,,763. Hello World!, -1433261371.28,,764,,764. Hello World!, -1433261371.28,,765,,765. Hello World!, -1433261371.28,,766,,766. Hello World!, -1433261371.28,,767,,767. Hello World!, -1433261371.28,,768,,768. Hello World!, -1433261371.28,,769,,769. Hello World!, -1433261371.28,,770,,770. Hello World!, -1433261371.28,,771,,771. Hello World!, -1433261371.28,,772,,772. Hello World!, -1433261371.28,,773,,773. Hello World!, -1433261371.28,,774,,774. Hello World!, -1433261371.28,,775,,775. Hello World!, -1433261371.28,,776,,776. Hello World!, -1433261371.28,,777,,777. Hello World!, -1433261371.28,,778,,778. Hello World!, -1433261371.28,,779,,779. Hello World!, -1433261371.28,,780,,780. Hello World!, -1433261371.28,,781,,781. Hello World!, -1433261371.28,,782,,782. Hello World!, -1433261371.28,,783,,783. Hello World!, -1433261371.28,,784,,784. Hello World!, -1433261371.28,,785,,785. Hello World!, -1433261371.28,,786,,786. Hello World!, -1433261371.28,,787,,787. Hello World!, -1433261371.28,,788,,788. Hello World!, -1433261371.28,,789,,789. Hello World!, -1433261371.28,,790,,790. Hello World!, -1433261371.28,,791,,791. Hello World!, -1433261371.28,,792,,792. Hello World!, -1433261371.28,,793,,793. Hello World!, -1433261371.28,,794,,794. Hello World!, -1433261371.28,,795,,795. Hello World!, -1433261371.28,,796,,796. Hello World!, -1433261371.28,,797,,797. Hello World!, -1433261371.28,,798,,798. Hello World!, -1433261371.28,,799,,799. Hello World!, -1433261371.28,,800,,800. Hello World!, -1433261371.28,,801,,801. Hello World!, -1433261371.28,,802,,802. Hello World!, -1433261371.28,,803,,803. Hello World!, -1433261371.28,,804,,804. Hello World!, -1433261371.28,,805,,805. Hello World!, -1433261371.28,,806,,806. Hello World!, -1433261371.28,,807,,807. Hello World!, -1433261371.28,,808,,808. Hello World!, -1433261371.28,,809,,809. Hello World!, -1433261371.28,,810,,810. Hello World!, -1433261371.28,,811,,811. Hello World!, -1433261371.28,,812,,812. Hello World!, -1433261371.28,,813,,813. Hello World!, -1433261371.28,,814,,814. Hello World!, -1433261371.28,,815,,815. Hello World!, -1433261371.28,,816,,816. Hello World!, -1433261371.28,,817,,817. Hello World!, -1433261371.28,,818,,818. Hello World!, -1433261371.28,,819,,819. Hello World!, -1433261371.28,,820,,820. Hello World!, -1433261371.28,,821,,821. Hello World!, -1433261371.28,,822,,822. Hello World!, -1433261371.28,,823,,823. Hello World!, -1433261371.28,,824,,824. Hello World!, -1433261371.28,,825,,825. Hello World!, -1433261371.28,,826,,826. Hello World!, -1433261371.28,,827,,827. Hello World!, -1433261371.28,,828,,828. Hello World!, -1433261371.28,,829,,829. Hello World!, -1433261371.28,,830,,830. Hello World!, -1433261371.28,,831,,831. Hello World!, -1433261371.28,,832,,832. Hello World!, -1433261371.28,,833,,833. Hello World!, -1433261371.28,,834,,834. Hello World!, -1433261371.28,,835,,835. Hello World!, -1433261371.28,,836,,836. Hello World!, -1433261371.28,,837,,837. Hello World!, -1433261371.28,,838,,838. Hello World!, -1433261371.28,,839,,839. Hello World!, -1433261371.28,,840,,840. Hello World!, -1433261371.28,,841,,841. Hello World!, -1433261371.28,,842,,842. Hello World!, -1433261371.28,,843,,843. Hello World!, -1433261371.28,,844,,844. Hello World!, -1433261371.28,,845,,845. Hello World!, -1433261371.28,,846,,846. Hello World!, -1433261371.28,,847,,847. Hello World!, -1433261371.28,,848,,848. Hello World!, -1433261371.28,,849,,849. Hello World!, -1433261371.28,,850,,850. Hello World!, -1433261371.28,,851,,851. Hello World!, -1433261371.28,,852,,852. Hello World!, -1433261371.28,,853,,853. Hello World!, -1433261371.28,,854,,854. Hello World!, -1433261371.28,,855,,855. Hello World!, -1433261371.28,,856,,856. Hello World!, -1433261371.28,,857,,857. Hello World!, -1433261371.28,,858,,858. Hello World!, -1433261371.28,,859,,859. Hello World!, -1433261371.28,,860,,860. Hello World!, -1433261371.28,,861,,861. Hello World!, -1433261371.28,,862,,862. Hello World!, -1433261371.28,,863,,863. Hello World!, -1433261371.28,,864,,864. Hello World!, -1433261371.28,,865,,865. Hello World!, -1433261371.28,,866,,866. Hello World!, -1433261371.28,,867,,867. Hello World!, -1433261371.28,,868,,868. Hello World!, -1433261371.28,,869,,869. Hello World!, -1433261371.28,,870,,870. Hello World!, -1433261371.28,,871,,871. Hello World!, -1433261371.28,,872,,872. Hello World!, -1433261371.28,,873,,873. Hello World!, -1433261371.28,,874,,874. Hello World!, -1433261371.28,,875,,875. Hello World!, -1433261371.28,,876,,876. Hello World!, -1433261371.28,,877,,877. Hello World!, -1433261371.28,,878,,878. Hello World!, -1433261371.28,,879,,879. Hello World!, -1433261371.28,,880,,880. Hello World!, -1433261371.28,,881,,881. Hello World!, -1433261371.28,,882,,882. Hello World!, -1433261371.28,,883,,883. Hello World!, -1433261371.28,,884,,884. Hello World!, -1433261371.28,,885,,885. Hello World!, -1433261371.28,,886,,886. Hello World!, -1433261371.28,,887,,887. Hello World!, -1433261371.28,,888,,888. Hello World!, -1433261371.28,,889,,889. Hello World!, -1433261371.28,,890,,890. Hello World!, -1433261371.28,,891,,891. Hello World!, -1433261371.28,,892,,892. Hello World!, -1433261371.28,,893,,893. Hello World!, -1433261371.28,,894,,894. Hello World!, -1433261371.28,,895,,895. Hello World!, -1433261371.28,,896,,896. Hello World!, -1433261371.28,,897,,897. Hello World!, -1433261371.28,,898,,898. Hello World!, -1433261371.28,,899,,899. Hello World!, -1433261371.28,,900,,900. Hello World!, -1433261371.28,,901,,901. Hello World!, -1433261371.28,,902,,902. Hello World!, -1433261371.28,,903,,903. Hello World!, -1433261371.28,,904,,904. Hello World!, -1433261371.28,,905,,905. Hello World!, -1433261371.28,,906,,906. Hello World!, -1433261371.28,,907,,907. Hello World!, -1433261371.28,,908,,908. Hello World!, -1433261371.28,,909,,909. Hello World!, -1433261371.28,,910,,910. Hello World!, -1433261371.29,,911,,911. Hello World!, -1433261371.29,,912,,912. Hello World!, -1433261371.29,,913,,913. Hello World!, -1433261371.29,,914,,914. Hello World!, -1433261371.29,,915,,915. Hello World!, -1433261371.29,,916,,916. Hello World!, -1433261371.29,,917,,917. Hello World!, -1433261371.29,,918,,918. Hello World!, -1433261371.29,,919,,919. Hello World!, -1433261371.29,,920,,920. Hello World!, -1433261371.29,,921,,921. Hello World!, -1433261371.29,,922,,922. Hello World!, -1433261371.29,,923,,923. Hello World!, -1433261371.29,,924,,924. Hello World!, -1433261371.29,,925,,925. Hello World!, -1433261371.29,,926,,926. Hello World!, -1433261371.29,,927,,927. Hello World!, -1433261371.29,,928,,928. Hello World!, -1433261371.29,,929,,929. Hello World!, -1433261371.29,,930,,930. Hello World!, -1433261371.29,,931,,931. Hello World!, -1433261371.29,,932,,932. Hello World!, -1433261371.29,,933,,933. Hello World!, -1433261371.29,,934,,934. Hello World!, -1433261371.29,,935,,935. Hello World!, -1433261371.29,,936,,936. Hello World!, -1433261371.29,,937,,937. Hello World!, -1433261371.29,,938,,938. Hello World!, -1433261371.29,,939,,939. Hello World!, -1433261371.29,,940,,940. Hello World!, -1433261371.29,,941,,941. Hello World!, -1433261371.29,,942,,942. Hello World!, -1433261371.29,,943,,943. Hello World!, -1433261371.29,,944,,944. Hello World!, -1433261371.29,,945,,945. Hello World!, -1433261371.29,,946,,946. Hello World!, -1433261371.29,,947,,947. Hello World!, -1433261371.29,,948,,948. Hello World!, -1433261371.29,,949,,949. Hello World!, -1433261371.29,,950,,950. Hello World!, -1433261371.29,,951,,951. Hello World!, -1433261371.29,,952,,952. Hello World!, -1433261371.29,,953,,953. Hello World!, -1433261371.29,,954,,954. Hello World!, -1433261371.29,,955,,955. Hello World!, -1433261371.29,,956,,956. Hello World!, -1433261371.29,,957,,957. Hello World!, -1433261371.29,,958,,958. Hello World!, -1433261371.29,,959,,959. Hello World!, -1433261371.29,,960,,960. Hello World!, -1433261371.29,,961,,961. Hello World!, -1433261371.29,,962,,962. Hello World!, -1433261371.29,,963,,963. Hello World!, -1433261371.29,,964,,964. Hello World!, -1433261371.29,,965,,965. Hello World!, -1433261371.29,,966,,966. Hello World!, -1433261371.29,,967,,967. Hello World!, -1433261371.29,,968,,968. Hello World!, -1433261371.29,,969,,969. Hello World!, -1433261371.29,,970,,970. Hello World!, -1433261371.29,,971,,971. Hello World!, -1433261371.29,,972,,972. Hello World!, -1433261371.29,,973,,973. Hello World!, -1433261371.29,,974,,974. Hello World!, -1433261371.29,,975,,975. Hello World!, -1433261371.29,,976,,976. Hello World!, -1433261371.29,,977,,977. Hello World!, -1433261371.29,,978,,978. Hello World!, -1433261371.29,,979,,979. Hello World!, -1433261371.29,,980,,980. Hello World!, -1433261371.29,,981,,981. Hello World!, -1433261371.29,,982,,982. Hello World!, -1433261371.29,,983,,983. Hello World!, -1433261371.29,,984,,984. Hello World!, -1433261371.29,,985,,985. Hello World!, -1433261371.29,,986,,986. Hello World!, -1433261371.29,,987,,987. Hello World!, -1433261371.29,,988,,988. Hello World!, -1433261371.29,,989,,989. Hello World!, -1433261371.29,,990,,990. Hello World!, -1433261371.29,,991,,991. Hello World!, -1433261371.29,,992,,992. Hello World!, -1433261371.29,,993,,993. Hello World!, -1433261371.29,,994,,994. Hello World!, -1433261371.29,,995,,995. Hello World!, -1433261371.29,,996,,996. Hello World!, -1433261371.29,,997,,997. Hello World!, -1433261371.29,,998,,998. Hello World!, -1433261371.29,,999,,999. Hello World!, -1433261371.29,,1000,,1000. Hello World!, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/args.txt deleted file mode 100644 index 9013e44a8..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/args.txt +++ /dev/null @@ -1,10 +0,0 @@ ---id=1433261392.159 ---maxbuckets=0 ---ttl=60 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/info.csv deleted file mode 100644 index 4d7a2799e..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/info.csv +++ /dev/null @@ -1,4 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1433261392.159","1433261392.936374000","1433261392.000000000","1433261392.934936000","","","",0,0,0,"duration.dispatch.writeStatus;2;duration.startup.configuration;34;duration.startup.handoff;79;invocations.dispatch.writeStatus;1;invocations.startup.configuration;1;invocations.startup.handoff;1;",0,"","","","",0,0,1,1,0,0,disabled,"*","","",1,0,"UQZSgWwE2f9oIKrj1QG^kVhW^T_cR4H5Z65bPtMhwlHytS5jFrFYyH^dGzjTusDjVTgoBNeR7bvIzctHF7DrLJ1ANevgDOWEWRvABNj6d_k0koqxw9Io",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup random_data max=50000 | sum total=total value1 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","","","","{}","","",0,"","",0,0,0,0,0,0,"chunked_searchcommands",admin,"$SPLUNK_HOME/etc",0,0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1433261392.159); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""chunked_searchcommands"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/metadata.csv deleted file mode 100644 index bed325fb5..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"chunked_searchcommands",60 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/peers.csv deleted file mode 100644 index 69ce012be..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/request.csv deleted file mode 100644 index e269aa5c6..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -"warn_unused_args",search,"__mv_warn_unused_args","__mv_search" -1,"| inputlookup random_data max=50000 | sum total=total value1 record=t",, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/runtime.csv deleted file mode 100644 index 4d53414ff..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -0,0,,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/status.csv deleted file mode 100644 index 259fdfb70..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","max_time","max_count","reduce_freq","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"column_order","searched_buckets","eliminated_buckets" -PARSING,admin,1433261393,"0.002000",0,0,0,0,0,2147483647,"",0,0,0,8640000,500000,10,1,1,0,0,0,1,0,"| inputlookup random_data max=50000 | sum total=total value1 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","",1,"",1,desc,"",0,"*","",1,0,1,"",41593,5,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.input.gz b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.input.gz deleted file mode 100644 index eaa78b2ea..000000000 Binary files a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.output b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.output deleted file mode 100644 index 4fe663085..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.output +++ /dev/null @@ -1,6 +0,0 @@ -chunked 1.0,20,0 -{"type":"streaming"} -chunked 1.0,17,34 -{"finished":true}total,__mv_total -2147943.07811, - diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.output.py3 b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.output.py3 deleted file mode 100644 index e295a7aab..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.map.output.py3 +++ /dev/null @@ -1,5 +0,0 @@ -chunked 1.0,20,0 -{"type":"streaming"} -chunked 1.0,17,37 -{"finished":true}total,__mv_total -2147943.07810599, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/args.txt b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/args.txt deleted file mode 100644 index 9013e44a8..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/args.txt +++ /dev/null @@ -1,10 +0,0 @@ ---id=1433261392.159 ---maxbuckets=0 ---ttl=60 ---maxout=500000 ---maxtime=8640000 ---lookups=1 ---reduce_freq=10 ---user=admin ---pro ---roles=admin:power:user diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/generate_preview b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/generate_preview deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/info.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/info.csv deleted file mode 100644 index 4d7a2799e..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/info.csv +++ /dev/null @@ -1,4 +0,0 @@ -"_sid","_timestamp",now,"_search_StartTime","_rt_earliest","_rt_latest","_rtspan","_scan_count","_drop_count","_maxevents","_countMap","_search_StartUp_Spent","_columnOrder","_keySet","_remoteServers","_group_list","is_remote_sorted","rt_backfill","read_raw","sample_ratio","sample_seed","enable_event_stream","remote_log_download_mode","_default_group","_rtoptions","field_rendering","_query_finished","_request_finalization","_auth_token","_splunkd_port","_splunkd_protocol","_splunkd_uri","internal_only","summary_mode","summary_maxtimespan","summary_stopped","is_batch_mode","kv_store_settings","kv_store_additional_settings","_root_sid","_shp_id","_search","_remote_search","_reduce_search","_datamodel_map","_optional_fields_json","_tstats_reduce","summary_id","generation_id",site,label,"is_saved_search","is_shc_mode","search_can_be_event_type",realtime,"indexed_realtime","indexed_realtime_offset","_ppc.app","_ppc.user","_ppc.bs","_bundle_version","_is_scheduled","_is_summary_index","_is_remote","_orig_search_head",msgType,msg,"_search_metrics","_bs_thread_count","_bs_thread_id" -"1433261392.159","1433261392.936374000","1433261392.000000000","1433261392.934936000","","","",0,0,0,"duration.dispatch.writeStatus;2;duration.startup.configuration;34;duration.startup.handoff;79;invocations.dispatch.writeStatus;1;invocations.startup.configuration;1;invocations.startup.handoff;1;",0,"","","","",0,0,1,1,0,0,disabled,"*","","",1,0,"UQZSgWwE2f9oIKrj1QG^kVhW^T_cR4H5Z65bPtMhwlHytS5jFrFYyH^dGzjTusDjVTgoBNeR7bvIzctHF7DrLJ1ANevgDOWEWRvABNj6d_k0koqxw9Io",8089,https,"https://127.0.0.1:8089",0,all,"",0,0,"hosts;127.0.0.1:8191\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;","hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\;;","","958513E3-8716-4ABF-9559-DA0C9678437F","| inputlookup random_data max=50000 | sum total=total value1 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","","","","{}","","",0,"","",0,0,0,0,0,0,"chunked_searchcommands",admin,"$SPLUNK_HOME/etc",0,0,0,0,"",,,"{""ConsideredBuckets"":0,""EliminatedBuckets"":0,""ConsideredEvents"":0,""TotalSlicesInBuckets"":0,""DecompressedSlices"":0}",1,0 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"Configuration initialization for /Users/david-noble/Workspace/Splunk/etc took longer than expected (34ms) when dispatching a search (search ID: 1433261392.159); this typically reflects underlying storage performance issues",,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,DEBUG,"search context: user=""admin"", app=""chunked_searchcommands"", bs-pathname=""/Users/david-noble/Workspace/Splunk/etc""",,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/metadata.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/metadata.csv deleted file mode 100644 index bed325fb5..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/metadata.csv +++ /dev/null @@ -1,2 +0,0 @@ -access,owner,app,ttl -"read : [ admin ], write : [ admin ]",admin,"chunked_searchcommands",60 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/peers.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/peers.csv deleted file mode 100644 index 69ce012be..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/peers.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,uri,guid,status,version,license,product,build,"rtsearch_enabled","generation_id",site,"master_uri",groups,"searchable_indexes" -"dnoble-mbp.splunk.local","?","958513E3-8716-4ABF-9559-DA0C9678437F",,,,,,,,,,"","" diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/pipeline_sets b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/pipeline_sets deleted file mode 100644 index 0cfbf0888..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/pipeline_sets +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/request.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/request.csv deleted file mode 100644 index e269aa5c6..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/request.csv +++ /dev/null @@ -1,2 +0,0 @@ -"warn_unused_args",search,"__mv_warn_unused_args","__mv_search" -1,"| inputlookup random_data max=50000 | sum total=total value1 record=t",, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/runtime.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/runtime.csv deleted file mode 100644 index 4d53414ff..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/runtime.csv +++ /dev/null @@ -1,2 +0,0 @@ -auto_cancel,auto_pause,email_list,email_subject,email_results -0,0,,, diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/status.csv b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/status.csv deleted file mode 100644 index 259fdfb70..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.dispatch_dir/status.csv +++ /dev/null @@ -1,2 +0,0 @@ -state,user,start,"run_time","disk_usage",count,"scan_count","drop_count","available_count",cursor,keywords,done,finalized,"status_buckets","max_time","max_count","reduce_freq","remote_timeline","sample_ratio","sample_seed",resultcount,"result_preview_count","preview_enabled","num_previews",search,error,streaming,"events_search","events_streamed","events_sorted","report_search","events_fields_count",servers,"remote_search","events_istruncated","search_can_be_event_type","lookups_enabled","search_providers",pid,priority,realtimesearch,batchmodesearch,"column_order","searched_buckets","eliminated_buckets" -PARSING,admin,1433261393,"0.002000",0,0,0,0,0,2147483647,"",0,0,0,8640000,500000,10,1,1,0,0,0,1,0,"| inputlookup random_data max=50000 | sum total=total value1 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw","",1,"",1,desc,"",0,"*","",1,0,1,"",41593,5,0,0,,0,0 diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.input.gz b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.input.gz deleted file mode 100644 index bd418c628..000000000 Binary files a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.input.gz and /dev/null differ diff --git a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.output b/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.output deleted file mode 100644 index 9f418d12c..000000000 --- a/tests/searchcommands/recordings/scpv2/Splunk-6.3/sum.reduce.output +++ /dev/null @@ -1,5 +0,0 @@ -chunked 1.0,81,0 -{"streaming_preop":"sum phase=\"map\" total=\"total\" value1","type":"reporting"} -chunked 1.0,17,34 -{"finished":true}total,__mv_total -2147943.07811, diff --git a/tests/searchcommands/test_apps/eventing_app/bin/eventingcsc.py b/tests/searchcommands/test_apps/eventing_app/bin/eventingcsc.py new file mode 100644 index 000000000..d34aa14e4 --- /dev/null +++ b/tests/searchcommands/test_apps/eventing_app/bin/eventingcsc.py @@ -0,0 +1,48 @@ +#!/usr/bin/env python +# coding=utf-8 +# +# Copyright 2011-2015 Splunk, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"): you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import os,sys + +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "lib")) +from splunklib.searchcommands import dispatch, EventingCommand, Configuration, Option, validators + + +@Configuration() +class EventingCSC(EventingCommand): + """ + The eventingapp command filters records from the events stream returning only those for which the status is same + as search query. + + Example: + + ``index="_internal" | head 4000 | eventingcsc status=200`` + + Returns records having status 200 as mentioned in search query. + """ + + status = Option( + doc='''**Syntax:** **status=**** + **Description:** record having same status value will be returned.''', + require=True) + + def transform(self, records): + for record in records: + if str(self.status) == record["status"]: + yield record + + +dispatch(EventingCSC, sys.argv, sys.stdin, sys.stdout, __name__) diff --git a/tests/searchcommands/test_apps/eventing_app/default/app.conf b/tests/searchcommands/test_apps/eventing_app/default/app.conf new file mode 100644 index 000000000..5ecf83514 --- /dev/null +++ b/tests/searchcommands/test_apps/eventing_app/default/app.conf @@ -0,0 +1,16 @@ +# +# Splunk app configuration file +# + +[install] +is_configured = 0 + +[ui] +is_visible = 1 +label = Eventing App + +[launcher] +description = Eventing custom search commands example +version = 1.0.0 +author = Splunk + diff --git a/tests/searchcommands/test_apps/eventing_app/default/commands.conf b/tests/searchcommands/test_apps/eventing_app/default/commands.conf new file mode 100644 index 000000000..e365c285f --- /dev/null +++ b/tests/searchcommands/test_apps/eventing_app/default/commands.conf @@ -0,0 +1,4 @@ +[eventingcsc] +filename = eventingcsc.py +chunked = true +python.version = python3 diff --git a/tests/searchcommands/test_apps/eventing_app/metadata/default.meta b/tests/searchcommands/test_apps/eventing_app/metadata/default.meta new file mode 100644 index 000000000..41b149763 --- /dev/null +++ b/tests/searchcommands/test_apps/eventing_app/metadata/default.meta @@ -0,0 +1,40 @@ + +# Application-level permissions + +[] +access = read : [ * ], write : [ admin, power ] + +### EVENT TYPES + +[eventtypes] +export = system + + +### PROPS + +[props] +export = system + + +### TRANSFORMS + +[transforms] +export = system + + +### LOOKUPS + +[lookups] +export = system + + +### VIEWSTATES: even normal users should be able to create shared viewstates + +[viewstates] +access = read : [ * ], write : [ * ] +export = system + +[commands/eventingcsc] +access = read : [ * ], write : [ * ] +export = system +owner = Splunk diff --git a/tests/searchcommands/test_apps/generating_app/bin/generatingcsc.py b/tests/searchcommands/test_apps/generating_app/bin/generatingcsc.py new file mode 100644 index 000000000..2094ade75 --- /dev/null +++ b/tests/searchcommands/test_apps/generating_app/bin/generatingcsc.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python +# coding=utf-8 +# +# Copyright © 2011-2015 Splunk, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"): you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import os, sys +import time + +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "lib")) +from splunklib.searchcommands import dispatch, GeneratingCommand, Configuration, Option, validators + + +@Configuration() +class GeneratingCSC(GeneratingCommand): + """ + The generatingapp command generates a specific number of records. + + Example: + + ``| generatingcsc count=4`` + + Returns a 4 records having text 'Test Event'. + """ + + count = Option(require=True, validate=validators.Integer(0)) + + def generate(self): + self.logger.debug("Generating %s events" % self.count) + for i in range(1, self.count + 1): + text = f'Test Event {i}' + yield {'_time': time.time(), 'event_no': i, '_raw': text} + + +dispatch(GeneratingCSC, sys.argv, sys.stdin, sys.stdout, __name__) diff --git a/tests/searchcommands/test_apps/generating_app/default/app.conf b/tests/searchcommands/test_apps/generating_app/default/app.conf new file mode 100644 index 000000000..8a3b21507 --- /dev/null +++ b/tests/searchcommands/test_apps/generating_app/default/app.conf @@ -0,0 +1,16 @@ +# +# Splunk app configuration file +# + +[install] +is_configured = 0 + +[ui] +is_visible = 1 +label = Generating App + +[launcher] +description = Generating custom search commands example +version = 1.0.0 +author = Splunk + diff --git a/tests/searchcommands/test_apps/generating_app/default/commands.conf b/tests/searchcommands/test_apps/generating_app/default/commands.conf new file mode 100644 index 000000000..1a5d6af82 --- /dev/null +++ b/tests/searchcommands/test_apps/generating_app/default/commands.conf @@ -0,0 +1,4 @@ +[generatingcsc] +filename = generatingcsc.py +chunked = true +python.version = python3 diff --git a/tests/searchcommands/test_apps/generating_app/metadata/default.meta b/tests/searchcommands/test_apps/generating_app/metadata/default.meta new file mode 100644 index 000000000..d0a322c6a --- /dev/null +++ b/tests/searchcommands/test_apps/generating_app/metadata/default.meta @@ -0,0 +1,40 @@ + +# Application-level permissions + +[] +access = read : [ * ], write : [ admin, power ] + +### EVENT TYPES + +[eventtypes] +export = system + + +### PROPS + +[props] +export = system + + +### TRANSFORMS + +[transforms] +export = system + + +### LOOKUPS + +[lookups] +export = system + + +### VIEWSTATES: even normal users should be able to create shared viewstates + +[viewstates] +access = read : [ * ], write : [ * ] +export = system + +[commands/generatingcsc] +access = read : [ * ], write : [ * ] +export = system +owner = nobody diff --git a/tests/searchcommands/test_apps/reporting_app/bin/reportingcsc.py b/tests/searchcommands/test_apps/reporting_app/bin/reportingcsc.py new file mode 100644 index 000000000..78be57758 --- /dev/null +++ b/tests/searchcommands/test_apps/reporting_app/bin/reportingcsc.py @@ -0,0 +1,60 @@ +#!/usr/bin/env python +# coding=utf-8 +# +# Copyright 2011-2015 Splunk, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"): you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import os,sys + +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "lib")) +from splunklib.searchcommands import dispatch, ReportingCommand, Configuration, Option, validators + + +@Configuration(requires_preop=True) +class ReportingCSC(ReportingCommand): + """ + The reportingapp command returns a count of students having higher total marks than cutoff marks. + + Example: + + ``| makeresults count=10 | eval math=random()%100, eng=random()%100, cs=random()%100 | reportingcsc cutoff=150 math eng cs`` + + returns a count of students out of 10 having a higher total marks than cutoff. + """ + + cutoff = Option(require=True, validate=validators.Integer(0)) + + @Configuration() + def map(self, records): + """returns a total marks of a students""" + # list of subjects + fieldnames = self.fieldnames + for record in records: + # store a total marks of a single student + total = 0.0 + for fieldname in fieldnames: + total += float(record[fieldname]) + yield {"totalMarks": total} + + def reduce(self, records): + """returns a students count having a higher total marks than cutoff""" + pass_student_cnt = 0 + for record in records: + value = float(record["totalMarks"]) + if value >= float(self.cutoff): + pass_student_cnt += 1 + yield {"student having total marks greater than cutoff ": pass_student_cnt} + + +dispatch(ReportingCSC, sys.argv, sys.stdin, sys.stdout, __name__) diff --git a/tests/searchcommands/test_apps/reporting_app/default/app.conf b/tests/searchcommands/test_apps/reporting_app/default/app.conf new file mode 100644 index 000000000..c812fb3d4 --- /dev/null +++ b/tests/searchcommands/test_apps/reporting_app/default/app.conf @@ -0,0 +1,16 @@ +# +# Splunk app configuration file +# + +[install] +is_configured = 0 + +[ui] +is_visible = 1 +label = Reporting App + +[launcher] +description = Reporting custom search commands example +version = 1.0.0 +author = Splunk + diff --git a/tests/searchcommands/test_apps/reporting_app/default/commands.conf b/tests/searchcommands/test_apps/reporting_app/default/commands.conf new file mode 100644 index 000000000..58a406af8 --- /dev/null +++ b/tests/searchcommands/test_apps/reporting_app/default/commands.conf @@ -0,0 +1,4 @@ +[reportingcsc] +filename = reportingcsc.py +chunked = true +python.version = python3 diff --git a/tests/searchcommands/test_apps/reporting_app/metadata/default.meta b/tests/searchcommands/test_apps/reporting_app/metadata/default.meta new file mode 100644 index 000000000..598de787a --- /dev/null +++ b/tests/searchcommands/test_apps/reporting_app/metadata/default.meta @@ -0,0 +1,40 @@ + +# Application-level permissions + +[] +access = read : [ * ], write : [ admin, power ] + +### EVENT TYPES + +[eventtypes] +export = system + + +### PROPS + +[props] +export = system + + +### TRANSFORMS + +[transforms] +export = system + + +### LOOKUPS + +[lookups] +export = system + + +### VIEWSTATES: even normal users should be able to create shared viewstates + +[viewstates] +access = read : [ * ], write : [ * ] +export = system + +[commands/reportingcsc] +access = read : [ * ], write : [ * ] +export = system +owner = nobody diff --git a/tests/searchcommands/test_apps/streaming_app/bin/streamingcsc.py b/tests/searchcommands/test_apps/streaming_app/bin/streamingcsc.py new file mode 100644 index 000000000..348496cc6 --- /dev/null +++ b/tests/searchcommands/test_apps/streaming_app/bin/streamingcsc.py @@ -0,0 +1,42 @@ +#!/usr/bin/env python +# coding=utf-8 +# +# Copyright © 2011-2015 Splunk, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"): you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import os,sys + +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "lib")) +from splunklib.searchcommands import dispatch, StreamingCommand, Configuration, Option, validators + + +@Configuration() +class StreamingCSC(StreamingCommand): + """ + The streamingapp command returns events with a one new field 'fahrenheit'. + + Example: + + ``| makeresults count=5 | eval celsius = random()%100 | streamingcsc`` + + returns a records with one new filed 'fahrenheit'. + """ + + def stream(self, records): + for record in records: + record["fahrenheit"] = (float(record["celsius"]) * 1.8) + 32 + yield record + + +dispatch(StreamingCSC, sys.argv, sys.stdin, sys.stdout, __name__) diff --git a/tests/searchcommands/test_apps/streaming_app/default/app.conf b/tests/searchcommands/test_apps/streaming_app/default/app.conf new file mode 100644 index 000000000..a057ed9c1 --- /dev/null +++ b/tests/searchcommands/test_apps/streaming_app/default/app.conf @@ -0,0 +1,16 @@ +# +# Splunk app configuration file +# + +[install] +is_configured = 0 + +[ui] +is_visible = 1 +label = Streaming App + +[launcher] +description = Streaming custom search commands example +version = 1.0.0 +author = Splunk + diff --git a/tests/searchcommands/test_apps/streaming_app/default/commands.conf b/tests/searchcommands/test_apps/streaming_app/default/commands.conf new file mode 100644 index 000000000..49a38a8fa --- /dev/null +++ b/tests/searchcommands/test_apps/streaming_app/default/commands.conf @@ -0,0 +1,4 @@ +[streamingcsc] +filename = streamingcsc.py +chunked = true +python.version = python3 diff --git a/tests/searchcommands/test_apps/streaming_app/metadata/default.meta b/tests/searchcommands/test_apps/streaming_app/metadata/default.meta new file mode 100644 index 000000000..df71049bf --- /dev/null +++ b/tests/searchcommands/test_apps/streaming_app/metadata/default.meta @@ -0,0 +1,40 @@ + +# Application-level permissions + +[] +access = read : [ * ], write : [ admin, power ] + +### EVENT TYPES + +[eventtypes] +export = system + + +### PROPS + +[props] +export = system + + +### TRANSFORMS + +[transforms] +export = system + + +### LOOKUPS + +[lookups] +export = system + + +### VIEWSTATES: even normal users should be able to create shared viewstates + +[viewstates] +access = read : [ * ], write : [ * ] +export = system + +[commands/streamingcsc] +access = read : [ * ], write : [ * ] +export = system +owner = nobody diff --git a/tests/searchcommands/test_csc_apps.py b/tests/searchcommands/test_csc_apps.py new file mode 100755 index 000000000..b15574d1c --- /dev/null +++ b/tests/searchcommands/test_csc_apps.py @@ -0,0 +1,239 @@ +#!/usr/bin/env python +# +# Copyright 2011-2015 Splunk, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"): you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import unittest +from tests import testlib +from splunklib import results + + +class TestCSC(testlib.SDKTestCase): + + def test_eventing_app(self): + app_name = "eventing_app" + + self.assertTrue(app_name in self.service.apps, msg="%s is not installed." % app_name) + + # Fetch the app + app = self.service.apps[app_name] + app.refresh() + + # Extract app info + access = app.access + content = app.content + state = app.state + + # App info assertions + self.assertEqual(access.app, "system") + self.assertEqual(access.can_change_perms, "1") + self.assertEqual(access.can_list, "1") + self.assertEqual(access.can_share_app, "1") + self.assertEqual(access.can_share_global, "1") + self.assertEqual(access.can_share_user, "0") + self.assertEqual(access.can_write, "1") + self.assertEqual(access.modifiable, "1") + self.assertEqual(access.owner, "nobody") + self.assertEqual(access.sharing, "app") + self.assertEqual(access.perms.read, ['*']) + self.assertEqual(access.perms.write, ['admin', 'power']) + self.assertEqual(access.removable, "0") + + self.assertEqual(content.author, "Splunk") + self.assertEqual(content.configured, "0") + self.assertEqual(content.description, "Eventing custom search commands example") + self.assertEqual(content.label, "Eventing App") + self.assertEqual(content.version, "1.0.0") + self.assertEqual(content.visible, "1") + + self.assertEqual(state.title, "eventing_app") + + jobs = self.service.jobs + stream = jobs.oneshot('search index="_internal" | head 4000 | eventingcsc status=200 | head 10', + output_mode='json') + result = results.JSONResultsReader(stream) + ds = list(result) + + self.assertEqual(result.is_preview, False) + self.assertTrue(isinstance(ds[0], (dict, results.Message))) + nonmessages = [d for d in ds if isinstance(d, dict)] + self.assertTrue(len(nonmessages) <= 10) + + def test_generating_app(self): + app_name = "generating_app" + + self.assertTrue(app_name in self.service.apps, msg="%s is not installed." % app_name) + + # Fetch the app + app = self.service.apps[app_name] + app.refresh() + + # Extract app info + access = app.access + content = app.content + state = app.state + + # App info assertions + self.assertEqual(access.app, "system") + self.assertEqual(access.can_change_perms, "1") + self.assertEqual(access.can_list, "1") + self.assertEqual(access.can_share_app, "1") + self.assertEqual(access.can_share_global, "1") + self.assertEqual(access.can_share_user, "0") + self.assertEqual(access.can_write, "1") + self.assertEqual(access.modifiable, "1") + self.assertEqual(access.owner, "nobody") + self.assertEqual(access.sharing, "app") + self.assertEqual(access.perms.read, ['*']) + self.assertEqual(access.perms.write, ['admin', 'power']) + self.assertEqual(access.removable, "0") + + self.assertEqual(content.author, "Splunk") + self.assertEqual(content.configured, "0") + self.assertEqual(content.description, "Generating custom search commands example") + self.assertEqual(content.label, "Generating App") + self.assertEqual(content.version, "1.0.0") + self.assertEqual(content.visible, "1") + + self.assertEqual(state.title, "generating_app") + + jobs = self.service.jobs + stream = jobs.oneshot('| generatingcsc count=4', output_mode='json') + result = results.JSONResultsReader(stream) + ds = list(result) + self.assertTrue(len(ds) == 4) + + def test_reporting_app(self): + app_name = "reporting_app" + + self.assertTrue(app_name in self.service.apps, msg="%s is not installed." % app_name) + + # Fetch the app + app = self.service.apps[app_name] + app.refresh() + + # Extract app info + access = app.access + content = app.content + state = app.state + + # App info assertions + self.assertEqual(access.app, "system") + self.assertEqual(access.can_change_perms, "1") + self.assertEqual(access.can_list, "1") + self.assertEqual(access.can_share_app, "1") + self.assertEqual(access.can_share_global, "1") + self.assertEqual(access.can_share_user, "0") + self.assertEqual(access.can_write, "1") + self.assertEqual(access.modifiable, "1") + self.assertEqual(access.owner, "nobody") + self.assertEqual(access.sharing, "app") + self.assertEqual(access.perms.read, ['*']) + self.assertEqual(access.perms.write, ['admin', 'power']) + self.assertEqual(access.removable, "0") + + self.assertEqual(content.author, "Splunk") + self.assertEqual(content.configured, "0") + self.assertEqual(content.description, "Reporting custom search commands example") + self.assertEqual(content.label, "Reporting App") + self.assertEqual(content.version, "1.0.0") + self.assertEqual(content.visible, "1") + + self.assertEqual(state.title, "reporting_app") + + jobs = self.service.jobs + + # All above 150 + stream = jobs.oneshot( + '| makeresults count=10 | eval math=100, eng=100, cs=100 | reportingcsc cutoff=150 math eng cs', + output_mode='json') + result = results.JSONResultsReader(stream) + ds = list(result) + + self.assertTrue(len(ds) > 0) + self.assertTrue(ds[0].values() is not None) + self.assertTrue(len(ds[0].values()) > 0) + + no_of_students = int(list(ds[0].values())[0]) + self.assertTrue(no_of_students == 10) + + # All below 150 + stream = jobs.oneshot( + '| makeresults count=10 | eval math=45, eng=45, cs=45 | reportingcsc cutoff=150 math eng cs', + output_mode='json') + result = results.JSONResultsReader(stream) + ds = list(result) + + self.assertTrue(len(ds) > 0) + self.assertTrue(ds[0].values() is not None) + self.assertTrue(len(ds[0].values()) > 0) + + no_of_students = int(list(ds[0].values())[0]) + self.assertTrue(no_of_students == 0) + + def test_streaming_app(self): + app_name = "streaming_app" + + self.assertTrue(app_name in self.service.apps, msg="%s is not installed." % app_name) + + # Fetch the app + app = self.service.apps[app_name] + app.refresh() + + # Extract app info + access = app.access + content = app.content + state = app.state + + # App info assertions + self.assertEqual(access.app, "system") + self.assertEqual(access.can_change_perms, "1") + self.assertEqual(access.can_list, "1") + self.assertEqual(access.can_share_app, "1") + self.assertEqual(access.can_share_global, "1") + self.assertEqual(access.can_share_user, "0") + self.assertEqual(access.can_write, "1") + self.assertEqual(access.modifiable, "1") + self.assertEqual(access.owner, "nobody") + self.assertEqual(access.sharing, "app") + self.assertEqual(access.perms.read, ['*']) + self.assertEqual(access.perms.write, ['admin', 'power']) + self.assertEqual(access.removable, "0") + + self.assertEqual(content.author, "Splunk") + self.assertEqual(content.configured, "0") + self.assertEqual(content.description, "Streaming custom search commands example") + self.assertEqual(content.label, "Streaming App") + self.assertEqual(content.version, "1.0.0") + self.assertEqual(content.visible, "1") + + self.assertEqual(state.title, "streaming_app") + + jobs = self.service.jobs + + stream = jobs.oneshot('| makeresults count=5 | eval celsius = 35 | streamingcsc', output_mode='json') + result = results.JSONResultsReader(stream) + ds = list(result) + + self.assertTrue(len(ds) == 5) + self.assertTrue('_time' in ds[0]) + self.assertTrue('celsius' in ds[0]) + self.assertTrue('fahrenheit' in ds[0]) + self.assertTrue(ds[0]['celsius'] == '35') + self.assertTrue(ds[0]['fahrenheit'] == '95.0') + self.assertTrue(len(ds) == 5) + + +if __name__ == "__main__": + unittest.main() diff --git a/tests/searchcommands/test_internals_v2.py b/tests/searchcommands/test_internals_v2.py index c221cc53c..ec9b3f666 100755 --- a/tests/searchcommands/test_internals_v2.py +++ b/tests/searchcommands/test_internals_v2.py @@ -120,60 +120,6 @@ def test_object_view(self): self.assertEqual(self._json_input, json_output) return - def test_recorder(self): - - if (python_version[0] == 2 and python_version[1] < 7): - print("Skipping test since we're on {1}".format("".join(python_version))) - pass - - # Grab an input/output recording, the results of a prior countmatches run - - recording = os.path.join(self._package_path, 'recordings', 'scpv2', 'Splunk-6.3', 'countmatches.') - - with gzip.open(recording + 'input.gz', 'rb') as file_1: - with io.open(recording + 'output', 'rb') as file_2: - ifile = BytesIO(file_1.read()) - result = BytesIO(file_2.read()) - - # Set up the input/output recorders that are under test - - ifile = Recorder(mktemp(), ifile) - - try: - ofile = Recorder(mktemp(), BytesIO()) - - try: - # Read and then write a line - ifile.readline() - ofile.write(result.readline()) - - # Read and then write a block - ifile.read() - ofile.write(result.read()) - - # Verify that what we wrote is equivalent to the original recording, the result from a prior - # countmatches run - self.assertEqual(ofile.getvalue(), result.getvalue()) - - # Verify that we faithfully recorded the input and output files - ifile._recording.close() - ofile._recording.close() - - with gzip.open(ifile._recording.name, 'rb') as file_1: - with gzip.open(ofile._recording.name, 'rb') as file_2: - self.assertEqual(file_1.read(), ifile._file.getvalue()) - self.assertEqual(file_2.read(), ofile._file.getvalue()) - - finally: - ofile._recording.close() - os.remove(ofile._recording.name) - - finally: - ifile._recording.close() - os.remove(ifile._recording.name) - - return - def test_record_writer_with_random_data(self, save_recording=False): # Confirmed: [minint, maxint) covers the full range of values that xrange allows @@ -332,7 +278,6 @@ def _load_chunks(self, ifile): _json_input = six.text_type(json.dumps(_dictionary, separators=(',', ':'))) _package_path = os.path.dirname(os.path.abspath(__file__)) - _recordings_path = os.path.join(_package_path, 'recordings', 'scpv2', 'Splunk-6.3') class TestRecorder(object): diff --git a/tests/searchcommands/test_search_command.py b/tests/searchcommands/test_search_command.py index baa8edb7d..c5ce36066 100755 --- a/tests/searchcommands/test_search_command.py +++ b/tests/searchcommands/test_search_command.py @@ -115,276 +115,6 @@ class TestSearchCommand(TestCase): def setUp(self): TestCase.setUp(self) - def test_process_scpv1(self): - - # TestCommand.process should complain if supports_getinfo == False - # We support dynamic configuration, not static - - # The exception line number may change, so we're using a regex match instead of a string match - - expected = re.compile( - r'error_message=RuntimeError at ".+search_command\.py", line \d\d\d : Command test appears to be ' - r'statically configured for search command protocol version 1 and static configuration is unsupported by ' - r'splunklib.searchcommands. Please ensure that default/commands.conf contains this stanza:\n' - r'\[test\]\n' - r'filename = test.py\n' - r'enableheader = true\n' - r'outputheader = true\n' - r'requires_srinfo = true\n' - r'supports_getinfo = true\n' - r'supports_multivalues = true\n' - r'supports_rawargs = true') - - argv = ['test.py', 'not__GETINFO__or__EXECUTE__', 'option=value', 'fieldname'] - command = TestCommand() - result = BytesIO() - - self.assertRaises(SystemExit, command.process, argv, ofile=result) - six.assertRegex(self, result.getvalue().decode('UTF-8'), expected) - - # TestCommand.process should return configuration settings on Getinfo probe - - argv = ['test.py', '__GETINFO__', 'required_option_1=value', 'required_option_2=value'] - command = TestCommand() - ifile = StringIO('\n') - result = BytesIO() - - self.assertEqual(str(command.configuration), '') - - if six.PY2: - expected = ("[(u'clear_required_fields', None, [1]), (u'distributed', None, [2]), (u'generates_timeorder', None, [1]), " - "(u'generating', None, [1, 2]), (u'maxinputs', None, [2]), (u'overrides_timeorder', None, [1]), " - "(u'required_fields', None, [1, 2]), (u'requires_preop', None, [1]), (u'retainsevents', None, [1]), " - "(u'run_in_preview', None, [2]), (u'streaming', None, [1]), (u'streaming_preop', None, [1, 2]), " - "(u'type', None, [2])]") - else: - expected = ("[('clear_required_fields', None, [1]), ('distributed', None, [2]), ('generates_timeorder', None, [1]), " - "('generating', None, [1, 2]), ('maxinputs', None, [2]), ('overrides_timeorder', None, [1]), " - "('required_fields', None, [1, 2]), ('requires_preop', None, [1]), ('retainsevents', None, [1]), " - "('run_in_preview', None, [2]), ('streaming', None, [1]), ('streaming_preop', None, [1, 2]), " - "('type', None, [2])]") - - self.assertEqual( - repr(command.configuration), expected) - - try: - # noinspection PyTypeChecker - command.process(argv, ifile, ofile=result) - except BaseException as error: - self.fail('{0}: {1}: {2}\n'.format(type(error).__name__, error, result.getvalue().decode('UTF-8'))) - - self.assertEqual('\r\n\r\n\r\n', result.getvalue().decode('UTF-8')) # No message header and no configuration settings - - ifile = StringIO('\n') - result = BytesIO() - - # We might also put this sort of code into our SearchCommand.prepare override ... - - configuration = command.configuration - - # SCP v1/v2 configuration settings - configuration.generating = True - configuration.required_fields = ['foo', 'bar'] - configuration.streaming_preop = 'some streaming command' - - # SCP v1 configuration settings - configuration.clear_required_fields = True - configuration.generates_timeorder = True - configuration.overrides_timeorder = True - configuration.requires_preop = True - configuration.retainsevents = True - configuration.streaming = True - - # SCP v2 configuration settings (SCP v1 requires that maxinputs and run_in_preview are set in commands.conf) - configuration.distributed = True - configuration.maxinputs = 50000 - configuration.run_in_preview = True - configuration.type = 'streaming' - - if six.PY2: - expected = ('clear_required_fields="True", generates_timeorder="True", generating="True", overrides_timeorder="True", ' - 'required_fields="[u\'foo\', u\'bar\']", requires_preop="True", retainsevents="True", streaming="True", ' - 'streaming_preop="some streaming command"') - else: - expected = ('clear_required_fields="True", generates_timeorder="True", generating="True", overrides_timeorder="True", ' - 'required_fields="[\'foo\', \'bar\']", requires_preop="True", retainsevents="True", streaming="True", ' - 'streaming_preop="some streaming command"') - self.assertEqual(str(command.configuration), expected) - - if six.PY2: - expected = ("[(u'clear_required_fields', True, [1]), (u'distributed', True, [2]), (u'generates_timeorder', True, [1]), " - "(u'generating', True, [1, 2]), (u'maxinputs', 50000, [2]), (u'overrides_timeorder', True, [1]), " - "(u'required_fields', [u'foo', u'bar'], [1, 2]), (u'requires_preop', True, [1]), " - "(u'retainsevents', True, [1]), (u'run_in_preview', True, [2]), (u'streaming', True, [1]), " - "(u'streaming_preop', u'some streaming command', [1, 2]), (u'type', u'streaming', [2])]") - else: - expected = ("[('clear_required_fields', True, [1]), ('distributed', True, [2]), ('generates_timeorder', True, [1]), " - "('generating', True, [1, 2]), ('maxinputs', 50000, [2]), ('overrides_timeorder', True, [1]), " - "('required_fields', ['foo', 'bar'], [1, 2]), ('requires_preop', True, [1]), " - "('retainsevents', True, [1]), ('run_in_preview', True, [2]), ('streaming', True, [1]), " - "('streaming_preop', 'some streaming command', [1, 2]), ('type', 'streaming', [2])]") - - self.assertEqual( - repr(command.configuration), expected) - - try: - # noinspection PyTypeChecker - command.process(argv, ifile, ofile=result) - except BaseException as error: - self.fail('{0}: {1}: {2}\n'.format(type(error).__name__, error, result.getvalue().decode('UTF-8'))) - - result.seek(0) - reader = csv.reader(codecs.iterdecode(result, 'UTF-8')) - self.assertEqual([], next(reader)) - observed = dict(izip(next(reader), next(reader))) - self.assertRaises(StopIteration, lambda: next(reader)) - - expected = { - 'clear_required_fields': '1', '__mv_clear_required_fields': '', - 'generating': '1', '__mv_generating': '', - 'generates_timeorder': '1', '__mv_generates_timeorder': '', - 'overrides_timeorder': '1', '__mv_overrides_timeorder': '', - 'requires_preop': '1', '__mv_requires_preop': '', - 'required_fields': 'foo,bar', '__mv_required_fields': '', - 'retainsevents': '1', '__mv_retainsevents': '', - 'streaming': '1', '__mv_streaming': '', - 'streaming_preop': 'some streaming command', '__mv_streaming_preop': '', - } - - self.assertDictEqual(expected, observed) # No message header and no configuration settings - - for action in '__GETINFO__', '__EXECUTE__': - - # TestCommand.process should produce an error record on parser errors - - argv = [ - 'test.py', action, 'required_option_1=value', 'required_option_2=value', 'undefined_option=value', - 'fieldname_1', 'fieldname_2'] - - command = TestCommand() - ifile = StringIO('\n') - result = BytesIO() - - self.assertRaises(SystemExit, command.process, argv, ifile, ofile=result) - self.assertTrue( - 'error_message=Unrecognized test command option: undefined_option="value"\r\n\r\n', - result.getvalue().decode('UTF-8')) - - # TestCommand.process should produce an error record when required options are missing - - argv = ['test.py', action, 'required_option_2=value', 'fieldname_1'] - command = TestCommand() - ifile = StringIO('\n') - result = BytesIO() - - self.assertRaises(SystemExit, command.process, argv, ifile, ofile=result) - - self.assertTrue( - 'error_message=A value for test command option required_option_1 is required\r\n\r\n', - result.getvalue().decode('UTF-8')) - - argv = ['test.py', action, 'fieldname_1'] - command = TestCommand() - ifile = StringIO('\n') - result = BytesIO() - - self.assertRaises(SystemExit, command.process, argv, ifile, ofile=result) - - self.assertTrue( - 'error_message=Values for these test command options are required: required_option_1, required_option_2' - '\r\n\r\n', - result.getvalue().decode('UTF-8')) - - # TestStreamingCommand.process should exit on processing exceptions - - ifile = StringIO('\naction\r\nraise_error\r\n') - argv = ['test.py', '__EXECUTE__'] - command = TestStreamingCommand() - result = BytesIO() - - try: - # noinspection PyTypeChecker - command.process(argv, ifile, ofile=result) - except SystemExit as error: - self.assertNotEqual(error.code, 0) - six.assertRegex( - self, - result.getvalue().decode('UTF-8'), - r'^error_message=RuntimeError at ".+", line \d+ : Testing\r\n\r\n$') - except BaseException as error: - self.fail('Expected SystemExit, but caught {}: {}'.format(type(error).__name__, error)) - else: - self.fail('Expected SystemExit, but no exception was raised') - - # Command.process should provide access to search results info - info_path = os.path.join( - self._package_directory, 'recordings', 'scpv1', 'Splunk-6.3', 'countmatches.execute.dispatch_dir', - 'externSearchResultsInfo.csv') - - ifile = StringIO('infoPath:' + info_path + '\n\naction\r\nget_search_results_info\r\n') - argv = ['test.py', '__EXECUTE__'] - command = TestStreamingCommand() - result = BytesIO() - - try: - # noinspection PyTypeChecker - command.process(argv, ifile, ofile=result) - except BaseException as error: - self.fail('Expected no exception, but caught {}: {}'.format(type(error).__name__, error)) - else: - six.assertRegex( - self, - result.getvalue().decode('UTF-8'), - r'^\r\n' - r'(' - r'data,__mv_data,_serial,__mv__serial\r\n' - r'\"\{.*u\'is_summary_index\': 0, .+\}\",,0,' - r'|' - r'_serial,__mv__serial,data,__mv_data\r\n' - r'0,,\"\{.*\'is_summary_index\': 0, .+\}\",' - r')' - r'\r\n$' - ) - - # TestStreamingCommand.process should provide access to a service object when search results info is available - - self.assertIsInstance(command.service, Service) - - self.assertEqual(command.service.authority, - command.search_results_info.splunkd_uri) - - self.assertEqual(command.service.scheme, - command.search_results_info.splunkd_protocol) - - self.assertEqual(command.service.port, - command.search_results_info.splunkd_port) - - self.assertEqual(command.service.token, - command.search_results_info.auth_token) - - self.assertEqual(command.service.namespace.app, - command.search_results_info.ppc_app) - - self.assertEqual(command.service.namespace.owner, - None) - self.assertEqual(command.service.namespace.sharing, - None) - - # Command.process should not provide access to search results info or a service object when the 'infoPath' - # input header is unavailable - - ifile = StringIO('\naction\r\nget_search_results_info') - argv = ['teststreaming.py', '__EXECUTE__'] - command = TestStreamingCommand() - - # noinspection PyTypeChecker - command.process(argv, ifile, ofile=result) - - self.assertIsNone(command.search_results_info) - self.assertIsNone(command.service) - - return - def test_process_scpv2(self): # SearchCommand.process should @@ -428,15 +158,13 @@ def test_process_scpv2(self): basedir = self._package_directory - default_logging_configuration = os.path.join(basedir, 'apps', 'app_with_logging_configuration', 'default', 'logging.conf') - dispatch_dir = os.path.join(basedir, 'recordings', 'scpv2', 'Splunk-6.3', 'countmatches.dispatch_dir') logging_configuration = os.path.join(basedir, 'apps', 'app_with_logging_configuration', 'logging.conf') logging_level = 'ERROR' record = False show_configuration = True getinfo_metadata = metadata.format( - dispatch_dir=encode_string(dispatch_dir), + dispatch_dir=encode_string(""), logging_configuration=encode_string(logging_configuration)[1:-1], logging_level=logging_level, record=('true' if record is True else 'false'), @@ -522,95 +250,12 @@ def test_process_scpv2(self): self.assertEqual(command_metadata.searchinfo.maxresultrows, 10) self.assertEqual(command_metadata.searchinfo.command, 'countmatches') - command.search_results_info.search_metrics = command.search_results_info.search_metrics.__dict__ - command.search_results_info.optional_fields_json = command.search_results_info.optional_fields_json.__dict__ self.maxDiff = None - self.assertDictEqual(command.search_results_info.__dict__, { - u'is_summary_index': 0, - u'bs_thread_count': 1, - u'rt_backfill': 0, - u'rtspan': '', - u'search_StartTime': 1433261392.934936, - u'read_raw': 1, - u'root_sid': '', - u'field_rendering': '', - u'query_finished': 1, - u'optional_fields_json': {}, - u'group_list': '', - u'remoteServers': '', - u'rt_latest': '', - u'remote_log_download_mode': 'disabled', - u'reduce_search': '', - u'request_finalization': 0, - u'auth_token': 'UQZSgWwE2f9oIKrj1QG^kVhW^T_cR4H5Z65bPtMhwlHytS5jFrFYyH^dGzjTusDjVTgoBNeR7bvIzctHF7DrLJ1ANevgDOWEWRvABNj6d_k0koqxw9Io', - u'indexed_realtime': 0, - u'ppc_bs': '$SPLUNK_HOME/etc', - u'drop_count': 0, - u'datamodel_map': '', - u'search_can_be_event_type': 0, - u'search_StartUp_Spent': 0, - u'realtime': 0, - u'splunkd_uri': 'https://127.0.0.1:8089', - u'columnOrder': '', - u'kv_store_settings': 'hosts;127.0.0.1:8191\\;;local;127.0.0.1:8191;read_preference;958513E3-8716-4ABF-9559-DA0C9678437F;replica_set_name;958513E3-8716-4ABF-9559-DA0C9678437F;status;ready;', - u'label': '', - u'summary_maxtimespan': '', - u'indexed_realtime_offset': 0, - u'sid': 1433261392.159, - u'msg': [], - u'internal_only': 0, - u'summary_id': '', - u'orig_search_head': '', - u'ppc_app': 'chunked_searchcommands', - u'countMap': { - u'invocations.dispatch.writeStatus': u'1', - u'duration.dispatch.writeStatus': u'2', - u'duration.startup.handoff': u'79', - u'duration.startup.configuration': u'34', - u'invocations.startup.handoff': u'1', - u'invocations.startup.configuration': u'1'}, - u'is_shc_mode': 0, - u'shp_id': '958513E3-8716-4ABF-9559-DA0C9678437F', - u'timestamp': 1433261392.936374, u'is_remote_sorted': 0, - u'remote_search': '', - u'splunkd_protocol': 'https', - u'site': '', - u'maxevents': 0, - u'keySet': '', - u'summary_stopped': 0, - u'search_metrics': { - u'ConsideredEvents': 0, - u'ConsideredBuckets': 0, - u'TotalSlicesInBuckets': 0, - u'EliminatedBuckets': 0, - u'DecompressedSlices': 0}, - u'summary_mode': 'all', u'now': 1433261392.0, - u'splunkd_port': 8089, u'is_saved_search': 0, - u'rtoptions': '', - u'search': '| inputlookup random_data max=50000 | sum total=total value1 record=t | export add_timestamp=f add_offset=t format=csv segmentation=raw', - u'bundle_version': 0, - u'generation_id': 0, - u'bs_thread_id': 0, - u'is_batch_mode': 0, - u'scan_count': 0, - u'rt_earliest': '', - u'default_group': '*', - u'tstats_reduce': '', - u'kv_store_additional_settings': 'hosts_guids;958513E3-8716-4ABF-9559-DA0C9678437F\\;;', - u'enable_event_stream': 0, - u'is_remote': 0, - u'is_scheduled': 0, - u'sample_ratio': 1, - u'ppc_user': 'admin', - u'sample_seed': 0}) - self.assertIsInstance(command.service, Service) self.assertEqual(command.service.authority, command_metadata.searchinfo.splunkd_uri) - self.assertEqual(command.service.scheme, command.search_results_info.splunkd_protocol) - self.assertEqual(command.service.port, command.search_results_info.splunkd_port) self.assertEqual(command.service.token, command_metadata.searchinfo.session_key) self.assertEqual(command.service.namespace.app, command.metadata.searchinfo.app) self.assertIsNone(command.service.namespace.owner) @@ -618,172 +263,6 @@ def test_process_scpv2(self): self.assertEqual(command.protocol_version, 2) - # 3. Produce an error message, log a debug message, and exit when invalid standard option values are encountered - - # Note on loggers - # Loggers are global and can't be removed once they're created. We create loggers that are keyed by class name - # Each instance of a class thus created gets access to the same logger. We created one in the prior test and - # set it's level to ERROR. That level is retained in this test. - - logging_configuration = 'non-existent-logging.conf' - logging_level = 'NON-EXISTENT-LOGGING-LEVEL' - record = 'Non-boolean value' - show_configuration = 'Non-boolean value' - - getinfo_metadata = metadata.format( - dispatch_dir=encode_string(dispatch_dir), - logging_configuration=encode_string(logging_configuration)[1:-1], - logging_level=logging_level, - record=record, - show_configuration=show_configuration) - - execute_metadata = '{"action":"execute","finished":true}' - execute_body = 'test\r\ndata\r\n测试\r\n' - - ifile = build_command_input(getinfo_metadata, execute_metadata, execute_body) - - command = TestCommand() - result = BytesIO() - argv = ['test.py'] - - # noinspection PyTypeChecker - self.assertRaises(SystemExit, command.process, argv, ifile, ofile=result) - self.assertEqual(command.logging_level, 'ERROR') - self.assertEqual(command.record, False) - self.assertEqual(command.show_configuration, False) - self.assertEqual(command.required_option_1, 'value_1') - self.assertEqual(command.required_option_2, 'value_2') - - self.assertEqual( - 'chunked 1.0,287,0\n' - '{"inspector":{"messages":[["ERROR","Illegal value: logging_configuration=non-existent-logging.conf"],' - '["ERROR","Illegal value: logging_level=NON-EXISTENT-LOGGING-LEVEL"],' - '["ERROR","Illegal value: record=Non-boolean value"],' - '["ERROR","Illegal value: show_configuration=Non-boolean value"]]}}\n', - result.getvalue().decode('utf-8')) - - self.assertEqual(command.protocol_version, 2) - - # 4. Produce an error message, log an error message that includes a traceback, and exit when an exception is - # raised during command execution. - - logging_configuration = os.path.join(basedir, 'apps', 'app_with_logging_configuration', 'logging.conf') - logging_level = 'WARNING' - record = False - show_configuration = False - - getinfo_metadata = metadata.format( - dispatch_dir=encode_string(dispatch_dir), - logging_configuration=encode_string(logging_configuration)[1:-1], - logging_level=logging_level, - record=('true' if record is True else 'false'), - show_configuration=('true' if show_configuration is True else 'false')) - - execute_metadata = '{"action":"execute","finished":true}' - execute_body = 'action\r\nraise_exception\r\n测试\r\n' - - ifile = build_command_input(getinfo_metadata, execute_metadata, execute_body) - - command = TestCommand() - result = BytesIO() - argv = ['test.py'] - - try: - command.process(argv, ifile, ofile=result) - except SystemExit as error: - self.assertNotEqual(0, error.code) - except BaseException as error: - self.fail('{0}: {1}: {2}\n'.format(type(error).__name__, error, result.getvalue().decode('utf-8'))) - else: - self.fail('Expected SystemExit, not a return from TestCommand.process: {}\n'.format(result.getvalue().decode('utf-8'))) - - self.assertEqual(command.logging_configuration, logging_configuration) - self.assertEqual(command.logging_level, logging_level) - self.assertEqual(command.record, record) - self.assertEqual(command.show_configuration, show_configuration) - self.assertEqual(command.required_option_1, 'value_1') - self.assertEqual(command.required_option_2, 'value_2') - - finished = r'\"finished\":true' - - if six.PY2: - inspector = \ - r'\"inspector\":\{\"messages\":\[\[\"ERROR\",\"StandardError at \\\".+\\\", line \d+ : test ' \ - r'logging_configuration=\\\".+\\\" logging_level=\\\"WARNING\\\" record=\\\"f\\\" ' \ - r'required_option_1=\\\"value_1\\\" required_option_2=\\\"value_2\\\" show_configuration=\\\"f\\\"\"\]\]\}' - else: - inspector = \ - r'\"inspector\":\{\"messages\":\[\[\"ERROR\",\"Exception at \\\".+\\\", line \d+ : test ' \ - r'logging_configuration=\\\".+\\\" logging_level=\\\"WARNING\\\" record=\\\"f\\\" ' \ - r'required_option_1=\\\"value_1\\\" required_option_2=\\\"value_2\\\" show_configuration=\\\"f\\\"\"\]\]\}' - - six.assertRegex( - self, - result.getvalue().decode('utf-8'), - r'^chunked 1.0,2,0\n' - r'\{\}\n' - r'chunked 1.0,\d+,0\n' - r'\{(' + inspector + r',' + finished + r'|' + finished + r',' + inspector + r')\}') - - self.assertEqual(command.protocol_version, 2) - - # 5. Different scenarios with allow_empty_input flag, default is True - # Test preparation - dispatch_dir = os.path.join(basedir, 'recordings', 'scpv2', 'Splunk-6.3', 'countmatches.dispatch_dir') - logging_configuration = os.path.join(basedir, 'apps', 'app_with_logging_configuration', 'logging.conf') - logging_level = 'ERROR' - record = False - show_configuration = True - - getinfo_metadata = metadata.format( - dispatch_dir=encode_string(dispatch_dir), - logging_configuration=encode_string(logging_configuration)[1:-1], - logging_level=logging_level, - record=('true' if record is True else 'false'), - show_configuration=('true' if show_configuration is True else 'false')) - - execute_metadata = '{"action":"execute","finished":true}' - command = TestCommand() - result = BytesIO() - argv = ['some-external-search-command.py'] - - # Scenario a) Empty body & allow_empty_input=False ==> Assert Error - - execute_body = '' # Empty body - input_file = build_command_input(getinfo_metadata, execute_metadata, execute_body) - try: - command.process(argv, input_file, ofile=result, allow_empty_input=False) # allow_empty_input=False - except SystemExit as error: - self.assertNotEqual(0, error.code) - self.assertTrue(result.getvalue().decode("UTF-8").__contains__("No records found to process. Set " - "allow_empty_input=True in dispatch " - "function to move forward with empty " - "records.")) - else: - self.fail('Expected SystemExit, not a return from TestCommand.process: {}\n'.format( - result.getvalue().decode('utf-8'))) - - # Scenario b) Empty body & allow_empty_input=True ==> Assert Success - - execute_body = '' # Empty body - input_file = build_command_input(getinfo_metadata, execute_metadata, execute_body) - result = BytesIO() - - try: - command.process(argv, input_file, ofile=result) # By default allow_empty_input=True - except SystemExit as error: - self.fail('Unexpected exception: {}: {}'.format(type(error).__name__, error)) - - expected = ( - 'chunked 1.0,68,0\n' - '{"inspector":{"messages":[["INFO","test command configuration: "]]}}\n' - 'chunked 1.0,17,0\n' - '{"finished":true}' - ) - - self.assertEquals(result.getvalue().decode("UTF-8"), expected) - return - _package_directory = os.path.dirname(os.path.abspath(__file__)) diff --git a/tests/test_saved_search.py b/tests/test_saved_search.py index 28d6436d1..c15921c0c 100755 --- a/tests/test_saved_search.py +++ b/tests/test_saved_search.py @@ -170,6 +170,27 @@ def test_history(self): finally: job.cancel() + def test_history_with_options(self): + try: + old_jobs = self.saved_search.history() + old_jobs_cnt = len(old_jobs) + + curr_job_cnt = 50 + for _ in range(curr_job_cnt): + job = self.saved_search.dispatch() + while not job.is_ready(): + sleep(0.1) + + # fetching all the jobs + history = self.saved_search.history(count=0) + self.assertEqual(len(history), old_jobs_cnt + curr_job_cnt) + + # fetching 3 jobs + history = self.saved_search.history(count=3) + self.assertEqual(len(history), 3) + finally: + job.cancel() + def test_scheduled_times(self): self.saved_search.update(cron_schedule='*/5 * * * *', is_scheduled=True) scheduled_times = self.saved_search.scheduled_times()