hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
98 values
lang
stringclasses
21 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
118
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
118
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
135
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.05M
avg_line_length
float64
1
1.03M
max_line_length
int64
2
1.03M
alphanum_fraction
float64
0
1
fb7bdfc261a4dbe816905c006eec0dd28bbf2280
288
java
Java
Design Patterns/AbstractFactory/src/factory/AbstractMazeFactory.java
larissacauane/Design-Patterns
9000d86e34909f84a34fb624fe1799f720189c5c
[ "MIT" ]
null
null
null
Design Patterns/AbstractFactory/src/factory/AbstractMazeFactory.java
larissacauane/Design-Patterns
9000d86e34909f84a34fb624fe1799f720189c5c
[ "MIT" ]
null
null
null
Design Patterns/AbstractFactory/src/factory/AbstractMazeFactory.java
larissacauane/Design-Patterns
9000d86e34909f84a34fb624fe1799f720189c5c
[ "MIT" ]
null
null
null
package factory; import model.Door; import model.Maze; import model.Room; import model.Wall; public abstract class AbstractMazeFactory { public abstract Maze makeMaze(); public abstract Door makeDoor(); public abstract Room makeRoom(); public abstract Wall makeWall(); }
14.4
43
0.75
bb921093c747a0c24ee33dd4bd10ad81406bd146
15,815
kt
Kotlin
app/src/main/java/a98apps/lyricsedge/network/LyricsRequest.kt
Jonathan2332/98-apps-lyrics-edge
9f015ad6276a615f571264da80e432aa1242b12c
[ "blessing" ]
null
null
null
app/src/main/java/a98apps/lyricsedge/network/LyricsRequest.kt
Jonathan2332/98-apps-lyrics-edge
9f015ad6276a615f571264da80e432aa1242b12c
[ "blessing" ]
null
null
null
app/src/main/java/a98apps/lyricsedge/network/LyricsRequest.kt
Jonathan2332/98-apps-lyrics-edge
9f015ad6276a615f571264da80e432aa1242b12c
[ "blessing" ]
null
null
null
package a98apps.lyricsedge.network import a98apps.lyricsedge.constants.Constants import a98apps.lyricsedge.edge.Cocktail import a98apps.lyricsedge.helper.dao.artist.ArtistDAO import a98apps.lyricsedge.helper.dao.cache.CacheDAO import a98apps.lyricsedge.helper.dao.music.MusicDAO import a98apps.lyricsedge.model.Artist import a98apps.lyricsedge.model.Cache import a98apps.lyricsedge.model.Music import a98apps.lyricsedge.preferences.SecurityPreferences import a98apps.lyricsedge.util.NetworkUtil import android.content.Context import android.util.Base64 import kotlinx.coroutines.* import java.util.concurrent.Executors import java.util.concurrent.Future import java.util.concurrent.TimeUnit import java.util.concurrent.TimeoutException class LyricsRequest(private val context: Context, private val listener: ILyricListener) { companion object { var isRunning: Boolean = false //manage queue private val hashMap = HashMap<String, Future<LyricsResult>>() private val jobMap = HashMap<String, Job>() } fun fetchLyrics(oldHash: String, hash: String, art: String, sourceArtistHash: String, title: String, sourceTitleHash: String) { if(jobMap.containsKey(oldHash)) { jobMap[oldHash]?.cancel(null) jobMap.remove(oldHash) } val prefs = SecurityPreferences(context) val approxLyric = prefs.get(Constants.LYRICS_APPROX) as Boolean //checks whether the old hash is in the queue, if true, cancel and remove and add the new hash if(hashMap.containsKey(oldHash)) { hashMap[oldHash]?.cancel(true) hashMap.remove(oldHash) val executor = Executors.newSingleThreadExecutor() hashMap[hash] = executor.submit(LyricTask(Constants.DEFAULT_VALUE_CAPTCHA, Constants.DEFAULT_VALUE_CAPTCHA, art, title, approxLyric)) executor.shutdown() } else { val executor = Executors.newSingleThreadExecutor() hashMap[hash] = executor.submit(LyricTask(Constants.DEFAULT_VALUE_CAPTCHA, Constants.DEFAULT_VALUE_CAPTCHA, art, title, approxLyric)) executor.shutdown() } jobMap[hash] = GlobalScope.launch(Dispatchers.IO) { delay(400) isRunning = true listener.onFetchStarted(context) try { val lyricsResult = hashMap[hash]?.get(1, TimeUnit.MINUTES) var success = false if(lyricsResult != null && lyricsResult.validSave) { //insert artist on DB var artistDAO = ArtistDAO(context) val hashArtist = Base64.encodeToString(lyricsResult.artistName.encodeToByteArray(), Base64.DEFAULT) var artistId = artistDAO.has(hashArtist) if(artistId == -1L)//not in db { val artist = Artist() artist.name = lyricsResult.artistName artist.hash = Base64.encodeToString(lyricsResult.artistName.encodeToByteArray(), Base64.DEFAULT) artist.sourceHash = sourceArtistHash artist.url = lyricsResult.artistUrl artistDAO = ArtistDAO(context) artist.id = artistDAO.save(artist) if(artist.id != -1L)//no errors on save { artistId = artist.id ?: -1L } } if(artistId != -1L)//artist on DB { //insert lyric music on DB val music = Music() music.hash = Base64.encodeToString(lyricsResult.musicName.encodeToByteArray(), Base64.DEFAULT) music.sourceHash = sourceTitleHash music.name = lyricsResult.musicName music.lyric = lyricsResult.lyric music.url = lyricsResult.lyricUrl music.translate = lyricsResult.lyricTranslate var musicDAO = MusicDAO(context) music.id = musicDAO.save(music) if(music.id != -1L)//no errors on save { //insert on cache val cacheDAO = CacheDAO(context) val cache = Cache() cache.musicId = music.id cache.artistId = artistId cache.hash = hash cache.type = lyricsResult.type cache.id = cacheDAO.save(cache) if(cache.id != -1L)//no errors on save { success = true //set lyric index to current founded lyric prefs.set(Constants.CACHE_INDEX, cache.id) //reset button prefs.setDefault(Constants.TRANSLATE_TOGGLE) //update panel list Cocktail.updateList(context) } else { prefs.set(Constants.BLOCKED_HASH, hash) //error on insert cache, remove music musicDAO = MusicDAO(context)//instantiate again to reopen db musicDAO.delete(artistId) //error on insert cache, remove artist artistDAO = ArtistDAO(context)//instantiate again to reopen db artistDAO.delete(artistId) } } else { prefs.set(Constants.BLOCKED_HASH, hash) //error on insert music, remove artist artistDAO = ArtistDAO(context)//instantiate again to reopen db artistDAO.delete(artistId) } } else//error on artist on DB { prefs.set(Constants.BLOCKED_HASH, hash) } } else if(lyricsResult != null && lyricsResult.hasCaptcha) { prefs.set(Constants.CAPTCHA_PENDING, true) prefs.set(Constants.CAPTCHA_VERIFICATION, lyricsResult.captchaUrl) prefs.set(Constants.CAPTCHA_SERIAL, lyricsResult.captchaSerial) prefs.set(Constants.CAPTCHA_TITLE_TARGET, art) prefs.set(Constants.CAPTCHA_NAME_TARGET, title) //update panel list Cocktail.updateList(context) } else { /* blocks the hash only if you have a network connection, it means that the request was made but the letter was not found, if the connection goes down during the request, the hash should not be blocked TEMP_HASH is reset so that it can be searched again */ if(NetworkUtil.isNetworkAvailable(context)) prefs.set(Constants.BLOCKED_HASH, hash) else prefs.setDefault(Constants.TEMP_HASH) } isRunning = false listener.onFetchFinished(context, success) } catch(t: TimeoutException) { //reset to search again prefs.setDefault(Constants.TEMP_HASH) isRunning = false listener.onFetchFinished(context, false)//update panel to hide loader } catch(e: Exception)//interrupted or cancelled { isRunning = false listener.onFetchFinished(context, false)//update panel to hide loader } } } fun fetchExistingLyrics(oldHash: String, hash: String, art: String, sourceArtistHash: String, title: String, sourceTitleHash: String, artistId: Long, musicId: Long) { if(jobMap.containsKey(oldHash)) { jobMap[oldHash]?.cancel(null) jobMap.remove(oldHash) } val prefs = SecurityPreferences(context) val approxLyric = prefs.get(Constants.LYRICS_APPROX) as Boolean //checks whether the old hash is in the queue, if true, cancel and remove and add the new hash if(hashMap.containsKey(oldHash)) { hashMap[oldHash]?.cancel(true) hashMap.remove(oldHash) val executor = Executors.newSingleThreadExecutor() hashMap[hash] = executor.submit(LyricTask(Constants.DEFAULT_VALUE_CAPTCHA, Constants.DEFAULT_VALUE_CAPTCHA, art, title, approxLyric)) executor.shutdown() } else { val executor = Executors.newSingleThreadExecutor() hashMap[hash] = executor.submit(LyricTask(Constants.DEFAULT_VALUE_CAPTCHA, Constants.DEFAULT_VALUE_CAPTCHA, art, title, approxLyric)) executor.shutdown() } jobMap[hash] = GlobalScope.launch(Dispatchers.IO) { delay(400) isRunning = true listener.onFetchStarted(context) try { val lyricsResult = hashMap[hash]?.get(1, TimeUnit.MINUTES) var success = false if(lyricsResult != null && lyricsResult.validSave) { //update artist on DB val artist = Artist() artist.id = artistId artist.hash = Base64.encodeToString(lyricsResult.artistName.encodeToByteArray(), Base64.DEFAULT) artist.sourceHash = sourceArtistHash artist.name = lyricsResult.artistName artist.url = lyricsResult.artistUrl val artistDAO = ArtistDAO(context) if(artistDAO.update(artist))//no errors on update { //update lyric on DB val music = Music() music.id = musicId music.hash = Base64.encodeToString(lyricsResult.musicName.encodeToByteArray(), Base64.DEFAULT) music.sourceHash = sourceTitleHash music.name = lyricsResult.musicName music.lyric = lyricsResult.lyric music.url = lyricsResult.lyricUrl music.translate = lyricsResult.lyricTranslate val musicDAO = MusicDAO(context) if(musicDAO.update(music))//no errors on update { success = true prefs.setDefault(Constants.TRANSLATE_TOGGLE) //update panel list Cocktail.updateList(context) } } } else if(lyricsResult != null && lyricsResult.hasCaptcha) { prefs.set(Constants.CAPTCHA_PENDING, true) prefs.set(Constants.CAPTCHA_VERIFICATION, lyricsResult.captchaUrl) prefs.set(Constants.CAPTCHA_SERIAL, lyricsResult.captchaSerial) prefs.set(Constants.CAPTCHA_TITLE_TARGET, art) prefs.set(Constants.CAPTCHA_NAME_TARGET, title) //update panel list Cocktail.updateList(context) } else { /* blocks the hash only if you have a network connection, it means that the request was made but the letter was not found, if the connection goes down during the request, the hash should not be blocked TEMP_HASH is reset so that it can be searched again */ if(NetworkUtil.isNetworkAvailable(context)) prefs.set(Constants.BLOCKED_HASH, hash) else prefs.setDefault(Constants.TEMP_HASH) } isRunning = false listener.onFetchFinished(context, success) } catch(t: TimeoutException) { //reset to search again prefs.setDefault(Constants.TEMP_HASH) isRunning = false listener.onFetchFinished(context, false)//update panel to hide loader } catch(e: Exception)//interrupted or cancelled { isRunning = false listener.onFetchFinished(context, false)//update panel to hide loader } } } fun fetchLyricsCaptcha(serial: String?, udig: String?, oldHash: String, hash: String, art: String, mus: String) { if(jobMap.containsKey(oldHash)) { jobMap[oldHash]?.cancel(null) jobMap.remove(oldHash) } val prefs = SecurityPreferences(context) val approxLyric = prefs.get(Constants.LYRICS_APPROX) as Boolean //checks whether the old hash is in the queue, if true, cancel and remove and add the new hash if(hashMap.containsKey(oldHash)) { hashMap[oldHash]?.cancel(true) hashMap.remove(oldHash) val executor = Executors.newSingleThreadExecutor() hashMap[hash] = executor.submit(LyricTask(serial, udig, art, mus, approxLyric)) executor.shutdown() } else { val executor = Executors.newSingleThreadExecutor() hashMap[hash] = executor.submit(LyricTask(serial, udig, art, mus, approxLyric)) executor.shutdown() } jobMap[hash] = GlobalScope.launch(Dispatchers.IO) { isRunning = true listener.onFetchStarted(context) try { val lyricsResult = hashMap[hash]?.get(40, TimeUnit.SECONDS) var success = false if(lyricsResult != null && lyricsResult.validSave) { success = true prefs.setDefault(Constants.TRANSLATE_TOGGLE) } else if(lyricsResult != null && lyricsResult.hasCaptcha) { prefs.set(Constants.CAPTCHA_PENDING, true) prefs.set(Constants.CAPTCHA_VERIFICATION, lyricsResult.captchaUrl) prefs.set(Constants.CAPTCHA_SERIAL, lyricsResult.captchaSerial) prefs.set(Constants.CAPTCHA_TITLE_TARGET, art) prefs.set(Constants.CAPTCHA_NAME_TARGET, mus) //update panel list Cocktail.updateList(context) } isRunning = false listener.onFetchFinished(context, success) } catch(e: Exception)//interrupted or cancelled or timeout { isRunning = false listener.onFetchFinished(context, false)//update panel to hide loader } } } }
40.971503
168
0.525261
9ed6b50551a991f95f73d0e4889db27f6c1c0bbf
3,950
sql
SQL
reports_manager/report_manager_database/action_functions/action_load_report_list_jstree.sql
james-cantrill/funda_components
23ce9cfbd7b70544544b8d9278c21e86fe31da45
[ "Apache-2.0" ]
null
null
null
reports_manager/report_manager_database/action_functions/action_load_report_list_jstree.sql
james-cantrill/funda_components
23ce9cfbd7b70544544b8d9278c21e86fe31da45
[ "Apache-2.0" ]
null
null
null
reports_manager/report_manager_database/action_functions/action_load_report_list_jstree.sql
james-cantrill/funda_components
23ce9cfbd7b70544544b8d9278c21e86fe31da45
[ "Apache-2.0" ]
null
null
null
-- The function report_manager_schema.action_load_report_list_jstree produces -- a list of all reports visible to a user in the json format used by the -- jQujery widget jsTree -- Alternative format of the node (id & parent are required) -- { -- id : "string" // required -- parent : "string" // required -- text : "string" // node text -- icon : "string" // string for custom -- state : { -- opened : boolean // is the node open -- disabled : boolean // is the node disabled -- selected : boolean // is the node selected -- }, -- li_attr : {} // attributes for the generated LI node -- a_attr : {} // attributes for the generated A node -- } -- Alternative format example -- $('#using_json_2').jstree({ 'core' : { -- 'data' : [ -- { "id" : "ajson1", "parent" : "#", "text" : "Simple root node" }, -- { "id" : "ajson2", "parent" : "#", "text" : "Root node 2" }, -- { "id" : "ajson3", "parent" : "ajson2", "text" : "Child 1" }, -- { "id" : "ajson4", "parent" : "ajson2", "text" : "Child 2" }, -- ] -- } }); -- _in_data: { -- login: -- } -- The json object returned by the function, _out_json, is defined below. -- _out_json: { -- result_indicator: -- message: -- data: [{ -- id: for folders reportfolders.folder_name for reports reports.report_id -- parent: for folders report_folders.parent_folder_name or "#" for root, for reports reports.containing_folder_name -- text: for folders reportfolders.folder_display_name for reports reports.report_name -- description -- for folders reportfolders.folder_description for reports reports.description -- }] -- }; CREATE OR REPLACE FUNCTION report_manager_schema.action_load_report_list_jstree (_in_data json) RETURNS json AS $$ DECLARE _integer_var integer; _out_json json; _message text; _requesting_login text; _input_authorized_json json; _output_authorized_json json; _authorized_result boolean; _data json[]; BEGIN DROP TABLE IF EXISTS allowed_reports_out_data; CREATE TEMPORARY TABLE allowed_reports_out_data ( node_type text, id text, parent text, text text, data json, icon text ); DROP TABLE IF EXISTS json_list_data; CREATE TEMPORARY TABLE json_list_data ( json_entry text ); -- Determine if the requesting user is authorized _requesting_login := (SELECT _in_data ->> 'login')::text; _input_authorized_json := (SELECT json_build_object( 'login', _requesting_login, 'service', 'report_manager', 'action', 'load_report_list' )); _output_authorized_json := (SELECT * FROM system_user_schema.util_is_user_authorized (_input_authorized_json)); _authorized_result := (SELECT _output_authorized_json ->> 'authorized')::boolean; IF _authorized_result THEN _integer_var := (SELECT * FROM report_manager_schema.pop_allowed_reports_out_data (_requesting_login)); INSERT INTO json_list_data ( json_entry ) SELECT row_to_json (reports_row) FROM ( SELECT id, CASE WHEN parent IS NULL THEN '#' ELSE parent END, text, data, CASE WHEN icon IS NULL AND node_type = 'Report' THEN 'jstree-file' ELSE icon END FROM allowed_reports_out_data ) reports_row ; _data := (SELECT ARRAY (SELECT json_entry FROM json_list_data )); _message := 'Here are the reports. ' ; _out_json := (SELECT json_build_object( 'result_indicator', 'Success', 'message', _message, 'data', _data )); ELSE -- user isn't authorized to enter or edit reports _message := 'The user ' || _requesting_login || ' IS NOT Authorized to load or view reports.'; _out_json := (SELECT json_build_object( 'result_indicator', 'Failure', 'message', _message, 'data', '' )); END IF; RETURN _out_json; END; $$ LANGUAGE plpgsql;
28.417266
123
0.647848
b923107afd7984700add963ad8ef464b3c9164ed
314
go
Go
fsnfs_shares_resp.go
xsky-storage/go-sdk
2f9373726b4130089ed67418dfce68df611101f2
[ "Net-SNMP" ]
null
null
null
fsnfs_shares_resp.go
xsky-storage/go-sdk
2f9373726b4130089ed67418dfce68df611101f2
[ "Net-SNMP" ]
null
null
null
fsnfs_shares_resp.go
xsky-storage/go-sdk
2f9373726b4130089ed67418dfce68df611101f2
[ "Net-SNMP" ]
null
null
null
/* * XMS API * * XMS is the controller of distributed storage system * * API version: SDS_4.2.000.0.200302 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ package xmsclient type FsnfsSharesResp struct { // share FsNfsShares []FsnfsShare `json:"fs_nfs_shares"` }
18.470588
85
0.719745
c582b54e436d5db27b5d201827c6cc3e98b2de95
1,605
cpp
C++
src/YSASA.cpp
yingyulou/YSASA
f117debf8f3e6f74ba00b7755d45e974648b668e
[ "MIT" ]
null
null
null
src/YSASA.cpp
yingyulou/YSASA
f117debf8f3e6f74ba00b7755d45e974648b668e
[ "MIT" ]
null
null
null
src/YSASA.cpp
yingyulou/YSASA
f117debf8f3e6f74ba00b7755d45e974648b668e
[ "MIT" ]
null
null
null
/* DESCRIPTION YSASA Yingyulou's SASA calculate tools. See README file for full description and examples. VERSION 1.0.0 LATEST UPDATE 2020.4.29 */ #include <string> #include <vector> #include <PDBToolsCpp/PDBTools> #include "ArgumentParser.hpp" #include "AtomBall.hpp" #include "Calculate.hpp" #include "Constants.hpp" #include "IO.hpp" #include "MathUtil.hpp" #include "PDBParser.hpp" //////////////////////////////////////////////////////////////////////////////// // Using //////////////////////////////////////////////////////////////////////////////// using namespace YSASA; using std::string; using std::vector; using PDBTools::Protein; //////////////////////////////////////////////////////////////////////////////// // Main Program Define //////////////////////////////////////////////////////////////////////////////// int main(int argc, char **argv) { string pdbFilePath, dotCountStr, outputFilePath, dotFilePath; double probeR; __inputArguments(argc, argv, pdbFilePath, probeR, dotCountStr, outputFilePath, dotFilePath); if (!outputFilePath.empty() || !dotFilePath.empty()) { vector<RowVector3d> unitBallCoord; vector<AtomBall> atomBallObjList; ParseXYZFile(dotCountStr, unitBallCoord); Protein *proPtr = LoadPDB(pdbFilePath, unitBallCoord, probeR, atomBallObjList); double SASA = CalcSASA(atomBallObjList); if (!outputFilePath.empty()) OutputResult(outputFilePath, SASA); if (!dotFilePath.empty()) DumpDotPDB(dotFilePath, atomBallObjList); delete proPtr; } }
23.955224
87
0.558255
b98b53f2be6941ee704456b6daafe252863542b5
1,971
h
C
PoseLab/PoseLab.h
vishwaphansal7/tf-cpp-pose-detect
aad54ee0234d94c1cf7e54252ec875e22cd2ad23
[ "MIT" ]
1
2021-05-03T15:06:54.000Z
2021-05-03T15:06:54.000Z
PoseLab/PoseLab.h
vishwaphansal7/tf-cpp-pose-detect
aad54ee0234d94c1cf7e54252ec875e22cd2ad23
[ "MIT" ]
null
null
null
PoseLab/PoseLab.h
vishwaphansal7/tf-cpp-pose-detect
aad54ee0234d94c1cf7e54252ec875e22cd2ad23
[ "MIT" ]
null
null
null
#pragma once #include <algorithm> #include <opencv2/opencv.hpp> #include <QFile> #include <QThread> #include <QButtonGroup> #include <QToolButton> #include <PoseEstimation/PoseEstimator.h> #include <PoseEstimation/StopWatch.h> #include <PoseEstimation/TensorMat.h> #include "OverlayPainter.h" #include "OverlayText.h" #include "OpenGlVideoSurface.h" #include "OpenGlVideoView.h" #include "VideoFrameProcessor.h" #include "AbstractVideoFrameSource.h" #include "ui_PoseLab.h" class PoseLab : public QMainWindow { Q_OBJECT public: PoseLab(QWidget* parent = Q_NULLPTR); virtual ~PoseLab(); QButtonGroup inferenceResolutionGroup; QButtonGroup inferenceUpscalenGroup; void show(); signals: void aboutToClose(); public slots: void cameraButtonPressed(); void movieButtonPressed(); void addSource(); void setGaussKernelSize(int newSize); protected: void closeEvent(QCloseEvent* event) override; protected: void show(const QString& path); void show(AbstractVideoFrameSource* videoFrameSource); AbstractVideoFrameSource* videoFrameSource; QThread mediaThread; QToolButton* newToolbarButton(QLayout * layout, QButtonGroup& group, const QString& text, const std::function<void()>& pressed); // TODO Split up into model-view to reduce class complexity // -> use slots & signals for data proapagation from inference/ui to overlay view std::unique_ptr<PoseEstimator> pose_estimator; TensorMat input; QThread inferenceThread; VideoFrameProcessor inference; int inferencePxResizeFactor; int inferenceUpscaleFactor; int inferenceConvolutionSizeValue; void px(int factor); void u(int factor); StopWatch fps; OverlayPainter overlay; OverlayText surfacePixels; OverlayText inferencePixels; OverlayText inferenceUpscale; OverlayText inferenceConvolutionSize; OverlayText inferenceDuration; OverlayText postProcessingDuration; OverlayText humanPartsGenerationDuration; OverlayText processingFPS; private: Ui::PoseLabClass ui; };
21.659341
129
0.795028
4dafa1c401e560a78365477c8f2444a371a2d106
34,221
html
HTML
docs/html/classScheduler.html
manuhalo/PLACeS
1574a34a2a98468e72d072cc9d1f2b32fcee38f2
[ "Apache-2.0" ]
null
null
null
docs/html/classScheduler.html
manuhalo/PLACeS
1574a34a2a98468e72d072cc9d1f2b32fcee38f2
[ "Apache-2.0" ]
1
2015-04-24T10:10:51.000Z
2015-06-18T08:32:16.000Z
docs/html/classScheduler.html
manuhalo/PLACeS
1574a34a2a98468e72d072cc9d1f2b32fcee38f2
[ "Apache-2.0" ]
null
null
null
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.6"/> <title>PLACeS: Scheduler Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">PLACeS </div> <div id="projectbrief">Peer-to-peer Locality Aware Content dElivery Simulator</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Friends</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pro-attribs">Protected Attributes</a> &#124; <a href="classScheduler-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">Scheduler Class Reference</div> </div> </div><!--header--> <div class="contents"> <p>The <a class="el" href="classScheduler.html" title="The Scheduler manages the event queue of the simulation; it is responsible for scheduling new events ...">Scheduler</a> manages the event queue of the simulation; it is responsible for scheduling new events (in the form of Flows), keeping them sorted by increasing ETAs, processing them one at a time and moving the clock forward whenever there are no more events at the current simulation time. <a href="classScheduler.html#details">More...</a></p> <p><code>#include &lt;<a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a8a761884d49cf15030e5cf15fd475947"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a8a761884d49cf15030e5cf15fd475947">Scheduler</a> (<a class="el" href="classTopologyOracle.html">TopologyOracle</a> *<a class="el" href="classScheduler.html#a8a32af7e25197930e97426ac85942865">oracle</a>, po::variables_map vm)</td></tr> <tr class="memdesc:a8a761884d49cf15030e5cf15fd475947"><td class="mdescLeft">&#160;</td><td class="mdescRight">Simple constructor. <a href="#a8a761884d49cf15030e5cf15fd475947">More...</a><br/></td></tr> <tr class="separator:a8a761884d49cf15030e5cf15fd475947"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7ae73ed66ce0f08738ccff0fbc83179d"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a7ae73ed66ce0f08738ccff0fbc83179d">advanceClock</a> ()</td></tr> <tr class="memdesc:a7ae73ed66ce0f08738ccff0fbc83179d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Processes the next event in the queue. <a href="#a7ae73ed66ce0f08738ccff0fbc83179d">More...</a><br/></td></tr> <tr class="separator:a7ae73ed66ce0f08738ccff0fbc83179d"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad562ef3d1a8456b7c4c1a8216b3456b3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#ad562ef3d1a8456b7c4c1a8216b3456b3">schedule</a> (<a class="el" href="classFlow.html">Flow</a> *event)</td></tr> <tr class="memdesc:ad562ef3d1a8456b7c4c1a8216b3456b3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a new <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a> event to the queue.It will be inserted in the right position based on its ETA, and its handle will be saved in the handleMap. <a href="#ad562ef3d1a8456b7c4c1a8216b3456b3">More...</a><br/></td></tr> <tr class="separator:ad562ef3d1a8456b7c4c1a8216b3456b3"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac40874ec42bea2ad128fe7bcb2342fdc"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#ac40874ec42bea2ad128fe7bcb2342fdc">updateSchedule</a> (<a class="el" href="classFlow.html">Flow</a> *flow, SimTime oldEta)</td></tr> <tr class="memdesc:ac40874ec42bea2ad128fe7bcb2342fdc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Updates the order of the event queue after one of the Flows has changed its ETA. <a href="#ac40874ec42bea2ad128fe7bcb2342fdc">More...</a><br/></td></tr> <tr class="separator:ac40874ec42bea2ad128fe7bcb2342fdc"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7c0fc8add6f7a7e8da416eeeee1fdb5a"><td class="memItemLeft" align="right" valign="top">SimTime&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a7c0fc8add6f7a7e8da416eeeee1fdb5a">getSimTime</a> () const </td></tr> <tr class="memdesc:a7c0fc8add6f7a7e8da416eeeee1fdb5a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieve the current simulation time. <a href="#a7c0fc8add6f7a7e8da416eeeee1fdb5a">More...</a><br/></td></tr> <tr class="separator:a7c0fc8add6f7a7e8da416eeeee1fdb5a"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a02bd39d36693c7eeb1a21a33caa32914"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a02bd39d36693c7eeb1a21a33caa32914"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>setSimTime</b> (SimTime time)</td></tr> <tr class="separator:a02bd39d36693c7eeb1a21a33caa32914"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a655ebdfda8a51a1ea7e2d5ec557aa58d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a655ebdfda8a51a1ea7e2d5ec557aa58d"></a> uint&#160;</td><td class="memItemRight" valign="bottom"><b>getCurrentRound</b> () const </td></tr> <tr class="separator:a655ebdfda8a51a1ea7e2d5ec557aa58d"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afa18433674a1108ddffce855a2e0c4bc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afa18433674a1108ddffce855a2e0c4bc"></a> SimTime&#160;</td><td class="memItemRight" valign="bottom"><b>getRoundDuration</b> () const </td></tr> <tr class="separator:afa18433674a1108ddffce855a2e0c4bc"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab6504771ef6ec6998a2d7ba81b477a43"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#ab6504771ef6ec6998a2d7ba81b477a43">startNewRound</a> ()</td></tr> <tr class="memdesc:ab6504771ef6ec6998a2d7ba81b477a43"><td class="mdescLeft">&#160;</td><td class="mdescRight">Performs a number of maintenance operations before starting a new simulation round. <a href="#ab6504771ef6ec6998a2d7ba81b477a43">More...</a><br/></td></tr> <tr class="separator:ab6504771ef6ec6998a2d7ba81b477a43"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-attribs"></a> Protected Attributes</h2></td></tr> <tr class="memitem:a7af39311d4cf5818110485e6490e5e65"><td class="memItemLeft" align="right" valign="top">SimMode&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a7af39311d4cf5818110485e6490e5e65">mode</a></td></tr> <tr class="memdesc:a7af39311d4cf5818110485e6490e5e65"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines the simulation mode, i.e., VoD or IPTV. <a href="#a7af39311d4cf5818110485e6490e5e65">More...</a><br/></td></tr> <tr class="separator:a7af39311d4cf5818110485e6490e5e65"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a30ee30bb729345802b566738a3cc6b25"><td class="memItemLeft" align="right" valign="top">SimTime&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a30ee30bb729345802b566738a3cc6b25">simTime</a></td></tr> <tr class="memdesc:a30ee30bb729345802b566738a3cc6b25"><td class="mdescLeft">&#160;</td><td class="mdescRight">The current time of this round of the simulation. <a href="#a30ee30bb729345802b566738a3cc6b25">More...</a><br/></td></tr> <tr class="separator:a30ee30bb729345802b566738a3cc6b25"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6440e78663f6c4c2822e5a4c233a39f3"><td class="memItemLeft" align="right" valign="top">FlowQueue&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a6440e78663f6c4c2822e5a4c233a39f3">pendingEvents</a></td></tr> <tr class="memdesc:a6440e78663f6c4c2822e5a4c233a39f3"><td class="mdescLeft">&#160;</td><td class="mdescRight">The event queue, where new Flows are sorted by increasing ETA. <a href="#a6440e78663f6c4c2822e5a4c233a39f3">More...</a><br/></td></tr> <tr class="separator:a6440e78663f6c4c2822e5a4c233a39f3"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8a32af7e25197930e97426ac85942865"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classTopologyOracle.html">TopologyOracle</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a8a32af7e25197930e97426ac85942865">oracle</a></td></tr> <tr class="memdesc:a8a32af7e25197930e97426ac85942865"><td class="mdescLeft">&#160;</td><td class="mdescRight">A pointer to the <a class="el" href="classTopologyOracle.html" title="Locality Oracle for the current Topology. ">TopologyOracle</a> for this simulation. <a href="#a8a32af7e25197930e97426ac85942865">More...</a><br/></td></tr> <tr class="separator:a8a32af7e25197930e97426ac85942865"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a16dd6b4095b36d03a6b574b7036c5b08"><td class="memItemLeft" align="right" valign="top">std::map&lt; <a class="el" href="classFlow.html">Flow</a> *, handleT &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a16dd6b4095b36d03a6b574b7036c5b08">handleMap</a></td></tr> <tr class="memdesc:a16dd6b4095b36d03a6b574b7036c5b08"><td class="mdescLeft">&#160;</td><td class="mdescRight">A map matchign Flows with their handles in the event queue. <a href="#a16dd6b4095b36d03a6b574b7036c5b08">More...</a><br/></td></tr> <tr class="separator:a16dd6b4095b36d03a6b574b7036c5b08"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a09b0dc1168efea5715fb9b006c54426e"><td class="memItemLeft" align="right" valign="top">SimTime&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a09b0dc1168efea5715fb9b006c54426e">roundDuration</a></td></tr> <tr class="memdesc:a09b0dc1168efea5715fb9b006c54426e"><td class="mdescLeft">&#160;</td><td class="mdescRight">The number of seconds that a simulation round should last in the current SimMode. <a href="#a09b0dc1168efea5715fb9b006c54426e">More...</a><br/></td></tr> <tr class="separator:a09b0dc1168efea5715fb9b006c54426e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a865b21366ddfec9013e09ce6706e7b3a"><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a865b21366ddfec9013e09ce6706e7b3a">currentRound</a></td></tr> <tr class="memdesc:a865b21366ddfec9013e09ce6706e7b3a"><td class="mdescLeft">&#160;</td><td class="mdescRight">The index of teh current round. <a href="#a865b21366ddfec9013e09ce6706e7b3a">More...</a><br/></td></tr> <tr class="separator:a865b21366ddfec9013e09ce6706e7b3a"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9724c1d4043288c3b8b87b2dce96ec9a"><td class="memItemLeft" align="right" valign="top">SimTime&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a9724c1d4043288c3b8b87b2dce96ec9a">snapshotFreq</a></td></tr> <tr class="memdesc:a9724c1d4043288c3b8b87b2dce96ec9a"><td class="mdescLeft">&#160;</td><td class="mdescRight">The frequency at which we should take graphml snapshots of the network, in seconds. <a href="#a9724c1d4043288c3b8b87b2dce96ec9a">More...</a><br/></td></tr> <tr class="separator:a9724c1d4043288c3b8b87b2dce96ec9a"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aeb2d9f8564160555af5e156ca7ca056e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classFlow.html">Flow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#aeb2d9f8564160555af5e156ca7ca056e">terminate</a></td></tr> <tr class="memdesc:aeb2d9f8564160555af5e156ca7ca056e"><td class="mdescLeft">&#160;</td><td class="mdescRight">A pointer to the termination <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a>, which indicates that the current round is finised. <a href="#aeb2d9f8564160555af5e156ca7ca056e">More...</a><br/></td></tr> <tr class="separator:aeb2d9f8564160555af5e156ca7ca056e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9be1548d5a948be9b51a27be902f42e8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classFlow.html">Flow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classScheduler.html#a9be1548d5a948be9b51a27be902f42e8">snapshot</a></td></tr> <tr class="memdesc:a9be1548d5a948be9b51a27be902f42e8"><td class="mdescLeft">&#160;</td><td class="mdescRight">a pointer to the snapshot <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a>, which indicates that a snapshot of the network should be exported to graphml. <a href="#a9be1548d5a948be9b51a27be902f42e8">More...</a><br/></td></tr> <tr class="separator:a9be1548d5a948be9b51a27be902f42e8"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>The <a class="el" href="classScheduler.html" title="The Scheduler manages the event queue of the simulation; it is responsible for scheduling new events ...">Scheduler</a> manages the event queue of the simulation; it is responsible for scheduling new events (in the form of Flows), keeping them sorted by increasing ETAs, processing them one at a time and moving the clock forward whenever there are no more events at the current simulation time. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00026">26</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="a8a761884d49cf15030e5cf15fd475947"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">Scheduler::Scheduler </td> <td>(</td> <td class="paramtype"><a class="el" href="classTopologyOracle.html">TopologyOracle</a> *&#160;</td> <td class="paramname"><em>oracle</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">po::variables_map&#160;</td> <td class="paramname"><em>vm</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Simple constructor. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">oracle</td><td>The <a class="el" href="classTopologyOracle.html" title="Locality Oracle for the current Topology. ">TopologyOracle</a> for the current simulation. </td></tr> <tr><td class="paramname">vm</td><td>The map of command line parameters specified by the user. Options for these parameters are specified in Places.cpp. </td></tr> </table> </dd> </dl> <p>Definition at line <a class="el" href="Scheduler_8cpp_source.html#l00021">21</a> of file <a class="el" href="Scheduler_8cpp_source.html">Scheduler.cpp</a>.</p> </div> </div> <h2 class="groupheader">Member Function Documentation</h2> <a class="anchor" id="a7ae73ed66ce0f08738ccff0fbc83179d"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">bool Scheduler::advanceClock </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Processes the next event in the queue. </p> <p>If the next event has an ETA greater than the current time, the latter is moved forward accordingly. </p> <dl class="section return"><dt>Returns</dt><dd>True if the event was processed normally, False if the termination event was encountered, meaning that we need to finish the current round. </dd></dl> <p>Definition at line <a class="el" href="Scheduler_8cpp_source.html#l00049">49</a> of file <a class="el" href="Scheduler_8cpp_source.html">Scheduler.cpp</a>.</p> </div> </div> <a class="anchor" id="a7c0fc8add6f7a7e8da416eeeee1fdb5a"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">SimTime Scheduler::getSimTime </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Retrieve the current simulation time. </p> <dl class="section return"><dt>Returns</dt><dd>The current simulation time. </dd></dl> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00070">70</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="ad562ef3d1a8456b7c4c1a8216b3456b3"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Scheduler::schedule </td> <td>(</td> <td class="paramtype"><a class="el" href="classFlow.html">Flow</a> *&#160;</td> <td class="paramname"><em>event</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Add a new <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a> event to the queue.It will be inserted in the right position based on its ETA, and its handle will be saved in the handleMap. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">event</td><td>The <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a> event to be added to the queue. </td></tr> </table> </dd> </dl> <p>Definition at line <a class="el" href="Scheduler_8cpp_source.html#l00011">11</a> of file <a class="el" href="Scheduler_8cpp_source.html">Scheduler.cpp</a>.</p> </div> </div> <a class="anchor" id="ab6504771ef6ec6998a2d7ba81b477a43"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Scheduler::startNewRound </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Performs a number of maintenance operations before starting a new simulation round. </p> <p>The events that are still in the queue (because their ETA was after the end of the previous round) are moved to a new ETA relative to the starting round. Events related to <a class="el" href="classContentElement.html" title="A ContentElement is a video from the multimedia catalog, e.g., a movie, TV show etc. ">ContentElement</a> that expired are deleted, and the related resources in the <a class="el" href="classTopology.html" title="A representation of the physical topology over which the data is transmitted. ">Topology</a> must be freed. New terminate and snapshot Flows are generated for the round about to start. </p> <p>Definition at line <a class="el" href="Scheduler_8cpp_source.html#l00204">204</a> of file <a class="el" href="Scheduler_8cpp_source.html">Scheduler.cpp</a>.</p> </div> </div> <a class="anchor" id="ac40874ec42bea2ad128fe7bcb2342fdc"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Scheduler::updateSchedule </td> <td>(</td> <td class="paramtype"><a class="el" href="classFlow.html">Flow</a> *&#160;</td> <td class="paramname"><em>flow</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">SimTime&#160;</td> <td class="paramname"><em>oldEta</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Updates the order of the event queue after one of the Flows has changed its ETA. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">flow</td><td>The <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a> event whose ETA has changed. </td></tr> <tr><td class="paramname">oldEta</td><td>The ETA of the event before the change. Required to understand whether the ETA has increased or decreased. </td></tr> </table> </dd> </dl> <p>Definition at line <a class="el" href="Scheduler_8cpp_source.html#l00188">188</a> of file <a class="el" href="Scheduler_8cpp_source.html">Scheduler.cpp</a>.</p> </div> </div> <h2 class="groupheader">Member Data Documentation</h2> <a class="anchor" id="a865b21366ddfec9013e09ce6706e7b3a"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">uint Scheduler::currentRound</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>The index of teh current round. </p> <p>The first round has index 0. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00034">34</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="a16dd6b4095b36d03a6b574b7036c5b08"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">std::map&lt;<a class="el" href="classFlow.html">Flow</a>*, handleT&gt; Scheduler::handleMap</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>A map matchign Flows with their handles in the event queue. </p> <p>It is required to update the ordering whenever the ETA for a <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a> changes. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00032">32</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="a7af39311d4cf5818110485e6490e5e65"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">SimMode Scheduler::mode</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Determines the simulation mode, i.e., VoD or IPTV. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00028">28</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="a8a32af7e25197930e97426ac85942865"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classTopologyOracle.html">TopologyOracle</a>* Scheduler::oracle</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>A pointer to the <a class="el" href="classTopologyOracle.html" title="Locality Oracle for the current Topology. ">TopologyOracle</a> for this simulation. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00031">31</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="a6440e78663f6c4c2822e5a4c233a39f3"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">FlowQueue Scheduler::pendingEvents</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>The event queue, where new Flows are sorted by increasing ETA. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00030">30</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="a09b0dc1168efea5715fb9b006c54426e"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">SimTime Scheduler::roundDuration</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>The number of seconds that a simulation round should last in the current SimMode. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00033">33</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="a30ee30bb729345802b566738a3cc6b25"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">SimTime Scheduler::simTime</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>The current time of this round of the simulation. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00029">29</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="a9be1548d5a948be9b51a27be902f42e8"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classFlow.html">Flow</a>* Scheduler::snapshot</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>a pointer to the snapshot <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a>, which indicates that a snapshot of the network should be exported to graphml. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00037">37</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="a9724c1d4043288c3b8b87b2dce96ec9a"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">SimTime Scheduler::snapshotFreq</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>The frequency at which we should take graphml snapshots of the network, in seconds. </p> <p>If 0, no snapshot will be taken. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00035">35</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <a class="anchor" id="aeb2d9f8564160555af5e156ca7ca056e"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classFlow.html">Flow</a>* Scheduler::terminate</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>A pointer to the termination <a class="el" href="classFlow.html" title="Describes one data flow, either between peers or from a cache to the user. ">Flow</a>, which indicates that the current round is finised. </p> <p>Definition at line <a class="el" href="Scheduler_8hpp_source.html#l00036">36</a> of file <a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a>.</p> </div> </div> <hr/>The documentation for this class was generated from the following files:<ul> <li>src/<a class="el" href="Scheduler_8hpp_source.html">Scheduler.hpp</a></li> <li>src/<a class="el" href="Scheduler_8cpp_source.html">Scheduler.cpp</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Thu Jul 16 2015 15:11:53 for PLACeS by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.6 </small></address> </body> </html>
57.514286
820
0.691038
0c8847174acdfd2671d2c0087618bdb2bd48ce9b
987
html
HTML
app/templates/_modules/snippets/email.html
pd-Shah/FlaskRecycle
54060aa5c0eacefc0874ea01cbe6545000b416e0
[ "MIT" ]
1
2022-03-18T19:25:55.000Z
2022-03-18T19:25:55.000Z
app/templates/_modules/snippets/email.html
pd-Shah/FlaskRecycle
54060aa5c0eacefc0874ea01cbe6545000b416e0
[ "MIT" ]
null
null
null
app/templates/_modules/snippets/email.html
pd-Shah/FlaskRecycle
54060aa5c0eacefc0874ea01cbe6545000b416e0
[ "MIT" ]
null
null
null
<form method="POST" action="/account/t/email/send"> {{ form.csrf_token }} <div class="field"> <label class="label">{{ form.toEmail.label }}</label> <div class="control"> {{ form.toEmail(class_="input", value=entry.data.email) }} </div> </div> <div class="field"> <label class="label">{{ form.subject.label }}</label> <div class="control"> {{ form.subject(class_="input") }} </div> </div> <div class="field"> <label class="label">{{ form.message.label }}</label> <div class="control"> {{ form.message(class_="textarea") }} </div> </div> <!-- RELATED --> {{ form.related(value=entry._id) }} <!-- RELATED --> <div class="field is-grouped"> <div class="control"> <button class="button is-link">{{ gettext("Submit") }}</button> </div> <div class="control"> <a href="#" class="button is-text" onClick="history.go(-1);return true;">{{ gettext("Cancel") }}</a> </div> </div> </form>
25.307692
106
0.564336
2dcaebc33734ab6b9535b896a47a17f630456533
3,881
html
HTML
HTML5Application/public_html/index.html
Rehzinhaster/fatec.github.io2
db0314a08342e92fefaddbed03e389be7de58c45
[ "MIT" ]
1
2017-09-21T23:46:43.000Z
2017-09-21T23:46:43.000Z
HTML5Application/public_html/index.html
Rehzinhaster/renata.github.io
db0314a08342e92fefaddbed03e389be7de58c45
[ "MIT" ]
null
null
null
HTML5Application/public_html/index.html
Rehzinhaster/renata.github.io
db0314a08342e92fefaddbed03e389be7de58c45
[ "MIT" ]
null
null
null
<!DOCTYPE HTML> <!-- Elemental by TEMPLATED templated.co @templatedco Released for free under the Creative Commons Attribution 3.0 license (templated.co/license) --> <html> <head> <title>fatec senai</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'> <!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]--> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <script src="js/skel.min.js"></script> <script src="js/skel-panels.min.js"></script> <script src="js/init.js"></script> <noscript> <link rel="stylesheet" href="css/skel-noscript.css" /> <link rel="stylesheet" href="css/style.css" /> <link rel="stylesheet" href="css/style-desktop.css" /> </noscript> </head> <body class="homepage"> <!-- Header --> <div id="header"> <div class="container"> <!-- Logo --> <div id="logo"> <h1><a href="#">Vida Melhor</a></h1> </div> </div> <div id="nav-wrapper" class="container"> <!-- Nav --> <nav id="nav"> <ul> <li class="active"><a href="index.html">Inicio</a></li> <li><a href="left-sidebar.html">Ética</a></li> <li><a href="right-sidebar.html">Responsabilidade Social</a></li> <li><a href="no-sidebar.html">Sustentabilidade</a></li> </ul> </nav> </div> <div class="container"> <div id="banner"><a href="#" class="image featured"><img src="images/pics11.jpg" alt=""></a></div> </div> </div> <!-- Header --> <!-- Main --> <div id="main"> <div class="container"> <section> <header> <h2>responsabilidade social.</h2> </header> <p>A responsabilidade social é um conceito amplo, relativo a empresas que além de manterem o seu negócio, se preocupam com o desenvolvimento social de todas as pessoas ou coisas envolvidas em sua cadeia de produção como comunidade, consumidores, meio ambiente, governo, etc. Esse conceito, disseminado a partir da década de 1990, no decorrer dos tempos tem sido distorcido em benefício de pequenos grupos para ganharem vantagem competitiva. Esse tema só começou a ser discutido na primeira década do século XX por Charles Eliot, John Clarck e Arthur Hakley, apesar de não ter evoluído, pois as ideias desses pensadores eram consideradas de caráter socialista.</p> <p> Foi nos Estados Unidos, em 1953 com o livro Social Responsabilities of the Businessman, escrito por Howard Bowen que o conceito começou a se expandir e já na década de 70 surgem instituições famosas dos EUA para aprofundar o estudo sobre o tema.</p> <p>Quando falamos de responsabilidade social, já associamos às empresas que ajudam instituições carentes com doações, desenvolvem projetos que ajudem as pessoas necessitadas. Mas o conceito é muito mais amplo do que isso. Não é somente doar materiais e recursos financeiros que uma pessoa estará exercendo a sua responsabilidade social. A empresa, antes de mais nada, deve de maneira ética e transparente, defender acima de tudo os valores e princípios da sociedade, além de criar estratégias e projetos responsáveis que atenda a todos os setores que está relacionada (público interno e externo).</p> </section> </div> </div> <!-- /Main --> <!-- Copyright --> <div id="copyright"> <div class="container"> Fatec Senai Turma ADS 298775: <a </a>) </div> </div> </body> </html>
44.609195
700
0.631796
f43b01a9f0463fc5ab55d1b8db1aef2caab3e8fe
905
go
Go
app/service/main/archive/service/service_test.go
78182648/blibli-go
7c717cc07073ff3397397fd3c01aa93234b142e3
[ "MIT" ]
22
2019-04-27T06:44:41.000Z
2022-02-04T16:54:14.000Z
app/service/main/archive/service/service_test.go
YouthAge/blibli-go
7c717cc07073ff3397397fd3c01aa93234b142e3
[ "MIT" ]
null
null
null
app/service/main/archive/service/service_test.go
YouthAge/blibli-go
7c717cc07073ff3397397fd3c01aa93234b142e3
[ "MIT" ]
34
2019-05-07T08:22:27.000Z
2022-03-25T08:14:56.000Z
package service import ( "context" "flag" "path/filepath" "testing" "go-common/app/service/main/archive/conf" . "github.com/smartystreets/goconvey/convey" ) var ( s *Service ) func init() { dir, _ := filepath.Abs("../cmd/archive-service-test.toml") flag.Set("conf", dir) conf.Init() s = New(conf.Conf) } func Test_AllTypes(t *testing.T) { Convey("AllTypes", t, func() { types := s.AllTypes(context.TODO()) So(types, ShouldNotBeNil) }) } func Test_CacheUpdate(t *testing.T) { Convey("CacheUpdate", t, func() { err := s.CacheUpdate(context.TODO(), 1, "update", 1) So(err, ShouldBeNil) }) } func Test_FieldCacheUpdate(t *testing.T) { Convey("FieldCacheUpdate", t, func() { err := s.FieldCacheUpdate(context.TODO(), 1, 1, 2) So(err, ShouldBeNil) }) } func Test_Ping(t *testing.T) { Convey("Ping", t, func() { err := s.Ping(context.TODO()) So(err, ShouldBeNil) }) }
17.403846
59
0.648619
9c0216bda1f1c883b9a8e285e01cee83c7b1ede3
2,385
js
JavaScript
src/Screens/ToDo.js
Augustin-Marmus/ToDoL
8deefa61c550eb796fd23d2c047ca5312912df65
[ "CC-BY-3.0", "Apache-2.0" ]
null
null
null
src/Screens/ToDo.js
Augustin-Marmus/ToDoL
8deefa61c550eb796fd23d2c047ca5312912df65
[ "CC-BY-3.0", "Apache-2.0" ]
null
null
null
src/Screens/ToDo.js
Augustin-Marmus/ToDoL
8deefa61c550eb796fd23d2c047ca5312912df65
[ "CC-BY-3.0", "Apache-2.0" ]
null
null
null
import React from 'react'; import { Text, View, TextInput, CheckBox, Button, } from 'react-native'; class ToDoScreen extends React.Component { static navigationOptions = { title: 'ToDo details', } constructor(props) { super(props); this.state = { name: '', complete: false, }; } componentDidMount() { const { navigation } = this.props; const model = navigation.getParam('model', {}); this.unsubscribeModel = model.onSnapshot( (result) => { this.setState(result.data()); }, // Avoid exception from this firestore // When item created TodoListItem is created before db insertion // And an PERMISSION_DENIED error pop for nothing // because the element we request does not exists () => { }, ); } componentWillUnmount() { this.unsubscribeModel(); } toggleCheck() { const { complete } = this.state; const { navigation } = this.props; const model = navigation.getParam('model', {}); model.update({ complete: !complete }); } save() { const { name } = this.state; const { navigation } = this.props; const model = navigation.getParam('model', {}); model.update({ name }); } render() { const { navigation } = this.props; const { name, complete } = this.state; return ( <View style={{ flex: 1, justifyContent: 'center', verticalAlign: 'center', padding: 20 }}> <Text style={{ fontSize: 27 }}> Edit </Text> <View style={{ flexDirection: 'row', paddingTop: 10 }}> <View style={{ flexDirection: 'column', justifyContent: 'center' }}> <Text> Completed : </Text> </View> <CheckBox onValueChange={() => this.toggleCheck()} value={complete} /> </View> <View style={{ paddingTop: 10 }}> <Text>Name :</Text> <TextInput placeholder="name" value={name} onChangeText={(newName) => { this.setState({ name: newName }); }} onSubmitEditing={() => { this.save(); navigation.goBack(); }} /> </View> <View /> <Button onPress={() => { this.save(); navigation.goBack(); }} title="Save" /> </View> ); } } export default ToDoScreen;
25.105263
96
0.540042
9c6fb79be9a8e78fa8b42e12f274aea179815e0f
1,949
js
JavaScript
element-from-absolute-point.js
kylewelsby/element-from-absolute-point
6a79a36a98bcf5772227de591d1bd891c27f35ba
[ "MIT" ]
4
2019-07-09T17:48:12.000Z
2021-07-05T04:16:46.000Z
element-from-absolute-point.js
kylewelsby/element-from-absolute-point
6a79a36a98bcf5772227de591d1bd891c27f35ba
[ "MIT" ]
1
2015-06-03T01:41:49.000Z
2015-06-05T16:40:11.000Z
element-from-absolute-point.js
kylewelsby/element-from-absolute-point
6a79a36a98bcf5772227de591d1bd891c27f35ba
[ "MIT" ]
null
null
null
/**! * @file Support for finding element using absolute X/Y coordinates * @version 0.0.4 * @copyright 2015 Kyle Welsby * @license MIT * @author Kyle Welsby <kyle@mekyle.com> */ (function() { 'use strict'; function closestFixed(elm) { if (window.getComputedStyle(elm).position === 'fixed') { return elm; } else { if (elm.parentElement && !/body|html/.test(elm.parentElement.tagName.toLowerCase())) { return closestFixed(elm.parentElement); } else { return null; } } } /** * @namespace document */ /** * @function * @memberof document * @name elementFromAbsolutePoint * @description * Returns the element from the document whose elementFromPoint method * being called which is the topmost element which lies under the given * point. * To get an element, specify the point via coordinates, in CSS pixels, * relative to the upper-left-most point in the window or frame containing * the document. * @example Syntax * var element = document.elementFromAbsolutePoint(x, y); * @param {number} x - the X coordinate * @param {number} y - the Y coordinate * @returns {Element} */ this.document.elementFromAbsolutePoint = function(x, y) { var elm, scrollX, scrollY, newX, newY; scrollX = window.pageXOffset; scrollY = window.pageYOffset; window.scrollTo(x, y); newX = x - window.pageXOffset; newY = y - window.pageYOffset; elm = this.elementFromPoint(newX, newY); if (closestFixed(elm)) { var newElm, display, fixedElm; fixedElm = closestFixed(elm); display = fixedElm.style.display; fixedElm.style.display = 'none'; newElm = this.elementFromPoint(newX, newY); if (!/body|html/.test(newElm.tagName.toLowerCase())) { elm = newElm; } fixedElm.style.display = display; } window.scrollTo(scrollX, scrollY); return elm; }; }).call(this);
29.530303
92
0.646485
b858055579fc154a2050445b5358ee7cd744ffdc
794
kt
Kotlin
app/src/main/java/igrek/forceawaken/persistence/ParcelableUtil.kt
igrek51/force-awakening-alarm
53777988a008e6dc44b27e2154e4c8024c8469e4
[ "MIT" ]
null
null
null
app/src/main/java/igrek/forceawaken/persistence/ParcelableUtil.kt
igrek51/force-awakening-alarm
53777988a008e6dc44b27e2154e4c8024c8469e4
[ "MIT" ]
1
2018-06-28T01:06:55.000Z
2018-06-28T01:06:55.000Z
app/src/main/java/igrek/forceawaken/persistence/ParcelableUtil.kt
igrek51/force-awekening-alarm
53777988a008e6dc44b27e2154e4c8024c8469e4
[ "MIT" ]
null
null
null
package igrek.forceawaken.persistence import android.os.Parcel import android.os.Parcelable object ParcelableUtil { fun marshall(parceable: Parcelable): ByteArray { val parcel = Parcel.obtain() parceable.writeToParcel(parcel, 0) val bytes = parcel.marshall() parcel.recycle() return bytes } fun unmarshall(bytes: ByteArray): Parcel { val parcel = Parcel.obtain() parcel.unmarshall(bytes, 0, bytes.size) parcel.setDataPosition(0) // This is extremely important! return parcel } fun <T> unmarshall(bytes: ByteArray, creator: Parcelable.Creator<T>): T { val parcel = unmarshall(bytes) val result = creator.createFromParcel(parcel) parcel.recycle() return result } }
28.357143
77
0.653652
bb0d44f4a7633429fc6dafbb315cbe15c1f18353
1,069
dart
Dart
lib/business_logic/blocs/converter/converter_event.dart
mwakicodes/Cryptoboard
53a2911eed1e55e873a98d4a8df752a29c64c8f5
[ "MIT" ]
16
2021-02-15T11:23:09.000Z
2022-01-29T09:05:09.000Z
lib/business_logic/blocs/converter/converter_event.dart
webclinic017/Cryptoboard
53a2911eed1e55e873a98d4a8df752a29c64c8f5
[ "MIT" ]
null
null
null
lib/business_logic/blocs/converter/converter_event.dart
webclinic017/Cryptoboard
53a2911eed1e55e873a98d4a8df752a29c64c8f5
[ "MIT" ]
3
2021-04-30T08:15:41.000Z
2021-11-16T20:04:43.000Z
part of 'converter_bloc.dart'; abstract class ConverterEvent extends Equatable { final int num; final String decimal; const ConverterEvent({this.num, this.decimal}); } class onChanged extends ConverterEvent { final int num; final TextEditingController priceTextContoller; onChanged({this.priceTextContoller, this.num}); @override List<Object> get props => [num, priceTextContoller]; } class LoadConverterInitial extends ConverterEvent { @override List<Object> get props => []; } class LoadConverter extends ConverterEvent { @override List<Object> get props => []; } // class TapTextFieldOne extends ConverterEvent { // @override // List<Object> get props => []; // } // // class TapTextFieldTwo extends ConverterEvent { // @override // List<Object> get props => []; // } // class EnterDecimal extends ConverterEvent { final String decimal; final TextEditingController priceTextContoller; EnterDecimal({this.priceTextContoller, this.decimal}); @override List<Object> get props => [decimal, priceTextContoller]; }
19.796296
58
0.724977
57819de615ea141d4f524c97c287182fa2ff1a4e
634
h
C
Example/YIMios/config/DKSKeyBoard/DKSTextView.h
funnybluecat/YIMios
c973c42819d808310ccad2b7127a24c0c7008247
[ "MIT" ]
1
2021-07-14T01:51:23.000Z
2021-07-14T01:51:23.000Z
Example/YIMios/config/DKSKeyBoard/DKSTextView.h
funnybluecat/YIMios
c973c42819d808310ccad2b7127a24c0c7008247
[ "MIT" ]
null
null
null
Example/YIMios/config/DKSKeyBoard/DKSTextView.h
funnybluecat/YIMios
c973c42819d808310ccad2b7127a24c0c7008247
[ "MIT" ]
null
null
null
// // DKSTextView.h // DKSChatKeyboard // // Created by aDu on 2017/9/6. // Copyright © 2017年 DuKaiShun. All rights reserved. // #import <UIKit/UIKit.h> typedef void(^TextHeightChangedBlock)(CGFloat textHeight); @interface DKSTextView : UITextView /** * textView最大行数 */ @property (nonatomic, assign) NSUInteger maxNumberOfLines; /** 文字大小 */ @property (nonatomic, strong) UIFont *textFont; /** * 文字高度改变block → 文字高度改变会自动调用 * block参数(text) → 文字内容 * block参数(textHeight) → 文字高度 */ @property (nonatomic, strong) TextHeightChangedBlock textChangedBlock; - (void)textValueDidChanged:(TextHeightChangedBlock)block; @end
18.647059
70
0.722397
98e0201f6f16c489c058e8cae902fbd2a004d90f
2,319
html
HTML
project/component/icon/navigation/pivot-table-chart.html
desech/material-design-project
c04a7cc3e46e9fbaed0275f43553f4eb3f9ee027
[ "MIT" ]
1
2021-12-23T21:06:36.000Z
2021-12-23T21:06:36.000Z
project/component/icon/navigation/pivot-table-chart.html
desech/material-design
c04a7cc3e46e9fbaed0275f43553f4eb3f9ee027
[ "MIT" ]
null
null
null
project/component/icon/navigation/pivot-table-chart.html
desech/material-design
c04a7cc3e46e9fbaed0275f43553f4eb3f9ee027
[ "MIT" ]
null
null
null
<svg class="e000icon" viewBox="0 0 24 24" data-ss-component="{&quot;variants&quot;:{&quot;type&quot;:{&quot;outlined&quot;:{&quot;e000icon&quot;:{&quot;inner&quot;:&quot;<path d=\&quot;M0,0h24v24H0V0z\&quot; fill=\&quot;none\&quot;/><path d=\&quot;M21,5c0-1.1-0.9-2-2-2h-9v5h11V5z M3,19c0,1.1,0.9,2,2,2h3V10H3V19z M3,5v3h5V3H5C3.9,3,3,3.9,3,5z M18,8.99L14,13 l1.41,1.41l1.59-1.6V15c0,1.1-0.9,2-2,2h-2.17l1.59-1.59L13,14l-4,4l4,4l1.41-1.41L12.83,19H15c2.21,0,4-1.79,4-4v-2.18l1.59,1.6 L22,13L18,8.99z\&quot;/>&quot;}},&quot;round&quot;:{&quot;e000icon&quot;:{&quot;inner&quot;:&quot;<path d=\&quot;M0,0h24v24H0V0z\&quot; fill=\&quot;none\&quot;/><path d=\&quot;M21,5c0-1.1-0.9-2-2-2h-9v5h11V5z\&quot;/><path d=\&quot;M3,19c0,1.1,0.9,2,2,2h3V10H3V19z\&quot;/><path d=\&quot;M3,5v3h5V3H5C3.9,3,3,3.9,3,5z\&quot;/><path d=\&quot;M17.65,9.35l-2.79,2.79C14.54,12.46,14.76,13,15.21,13H17v2c0,1.1-0.9,2-2,2h-2v-1.79c0-0.45-0.54-0.67-0.85-0.35 l-2.79,2.79c-0.2,0.2-0.2,0.51,0,0.71l2.79,2.79c0.31,0.31,0.85,0.09,0.85-0.35V19h2c2.21,0,4-1.79,4-4v-2h1.79 c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.79C18.16,9.16,17.84,9.16,17.65,9.35z\&quot;/>&quot;}},&quot;sharp&quot;:{&quot;e000icon&quot;:{&quot;inner&quot;:&quot;<path d=\&quot;M0,0h24v24H0V0z\&quot; fill=\&quot;none\&quot;/><rect height=\&quot;5\&quot; width=\&quot;11\&quot; x=\&quot;10\&quot; y=\&quot;3\&quot;/><rect height=\&quot;11\&quot; width=\&quot;5\&quot; x=\&quot;3\&quot; y=\&quot;10\&quot;/><rect height=\&quot;5\&quot; width=\&quot;5\&quot; x=\&quot;3\&quot; y=\&quot;3\&quot;/><polygon points=\&quot;18,9 14,13 17,13 17,17 13,17 13,14 9,18 13,22 13,19 19,19 19,13 22,13\&quot;/>&quot;}},&quot;two-tone&quot;:{&quot;e000icon&quot;:{&quot;inner&quot;:&quot;<path d=\&quot;M0,0h24v24H0V0z\&quot; fill=\&quot;none\&quot;/><path d=\&quot;M21,5c0-1.1-0.9-2-2-2h-9v5h11V5z\&quot;/><path d=\&quot;M3,19c0,1.1,0.9,2,2,2h3V10H3V19z\&quot;/><path d=\&quot;M3,5v3h5V3H5C3.9,3,3,3.9,3,5z\&quot;/><path d=\&quot;M18,9l-4,4h3v2c0,1.1-0.9,2-2,2h-2v-3l-4,4l4,4v-3h2c2.21,0,4-1.79,4-4v-2h3L18,9z\&quot;/>&quot;}}}}}"><path d="M0 0h24v24H0z" fill="none"/><path d="M10 8h11V5c0-1.1-.9-2-2-2h-9v5zM3 8h5V3H5c-1.1 0-2 .9-2 2v3zm2 13h3V10H3v9c0 1.1.9 2 2 2zm8 1l-4-4 4-4zm1-9l4-4 4 4z"/><path d="M14.58 19H13v-2h1.58c1.33 0 2.42-1.08 2.42-2.42V13h2v1.58c0 2.44-1.98 4.42-4.42 4.42z"/></svg>
2,319
2,319
0.660198
d037198b350c7d948dd2ceba5c3d34de36091ac3
462
css
CSS
css/gabon.css
EduardoNicacio/flags
d87392a5ea0864c89e1eb2e29a88ade088d3e89c
[ "MIT" ]
null
null
null
css/gabon.css
EduardoNicacio/flags
d87392a5ea0864c89e1eb2e29a88ade088d3e89c
[ "MIT" ]
null
null
null
css/gabon.css
EduardoNicacio/flags
d87392a5ea0864c89e1eb2e29a88ade088d3e89c
[ "MIT" ]
null
null
null
#gabon { background-image: -webkit-linear-gradient(#009e60 33.3333%,#fcd116 33.3333%,#fcd116 66%,#3a75c4 66%); background-image: -o-linear-gradient(#009e60 33.3333%,#fcd116 33.3333%,#fcd116 66%,#3a75c4 66%); background-image: -moz-linear-gradient(#009e60 33.3333%,#fcd116 33.3333%,#fcd116 66%,#3a75c4 66%); background-image: linear-gradient(#009e60 33.3333%,#fcd116 33.3333%,#fcd116 66%,#3a75c4 66%); width: 20em; height: 15em; }
51.333333
106
0.670996
81c1ff21ffd25bc6f301d660c1e8ae88ee114d9a
1,952
dart
Dart
lib/controllers/message_controller.dart
crowjambo/software_engineering_project
517b763817ad1d28238dd45ce48528a0a30897e5
[ "MIT" ]
1
2021-04-22T07:58:20.000Z
2021-04-22T07:58:20.000Z
lib/controllers/message_controller.dart
crowjambo/software_engineering_project
517b763817ad1d28238dd45ce48528a0a30897e5
[ "MIT" ]
21
2020-09-29T18:46:20.000Z
2020-10-31T21:05:49.000Z
lib/controllers/message_controller.dart
crowjambo/software_engineering_project
517b763817ad1d28238dd45ce48528a0a30897e5
[ "MIT" ]
1
2020-10-02T06:24:39.000Z
2020-10-02T06:24:39.000Z
import 'package:software_engineering_project/utility/globals.dart' as globals; import 'package:cloud_firestore/cloud_firestore.dart'; import '../models/message_model.dart'; import '../models/user_model.dart'; import '../utility/crypto.dart'; import '../utility/json_help.dart'; void saveMessageListToJson(User receiverData, List<Message> messagesFromJsonList, String messageFilePath) async { List<Map<String, dynamic>> messageList = List<Map<String, dynamic>>(); var jsonHelp = JsonHelper(); FirebaseFirestore.instance .collection("Users") .doc(globals.currentUser.uuID) .collection("messages") .doc("activeChats") .collection(receiverData.uuID) .orderBy("sentTime") .get() .then((firestoreMessages) { if (messagesFromJsonList != null) { messageList ?.addAll(messagesFromJsonList?.map((e) => e.toJson())?.toList()); } messageList?.addAll(firestoreMessages?.docs?.map((e) => e?.data())); var messageListJson = jsonHelp.returnJsonString(messageList); jsonHelp.writeJsonStringToFile(messageFilePath, messageListJson); //deleting all messages in firestore firestoreMessages?.docs?.forEach((element) { element?.reference?.delete(); }); }); } void sendMessage(String messageText, User receiverData, CollectionReference senderMessagesFS, CollectionReference receiverMessagesFS) async { if (messageText.isEmpty) return; print(receiverData.RSA_public_key); var encryptedText = encrypt(receiverData.RSA_public_key, messageText); var encryptedMessage = Message(globals.currentUser, receiverData.uuID, DateTime.now().millisecondsSinceEpoch.toString(), encryptedText); var message = Message(globals.currentUser, receiverData.uuID, DateTime.now().millisecondsSinceEpoch.toString(), messageText); //sending message to firestore senderMessagesFS?.add(message.toJson()); receiverMessagesFS?.add(encryptedMessage.toJson()); }
39.04
141
0.735656
ae621d366d60079d4ddef5c2524224e59448e078
435
rs
Rust
blinker06/src/gpio.rs
kjaleshire/raspberry-pi-rs
28b4cde6731b38f659d4bcb5a4f8fe6bce64afb3
[ "MIT" ]
null
null
null
blinker06/src/gpio.rs
kjaleshire/raspberry-pi-rs
28b4cde6731b38f659d4bcb5a4f8fe6bce64afb3
[ "MIT" ]
null
null
null
blinker06/src/gpio.rs
kjaleshire/raspberry-pi-rs
28b4cde6731b38f659d4bcb5a4f8fe6bce64afb3
[ "MIT" ]
null
null
null
use core::intrinsics::{volatile_store, volatile_load}; const GPIO_BASE: u32 = 0x3F00_0000; pub fn write_register(address: u32, value: u32) { assert!(address & GPIO_BASE == GPIO_BASE); unsafe { volatile_store::<u32>(address as *mut u32, value); } } pub fn read_register(address: u32) -> u32 { assert!(address & GPIO_BASE == GPIO_BASE); unsafe { volatile_load::<u32>(address as *mut u32) } }
21.75
58
0.648276
aabfaa8bf809ed0f6653d0b03b734b2cdc38d467
5,722
swift
Swift
IvyLifts/Workout/Workout/SessionCollectionCell.swift
maikeuu/IvyLifts
3985b3a2f3a11bc5935f13730193695ae29331e4
[ "MIT" ]
null
null
null
IvyLifts/Workout/Workout/SessionCollectionCell.swift
maikeuu/IvyLifts
3985b3a2f3a11bc5935f13730193695ae29331e4
[ "MIT" ]
null
null
null
IvyLifts/Workout/Workout/SessionCollectionCell.swift
maikeuu/IvyLifts
3985b3a2f3a11bc5935f13730193695ae29331e4
[ "MIT" ]
null
null
null
// // SessionCollectionCell.swift // IvyLifts // // Created by Mike Chu on 12/24/18. // Copyright © 2018 Mike Lin. All rights reserved. // import UIKit class SessionCollectionCell: UICollectionViewCell { var model: FitnessGoal? { didSet { guard let model = model else { return } self.exerciseLabel.text = model.exercise let goalString = "\(model.numSets) sets | \(model.numReps) reps | \(model.targetWeight) lbs" self.goalLabel.text = goalString if model.isAMRAP { isAMRAPLabel.isHidden = false } } } var entries: [Entry]? { didSet { guard let entries = entries else { return } if entriesCollection.isHidden { entriesCollection.isHidden = false } self.entriesCollection.reloadData() } } let exerciseLabel: UILabel = { let lb = UILabel() lb.text = "Squat" lb.textAlignment = .center return lb }() let goalLabel: UILabel = { let lb = UILabel() lb.textAlignment = .center return lb }() let isAMRAPLabel: UILabel = { let lb = UILabel() lb.text = "AMRAP" lb.textColor = UIColor.red lb.textAlignment = .center lb.isHidden = true return lb }() let entriesCollection: UICollectionView = { let flow = UICollectionViewFlowLayout() let collectionView = UICollectionView(frame: .zero, collectionViewLayout: flow) return collectionView }() override init(frame: CGRect) { super.init(frame: frame) backgroundColor = .white // layer.borderColor = UIColor.black.cgColor // layer.borderWidth = 1 layer.cornerRadius = 10 let detailsStackView = UIStackView(arrangedSubviews: [exerciseLabel, goalLabel, isAMRAPLabel]) detailsStackView.axis = .vertical detailsStackView.spacing = 4 detailsStackView.distribution = .fillEqually addSubview(detailsStackView) detailsStackView.pinTopAnchor(to: topAnchor, padding: 4) detailsStackView.pinHorizontalSides(left: leftAnchor, leftPadding: 4, right: rightAnchor, rightPadding: 4) addSubview(entriesCollection) entriesCollection.pinHorizontalSides(left: leftAnchor, leftPadding: 4, right: rightAnchor, rightPadding: 4) entriesCollection.pinBottomAnchor(to: bottomAnchor, padding: 8) entriesCollection.setHeight(constant: 80) entriesCollection.register(RecordedEntryCell.self, forCellWithReuseIdentifier: "cellID") entriesCollection.backgroundColor = .white entriesCollection.dataSource = self entriesCollection.delegate = self entriesCollection.isHidden = true } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } } extension SessionCollectionCell: UICollectionViewDataSource { func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return entries?.count ?? 0 } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cellID", for: indexPath) as! RecordedEntryCell cell.model = entries?[indexPath.row] cell.setNumber = indexPath.row + 1 return cell } } extension SessionCollectionCell: UICollectionViewDelegateFlowLayout { // Spacing between successive cells func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat { return 16 } // Size for cells func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { return CGSize(width: 80, height: collectionView.frame.height) } } class RecordedEntryCell: UICollectionViewCell { var model: Entry? { didSet { guard let model = model else { return } recordedEntryLabel.text = "\(model.repsRecorded) x \(model.weightRecorded) lbs" } } var setNumber: Int? { didSet { guard let setNumber = setNumber else { return } setNumberLabel.text = "Set \(setNumber)" } } let setNumberLabel = UILabel() let recordedEntryLabel = UILabel() override init(frame: CGRect) { super.init(frame: frame) backgroundColor = .white setNumberLabel.textAlignment = .center setNumberLabel.font = UIFont.systemFont(ofSize: 18) // setNumberLabel.backgroundColor = .green // recordedEntryLabel.backgroundColor = .blue recordedEntryLabel.textAlignment = .center recordedEntryLabel.numberOfLines = 0 recordedEntryLabel.font = UIFont.systemFont(ofSize: 14) let stackView = UIStackView(arrangedSubviews: [setNumberLabel, recordedEntryLabel]) stackView.axis = .vertical stackView.spacing = 0 stackView.distribution = .fillProportionally addSubview(stackView) stackView.pinVerticalSides(top: topAnchor, bottom: bottomAnchor) stackView.pinHorizontalSides(left: leftAnchor, right: rightAnchor) } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } }
33.658824
175
0.64453
24008143dd311649a452dfed0c83f9c6fe16bfff
473
dart
Dart
lib/src/services/seed_respository.dart
Nagadivyabikkina/mobile-test
e61b1d45fb7f2c48ecf5f20149cc5c04b5fd6a1b
[ "MIT" ]
null
null
null
lib/src/services/seed_respository.dart
Nagadivyabikkina/mobile-test
e61b1d45fb7f2c48ecf5f20149cc5c04b5fd6a1b
[ "MIT" ]
null
null
null
lib/src/services/seed_respository.dart
Nagadivyabikkina/mobile-test
e61b1d45fb7f2c48ecf5f20149cc5c04b5fd6a1b
[ "MIT" ]
1
2021-07-21T03:16:05.000Z
2021-07-21T03:16:05.000Z
import 'package:mobile_test/src/model/seed.dart'; import 'package:mobile_test/src/services/seed_api_provider.dart'; class SeedRepository { factory SeedRepository() { singleton ??= SeedRepository._internal(); return singleton; } SeedRepository._internal(); static SeedRepository singleton; Future<SeedResponse> fetchSeed({SeedApiProvider seedApiProvider}) { seedApiProvider ??= SeedApiProvider(); return seedApiProvider.getSeedResponse(); } }
26.277778
69
0.756871
f4b398228e2a7d0effe6b7b7eaa337d4c66b02f8
33,541
go
Go
pathing/hpf/entrance_test.go
downflux/pathing
f88b513c9589645b4ea5d10a81606a305e89fd9d
[ "MIT" ]
4
2021-01-29T06:16:57.000Z
2021-12-26T14:14:09.000Z
pathing/hpf/entrance_test.go
downflux/pathing
f88b513c9589645b4ea5d10a81606a305e89fd9d
[ "MIT" ]
6
2020-09-26T00:50:29.000Z
2020-09-30T19:13:51.000Z
pathing/hpf/entrance_test.go
downflux/pathing
f88b513c9589645b4ea5d10a81606a305e89fd9d
[ "MIT" ]
null
null
null
package entrance import ( "math" "testing" "github.com/downflux/game/map/utils" "github.com/downflux/game/pathing/hpf/cluster" "github.com/golang/protobuf/proto" "github.com/google/go-cmp/cmp" "google.golang.org/protobuf/testing/protocmp" gdpb "github.com/downflux/game/api/data_go_proto" mcpb "github.com/downflux/game/map/api/constants_go_proto" mdpb "github.com/downflux/game/map/api/data_go_proto" tile "github.com/downflux/game/map/map" pcpb "github.com/downflux/game/pathing/api/constants_go_proto" pdpb "github.com/downflux/game/pathing/api/data_go_proto" ) var ( /** * Y = 0 W W * X = 0 */ trivialClosedMap = &mdpb.TileMap{ Dimension: &gdpb.Coordinate{X: 2, Y: 1}, Tiles: []*mdpb.Tile{ {Coordinate: &gdpb.Coordinate{X: 0, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_BLOCKED}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_BLOCKED}, }, TerrainCosts: []*mdpb.TerrainCost{ {TerrainType: mcpb.TerrainType_TERRAIN_TYPE_BLOCKED, Cost: math.Inf(0)}, }, } /** * Y = 0 - - * X = 0 */ trivialOpenMap = &mdpb.TileMap{ Dimension: &gdpb.Coordinate{X: 2, Y: 1}, Tiles: []*mdpb.Tile{ {Coordinate: &gdpb.Coordinate{X: 0, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, }, } /** * Y = 0 - W * X = 0 */ trivialSemiOpenMap = &mdpb.TileMap{ Dimension: &gdpb.Coordinate{X: 2, Y: 1}, Tiles: []*mdpb.Tile{ {Coordinate: &gdpb.Coordinate{X: 0, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_BLOCKED}, }, TerrainCosts: []*mdpb.TerrainCost{ {TerrainType: mcpb.TerrainType_TERRAIN_TYPE_BLOCKED, Cost: math.Inf(0)}, }, } /** * - - * - - * - - * Y = 0 - - * X = 0 */ longVerticalOpenMap = &mdpb.TileMap{ Dimension: &gdpb.Coordinate{X: 2, Y: 4}, Tiles: []*mdpb.Tile{ {Coordinate: &gdpb.Coordinate{X: 0, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 0, Y: 1}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 0, Y: 2}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 0, Y: 3}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 1}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 2}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 3}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, }, } /** * - - - - * Y = 0 - - - - * X = 0 */ longHorizontalOpenMap = &mdpb.TileMap{ Dimension: &gdpb.Coordinate{X: 4, Y: 2}, Tiles: []*mdpb.Tile{ {Coordinate: &gdpb.Coordinate{X: 0, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 2, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 3, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 0, Y: 1}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 1}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 2, Y: 1}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 3, Y: 1}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, }, } /** * - - * W W * Y = 0 - - * X = 0 */ longSemiOpenMap = &mdpb.TileMap{ Dimension: &gdpb.Coordinate{X: 2, Y: 3}, Tiles: []*mdpb.Tile{ {Coordinate: &gdpb.Coordinate{X: 0, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 0, Y: 1}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_BLOCKED}, {Coordinate: &gdpb.Coordinate{X: 0, Y: 2}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 0}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 1}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_BLOCKED}, {Coordinate: &gdpb.Coordinate{X: 1, Y: 2}, TerrainType: mcpb.TerrainType_TERRAIN_TYPE_PLAINS}, }, TerrainCosts: []*mdpb.TerrainCost{ {TerrainType: mcpb.TerrainType_TERRAIN_TYPE_BLOCKED, Cost: math.Inf(0)}, }, } ) func TestBuildClusterEdgeCoordinateSliceError(t *testing.T) { testConfigs := []struct { name string m *pdpb.ClusterMap c utils.MapCoordinate d pcpb.Direction }{ { name: "NullClusterTest", m: &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 0, Y: 0}, TileMapDimension: &gdpb.Coordinate{X: 0, Y: 0}, }, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_NORTH, }, { name: "NullXDimensionClusterTest", m: &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 0, Y: 5}, TileMapDimension: &gdpb.Coordinate{X: 0, Y: 10}, }, c: utils.MapCoordinate{X: 0, Y: 1}, d: pcpb.Direction_DIRECTION_NORTH, }, { name: "NullYDimensionClusterTest", m: &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 5, Y: 0}, TileMapDimension: &gdpb.Coordinate{X: 10, Y: 0}, }, c: utils.MapCoordinate{X: 1, Y: 0}, d: pcpb.Direction_DIRECTION_NORTH, }, { name: "InvalidDirectionTest", m: &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 5, Y: 5}, TileMapDimension: &gdpb.Coordinate{X: 10, Y: 10}, }, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_UNKNOWN, }, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { m, err := cluster.ImportMap(c.m) if err != nil { t.Fatalf("ImportMap() = _, %v, want = _, nil", err) } if got, err := buildClusterEdgeCoordinateSlice(m, c.c, c.d); err == nil { t.Errorf("buildClusterEdgeCoordinateSlice() = %v, %v, want a non-nil error", got, err) } }) } } func TestBuildClusterEdgeCoordinateSlice(t *testing.T) { trivialClusterMap := &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 1, Y: 1}, TileMapDimension: &gdpb.Coordinate{X: 1, Y: 1}, } smallClusterMap := &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 2, Y: 2}, TileMapDimension: &gdpb.Coordinate{X: 2, Y: 2}, } embeddedClusterMap := &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 2, Y: 2}, TileMapDimension: &gdpb.Coordinate{X: 4, Y: 4}, } rectangularClusterMap := &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 1, Y: 2}, TileMapDimension: &gdpb.Coordinate{X: 2, Y: 4}, } testConfigs := []struct { name string m *pdpb.ClusterMap c utils.MapCoordinate d pcpb.Direction want coordinateSlice }{ {name: "TrivialClusterNorthTest", m: trivialClusterMap, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_NORTH, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}}, {name: "TrivialClusterSouthTest", m: trivialClusterMap, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_SOUTH, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}}, {name: "TrivialClusterEastTest", m: trivialClusterMap, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_EAST, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}}, {name: "TrivialClusterWestTest", m: trivialClusterMap, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_WEST, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}}, {name: "SmallClusterNorthTest", m: smallClusterMap, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_NORTH, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 1}, Length: 2}}, {name: "SmallClusterSouthTest", m: smallClusterMap, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_SOUTH, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 2}}, {name: "SmallClusterEastTest", m: smallClusterMap, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_EAST, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 2}}, {name: "SmallClusterWestTest", m: smallClusterMap, c: utils.MapCoordinate{X: 0, Y: 0}, d: pcpb.Direction_DIRECTION_WEST, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 2}}, {name: "EmbeddedClusterNorthTest", m: embeddedClusterMap, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_NORTH, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 2, Y: 3}, Length: 2}}, {name: "EmbeddedClusterSouthTest", m: embeddedClusterMap, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_SOUTH, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 2, Y: 2}, Length: 2}}, {name: "EmbeddedClusterEastTest", m: embeddedClusterMap, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_EAST, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 3, Y: 2}, Length: 2}}, {name: "EmbeddedClusterWestTest", m: embeddedClusterMap, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_WEST, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 2, Y: 2}, Length: 2}}, {name: "RectangularClusterNorthTest", m: rectangularClusterMap, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_NORTH, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 1, Y: 3}, Length: 1}}, {name: "RectangularClusterSouthTest", m: rectangularClusterMap, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_SOUTH, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 1, Y: 2}, Length: 1}}, {name: "RectangularClusterEastTest", m: rectangularClusterMap, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_EAST, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 2}, Length: 2}}, {name: "RectangularClusterWestTest", m: rectangularClusterMap, c: utils.MapCoordinate{X: 1, Y: 1}, d: pcpb.Direction_DIRECTION_WEST, want: coordinateSlice{ Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 2}, Length: 2}}, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { m, err := cluster.ImportMap(c.m) if err != nil { t.Fatalf("ImportMap() = _, %v, want = _, nil", err) } if got, err := buildClusterEdgeCoordinateSlice(m, c.c, c.d); err != nil || !cmp.Equal(got, c.want, protocmp.Transform()) { t.Errorf("buildClusterEdgeCoordinateSlice() = %v, %v, want = %v, nil", got, err, c.want) } }) } } func TestBuildCoordinateWithCoordinateSlice(t *testing.T) { testConfigs := []struct { name string s coordinateSlice offset int32 want *gdpb.Coordinate }{ { name: "SingleTileSliceHorizontal", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, offset: 0, want: &gdpb.Coordinate{X: 0, Y: 0}, }, { name: "SingleTileSliceVertical", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, offset: 0, want: &gdpb.Coordinate{X: 0, Y: 0}, }, { name: "MultiTileTileSliceHorizontal", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 1, Y: 1}, Length: 2}, offset: 1, want: &gdpb.Coordinate{X: 2, Y: 1}, }, { name: "MultiTileTileSliceVertical", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 1}, Length: 2}, offset: 1, want: &gdpb.Coordinate{X: 1, Y: 2}, }, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { if got, err := buildCoordinateWithCoordinateSlice(c.s, c.offset); err != nil || !proto.Equal(got, c.want) { t.Errorf("buildCoordinateWithCoordinateSlice() = %v, %v, want = %v, nil", got, err, c.want) } }) } } func TestBuildCoordinateWithCoordinateSliceError(t *testing.T) { testConfigs := []struct { name string s coordinateSlice offset int32 }{ {name: "NullTileSlice", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 0}, offset: 0}, {name: "OutOfBoundsTileSliceBefore", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, offset: -1}, {name: "OutOfBoundsTileSliceAfter", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, offset: 2}, {name: "InvalidOrientationTileSlice", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_UNKNOWN, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, offset: 0}, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { if _, err := buildCoordinateWithCoordinateSlice(c.s, c.offset); err == nil { t.Error("buildCoordinateWithCoordinateSlice() = nil, want a non-nil error") } }) } } func TestBuildTransitionsFromOpenCoordinateSlice(t *testing.T) { testConfigs := []struct { name string s1, s2 coordinateSlice want []Transition }{ { name: "SingleWidthEntranceHorizontal", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 1}, Length: 1}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 1}}, }, }, }, { name: "SingleWidthEntranceVertical", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 1}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, }, }, }, { name: "DoubleWidthEntranceHorizontal", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 2}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 1}, Length: 2}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 1}}, }, }, }, { name: "DoubleWidthEntranceVertical", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 2}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 2}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 1}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 1}}, }, }, }, { name: "TripleWidthEntranceHorizontal", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 3}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 1}, Length: 3}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 1}}, }, }, }, { name: "TripleWidthEntranceVertical", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 3}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 3}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 1}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 1}}, }, }, }, { name: "QuadrupleWidthEntranceHorizontal", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 4}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 1}, Length: 4}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 1}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 3, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 3, Y: 1}}, }, }, }, { name: "QuadrupleWidthEntranceVertical", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 4}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 4}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 3}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 3}}, }, }, }, { name: "QuadrupleWidthEmbeddedEntranceHorizontal", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 1, Y: 1}, Length: 4}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 1, Y: 2}, Length: 4}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 1}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 2}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 4, Y: 1}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 4, Y: 2}}, }, }, }, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { if got, err := buildTransitionsFromOpenCoordinateSlice(c.s1, c.s2); err != nil || !cmp.Equal(got, c.want, protocmp.Transform()) { t.Errorf("buildTransitionsFromOpenCoordinateSlice() = %v, %v, want = %v, nil", got, err, c.want) } }) } } func TestVerifyCoordinateSlicesError(t *testing.T) { testConfigs := []struct { name string s1, s2 coordinateSlice }{ { name: "MismatchedLengths", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 1}, Length: 2}, }, { name: "MismatchedOrientations", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, }, { name: "NonAdjacentHorizontalSlice", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 2}, Length: 1}, }, { name: "NonAdjacentVerticalSlice", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 2, Y: 0}, Length: 1}, }, { name: "NonAlignedHorizontalSlice", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 2}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 1, Y: 1}, Length: 2}, }, { name: "NonAlignedVerticalSlice", s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 2}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 1}, Length: 2}, }, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { if err := verifyCoordinateSlices(c.s1, c.s2); err == nil { t.Error("verifyCoordinateSlices() = nil, want a non-nil error") } }) } } func TestBuildTransitionsError(t *testing.T) { trivialOpenClusterMap := &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 1, Y: 1}, TileMapDimension: trivialOpenMap.GetDimension(), } longVerticalOpenClusterMap := &pdpb.ClusterMap{ TileDimension: &gdpb.Coordinate{X: 2, Y: 1}, TileMapDimension: longVerticalOpenMap.GetDimension(), } testConfigs := []struct { name string m *mdpb.TileMap cm *pdpb.ClusterMap c1, c2 utils.MapCoordinate }{ {name: "NullCluster", m: trivialOpenMap, cm: nil, c1: utils.MapCoordinate{}, c2: utils.MapCoordinate{}}, {name: "NullMap", m: nil, cm: trivialOpenClusterMap, c1: utils.MapCoordinate{X: 0, Y: 0}, c2: utils.MapCoordinate{X: 1, Y: 0}}, {name: "NonAdjacentClusters", m: longVerticalOpenMap, cm: longVerticalOpenClusterMap, c1: utils.MapCoordinate{X: 0, Y: 0}, c2: utils.MapCoordinate{X: 1, Y: 1}}, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { m, err := tile.ImportMap(c.m) if err != nil { t.Fatalf("ImportMap() = _, %v, want = _, nil") } cm, err := cluster.ImportMap(c.cm) if err != nil { t.Fatalf("ImportMap() = _, %v, want = _, nil") } if got, err := BuildTransitions(m, cm, c.c1, c.c2); err == nil { t.Errorf("BuildTransitions() = %v, %v, want a non-nil error", got, err) } }) } } func TestBuildTransitionsAux(t *testing.T) { testConfigs := []struct { name string m *mdpb.TileMap s1, s2 coordinateSlice want []Transition }{ {name: "TrivialClosedMap", m: trivialClosedMap, s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 1}, want: nil, }, {name: "TrivialSemiOpenMap", m: trivialSemiOpenMap, s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 1}, want: nil, }, {name: "TrivialOpenMap", m: trivialOpenMap, s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 1}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, }, }, }, {name: "LongVerticalOpenMap", m: longVerticalOpenMap, s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 4}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 4}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 3}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 3}}, }, }, }, {name: "LongHorizontalOpenMap", m: longHorizontalOpenMap, s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 4}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 1}, Length: 4}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 1}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 3, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 3, Y: 1}}, }, }, }, {name: "LongSemiOpenMap", m: longSemiOpenMap, s1: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 3}, s2: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 1, Y: 0}, Length: 3}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 2}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 2}}, }, }, }, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { tileMap, err := tile.ImportMap(c.m) if err != nil { t.Fatalf("ImportMap() = _, %v, want = _, nil", err) } if got, err := buildTransitionsAux(tileMap, c.s1, c.s2); err != nil || !cmp.Equal(got, c.want, protocmp.Transform()) { t.Errorf("buildTransitionsAux() = %v, %v, want = %v, nil", got, err, c.want) } }) } } func TestBuildTransitions(t *testing.T) { trivialClusterMap := &pdpb.ClusterMap{TileDimension: &gdpb.Coordinate{X: 1, Y: 1}, TileMapDimension: trivialClosedMap.GetDimension()} longVerticalClusterMap := &pdpb.ClusterMap{TileDimension: &gdpb.Coordinate{X: 1, Y: 4}, TileMapDimension: longVerticalOpenMap.GetDimension()} longHorizontalClusterMap := &pdpb.ClusterMap{TileDimension: &gdpb.Coordinate{X: 4, Y: 1}, TileMapDimension: longHorizontalOpenMap.GetDimension()} longSemiOpenClusterMap := &pdpb.ClusterMap{TileDimension: &gdpb.Coordinate{X: 1, Y: 3}, TileMapDimension: longSemiOpenMap.GetDimension()} testConfigs := []struct { name string m *mdpb.TileMap cm *pdpb.ClusterMap c1, c2 *gdpb.Coordinate want []Transition }{ {name: "TrivialClosedMap", m: trivialClosedMap, cm: trivialClusterMap, c1: &gdpb.Coordinate{X: 0, Y: 0}, c2: &gdpb.Coordinate{X: 1, Y: 0}, want: nil}, {name: "TrivialSemiOpenMap", m: trivialSemiOpenMap, cm: trivialClusterMap, c1: &gdpb.Coordinate{X: 0, Y: 0}, c2: &gdpb.Coordinate{X: 1, Y: 0}, want: nil}, {name: "TrivialOpenMap", m: trivialOpenMap, cm: trivialClusterMap, c1: &gdpb.Coordinate{X: 0, Y: 0}, c2: &gdpb.Coordinate{X: 1, Y: 0}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, }, }, }, {name: "LongVerticalOpenMap", m: longVerticalOpenMap, cm: longVerticalClusterMap, c1: &gdpb.Coordinate{X: 0, Y: 0}, c2: &gdpb.Coordinate{X: 1, Y: 0}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 3}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 3}}, }, }, }, {name: "LongHorizontalOpenMap", m: longHorizontalOpenMap, cm: longHorizontalClusterMap, c1: &gdpb.Coordinate{X: 0, Y: 0}, c2: &gdpb.Coordinate{X: 0, Y: 1}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 1}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 3, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 3, Y: 1}}, }, }, }, {name: "LongSemiOpenMap", m: longSemiOpenMap, cm: longSemiOpenClusterMap, c1: &gdpb.Coordinate{X: 0, Y: 0}, c2: &gdpb.Coordinate{X: 1, Y: 0}, want: []Transition{ { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 0}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 0}}, }, { N1: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 0, Y: 2}}, N2: &pdpb.AbstractNode{TileCoordinate: &gdpb.Coordinate{X: 1, Y: 2}}, }, }, }, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { m, err := tile.ImportMap(c.m) if err != nil { t.Fatalf("ImportMap() = _, %v, want = _, nil", err) } cm, err := cluster.ImportMap(c.cm) if err != nil { t.Fatalf("ImportMap() = _, %v, want = _, nil", err) } if got, err := BuildTransitions(m, cm, utils.MC(c.c1), utils.MC(c.c2)); err != nil || !cmp.Equal(got, c.want, protocmp.Transform()) { t.Errorf("BuildTransitions() = %v, %v, want = %v, nil", got, err, c.want) } }) } } func TestSliceContainsError(t *testing.T) { s := coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_UNKNOWN, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1} if _, err := sliceContains(s, utils.MC(&gdpb.Coordinate{X: 0, Y: 0})); err == nil { t.Error("sliceContains() = _, nil, want a non-nil error") } } func TestSliceContains(t *testing.T) { testConfigs := []struct { name string s coordinateSlice c *gdpb.Coordinate want bool }{ { name: "TrivialSliceContains", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, c: &gdpb.Coordinate{X: 0, Y: 0}, want: true, }, { name: "TrivialPreSliceNoContains", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, c: &gdpb.Coordinate{X: -1, Y: 0}, want: false, }, { name: "TrivialPostSliceNoContains", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, c: &gdpb.Coordinate{X: 1, Y: 0}, want: false, }, { name: "TrivialBadAxisSliceNoContains", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 1}, c: &gdpb.Coordinate{X: 0, Y: -1}, want: false, }, { name: "SimpleSliceContainsHorizontal", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_HORIZONTAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 2}, c: &gdpb.Coordinate{X: 1, Y: 0}, want: true, }, { name: "SimpleSliceContainsVertical", s: coordinateSlice{Orientation: pcpb.Orientation_ORIENTATION_VERTICAL, Start: &gdpb.Coordinate{X: 0, Y: 0}, Length: 2}, c: &gdpb.Coordinate{X: 0, Y: 1}, want: true, }, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { if res, err := sliceContains(c.s, utils.MC(c.c)); err != nil || res != c.want { t.Errorf("sliceContains() = %v, %v, want = %v, nil", res, err, c.want) } }) } } func TestOnClusterEdge(t *testing.T) { testConfigs := []struct { name string m *pdpb.ClusterMap c *gdpb.Coordinate t *gdpb.Coordinate want bool }{ { name: "TrivialClusterContains", m: &pdpb.ClusterMap{TileDimension: &gdpb.Coordinate{X: 1, Y: 1}, TileMapDimension: &gdpb.Coordinate{X: 1, Y: 1}}, c: &gdpb.Coordinate{X: 0, Y: 0}, t: &gdpb.Coordinate{X: 0, Y: 0}, want: true, }, { name: "TrivialClusterNoContains", m: &pdpb.ClusterMap{TileDimension: &gdpb.Coordinate{X: 1, Y: 1}, TileMapDimension: &gdpb.Coordinate{X: 2, Y: 2}}, c: &gdpb.Coordinate{X: 0, Y: 0}, t: &gdpb.Coordinate{X: 0, Y: 1}, want: false, }, { name: "ClusterInternalNoContains", m: &pdpb.ClusterMap{TileDimension: &gdpb.Coordinate{X: 3, Y: 3}, TileMapDimension: &gdpb.Coordinate{X: 3, Y: 3}}, c: &gdpb.Coordinate{X: 0, Y: 0}, t: &gdpb.Coordinate{X: 1, Y: 1}, want: false, }, } for _, c := range testConfigs { t.Run(c.name, func(t *testing.T) { m, err := cluster.ImportMap(c.m) if err != nil { t.Fatalf("ImportMap() = _, %v, want = _, nil", err) } if got := OnClusterEdge(m, utils.MC(c.c), utils.MC(c.t)); got != c.want { t.Errorf("OnClusterEdge() = %v, want = %v", got, c.want) } }) } }
42.031328
173
0.675919
fbf85384f8023922052e9c0961b4b59ee70f41b4
208
asm
Assembly
src/test/resources/data/generationtests/sjasm-macro3.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
36
2020-06-29T06:52:26.000Z
2022-02-10T19:41:58.000Z
src/test/resources/data/generationtests/sjasm-macro3.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
39
2020-07-02T18:19:34.000Z
2022-03-27T18:08:54.000Z
src/test/resources/data/generationtests/sjasm-macro3.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
7
2020-07-02T06:00:05.000Z
2021-11-28T17:31:13.000Z
; Test case: macro mymacro 1..* repeat @0 ld a,high @1 ld (var),a or a jr nz,1f ld a,low @1 ld (var),a 1: rotate 1 endrepeat endmacro mymacro #0102, #0304, #0506 loop: jr loop var: db 0
9.454545
28
0.596154
c4a9526232d4bf19aa59327ec1c1623fa0a932d2
189,511
h
C
freertos_examples/2-1.led_sample/BSP/Hardware/LCD/os_logo.h
QinYUN575/FreeRTOS_STM32L4
37f927b2c52ef12a22406f6ff8c971846238b5e4
[ "MIT" ]
null
null
null
freertos_examples/2-1.led_sample/BSP/Hardware/LCD/os_logo.h
QinYUN575/FreeRTOS_STM32L4
37f927b2c52ef12a22406f6ff8c971846238b5e4
[ "MIT" ]
null
null
null
freertos_examples/2-1.led_sample/BSP/Hardware/LCD/os_logo.h
QinYUN575/FreeRTOS_STM32L4
37f927b2c52ef12a22406f6ff8c971846238b5e4
[ "MIT" ]
1
2020-08-10T00:44:39.000Z
2020-08-10T00:44:39.000Z
const unsigned char os_logo[36960] = { /* 0X10,0X10,0X00,0XDC,0X00,0X54,0X01,0X1B, */ 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XE7,0XFD,0XC7,0XF9,0X97,0XF3, 0X6F,0X8E,0X47,0X0A,0X3E,0XE8,0X3E,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X3E,0XE8,0X3E,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE7,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X3E,0XE8,0X3E,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X3E,0XE8,0X3E,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X3E,0XE8,0X3E,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X3E,0XE8,0X3E,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X3E,0XE8,0X3E,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8,0X36,0XE8, 0X3E,0XE8,0X3E,0XE8,0X4F,0X0A,0X6F,0X8E,0X9F,0XF3,0XCF,0XF9,0XEF,0XFD,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XF7,0XFE, 0XDF,0XFB,0X9F,0X34,0X5E,0X2C,0X46,0X09,0X36,0X27,0X2E,0X66,0X2E,0X86,0X2E,0X86, 0X2E,0X86,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0X86,0X2E,0X86,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0X86, 0X2E,0X86,0X2E,0X86,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0X86,0X2E,0X86,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0X86,0X2E,0X86,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0X86,0X2E,0X86,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0X86,0X2E,0X86,0X2E,0X86,0X2E,0X86,0X2E,0X67,0X36,0X27, 0X46,0X09,0X66,0X2C,0XA7,0X55,0XE7,0XFC,0XF7,0XFE,0XF7,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XC7,0XF8,0X66,0X8D,0X36,0X08,0X36,0X47,0X36,0X87, 0X2E,0XA7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0X87,0X36,0X87,0X36,0X47,0X3E,0X08,0X6E,0XAE, 0XCF,0XF9,0XEF,0XFD,0XF7,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XBF,0XF8,0X5E,0X0B, 0X36,0X27,0X2E,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X2E,0XA6,0X2E,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XC6, 0X2E,0XA6,0X26,0XC6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6, 0X26,0XC6,0X26,0XA6,0X2E,0XA6,0X36,0X27,0X5E,0X2C,0XC7,0XF8,0XF7,0XFE,0XFF,0XFF, 0XEF,0XFE,0XCF,0XFA,0X5E,0X4B,0X36,0X47,0X2E,0X87,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6, 0X26,0XC6,0X26,0XC6,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0X87, 0X36,0X27,0X5E,0X6C,0XD7,0XFA,0XF7,0XFE,0XDF,0XFC,0X86,0XB0,0X36,0X27,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X36,0X67,0X36,0X47,0X36,0X27,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X27,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07, 0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X07,0X36,0X27,0X36,0X47,0X36,0X67, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X36,0X27,0X8E,0XD1,0XE7,0XFC, 0XA7,0XF5,0X45,0XE9,0X36,0X67,0X26,0XA6,0X26,0XA6,0X2E,0XA6,0X2E,0XA6,0X36,0X47, 0X4E,0X2A,0X76,0XAF,0X97,0X53,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X54,0XA7,0X54,0XA7,0X54,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X54,0XA7,0X54,0XA7,0X54,0XA7,0X54, 0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X55, 0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X54,0XA7,0X54,0XA7,0X54,0XA7,0X54,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X54,0XA7,0X54,0XA7,0X54,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X54,0XA7,0X54, 0XA7,0X54,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54,0XA7,0X55,0XA7,0X54, 0XA7,0X54,0X97,0X53,0X76,0XAF,0X4E,0X2A,0X36,0X67,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X36,0X67,0X4E,0X0A,0XAF,0XF6,0X6F,0X8E,0X36,0X27,0X2E,0X86,0X26,0XC6, 0X26,0XA6,0X2E,0XA6,0X36,0X47,0X56,0X8B,0XB7,0XF7,0XDF,0XFC,0XEF,0XFD,0XEF,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFD,0XF7,0XFD,0XF7,0XFE,0XEF,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XEF,0XFE,0XEF,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XEF,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFD,0XF7,0XFD,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE,0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XF7,0XFE, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XE7,0XFD,0XDF,0XFC,0XAF,0XF6, 0X56,0X8B,0X36,0X47,0X2E,0XA6,0X26,0XA6,0X2E,0XA6,0X2E,0X87,0X36,0X28,0X77,0XAF, 0X46,0XE9,0X2E,0X66,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X67,0X5E,0X4C,0XC7,0XF9, 0XEF,0XFD,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XF7,0XFE,0XE7,0XFD,0XBF,0XF8,0X56,0X2B,0X36,0X67,0X26,0XA6, 0X26,0XA6,0X2E,0XA6,0X2E,0X47,0X4F,0X0A,0X2E,0XA7,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X27,0X8F,0X32,0XE7,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XE7,0XFC,0X87,0X11,0X36,0X27,0X26,0XC6,0X26,0XA6,0X2E,0XA6,0X2E,0X86,0X36,0XE8, 0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X27,0XA7,0X75,0XEF,0XFD, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0X9F,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XC6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XFF,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XFF,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XA6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XF7,0XFD,0XEF,0XFD,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XEF,0XFC,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XE7,0XFD,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XEF,0XFD,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XEF,0XFC,0XEF,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC, 0XE7,0XFC,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XF7,0XFE,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XE7,0XFC,0XEF,0XFC,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFD,0XE7,0XFD,0XE7,0XFC,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XD7,0XFA,0XC7,0XF8,0XB7,0XB6, 0XA7,0X94,0X9F,0X73,0X9F,0X53,0X9F,0X73,0X9F,0X73,0X9F,0X73,0XA7,0X74,0XAF,0XB5, 0XC7,0XF8,0XD7,0XFA,0XE7,0XFC,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XE7,0XFC,0XD7,0XF9, 0XBF,0XD7,0XAF,0X95,0XA7,0X74,0X9F,0X73,0X9F,0X73,0X9F,0X73,0X9F,0X73,0XA7,0X74, 0XA7,0X94,0XB7,0XB6,0XC7,0XF8,0XDF,0XFA,0XEF,0XFD,0XF7,0XFD,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XC7,0XF8,0X97,0X32,0X8F,0X91,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X8F,0XB0,0X87,0XB0, 0X87,0XB0,0X87,0XB0,0X8F,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X8F,0XB0,0X8F,0XB0, 0X87,0XB0,0X87,0XB0,0X8F,0XB0,0X8F,0XB0,0X8F,0XB0,0X8F,0X91,0X8F,0XB1,0X97,0XB2, 0X9F,0XF3,0XB7,0XF5,0XC7,0XF8,0XDF,0XFB,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XCF,0XB9, 0X97,0X52,0X87,0XB0,0X8F,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0, 0X87,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X8F,0XB0,0X87,0XB0, 0X87,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X87,0XB0,0X8F,0XB0,0X87,0XB0, 0X87,0XB0,0X87,0XB0,0X8F,0XB0,0X87,0XB0,0X87,0X90,0X87,0XB0,0X87,0XB0,0X8F,0X51, 0XB7,0X76,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XEF,0XFD,0XD7,0XFA,0XAF,0XF5, 0X97,0XB2,0X7F,0X6F,0X77,0X6E,0X77,0X8E,0X77,0X8E,0X6F,0X8E,0X6F,0X8E,0X77,0X8E, 0X77,0X8D,0X6F,0X8D,0X77,0X8E,0X77,0X8E,0X77,0X6E,0X7F,0X6F,0X8F,0X91,0XAF,0XF5, 0XCF,0XF9,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD, 0XCF,0XF9,0XA7,0XF4,0X8F,0X91,0X7F,0X6F,0X77,0X6E,0X77,0X8E,0X77,0X8D,0X77,0X8D, 0X77,0X8D,0X6F,0X8D,0X77,0X8D,0X77,0X8E,0X6F,0X8D,0X77,0X8E,0X77,0X6E,0X7F,0X6F, 0X97,0XB2,0XBF,0XF6,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X4F,0X6F,0XAD,0X67,0XCC, 0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X6F,0XCC,0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X6F,0XCC, 0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X6F,0XCC,0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X67,0XCC, 0X67,0XCC,0X6F,0XCD,0X6F,0XAD,0X6F,0XAD,0X6F,0X8D,0X77,0X6E,0X7F,0X4F,0X8F,0X51, 0XAF,0X95,0XD7,0XFA,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XBF,0XD7,0X77,0X6E,0X67,0XCC,0X6F,0XCD,0X6F,0XCC, 0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X6F,0XCC,0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X6F,0XCC, 0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X6F,0XCC,0X6F,0XCC,0X67,0XCC,0X67,0XCC,0X67,0XCC, 0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X6F,0XCC,0X67,0XCC,0X67,0XCC,0X6F,0XCC,0X6F,0XCC, 0X67,0XCC,0X67,0XCC,0X67,0XCC,0X77,0X6E,0XA7,0X74,0XE7,0XFD,0XF7,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD, 0XDF,0XFB,0XB7,0XB6,0X8F,0X50,0X77,0X4E,0X6F,0XAD,0X67,0XCC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XCC,0X6F,0XAD,0X77,0X6E,0X87,0X30,0XAF,0X94,0XD7,0XFA,0XEF,0XFD, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XF7,0XFE,0XDF,0XFB,0XAF,0X95,0X87,0X50,0X77,0X6E,0X6F,0XAD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0X8D,0X7F,0X4F,0X97,0X52,0XC7,0XF8, 0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XED, 0X6F,0XCD,0X6F,0XCD,0X6F,0XAD,0X6F,0XAD,0X77,0X8E,0X87,0X50,0XBF,0XF6,0XE7,0XFC, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XBF,0XD7, 0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E, 0XA7,0X94,0XE7,0XFD,0XF7,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XC7,0XF8,0X8F,0X91,0X77,0X6E,0X6F,0XAD,0X6F,0XCD, 0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XCD, 0X6F,0XAD,0X77,0X8E,0X87,0X70,0XB7,0XF6,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XCF,0XF9,0X8F,0X71,0X77,0X6E, 0X6F,0XAD,0X6F,0XCD,0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XCC,0X6F,0XCD,0X77,0X8D,0X7F,0X4F,0XAF,0XD5,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XAD,0X7F,0X4F,0XB7,0XD6,0XEF,0XFD,0XF7,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XBF,0XD7,0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0X8E,0XA7,0X94,0XE7,0XFD,0XF7,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFE,0XEF,0XFD,0XBF,0XF7,0X87,0X50, 0X6F,0X8D,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X77,0X4E, 0XA7,0X94,0XE7,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XD7,0XF9,0X8F,0X51,0X6F,0X8D,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD, 0X7F,0X4E,0XAF,0XD5,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XAD,0X7F,0X4F, 0XC7,0XF8,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XBF,0XD7, 0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0X8E, 0XA7,0X74,0XE7,0XFD,0XF7,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XEF,0XFC,0XB7,0XF6,0X7F,0X4F,0X6F,0XAD,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XAD,0X77,0X6E,0X9F,0X92,0XE7,0XFB,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0X8F,0X71,0X6F,0X8D,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XCD,0X7F,0X4F,0XBF,0XD7,0XEF,0XFD, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X8F,0X51,0XD7,0XFB,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XBF,0XD7,0X7F,0X6F,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X77,0X6E,0XA7,0X74,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XBF,0XF7,0X7F,0X4F,0X6F,0XAD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XCD, 0X6F,0XAD,0X6F,0XAD,0X6F,0X8D,0X6F,0X8D,0X77,0X8D,0X6F,0X8D,0X6F,0XAD,0X6F,0XCD, 0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XED,0X77,0X6E,0XA7,0X94,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XB7,0XB6, 0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XCD,0X6F,0XAD,0X6F,0XAD,0X6F,0X8D,0X6F,0X8D,0X6F,0X8D,0X6F,0X8D,0X6F,0XAD, 0X6F,0XCD,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XAD,0X87,0X30,0XCF,0XFA,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC, 0X6F,0XCD,0X77,0X8E,0X77,0X6E,0X7F,0X4F,0X7F,0X4F,0X7F,0X4F,0X7F,0X4F,0X7F,0X4F, 0X7F,0X6F,0X77,0X6F,0X77,0X6E,0X77,0X6E,0X77,0X6E,0X77,0X8E,0X6F,0XAD,0X6F,0XCD, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD, 0X77,0X6E,0XAF,0XF4,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XC7,0X98, 0X87,0X10,0X7F,0X6F,0X7F,0X4F,0X7F,0X4F,0X7F,0X6F,0X7F,0X4F,0X7F,0X4F,0X7F,0X4F, 0X7F,0X4F,0X7F,0X4F,0X7F,0X4F,0X77,0X8E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X8E,0X77,0X6E,0X7F,0X4F,0X7F,0X4F, 0X7F,0X4F,0X7F,0X4F,0X7F,0X4F,0X7F,0X4F,0X7F,0X4F,0X7F,0X6E,0X7F,0X6E,0X87,0X0F, 0XAF,0X35,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA, 0X87,0X50,0X6F,0XAD,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XEC,0X6F,0XAD,0X77,0X6E,0X87,0X50,0X97,0X72,0X9F,0X93,0XA7,0X94, 0XA7,0X94,0X9F,0X73,0X8F,0X71,0X7F,0X6F,0X6F,0XAD,0X6F,0XED,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X6E,0XA7,0XD4, 0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XCF,0XF9,0X87,0X50,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X8E,0X7F,0X6F,0X8F,0X71,0X9F,0X93, 0XA7,0X94,0XA7,0X94,0X9F,0X93,0X8F,0X71,0X7F,0X6F,0X77,0X8E,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X6E,0X9F,0XD3, 0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0X3C,0XBD,0XD7,0X9C,0XD3,0X84,0X30, 0X73,0X8E,0XDE,0XDB,0XFF,0XFF,0XE7,0X3C,0XEF,0X5D,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X8E,0X9F,0XF3,0XB7,0XF6,0XBF,0XF7, 0XBF,0XF7,0XB7,0XF7,0XBF,0XF7,0XB7,0XF7,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6, 0XAF,0XF5,0XAF,0XF5,0X97,0XD2,0X7F,0X6F,0X6F,0X8D,0X6F,0XCD,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XAD,0X87,0X70,0XE7,0XFC,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XE7,0XFB,0XC7,0XF7,0XB7,0XF6,0XB7,0XF7,0XBF,0XF7, 0XBF,0XF7,0XBF,0XF7,0XBF,0XF7,0XBF,0XF7,0XBF,0XF7,0XBF,0XF6,0XBF,0XF7,0XA7,0XF4, 0X77,0XAE,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X97,0XF2,0XB7,0XF6,0XB7,0XF6,0XBF,0XF7,0XBF,0XF7,0XBF,0XF7,0XBF,0XF7,0XBF,0XF7, 0XBF,0XF7,0XBF,0XF6,0XBF,0XF6,0XBF,0XF7,0XD7,0XDA,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0X9F,0X73,0X6F,0X8D,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC,0X6F,0XAD,0X77,0X6E,0X87,0X70,0XAF,0XF5, 0XCF,0XF9,0XDF,0XFB,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XD7,0XFA,0XBF,0XF7, 0X9F,0XD3,0X77,0X6E,0X6F,0XAD,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X7F,0X6F,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XAF,0XF5,0X77,0X6E, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0X8D,0X7F,0X6F, 0XA7,0XF4,0XC7,0XF8,0XDF,0XFB,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC,0XDF,0XFB, 0XC7,0XF8,0X9F,0XD3,0X77,0X6E,0X6F,0XAD,0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X7F,0X6F,0XD7,0XFA,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XC6,0X18,0X52,0X8A, 0X10,0X82,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0XBD,0XD7,0XFF,0XFF,0X73,0X8E, 0X18,0XC3,0X84,0X10,0XF7,0XBE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X7F,0X6F,0XC7,0XF8,0XE7,0XFC,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFD,0XF7,0XFD,0XF7,0XFD,0XF7,0XFD,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XCF,0XF9, 0X97,0XB2,0X77,0X6E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X6E,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XF7,0XFD,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XD7,0XFA,0X7F,0X8F,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0X6D,0XBF,0XF7,0XE7,0XFC,0XEF,0XFD,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFD,0XF7,0XFD,0XF7,0XFE, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XAF,0XF5,0X77,0X4E, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X7F,0X4F,0XAF,0XD5,0XDF,0XFB,0XEF,0XFD,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFF, 0XF7,0XFF,0XF7,0XFE,0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XCF,0XF9,0X8F,0X91,0X77,0X8E, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8D, 0X97,0X72,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XEF,0XFD,0X97,0XB2,0X6F,0XAD,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XAE,0X8F,0X71,0XCF,0XF9,0XEF,0XFC,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XE7,0XFC,0XBF,0XF7,0X87,0X6F, 0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XBF,0XD7,0XEF,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0X84,0X30,0X00,0X20,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0XBD,0XF7,0XFF,0XFF,0X42,0X28,0X00,0X00,0X00,0X00,0X42,0X28,0XEF,0X7D, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X8F,0X71,0X6F,0XAD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E,0XB7,0XD7,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XDF,0XFB,0X87,0X70,0X6F,0XAD,0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XEC,0X6F,0XAD,0X7F,0X6F,0XBF,0XF7,0XEF,0XFC,0XFF,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X97,0X92,0X77,0X8E,0X6F,0XCC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X7F,0X4E,0XB7,0XF6,0XF7,0XFD,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFC,0X87,0X90,0X67,0XCC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E,0XC7,0XF8,0XEF,0XFD, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XE7,0XFC,0XAF,0XD5,0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0X8D,0XA7,0X74,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X94,0XB2,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0XBD,0XF7,0XF7,0XBE,0X10,0XA2, 0X00,0X00,0X00,0X00,0X00,0X00,0X63,0X0C,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XEF,0XFD,0XBF,0XF7,0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X8E,0XAF,0X95,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XB7,0XD6,0X77,0X6E,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X7F,0X4F,0XBF,0XF7, 0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB, 0X8F,0X92,0X6F,0X8D,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC, 0X6F,0XAD,0X8F,0X91,0XE7,0XFC,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XDF,0XFA,0X7F,0X6F,0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X7F,0XAF,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA, 0X7F,0X8F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X97,0X52,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0X5D, 0X18,0XE3,0X00,0X00,0X00,0X00,0X00,0X20,0X63,0X0C,0XAD,0X55,0X7B,0XCF,0X00,0X00, 0X00,0X00,0XBD,0XF7,0XF7,0X9E,0X5A,0XCB,0X08,0X41,0X00,0X00,0X00,0X00,0X00,0X20, 0XD6,0XBA,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X7F,0X8F,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E,0XA7,0X74,0XEF,0XFD, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XDF,0XFB,0X97,0X52,0X77,0X8D,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X8E,0XA7,0XB4,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XC7,0XF8,0X87,0X6F,0X6F,0XAD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XCF,0XF9,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XD7,0XFA,0X7F,0X6F,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X7F,0XAF,0XDF,0XFA,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0X9F,0X93,0X77,0X6E,0X77,0X8E,0X77,0X8E, 0X77,0X8D,0X77,0X8D,0X77,0XAE,0X7F,0X4F,0X97,0X12,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XAD,0X75,0X00,0X00,0X00,0X00,0X00,0X00,0X9C,0XD3, 0XFF,0XFF,0XFF,0XFF,0XAD,0X55,0X00,0X00,0X00,0X00,0XBD,0XD7,0XFF,0XFF,0XFF,0XFF, 0XB5,0X96,0X08,0X41,0X00,0X00,0X00,0X00,0X9C,0XF3,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XE7,0XFB,0X87,0X90,0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X8E,0XA7,0X74,0XE7,0XFC,0XF7,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XC7,0XF8,0X7F,0X4F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X87,0X90,0XDF,0XFA,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XEF,0XFD,0XAF,0XB5,0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X8E,0XAF,0X95,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XDF,0XFB,0X7F,0X8F,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X8E,0XB7,0XF6,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XC7,0XD8,0X9F,0X33,0X9F,0X73,0X9F,0X73,0X9F,0X73,0XA7,0X93,0XA7,0X94,0XAF,0X75, 0XB7,0X36,0XE7,0XFC,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X8C,0X51, 0X00,0X00,0X00,0X00,0X21,0X24,0XFF,0XDF,0XFF,0XFF,0XFF,0XFF,0XA5,0X14,0X00,0X00, 0X00,0X00,0XBD,0XD7,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X31,0X86,0X00,0X00,0X00,0X00, 0X8C,0X51,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X87,0X90,0X67,0XCC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E,0XA7,0X94,0XEF,0XFD, 0XF7,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD, 0XA7,0XF4,0X77,0X8E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD, 0X6F,0X8D,0XA7,0XF4,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X7F,0X6F,0X67,0XCC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X97,0X52,0XDF,0XFB, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFC,0X87,0X90,0X67,0XCD, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XBF,0XF7, 0XE7,0XFC,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XEF,0XFD,0XE7,0XFC,0XE7,0XFC,0XE7,0XFC, 0XE7,0XFC,0XE7,0XFC,0XEF,0XFD,0XEF,0XFD,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X84,0X30,0X00,0X00,0X00,0X00,0X21,0X04,0XF7,0XBE, 0XFF,0XFF,0XFF,0XFF,0XA5,0X14,0X00,0X00,0X00,0X00,0XBD,0XD7,0XFF,0XFF,0XFF,0XFF, 0XF7,0XBE,0X21,0X24,0X00,0X00,0X00,0X00,0X8C,0X51,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XD7,0XF9,0X7F,0X6F,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X8E,0XAF,0XB5,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0X97,0XB2,0X6F,0XAD,0X6F,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X7F,0X4F,0XC7,0XF8,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XEF,0XFD,0X97,0XB2,0X6F,0XAD,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XCD,0X87,0X50,0XCF,0XF8,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XEF,0XFD,0X97,0XB2,0X6F,0X8D,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XED,0X6F,0XAD,0X77,0X6E,0X97,0XB2,0XBF,0XF7,0XDF,0XFB,0XEF,0XFD, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XF7,0XFF,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XA5,0X34, 0X00,0X00,0X00,0X00,0X00,0X00,0X7B,0XCF,0XFF,0XFF,0XFF,0XFF,0XAD,0X55,0X00,0X00, 0X00,0X00,0XC6,0X18,0XFF,0XFF,0XFF,0XFF,0X7B,0XEF,0X00,0X00,0X00,0X00,0X00,0X00, 0XAD,0X55,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFC,0XB7,0XD5,0X77,0X8E,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XBF,0XD7,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFC, 0X87,0X90,0X67,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAE, 0X97,0X52,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XAF,0XF5,0X77,0X6E, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X4E,0XB7,0XF6, 0XF7,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XAF,0XF5,0X77,0X6E, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD, 0X6F,0X8D,0X7F,0X4F,0X8F,0X51,0XAF,0XB5,0XC7,0XF8,0XDF,0XFB,0XEF,0XFD,0XEF,0XFD, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0X3C,0X10,0XA2,0X00,0X00,0X00,0X00,0X00,0X00, 0X42,0X08,0X8C,0X71,0X63,0X2C,0X00,0X00,0X00,0X00,0X7B,0XEF,0X94,0X92,0X42,0X08, 0X00,0X00,0X00,0X00,0X00,0X00,0X10,0X82,0XE7,0X1C,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD, 0XC7,0XF8,0X87,0X6F,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XCC,0X7F,0X6F,0XDF,0XFB,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X6F,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E,0XA7,0X94,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XBF,0XF7,0X7F,0X4F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XCD,0X77,0X6E,0XA7,0XF4,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X8F,0X50,0X77,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC,0X6F,0XCD,0X6F,0XAD,0X77,0X8E, 0X77,0X6E,0X87,0X90,0X97,0XD2,0XAF,0XF5,0XC7,0XF8,0XD7,0XFA,0XEF,0XFD,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0X94,0XB2,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X84,0X30, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X7F,0X6F,0XC7,0XF8,0XE7,0XFC,0XEF,0XFD, 0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD, 0XEF,0XFD,0XEF,0XFD,0XE7,0XFC,0XBF,0XF7,0X87,0X90,0X6F,0X8D,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0X8D,0X97,0XB2,0XEF,0XFD,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XCF,0XF9, 0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E, 0XB7,0XB6,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XCF,0XF9,0X87,0X50, 0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X6F,0X8D,0X9F,0XD2, 0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XB7,0XD6, 0X77,0X6E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X6F,0XAD,0X77,0X6E, 0X7F,0X4F,0X8F,0X51,0XA7,0X94,0XC7,0XF8,0XDF,0XFB,0XEF,0XFD,0XF7,0XFE,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X84,0X10,0X00,0X20,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X6B,0X4D,0XFF,0XDF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD, 0X77,0XAE,0X97,0XF2,0XAF,0XF5,0XAF,0XF5,0XAF,0XF5,0XAF,0XF5,0XAF,0XF5,0XAF,0XF5, 0XAF,0XF4,0XAF,0XF5,0XAF,0XF4,0XA7,0XF4,0X9F,0XD3,0X97,0XB2,0X87,0XB0,0X77,0X8E, 0X6F,0XAD,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X7F,0X4F,0XBF,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XC7,0XF8,0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF8,0XEF,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XDF,0XFA,0X8F,0X51,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XEC,0X6F,0XAD,0X8F,0XB1,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFC,0X97,0X92,0X77,0X8E,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XCD,0X6F,0XCD,0X6F,0XAD,0X77,0X8E,0X77,0X6E, 0X87,0X70,0X9F,0XD3,0XC7,0XF8,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XBD,0XF7,0X42,0X28,0X08,0X41,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X20,0X39,0XC7,0XAD,0X75,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0XAD,0X6F,0X6D,0X77,0X6E, 0X77,0X6E,0X77,0X6E,0X77,0X6E,0X77,0X6E,0X77,0X6D,0X6F,0X8D,0X77,0X8E,0X6F,0X8D, 0X6F,0X8D,0X6F,0XAD,0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XEC,0X6F,0XCD,0X77,0X4E,0XA7,0XB4,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XBF,0XD7, 0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E, 0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0X97,0X72, 0X77,0X8D,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAC,0X8F,0XB1, 0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XCF,0XF9,0X8F,0X71,0X77,0X6E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0X8E,0X7F,0X4F,0X9F,0X73, 0XCF,0XF9,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XDE,0XDB,0XAD,0X55,0X84,0X30,0X7B,0XCF,0X7B,0XCF,0X84,0X10,0XA5,0X14,0XD6,0X9A, 0XFF,0XDF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XED,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XED,0X67,0XED,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X6E,0X97,0X92, 0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XBF,0XD6,0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X7F,0X6E,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XE7,0XFC,0X9F,0X72,0X77,0XAE,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XCC,0X8F,0XB0,0XE7,0XFC,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X97,0X72,0X77,0X6E, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XCC,0X6F,0XCD,0X6F,0XAD,0X77,0X8E,0X7F,0X4F,0XAF,0XF4,0XE7,0XFC,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XCD, 0X6F,0X8D,0X77,0X4E,0X9F,0X93,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XB7,0XD6, 0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X7F,0X6E, 0XD7,0XFA,0XFF,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XE7,0XFC,0X9F,0X52, 0X77,0X8D,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC,0X87,0X90, 0XE7,0XFC,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0XA7,0XD4,0X7F,0X4F,0X6F,0X8E,0X6F,0XAD,0X6F,0XCD, 0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XCD,0X77,0X6E,0XA7,0X94,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XDF,0XDE,0XDB,0XBD,0XD7,0XAD,0X55,0X9C,0XD3,0XE7,0X1C,0XFF,0XFF,0XF7,0XBE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XCC,0X6F,0XAD,0X77,0X6E,0X8F,0X51,0XBF,0XF7,0XE7,0XFC,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XB7,0XD6,0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X7F,0X6E,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XE7,0XFC,0X9F,0X72,0X77,0XAE,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XAC,0X87,0X90,0XE7,0XFC,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD, 0XD7,0XF9,0XAF,0X95,0X87,0X50,0X77,0X6E,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X4E,0XA7,0XD4, 0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XDE,0XFB,0X7B,0XEF,0X29,0X65,0X08,0X41,0X00,0X00,0X00,0X00, 0X00,0X00,0XBD,0XD7,0XFF,0XFF,0X84,0X10,0X39,0XC7,0XAD,0X75,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC,0X6F,0XAD,0X7F,0XAF,0X97,0XB2,0XB7,0XF6, 0XDF,0XFB,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XB7,0XD7, 0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0X97,0X72, 0X77,0X8D,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC,0X8F,0XB1, 0XE7,0XFC,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFC,0XCF,0XF9,0XAF,0XF5, 0X8F,0XB1,0X7F,0X6F,0X77,0X6E,0X77,0X8E,0X6F,0XAD,0X6F,0XCD,0X6F,0XCD,0X6F,0XED, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X7F,0X4F,0XC7,0XF8,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XAD,0X55,0X10,0XA2,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0XBD,0XF7,0XFF,0XFF,0X4A,0X49, 0X00,0X00,0X00,0X00,0X63,0X2C,0XFF,0XDF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC, 0X6F,0XCD,0X77,0X8D,0X77,0X6E,0X77,0X6E,0X77,0X6E,0X6F,0X8D,0X6F,0XAD,0X6F,0XCD, 0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD, 0X9F,0XF3,0XCF,0XF9,0XE7,0XFC,0XF7,0XFD,0XF7,0XFE,0XFF,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XBF,0XD7,0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF8,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XDF,0XFA,0X8F,0X71,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XAC,0X8F,0XB1,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XD7,0XFA,0XBF,0XF8,0XA7,0X94, 0X8F,0X71,0X7F,0X4F,0X77,0X6E,0X6F,0XAD,0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0X8D, 0X97,0X52,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XB5,0X96,0X00,0X20,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0XBD,0XF7,0XFF,0XDF,0X18,0XE3,0X00,0X00,0X00,0X00,0X00,0X00,0X7B,0XEF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X8E,0X9F,0XF3,0XAF,0XF5,0XAF,0XF6, 0XAF,0XF5,0XA7,0XF4,0X97,0XD2,0X7F,0X6F,0X6F,0X8D,0X6F,0XCD,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X7F,0X6F,0XAF,0XF5,0XE7,0XFC,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XC7,0XF8, 0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E, 0XB7,0XD6,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X87,0X50, 0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XAD,0X97,0XD2, 0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XEF,0XFE,0XE7,0XFD,0XDF,0XFB,0XC7,0XF8,0XAF,0XF5,0X97,0XB2, 0X7F,0X8F,0X77,0X8E,0X6F,0X8D,0X6F,0XCD,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X7F,0X4F,0XB7,0XF7,0XEF,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0X9E,0X29,0X45,0X00,0X00,0X00,0X00,0X00,0X00, 0X39,0XC7,0X84,0X10,0X63,0X0C,0X00,0X00,0X00,0X00,0XBD,0XF7,0XEF,0X7D,0X39,0XC7, 0X00,0X00,0X00,0X00,0X00,0X00,0X08,0X61,0XDE,0XFB,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X7F,0X4F,0XC7,0XF8,0XE7,0XFC,0XEF,0XFE,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XD7,0XF9, 0X9F,0XB3,0X77,0X6E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XAD,0X77,0X6E,0X9F,0XB3,0XD7,0XFA,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XCF,0XFA,0X7F,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E,0XA7,0X95,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XC7,0XF7,0X7F,0X4F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XCD,0X6F,0X8D,0X9F,0XD3,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XDF,0XFB,0XC7,0XF7,0X9F,0X93,0X7F,0X4F, 0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED, 0X6F,0XAD,0X9F,0XD2,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XBD,0XD7, 0X00,0X00,0X00,0X00,0X00,0X00,0X7B,0XCF,0XFF,0XDF,0XFF,0XFF,0XAD,0X55,0X00,0X00, 0X00,0X00,0XBD,0XD7,0XFF,0XFF,0XF7,0XBE,0X8C,0X71,0X00,0X20,0X00,0X00,0X00,0X00, 0XA5,0X34,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XD7,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0X9F,0XB4,0X77,0X8E,0X6F,0XCD, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X77,0X6E,0X97,0X72, 0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X8F,0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0XAE, 0X97,0X72,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XB7,0XF5,0X77,0X6E, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X6E,0XAF,0XF5, 0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XE7,0XFC,0XC7,0XF7,0X8F,0XB0,0X77,0X8D,0X6F,0XED,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X87,0X90,0XE7,0XFC,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X8C,0X71,0X00,0X00,0X00,0X00,0X21,0X04,0XF7,0XBE, 0XFF,0XFF,0XFF,0XFF,0XA5,0X14,0X00,0X00,0X00,0X00,0XBD,0XF7,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0X29,0X65,0X00,0X00,0X00,0X00,0X8C,0X51,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XDF,0XFB,0X97,0X92,0X77,0X8E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X6E,0X9F,0X93,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFC,0X87,0X70,0X6F,0XCD,0X6F,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XEF,0XFD,0X9F,0XD2,0X6F,0X8D,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XCD,0X7F,0X4F,0XBF,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XE7,0XFC,0XDF,0XFB,0XD7,0XFA,0XCF,0XF8,0XCF,0XF9, 0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD, 0XD7,0XFA,0X8F,0X71,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X7F,0X6F,0XD7,0XFA,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X84,0X30, 0X00,0X00,0X00,0X00,0X21,0X24,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XA5,0X14,0X00,0X00, 0X00,0X00,0XBD,0XD7,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X29,0X45,0X00,0X00,0X00,0X00, 0X8C,0X51,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XCF,0XF9,0X87,0X70, 0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD, 0X77,0X4E,0XAF,0XF5,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD, 0X9F,0XD3,0X6F,0X8D,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD, 0X77,0X6E,0XAF,0XF5,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XDF,0XFB,0X7F,0X6F,0X67,0XCD, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X8F,0X50,0XD7,0XFA, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XCF,0XD9,0XAF,0X55,0XA7,0X54,0X97,0X52, 0X8F,0X51,0X87,0X50,0X7F,0X4F,0X87,0X10,0XA7,0X34,0XEF,0XFC,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XB7,0XF6,0X77,0X6E,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XCF,0XF9,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X9C,0XF3,0X00,0X00,0X00,0X00,0X00,0X20,0X9C,0XF3, 0XFF,0XFF,0XFF,0XFF,0XA5,0X34,0X00,0X00,0X00,0X00,0XBD,0XF7,0XFF,0XFF,0XFF,0XFF, 0X9C,0XF3,0X00,0X00,0X00,0X00,0X00,0X00,0XA5,0X14,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XBF,0XF7,0X77,0X4E,0X6F,0XCC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XCD,0X7F,0X4F,0XCF,0XF9,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6E,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0XAD,0X8F,0X90,0XDF,0XFB,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF, 0XEF,0XFD,0XB7,0XD6,0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X8D,0X9F,0X73,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XAF,0XB5,0X7F,0X0F,0X77,0X6E,0X77,0XAE,0X6F,0XAD,0X6F,0XAD,0X6F,0XAD,0X77,0X8E, 0X8F,0X51,0XD7,0XFA,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XCF,0XF9,0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X6E,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDE,0XFB, 0X08,0X61,0X00,0X00,0X00,0X00,0X00,0X20,0X63,0X2C,0XB5,0XB6,0X7B,0XEF,0X00,0X00, 0X00,0X00,0X9C,0XD3,0XBD,0XD7,0X63,0X0C,0X00,0X20,0X00,0X00,0X00,0X00,0X08,0X41, 0XDE,0XDB,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X30,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFD, 0X9F,0XD3,0X77,0X8D,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0X8D,0X97,0X72,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XD7,0XFA,0X8F,0X50,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X77,0X6E,0XB7,0XD6,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X8F,0X51,0X6F,0XAD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XBF,0XD6,0XEF,0XFD, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XBF,0XF6,0X77,0X4E,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X6E,0XB7,0XF6,0XEF,0XFD,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XCF,0XF9,0X77,0X6E,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XCF,0XF9,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X7B,0XCF,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X20,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X6B,0X4D,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X8F,0X51,0X6F,0XAD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X6E,0XAF,0XF5, 0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFC,0XA7,0X94,0X77,0X8E,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X4F,0XC7,0XF8, 0XF7,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFE,0XE7,0XFC, 0X9F,0XD3,0X77,0X8E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XCD,0X87,0X6F,0XDF,0XFB,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XCF,0XF9,0X87,0X30,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED, 0X6F,0XAD,0X8F,0XB1,0XE7,0XFC,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XEF,0XFD,0XB7,0XD6,0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XEC,0X7F,0X6F,0XD7,0XFA,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XDF,0X5A,0XEB,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X4A,0X49,0XF7,0X9E, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XBF,0XF7,0X77,0X6E,0X6F,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XEC,0X6F,0XCD,0X7F,0X6F,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XCF,0XF9,0X7F,0X6E,0X6F,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XCC,0X6F,0X8D,0X8F,0X91,0XD7,0XFA,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFD,0XEF,0XFC,0XAF,0XD5,0X77,0X6E,0X6F,0XCC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X8E,0X9F,0XB3,0XEF,0XFD,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0X97,0X52,0X77,0X8D,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC,0X77,0X6E,0XB7,0XF6,0XEF,0XFD, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XD7,0XFA,0X8F,0X71,0X6F,0XAD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X87,0X6F,0XDF,0XFB,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X94,0XB2,0X29,0X45, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X18,0XE3,0X84,0X30,0XF7,0XBE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFE,0XE7,0XFC,0X9F,0XB2,0X6F,0X8D, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X8E, 0X9F,0X93,0XE7,0XFC,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFC,0X97,0XB2,0X6F,0X8D, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X6F,0X8E, 0X8F,0X70,0XC7,0XF8,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0XA7,0XF4,0X77,0X6E, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XAF,0XB5,0X77,0X8E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XAD,0X7F,0X6F,0XBF,0XF7,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB, 0X97,0XD2,0X77,0X8E,0X6F,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED, 0X6F,0XAD,0X97,0XB2,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XBE,0XB5,0XB6,0X7B,0XEF,0X52,0XAA,0X4A,0X69, 0X4A,0X69,0X52,0X8A,0X73,0XAE,0XAD,0X75,0XEF,0X7D,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFD,0XCF,0XF9,0X87,0X50,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X7F,0X4F,0XBF,0XF6,0XEF,0XFD,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XC7,0XF8,0X87,0X50,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XAD,0X7F,0X6F,0XAF,0XD5,0XD7,0XFA, 0XEF,0XFD,0XEF,0XFD,0XF7,0XFD,0XF7,0XFD,0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XE7,0XFC, 0XC7,0XF8,0X97,0X72,0X77,0X6E,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X77,0X6E,0XAF,0XB5,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XD7,0XFA,0X7F,0X6F,0X6F,0XCD, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XAD,0X7F,0X6F, 0XAF,0XD5,0XDF,0XFB,0XEF,0XFD,0XEF,0XFD,0XF7,0XFD,0XF7,0XFE,0XF7,0XFE,0XEF,0XFD, 0XEF,0XFD,0XE7,0XFC,0XCF,0XF9,0X9F,0X72,0X77,0X6E,0X67,0XCC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X6E,0XB7,0XF6,0XF7,0XFD,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0X5D,0X39,0XE7,0X63,0X0C,0XAD,0X75,0XE7,0X3C, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFE,0XEF,0XFD,0XBF,0XD7, 0X77,0X6E,0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED, 0X6F,0XAD,0X87,0X70,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XB7,0XD6, 0X77,0X6E,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XED,0X6F,0XCD,0X77,0X6E,0X7F,0X6F,0X97,0XD2,0XAF,0XF5,0XBF,0XF7,0XBF,0XF7, 0XBF,0XF7,0XB7,0XF6,0XA7,0XF4,0X8F,0X91,0X77,0X6E,0X6F,0X8D,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XEC,0X6F,0X8D,0X8F,0X71, 0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XEF,0XFD,0X9F,0XB3,0X77,0X8D,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XEC,0X6F,0XED,0X6F,0XCD,0X77,0X6E,0X87,0X90,0X9F,0XD2,0XB7,0XF5, 0XBF,0XF7,0XBF,0XF7,0XBF,0XF7,0XB7,0XF6,0XA7,0XF4,0X8F,0XB1,0X7F,0X6E,0X6F,0X8D, 0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X8F,0X51,0XDF,0XFA,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XA5,0X14, 0X00,0X00,0X00,0X00,0X00,0X00,0X39,0XE7,0XF7,0XBE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFC,0X97,0XB2,0X6F,0X8D,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XAF,0XB5,0XEF,0XFD, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XE7,0XFC,0X97,0XB2,0X77,0X6E,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC, 0X6F,0XAD,0X77,0X8E,0X7F,0X6E,0X7F,0X6F,0X7F,0X6F,0X77,0X6E,0X6F,0X8E,0X6F,0XAD, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XEC,0X77,0XAD,0X87,0X50,0XC7,0XF8,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XCF,0XF9,0X87,0X50, 0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XCC,0X6F,0XAD,0X77,0X8E,0X7F,0X6F,0X7F,0X6F,0X7F,0X6F,0X77,0X6E, 0X77,0X8E,0X6F,0XAD,0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X77,0X6E,0XB7,0XD6,0XEF,0XFD,0XFF,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X84,0X30,0X00,0X00,0X00,0X00,0X00,0X00,0X84,0X10, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XCF,0XF9,0X87,0X50,0X6F,0XAD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XAD,0X87,0X50,0XC7,0XF8,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFD,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XDF,0XFB,0X97,0X72,0X77,0X6E,0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X7F,0X4F,0XC7,0XF8,0XEF,0XFD, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFE,0XEF,0XFD,0XBF,0XD6,0X77,0X4E,0X6F,0XCD,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XED,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X8E,0X97,0X92, 0XE7,0XFB,0XFF,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XB5,0X96, 0X00,0X00,0X00,0X00,0X00,0X00,0X7B,0XEF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XB7,0XD6,0X77,0X6E,0X6F,0XCC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0X8E,0X97,0XB2, 0XE7,0XFC,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E, 0XC7,0XF7,0XF7,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFA,0X97,0X92,0X77,0X6E, 0X6F,0XAD,0X6F,0XED,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCD,0X77,0X8E, 0X87,0X6F,0XBF,0XF7,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFC, 0XA7,0XB4,0X77,0X6E,0X6F,0XAD,0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X6F,0XCD,0X77,0X8E,0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X73,0XAE,0X00,0X20,0X00,0X00,0X10,0XA2, 0XAD,0X55,0XF7,0X9E,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD, 0XB7,0XF6,0X7F,0X6F,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XAD, 0X87,0X50,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XE7,0XFB,0X97,0X91,0X6F,0X8D,0X6F,0XCD,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X77,0X6E,0XBF,0XF7,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB,0X7F,0X90,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X77,0X6E,0XC7,0XF7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XE7,0XFC,0XAF,0X95,0X7F,0X4F,0X6F,0XAD,0X67,0XCC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XCD,0X77,0X6E,0X8F,0X71,0XCF,0XF9,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XE7,0XFC,0XAF,0XB5,0X7F,0X4E,0X6F,0XAD, 0X67,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XCC,0X77,0X6E,0X8F,0X71,0XCF,0XF9,0XF7,0XFD, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XBE, 0XB5,0X96,0X52,0XAA,0X00,0X00,0X00,0X00,0X00,0X00,0X21,0X04,0X42,0X28,0X5A,0XCB, 0X63,0X2C,0X6B,0X4D,0X6B,0X4D,0X73,0XAE,0X73,0XAE,0X73,0XAE,0X73,0XAE,0X7B,0XEF, 0XEF,0X5D,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XB7,0XF6,0X7F,0X4F,0X77,0XAE,0X6F,0XCD, 0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X77,0X8E,0X87,0X30,0XCF,0XF9,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XC7,0XF8,0X87,0X50, 0X77,0X8E,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X77,0X8E, 0X97,0X32,0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XFB, 0X87,0X70,0X6F,0XAD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X6F,0XCD,0X77,0X4E, 0XC7,0XF8,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XE7,0XFD, 0XBF,0XF7,0X8F,0X91,0X77,0X6E,0X6F,0X8D,0X6F,0XCD,0X6F,0XCD,0X6F,0XEC,0X6F,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XCD,0X6F,0XCD,0X6F,0XAD,0X77,0X8E,0X7F,0X6F,0XA7,0XD4,0XD7,0XFA, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFF,0XE7,0XFC,0XB7,0XF6,0X87,0X70,0X77,0X6E,0X6F,0XAD,0X6F,0XCD,0X6F,0XCD, 0X6F,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X6F,0XEC,0X67,0XEC,0X6F,0XCD,0X6F,0XCD,0X6F,0XAD,0X77,0X8E,0X7F,0X4F, 0X9F,0X93,0XCF,0XFA,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDE,0XFB,0X08,0X41,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0XDE,0XDB,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XBF,0XD7,0X86,0XF0,0X7F,0X4F,0X77,0X4E,0X77,0X4E,0X77,0X4E,0X77,0X6E,0X7F,0X0F, 0X8E,0XF1,0XD7,0XFA,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XB7,0X96,0X7F,0X0F,0X77,0X4E,0X77,0X4E,0X77,0X4E, 0X77,0X4E,0X77,0X4E,0X77,0X4E,0X7F,0X2E,0X86,0XD0,0XAF,0X76,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0XFC,0X8F,0X11,0X77,0X4E,0X77,0X4E,0X77,0X4E, 0X77,0X4E,0X77,0X4E,0X77,0X4E,0X7E,0XEF,0XCF,0XB8,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XEF,0XFD,0XDF,0XFB,0XBF,0XF7,0X97,0X52, 0X7F,0X4F,0X77,0X6E,0X6F,0XAD,0X6F,0XCC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XCC,0X6F,0XAD,0X6F,0X8D,0X7F,0X4E,0X8F,0X51, 0XAF,0X95,0XD7,0XFA,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XEF,0XFD,0XDF,0XFB, 0XAF,0XB5,0X8F,0X51,0X7F,0X4F,0X6F,0X8D,0X6F,0XAD,0X67,0XCC,0X67,0XEC,0X67,0XEC, 0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X67,0XEC,0X6F,0XED,0X6F,0XCD,0X6F,0X8D, 0X77,0X6E,0X87,0X30,0X9F,0X73,0XC7,0XF8,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDE,0XFB, 0X08,0X61,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X08,0X41, 0XDE,0XDB,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XDF,0XFB,0XBF,0XD7,0XB7,0XF6,0XB7,0XF5, 0XB7,0XF5,0XB7,0XF5,0XB7,0XF6,0XBF,0XF6,0XC7,0XD8,0XE7,0XFC,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XE7,0XFC, 0XBF,0XF7,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6, 0XB7,0XF6,0XC7,0XD8,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD, 0XC7,0XD8,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6,0XB7,0XF6,0XB7,0XF5,0XBF,0XD7, 0XDF,0XFB,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XDF,0XFB,0XC7,0XF8,0XAF,0XF5,0X97,0XD2,0X87,0X90, 0X7F,0X6F,0X7F,0X6E,0X77,0X6E,0X77,0X6E,0X77,0X6E,0X7F,0X6E,0X7F,0X8F,0X87,0X90, 0X8F,0X91,0X9F,0XF3,0XB7,0XF6,0XD7,0XFA,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XD7,0XFA,0XBF,0XF7,0XA7,0XF3, 0X8F,0X91,0X87,0X90,0X7F,0X8F,0X7F,0X6E,0X77,0X6E,0X77,0X6E,0X77,0X6E,0X77,0X6E, 0X7F,0X6F,0X7F,0X6F,0X8F,0X91,0X9F,0XD2,0XAF,0XF5,0XCF,0XF9,0XE7,0XFC,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDE,0XFB,0X08,0X61,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X08,0X61,0XDE,0XDB,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFF,0XF7,0XFE,0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XEF,0XFD,0XF7,0XFD,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XF7,0XFD,0XF7,0XFD, 0XEF,0XFE,0XEF,0XFE,0XF7,0XFD,0XF7,0XFD,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XF7,0XFD,0XF7,0XFD,0XF7,0XFD, 0XEF,0XFD,0XEF,0XFD,0XF7,0XFD,0XF7,0XFE,0XFF,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE, 0XF7,0XFE,0XEF,0XFD,0XEF,0XFD,0XE7,0XFC,0XDF,0XFB,0XCF,0XF9,0XCF,0XF9,0XCF,0XF9, 0XCF,0XF9,0XCF,0XF9,0XD7,0XFA,0XDF,0XFB,0XE7,0XFC,0XEF,0XFD,0XF7,0XFE,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFD,0XEF,0XFD,0XE7,0XFC,0XDF,0XFB,0XD7,0XFA,0XCF,0XF9, 0XCF,0XF8,0XCF,0XF9,0XCF,0XF9,0XCF,0XF9,0XD7,0XFA,0XDF,0XFB,0XE7,0XFC,0XEF,0XFD, 0XEF,0XFD,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF, 0XD6,0XBA,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A, 0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A,0XD6,0X9A, 0XFF,0XDF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XFF,0XFE,0XFF,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XC6,0X38,0X42,0X28,0X6B,0X4D, 0X9C,0XF3,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0X84,0X10,0X00,0X00,0X00,0X00,0X39,0XC7,0XFF,0XFF,0XFF,0XFF,0XE7,0X3C, 0X39,0XE7,0X31,0X86,0X31,0X86,0XBD,0XF7,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X63,0X0C,0X00,0X00,0X00,0X00, 0X4A,0X69,0XFF,0XFF,0XFF,0XFF,0XE7,0X1C,0X08,0X41,0X00,0X00,0X00,0X00,0XAD,0X75, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0X5A,0XEB,0X00,0X00,0X00,0X00,0X10,0XA2,0XA5,0X34,0XCE,0X79,0XBD,0XF7, 0X08,0X61,0X00,0X00,0X00,0X00,0X94,0X92,0XD6,0XBA,0XD6,0XBA,0XD6,0XBA,0XD6,0XBA, 0XD6,0XBA,0XD6,0XBA,0XD6,0XBA,0XD6,0XBA,0XD6,0XBA,0XDE,0XDB,0XD6,0XBA,0XDE,0XDB, 0XFF,0XDF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XDF,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XDE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBF,0XF7,0XBF,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBF,0XF7,0XBF,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBF,0XF7,0XBF,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE, 0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XF7,0XBE,0XFF,0XBE, 0XF7,0XBE,0XF7,0XBE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X73,0XAE,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X20,0X08,0X41,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X20, 0X08,0X41,0X08,0X41,0X08,0X41,0X08,0X41,0X08,0X41,0X08,0X41,0X08,0X41,0X08,0X41, 0X08,0X41,0X08,0X41,0X08,0X41,0X10,0X82,0XDE,0XDB,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XA5,0X14,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24, 0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X21,0X24,0X31,0XA6,0XEF,0X5D,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XC6,0X18,0X00,0X20,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X08,0X41, 0XDE,0XDB,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X8C,0X71,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X08,0X61,0XEF,0X5D,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X8C,0X51,0X00,0X20, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0XDE,0XDB,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0X94,0X92,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X10,0X82,0XEF,0X5D,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XCE,0X79,0X8C,0X71,0X73,0X8E,0X6B,0X6D,0X63,0X0C, 0X00,0X20,0X00,0X00,0X00,0X00,0X4A,0X49,0X73,0X8E,0X73,0X8E,0X6B,0X6D,0X6B,0X6D, 0X6B,0X6D,0X6B,0X6D,0X6B,0X6D,0X6B,0X6D,0X73,0X8E,0X6B,0X6D,0X6B,0X6D,0X73,0XAE, 0XEF,0X5D,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X94,0X92,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X10,0X82,0XEF,0X5D,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XE7,0X3C,0X00,0X20,0X00,0X00,0X00,0X00,0XB5,0X96, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0X94,0X92,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X10,0X82,0XEF,0X5D,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0X5D, 0X6B,0X6D,0X63,0X2C,0X63,0X2C,0XCE,0X79,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X8C,0X71,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X08,0X41,0XEF,0X5D,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XD6,0XBA,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14, 0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XA5,0X14,0XAD,0X55,0XF7,0XBE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFD,0XA7,0X74,0X36,0X27,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X75,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA6,0X26,0XA6,0X26,0XA6,0X2E,0XA6,0X26,0XC6,0X36,0X07,0XA7,0X75,0XF7,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XEF,0XFE,0XA7,0X75,0X36,0X07,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC6, 0X26,0XC6,0X36,0X27,0XA7,0X75,0XEF,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XEF,0XFD,0XA7,0X94,0X36,0X27,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XC7, 0X2E,0XA7,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XC6,0X36,0X27,0X97,0X53,0XEF,0XFD, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XE7,0XFD,0X8F,0X32,0X36,0X47,0X26,0XC6, 0X26,0XC6,0X2E,0XA6,0X2E,0X86,0X36,0XE7,0X3E,0XE8,0X2E,0X86,0X2E,0XA6,0X2E,0XA6, 0X26,0XC6,0X2E,0X47,0X66,0X6D,0XCF,0XFA,0XEF,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFE,0XF7,0XFE,0XEF,0XFD, 0XC7,0XF9,0X5E,0X4B,0X2E,0X67,0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0X67,0X47,0X0A, 0X67,0X6D,0X36,0X27,0X2E,0X87,0X26,0XA6,0X26,0XA6,0X2E,0XA7,0X36,0X27,0X66,0XCD, 0XC7,0XF9,0XE7,0XFC,0XEF,0XFD,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE,0XF7,0XFE, 0XF7,0XFE,0XEF,0XFD,0XE7,0XFC,0XBF,0XF8,0X5E,0XCD,0X36,0X47,0X2E,0XA6,0X2E,0XC6, 0X2E,0XA6,0X2E,0X87,0X36,0X07,0X6F,0X8E,0X9F,0XF4,0X45,0XE9,0X36,0X87,0X2E,0XA6, 0X26,0XA6,0X2E,0XA6,0X2E,0XA6,0X36,0X27,0X56,0X2B,0X86,0XF1,0XA7,0X95,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96, 0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XB7,0X96,0XA7,0X75,0X86,0XF1,0X56,0X2B, 0X36,0X47,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X36,0X67,0X4D,0XEA,0XA7,0XF5, 0XDF,0XFB,0X76,0X6F,0X36,0X47,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA7, 0X36,0X67,0X36,0X27,0X36,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28,0X3E,0X28, 0X3E,0X28,0X36,0X28,0X36,0X27,0X36,0X67,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X36,0X27,0X86,0XB0,0XDF,0XFB,0XEF,0XFD,0XC7,0XF9,0X4E,0X2A,0X36,0X47, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6, 0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XA6,0X2E,0XC6,0X26,0XC6, 0X26,0XA6,0X26,0XA6,0X2E,0XA6,0X2E,0X86,0X36,0X47,0X56,0X2B,0XCF,0XFA,0XF7,0XFE, 0XFF,0XFF,0XEF,0XFD,0XAF,0XD6,0X4D,0XEA,0X36,0X47,0X2E,0XA6,0X2E,0XC6,0X2E,0XC6, 0X26,0XC6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X2E,0XA6,0X26,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X26,0XA6,0X26,0XC6,0X2E,0XA6,0X2E,0XA6,0X36,0X47, 0X56,0X0B,0XBF,0XD7,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XF7,0XFF,0XEF,0XFD,0XB7,0XD7, 0X56,0X4B,0X36,0X07,0X36,0X67,0X2E,0X87,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XC6,0X2E,0XC6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X26,0XA6,0X2E,0XC6,0X2E,0XA6,0X2E,0XA6, 0X2E,0X87,0X36,0X67,0X36,0X08,0X5E,0X4C,0XBF,0XF8,0XEF,0XFD,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF7,0XFE,0XEF,0XFD,0XD7,0XFA,0X8E,0XF2,0X56,0X0B,0X3E,0X08, 0X2E,0X47,0X2E,0X86,0X2E,0XA6,0X2E,0XA6,0X2E,0XC6,0X2E,0XA6,0X26,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0X86,0X36,0X47,0X3E,0X28,0X56,0X0B,0X97,0X13,0XDF,0XFB, 0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XF7,0XFE,0XE7,0XFC,0XB7,0XF7,0X7F,0XD0,0X57,0X2B,0X36,0XE8,0X2E,0XA7,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6, 0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X2E,0XA6,0X3E,0XC8,0X57,0X2B, 0X87,0XF1,0XBF,0XF7,0XE7,0XFD,0XF7,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, };
81.932987
86
0.780435
8c901b5ef4165027ad0b0d785862c535b0239ca3
2,032
dart
Dart
lib/ui/article_item.dart
ntoson66/FlutterTimes
d7edab2bdb6102b154360c71c519c9dfbf8abb2c
[ "Apache-2.0" ]
2
2018-12-05T08:52:05.000Z
2019-01-16T04:34:29.000Z
lib/ui/article_item.dart
ntoson66/FlutterTimes
d7edab2bdb6102b154360c71c519c9dfbf8abb2c
[ "Apache-2.0" ]
null
null
null
lib/ui/article_item.dart
ntoson66/FlutterTimes
d7edab2bdb6102b154360c71c519c9dfbf8abb2c
[ "Apache-2.0" ]
2
2020-09-21T22:10:01.000Z
2020-12-22T14:03:52.000Z
import 'package:flutter/material.dart'; import 'package:flutter_times/model/ny_times_model.dart'; import 'package:flutter_times/ui/article_screen.dart'; import 'package:transparent_image/transparent_image.dart'; class CompactArticleItem extends StatelessWidget { final NyTimesArticle article; const CompactArticleItem({ Key key, this.article, }) : super(key: key); @override Widget build(BuildContext context) { return ListTile( title: Text(article.title), onTap: () => _openArticle(context, article), ); } } class ListArticleItem extends StatelessWidget { final NyTimesArticle article; const ListArticleItem({ Key key, this.article, }) : super(key: key); @override Widget build(BuildContext context) { return ListTile( leading: _thumbnail(article), title: Text(article.title), subtitle: Text(article.byline), onTap: () => _openArticle(context, article), ); } } class CardArticleItem extends StatelessWidget { final NyTimesArticle article; const CardArticleItem({ Key key, this.article, }) : super(key: key); @override Widget build(BuildContext context) { return Card( child: ListTile( leading: _thumbnail(article), title: Text(article.title), subtitle: Text(article.byline ?? ''), onTap: () => _openArticle(context, article), ), ); } } Widget _thumbnail(NyTimesArticle article) { return Hero( tag: article.id, child: FadeInImage.memoryNetwork( width: 64.0, height: 64.0, placeholder: kTransparentImage, image: article.media?.first?.mediaMetadata ?.firstWhere((NyTimesMediaMetaData metadata) => metadata.format == 'square320') ?.url ?? '', ), ); } void _openArticle(BuildContext context, NyTimesArticle article) { Navigator.of(context).push( MaterialPageRoute( builder: (_) => ArticleScreen( article: article, ), ), ); }
23.090909
65
0.646161
1729e076c163c8b7a9140ce92fa8faa662150045
4,674
ps1
PowerShell
Source/Public/Register-DSACLRightsMapVariable.ps1
SimonWahlin/DSACL
a2b0d112d262632473dde8a0c184cedbecc12274
[ "MIT" ]
16
2018-02-13T22:59:10.000Z
2021-06-17T15:38:58.000Z
Source/Public/Register-DSACLRightsMapVariable.ps1
SimonWahlin/DSACL
a2b0d112d262632473dde8a0c184cedbecc12274
[ "MIT" ]
1
2021-01-20T15:18:22.000Z
2021-01-20T21:18:32.000Z
Source/Public/Register-DSACLRightsMapVariable.ps1
SimonWahlin/DSACL
a2b0d112d262632473dde8a0c184cedbecc12274
[ "MIT" ]
3
2019-05-03T07:35:16.000Z
2022-01-27T02:59:33.000Z
function Register-DSACLRightsMapVariable { [CmdletBinding()] param( [Parameter(DontShow)] [String] $Scope = 'Global' ) $rootDSE = New-Object -TypeName System.DirectoryServices.DirectoryEntry -ArgumentList 'LDAP://RootDSE' # Create empty hash-tables $ClassName = @{} $ClassGuid = @{} $AttributeName = @{} $AttributeGuid = @{} $ExtendedName = @{} $ExtendedGuid = @{} $ValidatedWriteName = @{} $ValidatedWriteGuid = @{} $PropertySetName = @{} $PropertySetGuid = @{} # Locate Classes $Params = @{ SearchBase = $rootDSE.SchemaNamingContext.Value LDAPFilter = '(&(objectClass=classSchema)(schemaIDGUID=*))' Property = @('lDAPDisplayName', 'schemaIDGUID') } Find-LDAPObject @Params | ForEach-Object { $ClassName[$_.lDAPDisplayName]=[System.GUID]$_.schemaIDGUID $ClassGuid[[string][guid]$_.schemaIDGUID]=$_.lDAPDisplayName } # Locate Attributes $Params = @{ SearchBase = $rootDSE.SchemaNamingContext.Value LDAPFilter = '(&(objectClass=attributeSchema)(schemaIDGUID=*))' Property = @('lDAPDisplayName', 'schemaIDGUID') } Find-LDAPObject @Params | ForEach-Object { $AttributeName[$_.lDAPDisplayName]=[System.GUID]$_.schemaIDGUID $AttributeGuid[[string][guid]$_.schemaIDGUID]=$_.lDAPDisplayName } # Info on AccessRights found here: https://docs.microsoft.com/en-us/windows/desktop/ad/creating-a-control-access-right # Locate Extended Rights $Params = @{ SearchBase = $rootDSE.ConfigurationNamingContext LDAPFilter = '(&(objectclass=controlAccessRight)(rightsGUID=*)(validAccesses=256))' Property = @('displayName','rightsGUID') } Find-LDAPObject @Params | ForEach-Object { $ExtendedName[$_.displayName]=[System.GUID]$_.rightsGUID $ExtendedGuid[$_.rightsGUID]=$_.displayName } # Locate Validated Writes $Params = @{ SearchBase = $rootDSE.ConfigurationNamingContext LDAPFilter = '(&(objectclass=controlAccessRight)(rightsGUID=*)(validAccesses=8))' Property = @('displayName','rightsGUID') } Find-LDAPObject @Params | ForEach-Object { $ValidatedWriteName[$_.displayName]=[System.GUID]$_.rightsGUID $ValidatedWriteGuid[$_.rightsGUID]=$_.displayName } # Locate Property Sets $Params = @{ SearchBase = $rootDSE.ConfigurationNamingContext LDAPFilter = '(&(objectclass=controlAccessRight)(rightsGUID=*)(validAccesses=48))' Property = @('displayName','rightsGUID') } Find-LDAPObject @Params | ForEach-Object { $PropertySetName[$_.displayName]=[System.GUID]$_.rightsGUID $PropertySetGuid[$_.rightsGUID]=$_.displayName } $( New-Variable -Scope $Scope -Name DSACLClassName -Value $ClassName -Description 'Maps Active Directory Class names to GUIDs' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLClassGuid -Value $ClassGuid -Description 'Maps Active Directory Class GUIDs to names' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLAttributeName -Value $AttributeName -Description 'Maps Active Directory Attribute names to GUIDs' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLAttributeGuid -Value $AttributeGuid -Description 'Maps Active Directory Attribute GUIDs to names' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLExtendedName -Value $ExtendedName -Description 'Maps Active Directory Extended Right names to GUIDs' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLExtendedGuid -Value $ExtendedGuid -Description 'Maps Active Directory Extended Right GUIDs to names' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLValidatedWriteName -Value $ValidatedWriteName -Description 'Maps Active Directory ValidatedWrite names to GUIDs' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLValidatedWriteGuid -Value $ValidatedWriteGuid -Description 'Maps Active Directory ValidatedWrite GUIDs to names' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLPropertySetName -Value $PropertySetName -Description 'Maps Active Directory Property Set names to GUIDs' -Option ReadOnly -Force -PassThru New-Variable -Scope $Scope -Name DSACLPropertySetGuid -Value $PropertySetGuid -Description 'Maps Active Directory Property Set GUIDs to names' -Option ReadOnly -Force -PassThru ) | Select-Object -Property Name, Description }
51.362637
192
0.698331
9bc8e313d71c69dbf0814271ffeba7b9d868b296
249
js
JavaScript
OOP/lesson2.js
mjbenefiel/tutorials
32b0f4099e62e0fd837f508b695b42fbdc7ce7a4
[ "Apache-2.0" ]
null
null
null
OOP/lesson2.js
mjbenefiel/tutorials
32b0f4099e62e0fd837f508b695b42fbdc7ce7a4
[ "Apache-2.0" ]
null
null
null
OOP/lesson2.js
mjbenefiel/tutorials
32b0f4099e62e0fd837f508b695b42fbdc7ce7a4
[ "Apache-2.0" ]
null
null
null
// encapsulation var userOne = { email: "sample@ninja.com", name: "Ryu", login(){ console.log(this.email, 'has logged in'); }, logout(){ console.log(this.email, 'has logged out') } }; userOne.age = 25 console.log(userOne)
15.5625
47
0.60241
1aa6e8f0016c7ea0931b55fe689ae958a9605de0
110
cql
SQL
src/main/resources/cql/drop_schema.cql
DataStax-Examples/geospatial-demo
d870824cb699c881b13b4a99000c546059e55361
[ "Apache-2.0" ]
null
null
null
src/main/resources/cql/drop_schema.cql
DataStax-Examples/geospatial-demo
d870824cb699c881b13b4a99000c546059e55361
[ "Apache-2.0" ]
null
null
null
src/main/resources/cql/drop_schema.cql
DataStax-Examples/geospatial-demo
d870824cb699c881b13b4a99000c546059e55361
[ "Apache-2.0" ]
1
2021-01-02T07:29:53.000Z
2021-01-02T07:29:53.000Z
use datastax_postcode_demo; truncate postcodes; drop table postcodes; drop keyspace datastax_postcode_demo;
18.333333
37
0.854545
80534cb20717169df346d58ff62684cea89a633e
39,710
java
Java
cache2k-api/src/main/java/org/cache2k/Cache.java
txodds/cache2k
9b5a9828a207a47df9a22e9ce43ba3860e22d895
[ "Apache-2.0" ]
null
null
null
cache2k-api/src/main/java/org/cache2k/Cache.java
txodds/cache2k
9b5a9828a207a47df9a22e9ce43ba3860e22d895
[ "Apache-2.0" ]
null
null
null
cache2k-api/src/main/java/org/cache2k/Cache.java
txodds/cache2k
9b5a9828a207a47df9a22e9ce43ba3860e22d895
[ "Apache-2.0" ]
null
null
null
package org.cache2k; /* * #%L * cache2k API * %% * Copyright (C) 2000 - 2021 headissue GmbH, Munich * %% * 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. * #L% */ import org.cache2k.operation.CacheOperation; import org.cache2k.annotation.Nullable; import org.cache2k.expiry.ExpiryPolicy; import org.cache2k.expiry.ExpiryTimeValues; import org.cache2k.io.CacheLoader; import org.cache2k.io.CacheWriter; import org.cache2k.io.CacheLoaderException; import org.cache2k.io.CacheWriterException; import org.cache2k.processor.EntryMutator; import org.cache2k.processor.EntryProcessingException; import org.cache2k.processor.EntryProcessor; import org.cache2k.processor.EntryProcessingResult; import org.cache2k.processor.MutableCacheEntry; import java.util.Map; import java.util.Set; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.Executor; import java.util.concurrent.TimeUnit; import java.util.function.Function; /* Credits * * Descriptions derive partly from the java.util.concurrent.ConcurrentMap. * Original copyright: * * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at * http://creativecommons.org/publicdomain/zero/1.0/ * * Some inspiration is also from the JSR107 Java Caching standard. */ /** * A cache is similar to a map or a key value store, allowing to retrieve and * update values which are associated to keys. In contrast to a {@code HashMap} the * cache allows concurrent access and modification to its content and * automatically controls the amount of entries in the cache to stay within * configured resource limits. * * <p>A cache can be obtained via a {@link Cache2kBuilder}, for example: * * <pre>{@code * Cache<Long, List<String>> cache = * new Cache2kBuilder<Long, List<String>>() {} * .name("myCache") * .eternal(true) * .build(); * }</pre> * * <p><b>Basic operation:</b> To mutate and retrieve the cache content the operations * {@link #put} and {@link #peek} can be used, for example: * * <pre>{@code * cache.put(1, "one"); * cache.put(2, "two"); * // might fail: * assertTrue(cache.containsKey(1)); * assertEquals("two", cache.peek(2)); * }</pre> * * It is important to note that the two assertion in the above example may fail. * A cache has not the same guarantees as a data storage, because it needs to remove * content automatically as soon as resource limits are reached. This is called <em>eviction</em>. * * <p><b>Populating:</b> A cache may automatically populate its contents via a {@link CacheLoader}. * For typical read mostly caching this has several advantages, * for details see {@link CacheLoader}. When using a cache loader the * additional methods for mutating the cache directly may not be needed. Some * methods, that do not interact with the loader such as {@link #containsKey} * may be false friends. To make the code more obvious and protect against * the accidental use of methods that do not invoke the loader transparently * a subset interface, for example the {@link KeyValueSource} can be used. * * <p><b>CAS-Operations:</b> The cache has a set of operations that examine an entry * and do a mutation in an atomic way, for example {@link #putIfAbsent}, {@link #containsAndRemove} * and {@link #replaceIfEquals}. To allow arbitrary semantics that operate atomically on an * {@link EntryProcessor} can be implemented and executed via {@link Cache#invoke}. * * <p><b>Compatibility:</b> Future versions of cache2k may introduce new methods to this interface. * To improve upward compatibility applications that need to implement this interface should use * {@link AbstractCache} or {@link ForwardingCache}. * * @param <K> type of the key * @param <V> type of the stores values * @author Jens Wilke * @see Cache2kBuilder to create a cache * @see CacheManager to manage and retrieve created caches * @see <a href="https://cache2k.org>cache2k homepage</a> * @see <a href="https://cache2k.org/docs/latest/user-guide.html">cache2k User Guide</a> */ public interface Cache<K, V> extends DataAware<K, V>, KeyValueSource<K, V>, AutoCloseable { /** * A configured or generated name of this cache instance. A cache in close state will still * return its name. * * @see Cache2kBuilder#name(String) * @return name of this cache */ String getName(); /** * Returns a value associated with the given key. If no value is present or it * is expired the cache loader is invoked, if configured, or {@code null} is returned. * * <p>If the {@link CacheLoader} is invoked, subsequent requests of the same key will block * until the loading is completed. Details see {@link CacheLoader}. * * <p>As an alternative {@link #peek} can be used if the loader should * not be invoked. * * @param key key with which the specified value is associated * @return the value associated with the specified key, or * {@code null} if there was no mapping for the key. * (If nulls are permitted a {@code null} can also indicate that the cache * previously associated {@code null} with the key) * @throws ClassCastException if the class of the specified key * prevents it from being stored in this cache * @throws NullPointerException if the specified key is {@code null} * @throws IllegalArgumentException if some property of the specified key * prevents it from being stored in this cache * @throws CacheLoaderException if the loading produced an exception . */ @Override @Nullable V get(K key); /** * Returns an entry that contains the cache value associated with the given key. * If no entry is present or the value is expired, either the loader is invoked * or {@code null} is returned. * * <p>If the loader is invoked, subsequent requests of the same key will block * until the loading is completed, details see {@link CacheLoader} * * <p>In case the cache loader yields an exception, the entry object will * be returned. The exception can be retrieved via {@link CacheEntry#getException()}. * * <p>If {@code null} values are present the method can be used to * check for an existent mapping and retrieve the value in one API call. * * <p>The alternative method {@link #peekEntry} can be used if the loader * should not be invoked. * * @param key key to retrieve the associated with the cache entry * @throws ClassCastException if the class of the specified key * prevents it from being stored in this cache * @throws NullPointerException if the specified key is null * @throws IllegalArgumentException if some property of the specified key * prevents it from being stored in this cache * @return An entry representing the cache mapping. Multiple calls for the same key may * return different instances of the entry object. */ @Nullable CacheEntry<K, V> getEntry(K key); /** * Returns the value associated to the given key. * * <p>In contrast to {@link #get(Object)} this method solely operates * on the cache content and does not invoke the {@linkplain CacheLoader cache loader}. * * <p>API rationale: Consequently all methods that do not invoke the loader * but return a value or a cache entry are prefixed with {@code peek} within this interface * to make the different semantics immediately obvious by the name. * * @param key key with which the specified value is associated * @return the value associated with the specified key, or * {@code null} if there was no mapping for the key. * (If nulls are permitted a {@code null} can also indicate that the cache * previously associated {@code null} with the key) * @throws ClassCastException if the class of the specified key * prevents it from being stored in this cache * @throws NullPointerException if the specified key is null * @throws IllegalArgumentException if some property of the specified key * prevents it from being stored in this cache * @throws CacheLoaderException if the loading produced an exception . */ @Nullable V peek(K key); /** * Returns an entry that contains the cache value associated with the given key. * If no entry is present or the value is expired, {@code null} is returned. * The {@linkplain CacheLoader cache loader} will not be invoked by this method. * * <p>In case an exception is present, for example from a load operation carried out * previously, the entry object will be returned. The exception can be * retrieved via {@link CacheEntry#getException()}. * * <p>If {@code null} values are present the method can be used to * check for an existent mapping and retrieve the value in one API call. * * @param key key to retrieve the associated with the cache entry * @throws ClassCastException if the class of the specified key * prevents it from being stored in this cache * @throws NullPointerException if the specified key is null * @throws IllegalArgumentException if some property of the specified key * prevents it from being stored in this cache * @return An entry representing the cache mapping. Multiple calls for the same key may * return different instances of the entry object. */ @Nullable CacheEntry<K, V> peekEntry(K key); /** * Returns {@code true}, if there is a mapping for the specified key. * * <p>Effect on statistics: The operation does increase the usage counter if a mapping is present, * but does not count as read and therefore does not influence miss or hit values. * * @param key key which association should be checked * @return {@code true}, if this cache contains a mapping for the specified * key * @throws ClassCastException if the key is of an inappropriate type for * this cache * @throws NullPointerException if the specified key is null */ boolean containsKey(K key); /** * Inserts a new value associated with the given key or updates an * existing association of the same key with the new value. * * <p>If an {@link ExpiryPolicy} is specified in the * cache configuration it is called and will determine the expiry time. * If a {@link CacheWriter} is registered, then it is called with the * new value. If the {@link ExpiryPolicy} or {@link CacheWriter} * yield an exception the operation will be aborted and the previous * mapping will be preserved. * * @param key key with which the specified value is associated * @param value value to be associated with the specified key * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this cache. * @throws NullPointerException if the specified key is null or the * value is null and the cache does not permit null values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this cache. * @throws CacheException if the cache was unable to process the request * completely, for example, if an exceptions was thrown * by a {@link CacheWriter} */ void put(K key, V value); /** * If the specified key is not already associated with a value (or exception), * call the provided task and associate it with the returned value. This is equivalent to * * <pre> {@code * if (!cache.containsKey(key)) { * V value = function.apply(key); * cache.put(key, value); * return value; * } else { * return cache.peek(key); * }}</pre> * * except that the action is performed atomically. Attention for pitfalls: * With null values permitted the behavior differs from the * {@link Map#computeIfAbsent(Object, Function)} semantics, which treat a null * value as absent. * * <p>See {@link #put(Object, Object)} for the effects on the cache writer and * expiry calculation. * * <p>Statistics: If an entry exists this operation counts as a hit, if the entry * is missing, a miss and put is counted. * * <p>Exceptions: If the call throws an exception the cache contents will * not be modified and the exception is propagated. * * @param key key with which the specified value is to be associated * @param function task that computes the value * @return the cached value or the result of the compute operation if no mapping is present * @throws RuntimeException in case function yields a runtime exception, * this is thrown directly * @throws NullPointerException if the specified key is {@code null} or the * value is {@code null} and the cache does not permit {@code null} values * @throws CacheLoaderException Depending on the {@link org.cache2k.io.ResiliencePolicy} the * cache entry may hold a loader exception which is rethrown * via the {@link org.cache2k.io.ExceptionPropagator} */ V computeIfAbsent(K key, Function<? super K, ? extends V> function); /** * If the specified key is not already associated * with a value, associate it with the given value. * This is equivalent to * <pre> {@code * if (!cache.containsKey(key)) { * cache.put(key, value); * return true; * } else { * return false; * }}</pre> * * except that the action is performed atomically. Attention for pitfalls: * With null values permitted the behavior differs from the * {@link Map#putIfAbsent(Object, Object)} semantics, which treat a null * value as absent. * * <p>See {@link #put(Object, Object)} for the effects on the cache writer and * expiry calculation. * * <p>Statistics: If an entry exists this operation counts as a hit, if the entry * is missing, a miss and put is counted. This definition is identical to the JSR107 * statistics semantics. This is not consistent with other operations like * {@link #containsAndRemove(Object)} and {@link #containsKey(Object)} that don't update * the hit and miss counter if solely the existence of an entry is tested and not the * value itself is requested. This counting is subject to discussion and future change. * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return {@code true}, if no entry was present and the value was associated with the key * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this cache * @throws NullPointerException if the specified key is null or the * value is null and the cache does not permit null values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this cache */ boolean putIfAbsent(K key, V value); /** * Replaces the entry for a key only if currently mapped to some value. * This is equivalent to * <pre> {@code * if (cache.containsKey(key)) { * cache.put(key, value); * return cache.peek(key); * } else * return null; * }</pre> * * except that the action is performed atomically. * * <p>As with {@link #peek(Object)}, no request to the {@link CacheLoader} is made, * if no entry is associated to the requested key. * * @param key key with which the specified value is associated * @param value value to be associated with the specified key * @return the previous value associated with the specified key, or * {@code null} if there was no mapping for the key. * (A {@code null} return can also indicate that the cache * previously associated {@code null} with the key) * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this cache * @throws NullPointerException if the specified key is null or the * value is null and the cache does not permit null values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this cache * @throws CacheLoaderException if the loading of the entry produced * an exception, which was not suppressed and is not yet expired */ @Nullable V peekAndReplace(K key, V value); /** * Replaces the entry for a key only if currently mapped to some value. * This is equivalent to * <pre> {@code * if (cache.containsKey(key)) { * cache.put(key, value); * return true * } else * return false; * }</pre> * * except that the action is performed atomically. * * <p>Statistics: If an entry exists this operation counts as a hit, if the entry * is missing, a miss and put is counted. This definition is identical to the JSR107 * statistics semantics. This is not consistent with other operations like * {@link #containsAndRemove(Object)} and {@link #containsKey(Object)} that don't update * the hit and miss counter if solely the existence of an entry is tested and not the * value itself is requested. This counting is subject to discussion and future change. * * @param key key with which the specified value is associated * @param value value to be associated with the specified key * @return {@code true} if a mapping is present and the value was replaced. * {@code false} if no entry is present and no action was performed. * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this cache. * @throws NullPointerException if the specified key is null or the * value is null and the cache does not permit null values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this cache. */ boolean replace(K key, V value); /** * Replaces the entry for a key only if currently mapped to a given value. * This is equivalent to * <pre> {@code * if (cache.containsKey(key) && Objects.equals(cache.get(key), oldValue)) { * cache.put(key, newValue); * return true; * } else * return false; * }</pre> * * except that the action is performed atomically. * * @param key key with which the specified value is associated * @param oldValue value expected to be associated with the specified key * @param newValue value to be associated with the specified key * @return {@code true} if the value was replaced * @throws ClassCastException if the class of a specified key or value * prevents it from being stored in this map * @throws NullPointerException if a specified key or value is null, * and this map does not permit null keys or values * @throws IllegalArgumentException if some property of a specified key * or value prevents it from being stored in this map */ boolean replaceIfEquals(K key, V oldValue, V newValue); /** * Removes the mapping for a key from the cache if it is present. * * <p>Returns the value to which the cache previously associated the key, * or {@code null} if the cache contained no mapping for the key. * * <p>If the cache does permit null values, then a return value of * {@code null} does not necessarily indicate that the cache * contained no mapping for the key. It is also possible that the cache * explicitly associated the key to the value {@code null}. * * This is equivalent to * <pre> {@code * V tmp = cache.peek(key); * cache.remove(key); * return tmp; * }</pre> * * except that the action is performed atomically. * * <p>As with {@link #peek(Object)}, no request to the {@link CacheLoader} is made, * if no entry is associated to the requested key. * * @param key key whose mapping is to be removed from the cache * @return the previous value associated with the specified key, or * {@code null} if there was no mapping for the key. * (A {@code null} can also indicate that the cache * previously associated the value {@code null} with the key) * @throws NullPointerException if a specified key is null * @throws ClassCastException if the key is of an inappropriate type for * the cache. This check is optional depending on the cache * configuration. */ @Nullable V peekAndRemove(K key); /** * Removes the mapping for a key from the cache and returns {@code true} if it * one was present. * * @param key key whose mapping is to be removed from the cache * @return {@code true} if the cache contained a mapping for the specified key * @throws NullPointerException if a specified key is null * @throws ClassCastException if the key is of an inappropriate type for * the cache. This check is optional depending on the cache * configuration. */ boolean containsAndRemove(K key); /** * Removes the mapping for a key from the cache if it is present. * * <p>If a writer is registered {@link CacheWriter#delete(Object)} will get called. * * <p>These alternative versions of the remove operation exist: * <ul> * <li>{@link #containsAndRemove(Object)}, returning a success flag</li> * <li>{@link #peekAndRemove(Object)}, returning the removed value</li> * <li>{@link #removeIfEquals(Object, Object)}, conditional removal matching on the current * value</li> * </ul> * * <p>Rationale: It is intentional that this method does not return a boolean or the * previous entry. When operating in cache through configuration (which means a * {@link CacheWriter} and {@link CacheLoader} is registered) a boolean could mean * two different things: the value was present in the cache or the value was present * in the system of authority. The purpose of this interface is a reduced * set of methods that cannot be misinterpreted. * * @param key key which mapping is to be removed from the cache, not null * @throws NullPointerException if a specified key is null * @throws ClassCastException if the key is of an inappropriate type for * this map * @throws CacheWriterException if the writer call failed */ void remove(K key); /** * Remove the mapping if the stored value is equal to the comparison value. * * <p>If no mapping exists, this method will do nothing and return {@code false}, even * if the tested value is {@code null}. * * @param key key whose mapping is to be removed from the cache * @param expectedValue value that must match with the existing value in the cache. * It is also possible to check whether the value is {@code null}. * @throws NullPointerException if a specified key is {@code null} * @throws ClassCastException if the key is of an inappropriate type for * this map * @return {@code true}, if mapping was removed */ boolean removeIfEquals(K key, V expectedValue); /** * Removes a set of keys. This has the same semantics of calling * remove to every key, except that the cache is trying to optimize the * bulk operation. * * @param keys a set of keys to remove * @throws NullPointerException if a specified key is null */ void removeAll(Iterable<? extends K> keys); /** * Updates an existing cache entry for the specified key, so it associates * the given value, or, insert a new cache entry for this key and value. The previous * value will returned, or null if none was available. * * <p>Returns the value to which the cache previously associated the key, * or {@code null} if the cache contained no mapping for the key. * * <p>If the cache does permit null values, then a return value of * {@code null} does not necessarily indicate that the cache * contained no mapping for the key. It is also possible that the cache * explicitly associated the key to the value {@code null}. * * This is equivalent to * <pre> {@code * V tmp = cache.peek(key); * cache.put(key, value); * return tmp; * }</pre> * * except that the action is performed atomically. * * <p>As with {@link #peek(Object)}, no request to the {@link CacheLoader} is made, * if no entry is associated to the requested key. * * <p>See {@link #put(Object, Object)} for the effects on the cache writer and * expiry calculation. * * @param key key with which the specified value is associated * @param value value to be associated with the specified key * @return the previous value associated with the specified key, or * {@code null} if there was no mapping for the key. * (A {@code null} return can also indicate that the cache * previously associated {@code null} with the key) * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this cache. * @throws NullPointerException if the specified key is null or the * value is null and the cache does not permit null values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this cache. */ @Nullable V peekAndPut(K key, V value); /** * Updates an existing not expired mapping to expire at the given point in time. * If there is no mapping associated with the key or it is already expired, this * operation has no effect. The special values {@link org.cache2k.expiry.Expiry#NOW} and * {@link org.cache2k.expiry.Expiry#REFRESH} also effect an entry that was just * refreshed. * * <p>If the expiry time is in the past, the entry will expire immediately and * refresh ahead is triggered, if enabled. * * <p>Although the special time value {@link org.cache2k.expiry.Expiry#NOW} will lead * to an effective removal of the cache entry, the writer is not called, since the * method is for cache control only. * * <p>The cache must be configured with a {@link ExpiryPolicy} or * {@link Cache2kBuilder#expireAfterWrite(long, TimeUnit)} otherwise expiry * timing is not available and this method will throw an exception. An immediate expire * via {@link org.cache2k.expiry.Expiry#NOW} is always working. * * @param key key with which the specified value is associated * @param millis Time in milliseconds since epoch when the entry should expire. * Also see {@link ExpiryTimeValues} * @throws IllegalArgumentException if no expiry was enabled during cache setup. */ void expireAt(K key, long millis); /** * Request to load the given set of keys into the cache. Only missing or expired * values will be loaded. The method returns immediately with a {@code CompletableFuture}. * If no asynchronous loader is specified, the executor specified by * {@link Cache2kBuilder#loaderExecutor(Executor)} will be used. * * <p>The cache uses multiple threads to load the values in parallel. If thread resources * are not sufficient, meaning the used executor is throwing * {@link java.util.concurrent.RejectedExecutionException} the calling thread is used to produce * back pressure. * * <p>If no loader is defined, the method will throw an immediate exception. * * <p>The operation will return a {@link CacheLoaderException} in case of a call to the loader * threw an exception. If resilience is used and exceptions are cached, this also applied to * cached exceptions. Thus, the operation completes successful only if all values were * loaded successfully. * * @param keys The keys to be loaded * @return future getting notified on completion * @throws UnsupportedOperationException if no loader is defined */ CompletableFuture<Void> loadAll(Iterable<? extends K> keys); /** * Request to load the given set of keys into the cache. Missing or expired values will be loaded * a {@code CompletableFuture}. The method returns immediately with a {@code CompletableFuture}. * If no asynchronous loader is specified, the executor sepcified by * {@link Cache2kBuilder#loaderExecutor(Executor)} will be used. * * <p>The cache uses multiple threads to load the values in parallel. If thread resources * are not sufficient, meaning the used executor is throwing * {@link java.util.concurrent.RejectedExecutionException} the calling thread is used to produce * back pressure. * * <p>If no loader is defined, the method will throw an immediate exception. * * @param keys The keys to be loaded * @return future getting notified on completion * @throws UnsupportedOperationException if no loader is defined */ CompletableFuture<Void> reloadAll(Iterable<? extends K> keys); /** * Invoke a user defined function on a cache entry. * * For examples and further details consult the documentation of {@link EntryProcessor} * and {@link org.cache2k.processor.MutableCacheEntry}. * * @param key the key of the cache entry that should be processed * @param processor processor instance to be invoked * @param <R> type of the result * @throws EntryProcessingException if an exception happened inside * {@link EntryProcessor#process(MutableCacheEntry)} * @return result provided by the entry processor * @see EntryProcessor * @see org.cache2k.processor.MutableCacheEntry */ <@Nullable R> @Nullable R invoke(K key, EntryProcessor<K, V, R> processor); /** * Invoke a user defined operation on a cache entry. * * For examples and further details consult the documentation of {@link EntryProcessor} * and {@link org.cache2k.processor.MutableCacheEntry}. * * @param key the key of the cache entry that should be processed * @param mutator processor instance to be invoked * @throws EntryProcessingException if an exception happened inside * {@link EntryProcessor#process(MutableCacheEntry)} * @see EntryProcessor * @see org.cache2k.processor.MutableCacheEntry * @since 2.0 */ default void mutate(K key, EntryMutator<K, V> mutator) { invoke(key, new EntryProcessor<K, V, Void>() { @Override public @Nullable Void process(MutableCacheEntry<K, V> entry) throws Exception { mutator.mutate(entry); return null; } }); } /** * Invoke a user defined function on multiple cache entries specified by the * {@code keys} parameter. * * <p>The order of the invocation is unspecified. To speed up processing the cache * may invoke the entry processor in parallel. * * For examples and further details consult the documentation of {@link EntryProcessor} * and {@link org.cache2k.processor.MutableCacheEntry}. * * @param keys the keys of the cache entries that should be processed * @param entryProcessor processor instance to be invoked * @param <R> type of the result * @return An immutable map containing the invocation results for every cache key * @see EntryProcessor * @see org.cache2k.processor.MutableCacheEntry */ <@Nullable R> Map<K, EntryProcessingResult<R>> invokeAll( Iterable<? extends K> keys, EntryProcessor<K, V, R> entryProcessor); /** * Invoke a user defined mutation operation on multiple cache entries specified by the * {@code keys} parameter. * * <p>The order of the invocation is unspecified. To speed up processing the cache * may invoke the entry processor in parallel. * * For examples and further details consult the documentation of {@link EntryProcessor} * and {@link org.cache2k.processor.MutableCacheEntry}. * * @param keys the keys of the cache entries that should be processed * @param mutator processor instance to be invoked * @see EntryProcessor * @see org.cache2k.processor.MutableCacheEntry * @since 2.0 */ @SuppressWarnings("nullness") default void mutateAll(Iterable<? extends K> keys, EntryMutator<K, V> mutator) { invokeAll(keys, entry -> { mutator.mutate(entry); return null; }); } /** * Retrieve values from the cache associated with the provided keys. If the * value is not yet in the cache, the loader is invoked. * * <p>Executing the request, the cache may do optimizations like * utilizing multiple threads for invoking the loader or using the bulk * methods on the loader. * * <p>Exception handling: In case of loader exceptions, the method will throw * an immediate exception if the load for all requested keys resulted in an * exception or another problem occurred. If some keys were loaded successfully the method * will return a map and terminate without exception, but requesting the faulty value from the * map returns an exception. * * <p>The operation is not performed atomically. * * @return an immutable map with the requested values * @throws NullPointerException if one of the specified keys is null * @throws CacheLoaderException in case the loader has permanent failures. * Otherwise the exception is thrown when the key is requested. */ Map<K, V> getAll(Iterable<? extends K> keys); /** * Bulk version for {@link #peek(Object)} * * <p>If the cache permits null values, the map will contain entries * mapped to a null value. * * <p>If the loading of an entry produced an exception, which was not * suppressed and is not yet expired. This exception will be thrown * as {@link CacheLoaderException} when the entry is accessed * via the map interface. * * <p>The operation is not performed atomically. Mutations of the cache during * this operation may or may not affect the result. * * @throws NullPointerException if one of the specified keys is null * @throws IllegalArgumentException if some property of the specified key * prevents it from being stored in this cache */ Map<K, V> peekAll(Iterable<? extends K> keys); /** * Insert all elements of the map into the cache. * * <p>See {@link Cache#put(Object, Object)} for information about the * interaction with the {@link CacheWriter} and {@link ExpiryPolicy} * * @param valueMap Map of keys with associated values to be inserted in the cache * @throws NullPointerException if one of the specified keys is null */ void putAll(Map<? extends K, ? extends V> valueMap); /** * A set view of all keys in the cache. The set is not stable but reflecting * * * <p>Contract: An iteration or stream is usable while concurrent operations happen on the cache. * All entry keys will be iterated when present in the cache at the moment * of the call to {@link Set#iterator()}. An expiration or mutation happening * during the iteration, may or may not be reflected. It is ensured that every key is only * iterated once. * * <p>The iterator itself is not thread safe. Calls to one iterator instance from * different threads are illegal or need proper synchronization. * * <p><b>Statistics:</b> Iteration is neutral to the cache statistics. * * <p><b>Efficiency:</b> Iterating keys is faster as iterating complete entries. * * */ Set<K> keys(); /** * All entries in the cache. * * <p>See {@link #keys()} for the general contract. * * <p><b>Efficiency:</b> Iterating entries is less efficient then just iterating keys. The cache * needs to create a new entry object and employ some sort of synchronisation to supply a * consistent and immutable entry. * * @see #keys() */ Set<CacheEntry<K, V>> entries(); /** * Removes all cache contents. This has the same semantics of calling * remove to every key, except that the cache is trying to optimize the * bulk operation. Same as {@code clear} but listeners will be called. * * An alternative version for improved parallel processing is available at * {@link CacheOperation#removeAll()} */ void removeAll(); /** * Clear the cache in a fast way, causing minimal disruption. Not calling the listeners. * An alternative version for improved parallel processing is available at * {@link CacheOperation#clear()} */ void clear(); /** * Release resources in the local VM and remove the cache from the CacheManager. * * <p>The method is designed to free resources and finish operations as gracefully and fast * as possible. Some cache operations take an unpredictable long time such as the call of * the {@link CacheLoader}, so it may happen that the cache still has threads * in use when this method returns. * * <p>After close, subsequent cache operations will throw a {@link IllegalStateException}. * Cache operations currently in progress, may or may not be terminated with an exception. * A subsequent call to close will not throw an exception. * * <p>If all caches need to be closed it is more effective to use {@link CacheManager#close()} * * <p>An alternative version for improved parallel processing is available at * {@link CacheOperation#close()} */ @Override void close(); /** * Return the cache manager for this cache instance. */ CacheManager getCacheManager(); /** * Returns {@code true} if cache was closed or closing is in progress. */ boolean isClosed(); /** * Returns internal information. This is an expensive operation, since internal statistics are * collected. During the call, concurrent operations on the cache may be blocked. This method will * not throw the {@link IllegalStateException} in case the cache is closed, but return only * the cache name and no statistics. */ @Override String toString(); /** * Request an alternative interface for this cache instance. * * @throws UnsupportedOperationException if interface is not available */ <T> T requestInterface(Class<T> type); /** * Returns a map interface for operating with this cache. Operations on the map * affect the cache directly, as well as modifications on the cache will affect the map. * * <p>The returned map supports {@code null} values if enabled via * {@link Cache2kBuilder#permitNullValues(boolean)}. * * <p>The {@code equals} and {@code hashCode} methods of the {@code Map} are forwarded to the * cache. A map is considered identical when from the same cache instance. This is not compatible * to the general {@code Map} contract. * * <p>Operations on the map do not invoke the loader. * * <p>Multiple calls to this method return a new object instance which is a wrapper of the cache * instance. Calling this method is a cheap operation. * * @return {@code ConcurrentMap} wrapper for this cache instance */ ConcurrentMap<K, V> asMap(); }
43.878453
100
0.699924
f02bfeeedc763134eda5d9bb6d6b69f7c04e9bb5
3,550
js
JavaScript
template/conf.js
azure-contrib/azure-node-tuneup
666a69abdccdef204223a67cc5ccd444630fab17
[ "Apache-2.0" ]
3
2015-01-27T01:11:24.000Z
2015-09-08T22:18:19.000Z
conf.js
glennblock/azure-node-runtime-selector
9734df91cd2ca439c77e6067cd80e6ca999f7acc
[ "Apache-2.0" ]
1
2015-09-25T18:00:45.000Z
2015-09-25T18:00:45.000Z
template/conf.js
azure-contrib/azure-node-tuneup
666a69abdccdef204223a67cc5ccd444630fab17
[ "Apache-2.0" ]
null
null
null
var fs=require('fs'); var path=require('path'); var npmVersion='latest'; var nodeVersion='latest'; var nodeVersionSetting=null; var npmVersionSetting=null; var util = require('util'); var path=require('path'); var fs = require('fs'); var sitePath = process.env.DEPLOYMENT_TARGET var packageJson; var packageJsonPath = process.env.DEPLOYMENT_TARGET + '\\package.json'; if (path.existsSync(packageJsonPath)) { packageJson = require(packageJsonPath); } else { packageJson = {}; } function writeVersions() { if (process.env.NODE_VERSION != undefined && process.env.NODE_VERSION != null) { nodeVersionSetting = process.env.NODE_VERSION; nodeVersion=nodeVersionSetting; } if (process.env.NPM_VERSION != undefined && process.env.NPM_VERSION != null) { npmVersionSetting = process.env.NPM_VERSION; npmVersion = npmVersionSetting; } if (packageJson.engines != undefined) { var nodeTemp = packageJson.engines.node; if (nodeVersionSetting==null && nodeTemp != undefined && nodeTemp != null) nodeVersion = nodeTemp; var npmTemp = packageJson.engines.npm; if (npmVersionSetting==null && npmTemp != undefined && npmTemp != null) npmVersion = npmTemp; } var tempBase = process.env.DEPLOYMENT_TARGET + "/../../node/nodist/bin/"; fs.writeFileSync(tempBase + 'nodeVersion.tmp', nodeVersion); fs.writeFileSync(tempBase + 'npmVersion.tmp', npmVersion); } var template="<?xml version=\"1.0\" encoding=\"utf-8\"?> \r\n \ <configuration>\r\n \ <system.webServer> \r\n \ <webSocket enabled=\"false\" /> \r\n \ <handlers> \r\n \ <add name=\"iisnode\" path=\"{NodeStartFile}\" verb=\"*\" modules=\"iisnode\"/> \r\n \ </handlers> \r\n \ <rewrite> \r\n \ <rules> \r\n \ <rule name=\"StaticContent\"> \r\n \ <action type=\"Rewrite\" url=\"public{REQUEST_URI}\"/> \r\n \ </rule> \ <rule name=\"DynamicContent\"> \r\n \ <conditions> \r\n \ <add input=\"{REQUEST_FILENAME}\" matchType=\"IsFile\" negate=\"True\"/> \r\n \ </conditions> \r\n \ <action type=\"Rewrite\" url=\"{NodeStartFile}\"/> \r\n \ </rule> \r\n \ </rules> \r\n \ </rewrite> \r\n \ <iisnode \r\n \ nodeProcessCommandLine=\"&quot;c:\\home\\node\\nodist\\bin\\node.exe&quot;\" \r\n \ debuggingEnabled=\"false\" \r\n \ logDirectory=\"..\\..\\LogFiles\\nodejs\" \r\n \ watchedFiles=\"*.js;iisnode.yml;node_modules\\*;views\\*.jade;views\\*.ejb;routes\\*.js\" /> \r\n \ </system.webServer> \r\n \ </configuration>"; function createIisNodeWebConfigIfNeeded(sitePath) { // Check if web.config exists in the 'repository', if not generate it in 'wwwroot' var webConfigPath = path.join(sitePath, 'web.config'); //if (!path.existsSync(webConfigPath)) { var nodeStartFilePath = getNodeStartFile(sitePath); if (!nodeStartFilePath) { console.log('Missing server.js/app.js files, web.config is not generated'); return; } var webConfigContent = template.replace(/{NodeStartFile}/g, nodeStartFilePath); fs.writeFileSync(webConfigPath, webConfigContent, 'utf8'); //} } function getNodeStartFile(sitePath) { var nodeStartFiles = ['server.js', 'app.js']; for (var i in nodeStartFiles) { var nodeStartFilePath = path.join(sitePath, nodeStartFiles[i]); if (path.existsSync(nodeStartFilePath)) { return nodeStartFiles[i]; } } return null; } writeVersions(); createIisNodeWebConfigIfNeeded(sitePath);
31.981982
105
0.64338
4b29c211ae515abc041f7a8fbb1f369f81c1043d
2,580
ps1
PowerShell
Databases/VSSTester/DiskShadow/Invoke-RemoveExposedDrives.ps1
dpaulson45/CSS-Exchange
16154ff8217a61694b56c8d46a136aa09e03187c
[ "MIT" ]
1
2021-06-09T12:58:21.000Z
2021-06-09T12:58:21.000Z
Databases/VSSTester/DiskShadow/Invoke-RemoveExposedDrives.ps1
paulvill76/CSS-Exchange
824886e13761ddf2f237855564b76a66ab2e29c6
[ "MIT" ]
null
null
null
Databases/VSSTester/DiskShadow/Invoke-RemoveExposedDrives.ps1
paulvill76/CSS-Exchange
824886e13761ddf2f237855564b76a66ab2e29c6
[ "MIT" ]
null
null
null
function Invoke-RemoveExposedDrives { function Out-removeDHSFile { param ([string]$fileline) $fileline | Out-File -FilePath "$path\removeSnapshot.dsh" -Encoding ASCII -Append } " " Get-Date Write-Host "Diskshadow Snapshots" -ForegroundColor Green $nl Write-Host "--------------------------------------------------------------------------------------------------------------" " " Write-Host " " if ($null -eq $logsnapvol) { $exposedDrives = $dbsnapvol } else { $exposedDrives = $dbsnapvol.ToString() + " and " + $logsnapvol.ToString() } "If the snapshot was successful, the snapshot should be exposed as drive(s) $exposedDrives." "You should be able to see and navigate the snapshot with File Explorer. How would you like to proceed?" Write-Host " " Write-Host "NOTE: It is recommended to wait a few minutes to allow truncation to possibly occur before moving past this point." -ForegroundColor Cyan Write-Host " This allows time for the logs that are automatically collected to include the window for the truncation to occur." -ForegroundColor Cyan Write-Host Write-Host "When ready, choose from the options below:" -ForegroundColor Yellow " " Write-Host " 1. Remove exposed snapshot now" Write-Host " 2. Keep snapshot exposed" Write-Host " " Write-Warning "Selecting option 1 will permanently delete the snapshot created, i.e. your backup will be deleted." " " $matchCondition = "^[1-2]$" Write-Debug "matchCondition: $matchCondition" do { Write-Host "Selection" -ForegroundColor Yellow -NoNewline $removeExpose = Read-Host " " if ($removeExpose -notmatch $matchCondition) { Write-Host "Error! Please choose a valid option." -ForegroundColor red } } while ($removeExpose -notmatch $matchCondition) $unexposeCommand = "delete shadows exposed $dbsnapvol" if ($null -ne $logsnapvol) { $unexposeCommand += $nl + "delete shadows exposed $logsnapvol" } if ($removeExpose -eq "1") { New-Item -Path $path\removeSnapshot.dsh -type file -Force Out-removeDHSFile $unexposeCommand Out-removeDHSFile "exit" & 'C:\Windows\System32\diskshadow.exe' /s $path\removeSnapshot.dsh } elseif ($removeExpose -eq "2") { Write-Host "You can remove the snapshots at a later time using the diskshadow tool from a command prompt." Write-Host "Run diskshadow followed by these commands:" Write-Host $unexposeCommand } }
44.482759
158
0.64186
d515bb8de19e53af55901cac58b0498c1c76deea
1,045
ps1
PowerShell
build.ps1
jnm2/YouTubeDownloadTool
7f8f40045389ea26a65ca0b6133c70ba757f5c3c
[ "MIT" ]
3
2021-04-26T14:38:19.000Z
2021-11-28T10:46:21.000Z
build.ps1
jnm2/YouTubeDownloadTool
7f8f40045389ea26a65ca0b6133c70ba757f5c3c
[ "MIT" ]
null
null
null
build.ps1
jnm2/YouTubeDownloadTool
7f8f40045389ea26a65ca0b6133c70ba757f5c3c
[ "MIT" ]
null
null
null
Param( [switch] $Release ) $ErrorActionPreference = 'Stop' # Options $configuration = 'Release' $artifactsDir = Join-Path (Resolve-Path .) 'artifacts' $binDir = Join-Path $artifactsDir 'Bin' $logsDir = Join-Path $artifactsDir 'Logs' # Detection . $PSScriptRoot\build\Get-DetectedCiVersion.ps1 $versionInfo = Get-DetectedCiVersion -Release:$Release Update-CiServerBuildName $versionInfo.ProductVersion Write-Host "Building using version $($versionInfo.ProductVersion)" $dotnetArgs = @( '--configuration', $configuration '/p:RepositoryCommit=' + $versionInfo.CommitHash '/p:Version=' + $versionInfo.ProductVersion '/p:FileVersion=' + $versionInfo.FileVersion '/p:ContinuousIntegrationBuild=' + ($env:CI -or $env:TF_BUILD) ) # Build dotnet build /bl:$logsDir\build.binlog @dotnetArgs if ($LastExitCode) { exit 1 } # Publish Remove-Item -Recurse -Force $binDir -ErrorAction Ignore dotnet publish src\YouTubeDownloadTool --no-build --output $binDir /bl:$logsDir\publish.binlog @dotnetArgs if ($LastExitCode) { exit 1 }
29.027778
106
0.74067
9bad1adcf8e38617591801c9c39cad05238ff395
17,382
js
JavaScript
nebuloids.js
Jakeman582/Nebuloids
5c4e838e21eb83d2e7b5fd6da5002241ee44b58e
[ "MIT" ]
null
null
null
nebuloids.js
Jakeman582/Nebuloids
5c4e838e21eb83d2e7b5fd6da5002241ee44b58e
[ "MIT" ]
null
null
null
nebuloids.js
Jakeman582/Nebuloids
5c4e838e21eb83d2e7b5fd6da5002241ee44b58e
[ "MIT" ]
null
null
null
/* Ship variables */ var shipWidth = 60; var shipHeight = 60; var shipYOffset = 10; var shipColor = "#777777"; var shipVelocity = 350; /* Nebuloid variables */ var nebuloidWidth = 30; var nebuloidHeight = 30; var nebuloidVelocity = 50; var nebuloidRows = 5; var nebuloidColumns = 10; var nebuloidsAlive = nebuloidRows * nebuloidColumns; var nebuloidShotFrequency = 0.0005; var nebuloidLaserVelocity = 200; /* Cybernator variables */ var cybernatorWidth = 90; var cybernatorHeight = 30; var cybernatorVelocity = 200; var cybernatorColor = "#AAFFAA"; var cybernatorYOffset = 5; /* Shield variables */ var shieldNumber = 9; var shieldWidth = 60; var shieldHeight = 60; var shieldHealth = 3; var shieldColor = "#00FFFF"; var shieldGap = 40; var shieldYOffset = 100; /* Grid spacing variables */ var gridX = 30; var gridY = 30; var rowSpace = 10; var columnSpace = 30; /* Laser variables */ var laserWidth = 4; var laserHeight = 20; var laserVelocity = 500; var laserColor = "#FF0000"; /* Gameplay variables */ var playingGame = true; var nebuloidScore = 1; var cybernatorScore = 5; var score = 0; var starCount = 75; var minimumStarSize = 1; var maximumStarSize = 5; var minimumStarVelocity = 30; var maximumStarVelocity = 300; var parallaxLayers = 5; var playerLost = false; var playerWon = false; /* Performance variables */ var framesPerSecond = 60; var framesThisSecond = 0; var timeStep = 1000 / framesPerSecond; var lastUpdate = 0; var lastFrameTime = 0; var deltaTime = 0; var Keyboard = { RIGHT: 39, LEFT: 37, DOWN: 40, UP: 38, SPACE: 32, Q: 81, W: 87, P: 80 }; var Pressed = { RIGHT: false, LEFT: false }; var Color = { RED: "#FF0000", ORANGE: "#FFA500", YELLOW: "#FFFF00", GREEN: "#00FF00", BLUE: "#0000FF", INDIGO: "#4B0082", VIOLET: "#EE82EE", }; var Direction = { LEFT: -1, RIGHT: 1 }; /* Needed global variables */ var screen; var scoreLabel; var graphics; var ship; var cybernator; var lasers = []; var nebuloids = []; var nebuloidLasers = []; var shields = []; var stars = []; var date; var index; var subIndex; var row; var column; // Loading images var loadCount = 0; var loadTotal = 0; var preloaded = false; var sprites = []; var imagesToLoad = [ "images/Destroyer.png", "images/Virus.png", "images/Invader(Red).png", "images/Invader(Yellow).png", "images/Invader(Green).png", "images/Invader(Blue).png", "images/Cybernater.png", "images/BlastShield.png" ]; var enemyOffset = 1; function main() { // Setup the screen and the ship setup(); // Handle key down events document.onkeydown = function(e) { keyDown(e); } document.onkeyup = function(e) { keyUp(e); } // Start the animation requestAnimationFrame(playGame); } function resetGame() { playingGame = true; framesThisSecond = 0; lastUpdate = 0; lastFrameTime = 0; deltaTime = 0; if(playerLost) { score = 0; nebuloidVelocity = 50; nebuloidShotFrequency = 0.0005; playerLost = false; } if(playerWon) { nebuloidVelocity += 2; nebuloidShotFrequency += 0.001; playerWon = false; } scoreLabel.innerHTML = "" + score; nextGameTick = date.getTime(); ship.x = (screen.width - shipWidth) / 2; ship.y = screen.height - shipHeight - shipYOffset; for(row = 0; row < nebuloidRows; row++) { for(column = 0; column < nebuloidColumns; column++) { nebuloids[row][column].alive = true; nebuloids[row][column].x = gridX + (nebuloidWidth + columnSpace) * column; nebuloids[row][column].y = gridY + (nebuloidHeight + rowSpace) * row; nebuloids[row][column].lastX = nebuloids[row][column].x; nebuloids[row][column].lastY = nebuloids[row][column].y nebuloids[row][column].direction = Direction.RIGHT; } } nebuloidsAlive = nebuloidRows * nebuloidColumns; for(index = 0; index < lasers.length; index++) { lasers.splice(index, 1); } for(index = 0; index < nebuloidLasers.length; index++) { nebuloidLasers.splice(index, 1); } cybernator.x = -cybernator.width; cybernator.alive = false; for(index = 0; index < shields.length; index++) { shields[index].health = shieldHealth; } } function setup() { //Load images before doing anything else; sprites = loadImages(imagesToLoad); // Get the canvas element var canvas = document.getElementById("canvas"); graphics = canvas.getContext("2d"); // Get the score label scoreLabel = document.getElementById("scoreLabel"); scoreLabel.innerHTML = "" + score; // Initialize the global time object date = new Date(); nextGameTick = date.getTime(); // Initialize the screen and draw screen = new Screen(0, 0, canvas.width, canvas.height, "#000000"); // Ship should start at the bottom, and centered horizontally ship = new Ship( (screen.width - shipWidth) / 2, screen.height - shipHeight - shipYOffset, shipVelocity, shipWidth, shipHeight, shipColor, sprites[0] ); // The cybernator cybernator = new Nebuloid( -cybernatorWidth, cybernatorYOffset, cybernatorVelocity, cybernatorWidth, cybernatorHeight, cybernatorColor, sprites[6], false, 1 ); // 5 rows of nebuloids, each a different type // Row 0 -> virus, Row 1 -> red, Row 2 -> yellow, Row 3 -> green, // Row 4 -> blue for(row = 0; row < nebuloidRows; row++) { nebuloids[row] = []; var rowColor = null; if(row == 0) { rowColor = Color.INDIGO; } else if(row == 1){ rowColor = Color.RED; } else if(row == 2){ rowColor = Color.YELLOW; } else if(row == 3){ rowColor = Color.GREEN; } else { rowColor = Color.BLUE; } for(column = 0; column < nebuloidColumns; column++) { nebuloids[row].push(new Nebuloid( gridX + (nebuloidWidth + columnSpace) * column, gridY + (nebuloidHeight + rowSpace) * row, nebuloidVelocity, nebuloidWidth, nebuloidHeight, rowColor, sprites[row + enemyOffset] )); } } // Shields should be centered horizontally var shieldScreenWidth = shieldNumber * shieldWidth + (shieldNumber - 1) * shieldGap; var shieldXOffset = (screen.width - shieldScreenWidth) / 2; for(index = 0; index < shieldNumber; index++) { shields[index] = new Shield( shieldXOffset + index * (shieldGap + shieldWidth), screen.height - shieldHeight - shieldYOffset, shieldWidth, shieldHeight, shieldHealth, shieldColor, sprites[7] ); } // Make sure when setting up, we are playing the game and the score is reset playingGame = true; score = 0; // Initialize the stars array for(index = 0; index < starCount; index++) { var z = getParallaxLayer(parallaxLayers); var size = getParallaxSize(z); var velocity = getParallaxVelocity(z); stars[index] = new Particle( randomInt(0, screen.width - size), randomInt(0, screen.height), size, size, 0, velocity, "#FFFFFF" ); } } function playGame(timeStamp) { if(playingGame && preloaded) { if(timeStamp < lastUpdate + (1000 / framesPerSecond)) { requestAnimationFrame(playGame); return; } deltaTime += timeStamp - lastUpdate; lastUpdate = timeStamp; if(timeStamp > lastUpdate + 1000) { framesPerSecond = 0.25 * framesThisSecond + (1 - 0.25) * framesPerSecond; lastUpdate = timeStamp; framesThisSecond = 0; } framesThisSecond++; var updateSteps = 0; while(deltaTime >= timeStep) { update(timeStep / 1000); deltaTime -= timeStep; if(++updateSteps >= 100) { deltaTime = 0; break; } } render((deltaTime / timeStep) / 1000 ); } requestAnimationFrame(playGame); } function makeLaser() { lasers.push(new Laser( ship.x + (ship.width - laserWidth) / 2, ship.y, laserVelocity, laserWidth, laserHeight, laserColor, -1 )); } function keyDown(e) { if(e.keyCode === Keyboard.LEFT) { Pressed.LEFT = true; } else if(e.keyCode === Keyboard.RIGHT) { Pressed.RIGHT = true; } else if(e.keyCode === Keyboard.SPACE) { makeLaser(); } } function keyUp(e) { if(e.keyCode === Keyboard.LEFT) { Pressed.LEFT = false; } else if(e.keyCode === Keyboard.RIGHT) { Pressed.RIGHT = false; } } function update(deltaTime) { var shiftedDown = false; if(!cybernator.alive && !cybernator.exploding) { if(randomInt(1, 750) == 1) { makeCybernator() } } else { cybernator.update(deltaTime); } for(index = 0; index < starCount; index++) { stars[index].update(deltaTime); if(stars[index].y > screen.height) { stars[index].y = -stars[index].height; stars[index].x = randomInt(0, screen.width - stars[index].width); } } for(row = 0; row < nebuloidRows; row++) { for(column = 0; column < nebuloidColumns; column++) { if(!shiftedDown) { var leftBoundaryHit = (nebuloids[row][column].x < 0) && nebuloids[row][column].alive; var rightBoundaryHit = (nebuloids[row][column].x + nebuloidWidth > screen.width) && nebuloids[row][column].alive; if(leftBoundaryHit || rightBoundaryHit) { shiftNebuloidsDown(); shiftedDown = true; } } } } for(row = 0; row < nebuloidRows; row++) { for(column = 0; column < nebuloidColumns; column++) { nebuloids[row][column].update(deltaTime); if(nebuloids[row][column].alive) { if(Math.random() < nebuloidShotFrequency) { nebuloidLasers.push(new Laser( nebuloids[row][column].x + (nebuloids[row][column].width - laserWidth) / 2, nebuloids[row][column].y, nebuloidLaserVelocity, laserWidth, laserHeight, nebuloids[row][column].color, 1 )); } } } } for(index = 0; index < lasers.length; index++) { lasers[index].move(deltaTime); lasers[index].color = cycleColor(lasers[index].color); } for(index = 0; index < nebuloidLasers.length; index++) { nebuloidLasers[index].move(deltaTime); } ship.setDirection(Pressed.LEFT, Pressed.RIGHT); ship.move(deltaTime); nebuloidShot(); cybernatorShot(); shieldShot(); playerHit(); playerShot(); deleteLasers(); } function render(interpolation) { screen.draw(graphics); for(index = 0; index < starCount; index++) { stars[index].draw(graphics, interpolation); } cybernator.draw(graphics, interpolation); for(index = 0; index < shields.length; index++) { if(shields[index].health > 0) { shields[index].draw(graphics, interpolation); } } for(index = 0; index < nebuloidLasers.length; index++) { nebuloidLasers[index].draw(graphics, interpolation); } for(row = 0; row < nebuloidRows; row++) { for(column = 0; column < nebuloidColumns; column++) { nebuloids[row][column].draw(graphics, interpolation); } } for(index = 0; index < lasers.length; index++) { lasers[index].draw(graphics, interpolation); } ship.draw(graphics, interpolation); } function randomColor() { var number = Math.floor((7 * Math.random())); switch(number) { case 0: return Color.RED; case 1: return Color.ORANGE; case 2: return Color.YELLOW; case 3: return Color.GREEN; case 4: return Color.BLUE; case 5: return Color.INDIGO; default: return Color.VIOLET; } } function cycleColor(currentColor) { if(currentColor === Color.RED) { return Color.ORANGE; } else if(currentColor === Color.ORANGE) { return Color.YELLOW; } else if(currentColor === Color.YELLOW) { return Color.GREEN; } else if(currentColor === Color.GREEN) { return Color.BLUE; } else if(currentColor === Color.BLUE) { return Color.INDIGO; } else if(currentColor === Color.INDIGO) { return Color.VIOLET; } else { return Color.RED; } } function deleteLasers() { for(index = lasers.length - 1; index >= 0; index--) { var aboveScreen = lasers[index].y + laserHeight < 0; var belowScreen = lasers[index].y > screen.height; if(aboveScreen || belowScreen) { lasers.splice(index, 1); } } for(index = nebuloidLasers.length - 1; index >= 0; index--) { var aboveScreen = nebuloidLasers[index].y + laserHeight < 0; var belowScreen = nebuloidLasers[index].y > screen.height; if(aboveScreen || belowScreen) { nebuloidLasers.splice(index, 1); } } } function nebuloidShot() { if(lasers.length > 0) { for(row = 0; row < nebuloidRows; row++) { for(column = 0; column < nebuloidColumns; column++) { if(nebuloids[row][column].alive) { for(index = 0; index < lasers.length; index++) { if(detectCollision(nebuloids[row][column], lasers[index])) { nebuloids[row][column].alive = false; nebuloids[row][column].initializeShrapnel(); nebuloids[row][column].exploding = true; lasers.splice(index, 1); incrementScore(nebuloidScore); index--; nebuloidsAlive--; if(nebuloidsAlive <= 0) { playerWon = true; playingGame = false; } } } } } } } } function cybernatorShot() { if(lasers.length > 0) { if(cybernator.alive) { for(index = 0; index < lasers.length; index++) { if(detectCollision(cybernator, lasers[index])) { cybernator.alive = false; cybernator.initializeShrapnel(); cybernator.exploding = true; lasers.splice(index, 1); incrementScore(cybernatorScore); index--; } } } } } function shieldShot() { if(nebuloidLasers.length > 0) { for(index = 0; index < shields.length; index++) { if(shields[index].health > 0) { for(subIndex = 0; subIndex < nebuloidLasers.length; subIndex++) { if(detectCollision(shields[index], nebuloidLasers[subIndex])) { nebuloidLasers.splice(subIndex, 1); subIndex--; shields[index].health--; } } } } } } function shiftNebuloidsDown() { for(row = 0; row < nebuloidRows; row++) { for(column = 0; column < nebuloidColumns; column++) { nebuloids[row][column].y += nebuloidHeight; nebuloids[row][column].direction *= -1; } } } function incrementScore(deltaScore) { score += deltaScore; scoreLabel.innerHTML = "" + score; } function playerHit() { for(row = 0; row < nebuloidRows; row++) { for(column = 0; column < nebuloidColumns; column++) { if(nebuloids[row][column].alive) { if(detectCollision(ship, nebuloids[row][column])) { playerLost = true; playingGame = false; } } } } } function playerShot() { for(index = 0; index < nebuloidLasers.length; index++) { if(detectCollision(ship, nebuloidLasers[index])) { playerLost = true; playingGame = false; } } } function detectCollision(mainObject, incomingObject) { // Get the bounding box of the main object var boundX = mainObject.x - incomingObject.width; var boundY = mainObject.y - incomingObject.height; var boundWidth = mainObject.width + 2 * incomingObject.width; var boundHeight = mainObject.height + 2 * incomingObject.height; var up = incomingObject.y < boundY; var down = incomingObject.y + incomingObject.height > boundY + boundHeight; var left = incomingObject.x < boundX; var right = incomingObject.x + incomingObject.width > boundX + boundWidth; return !up && !down && !left && !right; } function randomInt(minimum, maximum) { return Math.floor(((maximum - minimum)* Math.random())) + minimum; } function getParallaxLayer(parallaxLayers = 1) { var p = Math.random(); var sum = 0; var threshold = 0; var n = 1; /* x + 2x + 3x + ... + parallaxLayers*x = 1 x(1 + 2 + 3 + ... + parallaxLayers) = 1 x = 1 / (1 + 2 + 3 + ... parallaxLayers) */ for(n = 1; n <= parallaxLayers; n++) { sum += n; } threshold = 1.0 / sum; sum = 0; for(n = 1; n <= parallaxLayers; n++) { sum += n * threshold; if(p < sum) { return n; } } return parallaxLayers; } function getParallaxWidth(z = 1) { return maximumStarWidth - z + 1; } function getParallaxHeight(z = 1) { return maximumStarHeight - z + 1; } function getParallaxSize(z = 1) { return map(z, 1, parallaxLayers, maximumStarSize, minimumStarSize); } function getParallaxVelocity(z = 1) { return map(z, 1, parallaxLayers, maximumStarVelocity, minimumStarVelocity); } function map(x, fromMin, fromMax, toMin, toMax) { var ratio = (toMax - toMin) / (fromMax - fromMin); var shift = toMin - fromMin * ratio; return x * ratio + shift; } function loadImages(imageFiles) { loadCount = 0; loadTotal = imageFiles.length; preloaded = false; var loadedImages = []; for(index = 0; index < loadTotal; index++) { var newImage = new Image(); newImage.onload = function() { loadCount++; if(loadCount >= loadTotal) { preloaded = true; } } newImage.src = imageFiles[index]; loadedImages[index] = newImage; } return loadedImages; } function makeCybernator() { index = Math.random(); if(index < 0.5) { cybernator.x = -cybernator.width; cybernator.direction = 1; } else { cybernator.x = screen.width; cybernator.direction = -1; } cybernator.alive = true; }
23.552846
118
0.628869
5032ac270c3244dd3c2c3550f2d61710bcb9dae2
1,919
go
Go
database.go
ederoyd46/osmimport-go
6b1da0ed2091872da43cba3b72b6c0e6bc3a0d54
[ "MIT" ]
4
2016-08-01T15:12:50.000Z
2017-11-22T21:20:00.000Z
database.go
ederoyd46/osmimport-go
6b1da0ed2091872da43cba3b72b6c0e6bc3a0d54
[ "MIT" ]
null
null
null
database.go
ederoyd46/osmimport-go
6b1da0ed2091872da43cba3b72b6c0e6bc3a0d54
[ "MIT" ]
null
null
null
package main import r "github.com/dancannon/gorethink" var ( host string databaseName string nodeTable = "node" wayTable = "way" relationTable = "relation" ) func checkDatabase() { session := connect() defer killSession(session) databases, err := r.DBList().Run(session) var result string for databases.Next(&result) { if result == databaseName { return } } _, err = r.DBCreate(databaseName).Run(session) LogError(err) } func checkTable(tname string) { session := connect() defer killSession(session) tables, err := r.DB(databaseName).TableList().Run(session) var result string for tables.Next(&result) { if result == tname { return } } _, err = r.DB(databaseName).TableCreate(tname).Run(session) LogError(err) } func connect() *r.Session { var session *r.Session session, err := r.Connect(r.ConnectOpts{ Address: host, }) LogError(err) return session } //InitDB Sets up the database connection pool func InitDB(hostName, dbname string) { host = hostName databaseName = dbname checkDatabase() checkTable(nodeTable) checkTable(wayTable) checkTable(relationTable) } //killSession disconnects from the database func killSession(session *r.Session) { session.Close() } //SaveNodes saves nodes to the database func SaveNodes(nodes []Node) { session := connect() defer killSession(session) _, err := r.DB(databaseName).Table(nodeTable).Insert(nodes).RunWrite(session) LogError(err) } //SaveWays saves a node to the database func SaveWays(ways []Way) { session := connect() defer killSession(session) _, err := r.DB(databaseName).Table(wayTable).Insert(ways).RunWrite(session) LogError(err) } //SaveRelations saves a node to the database func SaveRelations(relations []Relation) { session := connect() defer killSession(session) _, err := r.DB(databaseName).Table(relationTable).Insert(relations).RunWrite(session) LogError(err) }
20.634409
86
0.718603
8b24adb67ccd569b94fef2969fe576a410bbd359
18,751
lua
Lua
spec/multipart_spec.lua
LuaDist-testing/multipart
d3a3f76ab11766615977381ca6275b0ad9ee3fb1
[ "MIT" ]
null
null
null
spec/multipart_spec.lua
LuaDist-testing/multipart
d3a3f76ab11766615977381ca6275b0ad9ee3fb1
[ "MIT" ]
null
null
null
spec/multipart_spec.lua
LuaDist-testing/multipart
d3a3f76ab11766615977381ca6275b0ad9ee3fb1
[ "MIT" ]
null
null
null
local Multipart = require "multipart" local function table_size(t) local res = 0 if t then for _,_ in pairs(t) do res = res + 1 end end return res end describe("Multipart Tests", function() it("should not fail with request that don't have a body", function() local content_type = "multipart/form-data; boundary=AaB03x" local res = Multipart(nil, content_type) assert.truthy(res) end) it("should not fail with request that don't have a content-type header", function() local res = Multipart(nil, nil) assert.truthy(res) end) it("should decode a boundary", function() local content_type = "multipart/related; boundary=AaB03x" local body = "" local res = Multipart(body, content_type) assert.truthy(res) assert.are.same("AaB03x", res._boundary) end) it("should not crash with missing boundary", function() local content_type = "multipart/related;" local body = "" local res = Multipart(body, content_type) assert.truthy(res) assert.are.same(nil, res._boundary) end) it("should not crash with empty boundary", function() local content_type = "multipart/related; boundary=" local body = "" local res = Multipart(body, content_type) assert.truthy(res) assert.are.same(nil, res._boundary) end) it("should not crash with empty single quoted boundary", function() local content_type = "multipart/related; boundary=''" local body = "" local res = Multipart(body, content_type) assert.truthy(res) assert.are.same(nil, res._boundary) end) it("should not crash with empty double quoted boundary", function() local content_type = 'multipart/related; boundary=""' local body = "" local res = Multipart(body, content_type) assert.truthy(res) assert.are.same(nil, res._boundary) end) it("should decode a single quoted boundary", function() local content_type = "multipart/related; boundary='AaB03x'" local body = "" local res = Multipart(body, content_type) assert.truthy(res) assert.are.same("AaB03x", res._boundary) end) it("should decode a double quoted boundary", function() local content_type = 'multipart/related; boundary="AaB03x"' local body = "" local res = Multipart(body, content_type) assert.truthy(res) assert.are.same("AaB03x", res._boundary) end) it("should decode a multipart/related body", function() local content_type = "multipart/related; boundary=AaB03x" local body = ([[ --AaB03x Content-Disposition: form-data; name="submit-name" Larry --AaB03x Content-Disposition: form-data; name="files"; filename="file1.txt" Content-Type: text/plain ... contents of file1.txt ... hello planetCRLFearth --AaB03x--]]):gsub("CRLF", "\r\n") local res = Multipart(body, content_type) assert.truthy(res) local internal_data = res._data -- Check internals local index = internal_data.indexes["submit-name"] assert.truthy(index) assert.are.same(1, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("submit-name", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({"Content-Disposition: form-data; name=\"submit-name\""}, internal_data.data[index].headers) assert.are.same(1, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("Larry", internal_data.data[index].value) index = internal_data.indexes["files"] assert.truthy(index) assert.are.same(2, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("files", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({"Content-Disposition: form-data; name=\"files\"; filename=\"file1.txt\"", "Content-Type: text/plain"}, internal_data.data[index].headers) assert.are.same(2, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("... contents of file1.txt ...\nhello\n\nplanet\r\nearth", internal_data.data[index].value) -- Check interface local param = res:get("submit-name") assert.truthy(param) assert.are.same("submit-name", param.name) assert.are.same({"Content-Disposition: form-data; name=\"submit-name\""}, param.headers) assert.are.same("Larry", param.value) param = res:get("files") assert.truthy(param) assert.are.same("files", param.name) assert.are.same({"Content-Disposition: form-data; name=\"files\"; filename=\"file1.txt\"", "Content-Type: text/plain"}, param.headers) assert.are.same("... contents of file1.txt ...\nhello\n\nplanet\r\nearth", param.value) end) it("should decode a multipart body", function() local content_type = "multipart/form-data; boundary=AaB03x" local body = [[ --AaB03x Content-Disposition: form-data; name="submit-name" Larry --AaB03x Content-Disposition: form-data; name="files"; filename="file1.txt" Content-Type: text/plain ... contents of file1.txt ... hello --AaB03x--]] local res = Multipart(body, content_type) assert.truthy(res) local internal_data = res._data -- Check internals local index = internal_data.indexes["submit-name"] assert.truthy(index) assert.are.same(1, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("submit-name", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({"Content-Disposition: form-data; name=\"submit-name\""}, internal_data.data[index].headers) assert.are.same(1, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("Larry", internal_data.data[index].value) index = internal_data.indexes["files"] assert.truthy(index) assert.are.same(2, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("files", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({"Content-Disposition: form-data; name=\"files\"; filename=\"file1.txt\"", "Content-Type: text/plain"}, internal_data.data[index].headers) assert.are.same(2, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("... contents of file1.txt ...\nhello", internal_data.data[index].value) -- Check interface local param = res:get("submit-name") assert.truthy(param) assert.are.same("submit-name", param.name) assert.are.same({"Content-Disposition: form-data; name=\"submit-name\""}, param.headers) assert.are.same("Larry", param.value) param = res:get("files") assert.truthy(param) assert.are.same("files", param.name) assert.are.same({"Content-Disposition: form-data; name=\"files\"; filename=\"file1.txt\"", "Content-Type: text/plain"}, param.headers) assert.are.same("... contents of file1.txt ...\nhello", param.value) local all = res:get_all() assert.are.same(2, table_size(all)) assert.are.same("Larry", all["submit-name"]) assert.are.same("... contents of file1.txt ...\nhello", all["files"]) end) it("should decode invalid empty multipart body", function() local content_type = "multipart/form-data; boundary=AaB03x" local body = "--\n" local res = Multipart(body, content_type) assert.truthy(res) local internal_data = res._data local all = res:get_all() assert.are.same(0, table_size(all)) end) it("should decode invalid empty multipart body with headers", function() local content_type = "multipart/form-data; boundary=AaB03x" local body = [[ --AaB03x Content-Disposition: form-data; name="submit-name"]] local res = Multipart(body, content_type) assert.truthy(res) local internal_data = res._data -- Check internals local index = internal_data.indexes["submit-name"] assert.truthy(index) assert.are.same(1, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("submit-name", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({"Content-Disposition: form-data; name=\"submit-name\""}, internal_data.data[index].headers) assert.are.same(1, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("", internal_data.data[index].value) -- Check interface local param = res:get("submit-name") assert.truthy(param) assert.are.same("submit-name", param.name) assert.are.same({"Content-Disposition: form-data; name=\"submit-name\""}, param.headers) assert.are.same("", param.value) local all = res:get_all() assert.are.same(1, table_size(all)) assert.are.same("", all["submit-name"]) end) it("should decode a multipart body with headers in body", function() local content_type = "multipart/form-data;boundary=AaB03x" local body = '--AaB03x\r\n' .. 'Content-Disposition:form-data;name="submit-name"\r\n\r\n' .. '\r\n\r\nLarry\r\n\r\nContent-Disposition:form-data\r\n\r\n\r\n' .. '--AaB03x--\r\n' local res = Multipart(body, content_type) assert.truthy(res) local internal_data = res._data local index = internal_data.indexes["submit-name"] assert.truthy(index) assert.are.same(1, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("submit-name", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({"Content-Disposition:form-data;name=\"submit-name\""}, internal_data.data[index].headers) assert.are.same(1, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("\r\n\r\nLarry\r\n\r\nContent-Disposition:form-data\r\n\r\n", internal_data.data[index].value) end) it("should decode a multipart body with multiple headers in body", function() local content_type = "multipart/form-data;boundary=AaB03x" local body = '--AaB03x\r\n' .. 'Content-Disposition:form-data;name="submit-name"\r\n' .. 'Content-Type:text/plain\r\n\r\n' .. '\r\n\r\nLarry\r\n\r\nContent-Disposition:form-data\r\n\r\n\r\n' .. '--AaB03x--\r\n' local res = Multipart(body, content_type) assert.truthy(res) local internal_data = res._data local index = internal_data.indexes["submit-name"] assert.truthy(index) assert.are.same(1, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("submit-name", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({ 'Content-Disposition:form-data;name="submit-name"', 'Content-Type:text/plain', }, internal_data.data[index].headers) assert.are.same(2, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("\r\n\r\nLarry\r\n\r\nContent-Disposition:form-data\r\n\r\n", internal_data.data[index].value) end) it("should decode a multipart body without header whitespace", function() local content_type = "multipart/form-data;boundary=AaB03x" local body = [[ --AaB03x Content-Disposition:form-data;name="submit-name" Larry --AaB03x Content-Disposition:form-data;name="files";filename="file1.txt" Content-Type:text/plain ... contents of file1.txt ... hello --AaB03x--]] local res = Multipart(body, content_type) assert.truthy(res) local internal_data = res._data -- Check internals local index = internal_data.indexes["submit-name"] assert.truthy(index) assert.are.same(1, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("submit-name", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({"Content-Disposition:form-data;name=\"submit-name\""}, internal_data.data[index].headers) assert.are.same(1, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("Larry", internal_data.data[index].value) index = internal_data.indexes["files"] assert.truthy(index) assert.are.same(2, index) assert.truthy(internal_data.data[index]) assert.truthy(internal_data.data[index].name) assert.are.same("files", internal_data.data[index].name) assert.truthy(internal_data.data[index].headers) assert.are.same({"Content-Disposition:form-data;name=\"files\";filename=\"file1.txt\"", "Content-Type:text/plain"}, internal_data.data[index].headers) assert.are.same(2, table_size(internal_data.data[index].headers)) assert.truthy(internal_data.data[index].value) assert.are.same("... contents of file1.txt ...\nhello", internal_data.data[index].value) -- Check interface local param = res:get("submit-name") assert.truthy(param) assert.are.same("submit-name", param.name) assert.are.same({"Content-Disposition:form-data;name=\"submit-name\""}, param.headers) assert.are.same("Larry", param.value) param = res:get("files") assert.truthy(param) assert.are.same("files", param.name) assert.are.same({"Content-Disposition:form-data;name=\"files\";filename=\"file1.txt\"", "Content-Type:text/plain"}, param.headers) assert.are.same("... contents of file1.txt ...\nhello", param.value) local all = res:get_all() assert.are.same(2, table_size(all)) assert.are.same("Larry", all["submit-name"]) assert.are.same("... contents of file1.txt ...\nhello", all["files"]) end) it("should encode a multipart body", function() local content_type = "multipart/form-data; boundary=AaB03x" local body = [[ --AaB03x Content-Disposition: form-data; name="submit-name" Larry --AaB03x Content-Disposition: form-data; name="files"; filename="file1.txt" Content-Type: text/plain ... contents of file1.txt ... hello --AaB03x--]] local res = Multipart(body, content_type) assert.truthy(res) local data = res:tostring() -- The strings should be the same, but \n needs to be replaced with \r\n --local replace_new_lines, _ = string.gsub(body, "\n", "\r\n") assert.are.same(table.concat({ '--AaB03x', 'Content-Disposition: form-data; name="submit-name"', '', 'Larry', '--AaB03x', 'Content-Disposition: form-data; name="files"; filename="file1.txt"', 'Content-Type: text/plain', '', '... contents of file1.txt ...\nhello', '--AaB03x--\r\n', }, "\r\n"), data) end) it("should delete a parameter", function() local content_type = "multipart/form-data; boundary=AaB03x" local body = [[ --AaB03x Content-Disposition: form-data; name="submit-name" Larry --AaB03x Content-Disposition: form-data; name="files"; filename="file1.txt" Content-Type: text/plain ... contents of file1.txt ... hello --AaB03x-- ]] local res = Multipart(body, content_type) assert.truthy(res) res:delete("submit-name") local data = res:tostring() assert.are.same(table.concat({ '--AaB03x', 'Content-Disposition: form-data; name="files"; filename="file1.txt"', 'Content-Type: text/plain', '', '... contents of file1.txt ...\nhello', '--AaB03x--', '', }, "\r\n"), data) end) it("should delete the last parameter", function() local content_type = "multipart/form-data; boundary=AaB03x" local body = [[ --AaB03x Content-Disposition: form-data; name="submit-name" Larry --AaB03x Content-Disposition: form-data; name="files"; filename="file1.txt" Content-Type: text/plain ... contents of file1.txt ... hello --AaB03x--]] local res = Multipart(body, content_type) assert.truthy(res) res:delete("files") local data = res:tostring() -- The strings should be the same, but \n needs to be replaced with \r\n local replace_new_lines, _ = string.gsub([[ --AaB03x Content-Disposition: form-data; name="submit-name" Larry --AaB03x-- ]], "\n", "\r\n") assert.are.same(data, replace_new_lines) end) it("should encode a multipart body", function() local content_type = "multipart/form-data; boundary=AaB03x" local body = [[ --AaB03x Content-Disposition: form-data; name="submit-name" Larry --AaB03x Content-Disposition: form-data; name="files"; filename="file1.txt" Content-Type: text/plain ... contents of file1.txt ... hello --AaB03x--]] local new_body = table.concat({ '--AaB03x', 'Content-Disposition: form-data; name="submit-name"', '', 'Larry', '--AaB03x', 'Content-Disposition: form-data; name="files"; filename="file1.txt"', 'Content-Type: text/plain', '', '... contents of file1.txt ...\nhello', '--AaB03x', 'Content-Disposition: form-data; name="hello"', '', 'world :)', '--AaB03x', 'Content-Disposition: form-data; name="hello2"', '', 'world2 :)', '--AaB03x--\r\n', }, "\r\n") local res = Multipart(body, content_type) assert.truthy(res) res:set_simple("hello", "world :)") res:set_simple("hello2", "world2 :)") local data = res:tostring() assert.are.same(#new_body, #data) end) end) it("should encode a multipart body with invalid boundary in parsed one", function() local content_type = "multipart/form-data; boundary=" local body = [[ --AaB03x Content-Disposition: form-data; name="submit-name" Larry --AaB03x Content-Disposition: form-data; name="files"; filename="file1.txt" Content-Type: text/plain ... contents of file1.txt ... hello --AaB03x--]] local res = Multipart(body, content_type) local new_body = table.concat({ '--' .. Multipart.RANDOM_BOUNDARY, 'Content-Disposition: form-data; name="hello"', '', 'world :)', '--' .. Multipart.RANDOM_BOUNDARY, 'Content-Disposition: form-data; name="hello2"', '', 'world2 :)', '--' .. Multipart.RANDOM_BOUNDARY .. '--\r\n', }, "\r\n") local res = Multipart(body, content_type) assert.truthy(res) res:set_simple("hello", "world :)") res:set_simple("hello2", "world2 :)") local data = res:tostring() assert.are.same(new_body, data) end)
32.273666
158
0.676177
b334ac8ea204a8f640c9000af68af48fffa52f16
216
rb
Ruby
app/models/task.rb
mkopsho/yapa
12de6c5bd3be6010d0487398e011499a65386360
[ "MIT" ]
null
null
null
app/models/task.rb
mkopsho/yapa
12de6c5bd3be6010d0487398e011499a65386360
[ "MIT" ]
7
2021-09-28T05:13:09.000Z
2022-02-27T09:01:44.000Z
app/models/task.rb
mkopsho/yapa
12de6c5bd3be6010d0487398e011499a65386360
[ "MIT" ]
null
null
null
class Task < ApplicationRecord belongs_to :list accepts_nested_attributes_for :list validates_presence_of :summary # scope :created_today, -> { where("created_at < ?", Time.zone.now.beginning_of_day) } end
24
88
0.759259
5b67e0ec36c6ff2dfa0f9c471adfa9edabd902ed
1,429
hpp
C++
src/algorithms/data_structures/array/find_max_product_of_two_elements.hpp
iamantony/CppNotes
2707db6560ad80b0e5e286a04b2d46e5c0280b3f
[ "MIT" ]
2
2020-07-31T14:13:56.000Z
2021-02-03T09:51:43.000Z
src/algorithms/data_structures/array/find_max_product_of_two_elements.hpp
iamantony/CppNotes
2707db6560ad80b0e5e286a04b2d46e5c0280b3f
[ "MIT" ]
28
2015-09-22T07:38:21.000Z
2018-10-02T11:00:58.000Z
src/algorithms/data_structures/array/find_max_product_of_two_elements.hpp
iamantony/CppNotes
2707db6560ad80b0e5e286a04b2d46e5c0280b3f
[ "MIT" ]
2
2018-10-11T14:10:50.000Z
2021-02-27T08:53:50.000Z
#ifndef FIND_MAX_PRODUCT_OF_TWO_ELEMENTS_HPP #define FIND_MAX_PRODUCT_OF_TWO_ELEMENTS_HPP /* Coursera: Algorithmic Toolbox Find the maximum product of two distinct numbers in a sequence of non-negative integers. Input: A sequence of non-negative integers. Output: The maximum value that can be obtained by multiplying two different elements from the sequence. */ #include <vector> #include <algorithm> namespace Algo::DS::Array { class FindMaxProduct { public: static long long Find(const std::vector<int>& nums) { if (nums.size() < 2) { return 0; } size_t max = 0, smax = 1; if (nums[max] < nums[smax]) { std::swap(max, smax); } for (size_t i = 2; i < nums.size(); ++i) { if (nums[max] < nums[i]) { smax = max; max = i; } else if (nums[smax] < nums[i]) { smax = i; } } return static_cast<long long>(nums[max]) * static_cast<long long>(nums[smax]); } static long long FindNaive(std::vector<int> nums) { if (nums.size() < 2) { return 0; } std::sort(nums.begin(), nums.end()); return static_cast<long long>(nums[nums.size() - 1]) * static_cast<long long>(nums[nums.size() - 2]); } }; } #endif // FIND_MAX_PRODUCT_OF_TWO_ELEMENTS_HPP
24.637931
78
0.560532
98c637d86d185e110f59e7febe5bf6c32ad168c8
325
html
HTML
fsdump/help/honour.pt_BR.auto.html
GalaxyGFX/webmin
134311032e3e69a6f7386648733a3a65c9a3ba1d
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
1,863
2015-01-04T21:45:45.000Z
2022-03-30T09:10:50.000Z
fsdump/help/honour.pt_BR.auto.html
GalaxyGFX/webmin
134311032e3e69a6f7386648733a3a65c9a3ba1d
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
1,233
2015-01-03T12:45:51.000Z
2022-03-31T02:39:58.000Z
fsdump/help/honour.pt_BR.auto.html
GalaxyGFX/webmin
134311032e3e69a6f7386648733a3a65c9a3ba1d
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
546
2015-01-05T13:07:28.000Z
2022-03-25T21:47:51.000Z
<header> Sempre excluir arquivos marcados? </header> Se essa opção estiver configurada, os backups sempre ignoram os arquivos que foram marcados com o comando <tt>chattr</tt> ou o Gerenciador de arquivos, mesmo ao fazer um backup de nível 0. Normalmente, eles são ignorados apenas para backups de nível 1 ou superior. <p><hr>
325
325
0.787692
f739bc8be467ae436bed4df6322ef7e15ec130f4
202
sql
SQL
src/main/resources/schema.sql
simonellistonball/syslog-storm-sample
45f4c4c8520f328f385e9d77492440bf987fc1bc
[ "Apache-2.0" ]
1
2017-03-07T07:17:58.000Z
2017-03-07T07:17:58.000Z
src/main/resources/schema.sql
simonellistonball/syslog-storm-sample
45f4c4c8520f328f385e9d77492440bf987fc1bc
[ "Apache-2.0" ]
null
null
null
src/main/resources/schema.sql
simonellistonball/syslog-storm-sample
45f4c4c8520f328f385e9d77492440bf987fc1bc
[ "Apache-2.0" ]
null
null
null
CREATE TABLE `syslog_events`( `timestamp` string, `host` string, `message` string) PARTITIONED BY (`date` string, `hour` string) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' STORED AS textfile
25.25
45
0.727723
3038aad1ac9ea58050fbe1dfd919a2859be452f1
1,852
dart
Dart
test/widget_test.dart
rrousselGit/meetup-18-10-18
a40ad3046d93bcfeb14cf60d1439e241e259b2ec
[ "MIT" ]
2
2018-10-18T21:15:32.000Z
2019-09-15T21:34:36.000Z
test/widget_test.dart
rrousselGit/meetup-18-10-18
a40ad3046d93bcfeb14cf60d1439e241e259b2ec
[ "MIT" ]
null
null
null
test/widget_test.dart
rrousselGit/meetup-18-10-18
a40ad3046d93bcfeb14cf60d1439e241e259b2ec
[ "MIT" ]
null
null
null
import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:meetup/one-feature-one-widget/good-mock.dart'; import 'package:meetup/one-feature-one-widget/good-usage_test.dart'; import 'package:meetup/test_sample/widget.dart'; void main() { testWidgets('Foo', (tester) async { // DON'T test the state // DO test the generated widgets await tester.pumpWidget( MaterialApp(home: Scaffold(body: RepaintBoundary(child: Hello())))); expect(find.text('0'), findsOneWidget); expect(find.byType(Text), findsOneWidget); await tester.tap(find.byType(Text)); await tester.pump(); expect(find.byType(Text), findsOneWidget); expect(find.text('1'), findsOneWidget); }); // golden tests are easy way to test the rendering testWidgets('golden', (tester) async { await tester.pumpWidget( Center(child: SizedBox(width: 100.0, height: 100.0, child: Sushi()))); await expectLater( find.byType(Container).first, matchesGoldenFile('sushi.png')); }); testWidgets('Configurations', (tester) async { // DON'T manually find the ConfigurationsState and test its values // DO use the "of" ConfigurationData data; await tester.pumpWidget( Configurations( child: Builder( builder: (context) { data = Configurations.of(context); return Container(); }, ), ), ); expect(data.foo, equals("Hello World")); }); // Rappel: Injecter les dependences via le contexte permet de facilement testers testWidgets('Usage', (tester) async { await tester.pumpWidget( Configurations.mock( configurations: ConfigurationData(foo: "42"), child: MaterialApp(home: Usage()), ), ); expect(find.text('42'), findsOneWidget); }); }
28.9375
82
0.654428
3aded011ffb6baa179e18ba1305dfdcc0e8f6830
983
swift
Swift
Tests/BallcapTests/DisposeBagTests.swift
scottfister/Ballcap-iOS
e08cf47506de0217b5bc1ce87e14336fb8432653
[ "MIT" ]
242
2018-09-20T12:15:03.000Z
2022-03-30T03:25:16.000Z
Tests/BallcapTests/DisposeBagTests.swift
scottfister/Ballcap-iOS
e08cf47506de0217b5bc1ce87e14336fb8432653
[ "MIT" ]
21
2019-04-02T03:01:07.000Z
2021-01-20T12:58:19.000Z
Tests/BallcapTests/DisposeBagTests.swift
scottfister/Ballcap-iOS
e08cf47506de0217b5bc1ce87e14336fb8432653
[ "MIT" ]
29
2019-05-06T05:48:50.000Z
2022-01-29T15:09:40.000Z
// // DisposeBagTests.swift // BallcapTests // // Created by 1amageek on 2019/05/17. // Copyright © 2019 Stamp Inc. All rights reserved. // import XCTest import FirebaseFirestore import FirebaseStorage @testable import Ballcap class DisposeBagTests: XCTestCase { override func setUp() { super.setUp() _ = FirebaseTest.shared } func testDisposeBagMemoryLead() { class Obj: Object, DataRepresentable { struct Model: Modelable & Codable & Equatable { var a: String = "a" } var data: Model? } weak var disposeBag: DisposeBag? = nil weak var disposer: Disposer? = nil do { let bag: DisposeBag = DisposeBag() disposeBag = bag let d = Obj.listen(id: "a") { (_, _) in } disposer = d d.disposed(by: bag) } XCTAssertNil(disposeBag) XCTAssertNil(disposer) } }
22.340909
59
0.559512
254ab1e8a53f04524b4131544e02f9f8b5dbb352
69
dart
Dart
lib/src/message_state_mixin.dart
quantosapplications/riverpod_messages
81d4bc5c147a71e86771f31508070385f2ff1811
[ "MIT" ]
1
2022-02-18T09:23:13.000Z
2022-02-18T09:23:13.000Z
lib/src/message_state_mixin.dart
quantosapplications/riverpod_messages
81d4bc5c147a71e86771f31508070385f2ff1811
[ "MIT" ]
null
null
null
lib/src/message_state_mixin.dart
quantosapplications/riverpod_messages
81d4bc5c147a71e86771f31508070385f2ff1811
[ "MIT" ]
null
null
null
mixin MessageStateMixin { String? get error; String? get info; }
13.8
25
0.710145
5eb30e5cf7bf77cd47e80a28dd828547ba57361d
145
lua
Lua
lua/config/core/globals.lua
dtr2300/nvim
1a8fb5cb07eb8721b468fb6fbdee0ce6e7c661f2
[ "MIT" ]
6
2021-11-07T18:09:36.000Z
2022-03-17T16:38:04.000Z
lua/config/core/globals.lua
dtr2300/nvim
1a8fb5cb07eb8721b468fb6fbdee0ce6e7c661f2
[ "MIT" ]
null
null
null
lua/config/core/globals.lua
dtr2300/nvim
1a8fb5cb07eb8721b468fb6fbdee0ce6e7c661f2
[ "MIT" ]
2
2021-11-24T23:12:27.000Z
2022-01-03T01:41:55.000Z
function _G.RELOAD(...) return require("plenary.reload").reload_module(...) end function _G.R(name) RELOAD(name) return require(name) end
16.111111
53
0.710345
057a5ee6c8f4669455b612f78ff0c11ef0632699
4,604
ps1
PowerShell
SANS/SEC505-Scripts/Day5-IPSec/Wireless/Who-Can-Escape.ps1
cyWisp/powershell
ba8e6edad4e82bbc8a663e10877a52d1882d63a3
[ "MIT" ]
3
2020-05-30T07:28:07.000Z
2021-07-31T18:51:21.000Z
SANS/SEC505-Scripts/Day5-IPSec/Wireless/Who-Can-Escape.ps1
cyWisp/powershell
ba8e6edad4e82bbc8a663e10877a52d1882d63a3
[ "MIT" ]
null
null
null
SANS/SEC505-Scripts/Day5-IPSec/Wireless/Who-Can-Escape.ps1
cyWisp/powershell
ba8e6edad4e82bbc8a663e10877a52d1882d63a3
[ "MIT" ]
null
null
null
<# ############################################################################# This script just demos some code which can be used to try to detect which computers can bypass your authorized perimeter routers to gain Internet access by some other method, e.g., a personal VPN or tethering through a mobile device. Let's call this other method an "independent Internet connection" below. The functions might be used in a script which is remotely executed, run as a scheduled job, or placed in a startup script which loops with a start-sleep indefinitely or for some number of hours. For example, if you block outbound ping requests and inbound ping replies at the perimeter, then a successful ping of an Internet IP address indicates a possible independent Internet connection. Internal computers might have no default gateway (0.0.0.0) in their route tables, or, if they do, then the IP addresses of your legitimate default gateways should be known to you, or, even if you don't know your gateways' IP addresses, at least they should have IP addresses which are valid for the local LAN. Hence, by examining the default gateway entries in the route tables of your users' computers, you can find possible independent Internet connections. #> ############################################################################# # Test-RoutePrint returns true if your $GatewayRegex regular expression pattern # matches the output of running 'route print 0.0.0.0' on a host. The pattern # should match on something which indicates a valid default gateway of yours; # for example, something like "192\.168\.1\.1|10\.1\.1\.1". function Test-RoutePrint ( $GatewayRegex = "regular expression to be tested" ) { route.exe print 0.0.0.0 | select-string -quiet -pattern $GatewayRegex } # Test-PingEscape returns true if the $PingTestTarget can be pinged. # Requires PowerShell 2.0 or later. Assumes that ping would not # normally work, perhaps because you block ICMP at the perimeter. function Test-PingEscape ( $PingTestTarget = "8.8.8.8" ) { test-connection -computername $PingTestTarget -count 1 -quiet } # Test-PingEscapeRemotely will obtain a list of all computer names in the domain, # unless you specify a $ComputerNameFilter with one or more wildcards, or you # specify an alternative distinguished name path to another domain or a specific # OU, and then each of those computers will be made to ping a $PingTestTarget IP of # your choice. Presumably, the target IP will be out on the Internet somewhere. # The names of the computers which can successfully ping the target IP will be # outputted by the script. The script uses PowerShell remoting. # # REQUIREMENTS: # On the local computer where the function is executed, PowerShell 3.0 or later # must be used, and you yourself must be a member of the local Administrators # group at the remote computer which will be doing the pinging. The local # computer must also have the Active Directory module for PowerShell installed, # perhaps by installing the Remote Server Administration Tools (RSAT). # # On the remote computers which will be pinging the target IP, they must have # PowerShell remoting enabled. Remoting is not enabled by default. function Test-PingEscapeRemotely ( $PingTestTarget = "8.8.8.8", $ComputerNameFilter = "*", $SearchBase = $(get-addomain).DistinguishedName ) { #Get matching FQDNs of the computers to be tested. $computers = @(Get-ADComputer -Filter $ComputerNameFilter -SearchBase $SearchBase | Select -Expand dnshostname) #Ping the target IP from each computer to be tested, wait until finished (this can take a while...) $pingjob = Test-Connection -ComputerName $PingTestTarget -Count 1 -Source $computers -AsJob while ($pingjob.State -eq 'Running') { Start-Sleep -Seconds 3 } #Ignore remoting errors, only return names of computers who could successfully ping the target IP. $pingjob.childjobs | where { $_.state -ne 'Failed' } | foreach { $_.output } | where { $_.statuscode -eq 0 } | foreach { $_.pscomputername } #It's nice to be tidy... remove-job -job $pingjob } # Detect device drivers for common mobile wireless devices, # such as from AT&T, Sprint, Verizon, etc., so that the # wireless connection does not have to be live at the # time of the test in order to get a possible hit. function Test-MobileWirelessDriver { # Need to get a list of driver strings from volunteers... :-) }
39.689655
142
0.706777
68010e4dd8bd8acf10d3b1a3e66a6a449f1a5d8e
2,457
hh
C++
cc/session.hh
acorg/acmacs-api
17aa618661748ad3959c5df61fc63b25b4f67904
[ "MIT" ]
null
null
null
cc/session.hh
acorg/acmacs-api
17aa618661748ad3959c5df61fc63b25b4f67904
[ "MIT" ]
null
null
null
cc/session.hh
acorg/acmacs-api
17aa618661748ad3959c5df61fc63b25b4f67904
[ "MIT" ]
null
null
null
#pragma once #include <string> #include <thread> #include <mutex> #include "acmacs-api/mongo-access.hh" #include "acmacs-api/session-id.hh" // ---------------------------------------------------------------------- class Session : public StoredInMongodb { public: class Error : public std::runtime_error { public: using std::runtime_error::runtime_error; }; Session(mongocxx::database aDb) : StoredInMongodb{aDb, "sessions"}, mCommands{0}, mExpirationInSeconds{3600} {} Session(const Session& aSrc) : StoredInMongodb{aSrc}, mId{aSrc.mId}, mUser{aSrc.mUser}, mDisplayName{aSrc.mDisplayName}, mGroups{aSrc.mGroups}, mCommands{aSrc.mCommands}, mExpirationInSeconds{aSrc.mExpirationInSeconds} {} void use_session(std::string aSessionId); // throws Error std::string login_nonce(std::string aUser); void login_with_password_digest(std::string aCNonce, std::string aPasswordDigest); void logout(); void login(std::string aUser, std::string aPassword); SessionId id() const { return mId; } std::string user() const { return mUser; } std::string display_name() const { return mDisplayName; } const std::vector<std::string>& groups() const { return mGroups; } void increment_commands() { ++mCommands; } bson_value read_permissions() const; bool is_admin() const { if (!mId) throw Error{"Session has no id"}; return std::find_if(std::begin(mGroups), std::end(mGroups), [](const auto& group) { return group == "admin"; }) != std::end(mGroups); } protected: void add_fields_for_creation(bld_doc& aDoc) override; void add_fields_for_updating(bld_doc& aDoc) override; private: mutable std::mutex mAccess; SessionId mId; std::string mUser; std::string mDisplayName; std::string mPassword; std::vector<std::string> mGroups; std::string mNonce; std::int32_t mCommands; std::int32_t mExpirationInSeconds; // mDb["configuration"] system.sessions.expiration_in_seconds void create_session(); void find_groups_of_user(); void reset(); std::string hashed_password(std::string aCNonce); void find_user(std::string aUser, bool aGetPassword); std::string get_nonce(); }; // class Session // ---------------------------------------------------------------------- /// Local Variables: /// eval: (if (fboundp 'eu-rename-buffer) (eu-rename-buffer)) /// End:
33.202703
145
0.641026
166763ef14b72f05e66ec7abe263c080123d494c
1,506
sql
SQL
product.sql
imNK2204/simplecrud-laravel
9a3a8877c2bff1faad920a206202f65057f65fd4
[ "MIT" ]
null
null
null
product.sql
imNK2204/simplecrud-laravel
9a3a8877c2bff1faad920a206202f65057f65fd4
[ "MIT" ]
null
null
null
product.sql
imNK2204/simplecrud-laravel
9a3a8877c2bff1faad920a206202f65057f65fd4
[ "MIT" ]
null
null
null
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 05, 2022 at 08:44 PM -- Server version: 10.4.21-MariaDB -- PHP Version: 8.0.10 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `product` -- -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `pid` int(11) NOT NULL, `pname` varchar(250) NOT NULL, `pdesc` varchar(250) NOT NULL, `qty` varchar(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `products` -- INSERT INTO `products` (`pid`, `pname`, `pdesc`, `qty`) VALUES (4, 'Nikon', 'It has very high features.', '20'); -- -- Indexes for dumped tables -- -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`pid`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `pid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
22.147059
67
0.671315
4cfc74f77e867cedef33461bf296d35da1bb6253
764
dart
Dart
example/lib/second_screen.dart
onuohasilver/flexible_router
6c44bbcacb572e80437b9de0a10a35ee5713180a
[ "MIT" ]
null
null
null
example/lib/second_screen.dart
onuohasilver/flexible_router
6c44bbcacb572e80437b9de0a10a35ee5713180a
[ "MIT" ]
null
null
null
example/lib/second_screen.dart
onuohasilver/flexible_router
6c44bbcacb572e80437b9de0a10a35ee5713180a
[ "MIT" ]
null
null
null
import 'package:baserouter/baserouter.dart'; import 'package:flutter/material.dart'; class Second extends StatelessWidget { const Second({Key key}) : super(key: key); @override Widget build(BuildContext context) { return Container( height: 500, width: 500, color: Colors.red, child: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text('${route(context).optionsHistory}'), Text('${bridge(context).read('First a', 0).type}'), TextButton( child: Text('Go Back'), onPressed: () { route(context).previousScreen(); }, ), ], ), ), ); } }
24.645161
63
0.531414
1abc7e7729de8682d50d6158b6c0076394aecc35
1,246
rs
Rust
src/prelude.rs
jmagnuson/mlua
30af045c6f60f329aa47188be4ab39f150767508
[ "MIT" ]
null
null
null
src/prelude.rs
jmagnuson/mlua
30af045c6f60f329aa47188be4ab39f150767508
[ "MIT" ]
null
null
null
src/prelude.rs
jmagnuson/mlua
30af045c6f60f329aa47188be4ab39f150767508
[ "MIT" ]
null
null
null
//! Re-exports most types with an extra `Lua*` prefix to prevent name clashes. #[doc(no_inline)] pub use crate::{ AnyUserData as LuaAnyUserData, Chunk as LuaChunk, Error as LuaError, ExternalError as LuaExternalError, ExternalResult as LuaExternalResult, FromLua, FromLuaMulti, Function as LuaFunction, GCMode as LuaGCMode, Integer as LuaInteger, LightUserData as LuaLightUserData, Lua, LuaOptions, MetaMethod as LuaMetaMethod, MultiValue as LuaMultiValue, Nil as LuaNil, Number as LuaNumber, RegistryKey as LuaRegistryKey, Result as LuaResult, StdLib as LuaStdLib, String as LuaString, Table as LuaTable, TableExt as LuaTableExt, TablePairs as LuaTablePairs, TableSequence as LuaTableSequence, Thread as LuaThread, ThreadStatus as LuaThreadStatus, ToLua, ToLuaMulti, UserData as LuaUserData, UserDataFields as LuaUserDataFields, UserDataMetatable as LuaUserDataMetatable, UserDataMethods as LuaUserDataMethods, Value as LuaValue, }; #[cfg(feature = "async")] #[doc(no_inline)] pub use crate::AsyncThread as LuaAsyncThread; #[cfg(feature = "serialize")] #[doc(no_inline)] pub use crate::{ DeserializeOptions as LuaDeserializeOptions, LuaSerdeExt, SerializeOptions as LuaSerializeOptions, };
44.5
99
0.778491
2427750375f07042e4da234e2d95bdfaea428fc4
5,368
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1752.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1752.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1752.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r14 push %r15 push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0x177ef, %r15 nop sub %rbp, %rbp mov (%r15), %cx nop nop nop and %r14, %r14 lea addresses_WC_ht+0xfce9, %rdi nop sub $20439, %r11 movb $0x61, (%rdi) nop nop nop sub $55596, %r11 lea addresses_A_ht+0x1072f, %rcx nop dec %r10 mov $0x6162636465666768, %r14 movq %r14, (%rcx) sub $24591, %r10 lea addresses_WC_ht+0x6ea7, %rsi lea addresses_A_ht+0x1332f, %rdi nop nop nop nop nop xor %r14, %r14 mov $65, %rcx rep movsq nop nop nop nop nop sub %rcx, %rcx lea addresses_UC_ht+0x1ad2f, %rsi lea addresses_WC_ht+0x12caf, %rdi nop nop add $41764, %rbp mov $111, %rcx rep movsq nop nop nop nop nop dec %rbp lea addresses_WT_ht+0x492f, %r15 nop nop nop nop nop sub %rsi, %rsi mov (%r15), %ebp nop nop nop nop nop and %rbp, %rbp pop %rsi pop %rdi pop %rcx pop %rbp pop %r15 pop %r14 pop %r11 pop %r10 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r13 push %rbp push %rbx // Faulty Load lea addresses_D+0x1fb2f, %r10 dec %rbx movups (%r10), %xmm3 vpextrq $0, %xmm3, %r13 lea oracles, %r11 and $0xff, %r13 shlq $12, %r13 mov (%r11,%r13,1), %r13 pop %rbx pop %rbp pop %r13 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}} <gen_prepare_buffer> {'OP': 'LOAD', 'src': {'type': 'addresses_WC_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 1, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': True}} {'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 11, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 6, 'same': True}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 6, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 8, 'same': False}} {'36': 21829} 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 */
42.603175
2,999
0.659836
a11c7e30c00335b26d9ce3de9ea5b86dd313e7eb
259
ps1
PowerShell
SETUP/innerWIN.ps1
DanArmor/CF-parser-cross-platform
40c09378f55b6afa4d6e21a691b82b0d7482db96
[ "MIT" ]
2
2021-10-30T11:03:27.000Z
2021-11-10T19:51:53.000Z
SETUP/innerWIN.ps1
DanArmor/CF-parser-cross-platform
40c09378f55b6afa4d6e21a691b82b0d7482db96
[ "MIT" ]
null
null
null
SETUP/innerWIN.ps1
DanArmor/CF-parser-cross-platform
40c09378f55b6afa4d6e21a691b82b0d7482db96
[ "MIT" ]
null
null
null
[Environment]::SetEnvironmentVariable("PATHEXT", "$ENV:PATHEXT;.PY", "USER") $mypath = $MyInvocation.MyCommand.Path $mypath = Split-Path $mypath -Parent cd $mypath cd .. $mypath = $pwd [Environment]::SetEnvironmentVariable("PATH", "$ENV:PATH;$mypath", "USER")
37
76
0.722008
4064c66f21d094b333011f2ee7695d7e3bb717d2
581
swift
Swift
ExposureApp/CRExposureNotification/Views/ShadowViewContainer.swift
armensimon/covidapp
f012a302fc8293154265252f975a32d063a18be5
[ "Apache-2.0" ]
8
2020-07-27T18:23:36.000Z
2022-02-09T19:24:52.000Z
ExposureApp/CRExposureNotification/Views/ShadowViewContainer.swift
armensimon/covidapp
f012a302fc8293154265252f975a32d063a18be5
[ "Apache-2.0" ]
null
null
null
ExposureApp/CRExposureNotification/Views/ShadowViewContainer.swift
armensimon/covidapp
f012a302fc8293154265252f975a32d063a18be5
[ "Apache-2.0" ]
10
2020-07-28T02:24:49.000Z
2022-02-09T19:24:58.000Z
import UIKit class ShadowViewContainer: UIView { @IBInspectable var cornerRadius: CGFloat = 0 @IBInspectable var shadowRadius: CGFloat = 2.5 @IBInspectable var shadowOpacity: Float = 0.2 override func draw(_ rect: CGRect) { super.draw(rect) clipsToBounds = false layer.shadowColor = UIColor.black.cgColor layer.shadowOpacity = shadowOpacity layer.shadowOffset = .zero layer.shadowRadius = shadowRadius layer.shadowPath = UIBezierPath(roundedRect: bounds, cornerRadius: cornerRadius).cgPath } }
30.578947
95
0.685026
c6a8a945dff573187e9fdf38d38e5992514d54a1
1,555
lua
Lua
src/main.lua
al1020119/cocos2dx-lua-Tetris
764d06f54e821e2e44336d9a497375aa07fcc07a
[ "Apache-2.0" ]
2
2018-10-16T06:17:06.000Z
2020-04-04T06:15:28.000Z
src/main.lua
al1020119/cocos2dx-lua-Tetris
764d06f54e821e2e44336d9a497375aa07fcc07a
[ "Apache-2.0" ]
null
null
null
src/main.lua
al1020119/cocos2dx-lua-Tetris
764d06f54e821e2e44336d9a497375aa07fcc07a
[ "Apache-2.0" ]
5
2019-09-05T12:30:07.000Z
2021-10-14T04:51:30.000Z
cc.FileUtils:getInstance():setPopupNotify(false) require "config" require "cocos.init" local function main() require("app.MyApp"):create():run() end ---- 针对于lua的错误,一般分为编译时错误和运行时错误; --- --- --- 针对于运行错误,一般情况下,你可以参考如下代码: -- lua提供,调用其他函数,可以捕捉到错误,第一个参数为要调用的函数, 第二个参数为捕捉到错误时所调用的函数 -- 返回的参数status为错误状态, msg为错误信息 local status, msg = xpcall(main, __G__TRACKBACK__) if not status then print(msg) end --- --- --- 针对于编译错误,可以通过如下的代码来打印错误信息: --const char* error = lua_tostring(L, -1); --CCLOG("[LUA ERROR] error result: %s",error); --lua_pop(L, 1); --在LuaStack::luaLoadBuffer(...)中 -- -- --switch (r) --{ -- case LUA_ERRSYNTAX: // 编译出错 -- CCLOG("[LUA ERROR] load \"%s\", error: syntax error during pre-compilation.", chunkName); --break; --case LUA_ERRMEM: // 内存分配错误 --CCLOG("[LUA ERROR] load \"%s\", error: memory allocation error.", chunkName); --break; --case LUA_ERRRUN: // 运行错误 --CCLOG("[LUA ERROR] load \"%s\", error: run error.", chunkName); --break; --case LUA_YIELD: // 线程被挂起 --CCLOG("[LUA ERROR] load \"%s\", error: thread has suspended.", chunkName); --break; --case LUA_ERRFILE: --CCLOG("[LUA ERROR] load \"%s\", error: cannot open/read file.", chunkName); --break; --case LUA_ERRERR: // 运行错误处理函数时发生错误 --CCLOG("[LUA ERROR] load \"%s\", while running the error handler function.", chunkName); --break; --default: --CCLOG("[LUA ERROR] load \"%s\", error: unknown.", chunkName); --} --// (2)处添加部分代码 --const char* error = lua_tostring(L, -1); --CCLOG("[LUA ERROR] error result: %s",error); --lua_pop(L, 1);
25.916667
95
0.646302
16817e6406382d976830dfe6f5193de273a2fa0e
10,070
h
C
defines.h
codesmith-fi/saladir
03b4f51d380b059d4106f5b9e963406c1896cea8
[ "MIT" ]
2
2020-06-22T14:26:13.000Z
2021-05-07T22:52:10.000Z
defines.h
codesmith-fi/saladir
03b4f51d380b059d4106f5b9e963406c1896cea8
[ "MIT" ]
1
2019-05-31T09:46:18.000Z
2021-05-08T14:15:58.000Z
defines.h
codesmith-fi/saladir
03b4f51d380b059d4106f5b9e963406c1896cea8
[ "MIT" ]
null
null
null
/* defines */ #include "saladir.h" #include "types.h" #include "items.h" #include "creature.h" #include "skills.h" #include "hitpoint.h" #include "status.h" #include "quest.h" #include "pathfind.h" #ifndef _DEFINES_H_DEFINED #define _DEFINES_H_DEFINED /* needed macros */ #define ABS(u) ( (u) >= 0 ? (u) : -(u)) #define SIGN(u) ((u)==0 ? 0 : _sign_(u)) #define _sign_(u) ( (u) > 0 ? 1 : -1 ) #define LOS_MAXARRAY 361 #define NAMEMAX 20 #define TITLEMAX 30 #define ITEM_T_MAX 30 #define ITEM_S_MAX 20 #define TEMP_MAX 200 // directions of move #define DIR_UP 8 #define DIR_DOWN 2 #define DIR_RIGHT 6 #define DIR_LEFT 4 #define DIR_UPRIGHT 9 #define DIR_UPLEFT 7 #define DIR_DNRIGHT 3 #define DIR_DNLEFT 1 #define DIR_SELF 5 /* carry weight defines */ #define INV_OK 0 #define INV_BURDEN 1 #define INV_STRAIN 2 #define INV_OVERLOAD 3 #define EQUIP_HEAD 0 #define EQUIP_NECK 1 #define EQUIP_LRING 2 #define EQUIP_RRING 3 #define EQUIP_HANDS 4 /* duplicate */ #define EQUIP_LHAND 4 #define EQUIP_RHAND 5 #define EQUIP_MISSILE 6 #define EQUIP_TOOL 7 #define EQUIP_CLOAK 8 #define EQUIP_SHIRT 9 #define EQUIP_GLOVES 10 #define EQUIP_PANTS 11 #define EQUIP_BOOTS 12 #define EQUIP_BODY 13 #define EQUIP_LARM 14 #define EQUIP_RARM 15 #define EQUIP_LEGS 16 #define MAX_EQUIP 17 //#define EQUIP_LIGHT 16 //#define EQUIP_MISWEAPON 17 #define EQSTAT_NOLIMB 11 #define EQSTAT_BROKEN 10 #define EQSTAT_OK 0 //#define KEY_PCENTER 10 #define GAME_DO_REDRAW 0x80000000 // true if screen needs redraw #define GAME_SHOWALLSTATS 0x0fffffff #define GAME_EXPERCHG 0x00000001 //#define GAME_STATUSCHG 0x00000002 // true if status line needs redraw #define GAME_ATTRIBCHG 0x00000004 #define GAME_MONEYCHG 0x00000008 #define GAME_HPSPCHG 0x00000010 #define GAME_ALIGNCHG 0x00000020 #define GAME_LEVELCHG 0x00000040 #define GAME_EDITORCHG 0x00000080 #define GAME_CONDCHG 0x00000100 /* food levels, max values of level */ #define FOOD_MAXNUTR 24000 #define FOOD_BLOATED 24000 #define FOOD_SATIATED 19200 #define FOOD_FULL 14400 #define FOOD_HUNGRY 9600 #define FOOD_STARVING 4800 #define FOOD_FAINTING 2400 #define FOOD_FAINTED 0 /* index of status array */ #define STAT_ARRAYSIZE 9 /* the size of whole stat array */ #define STAT_BASICARRAY 7 /* number of basic stats */ #define STAT_STR 0 #define STAT_TGH 1 #define STAT_CON 2 #define STAT_CHA 3 #define STAT_DEX 4 #define STAT_WIS 5 #define STAT_INT 6 #define STAT_LUC 7 #define STAT_SPD 8 #define NUM_QUICKSKILLS 10 /* heigth #define STAT_AC 9 #define STAT_HP 10 #define STAT_SP 11 */ #define STATMAX_SPEED 180 #define STATMAX_LUCK 20 #define STATMAX_GEN 99 #define STATMIN_GEN 0 #define BASE_SPEED 100 /* monster base speed */ #define BASE_TIMENEED 1000 /* time needed by certain actions */ #define TIME_MOVEAROUND 800 #define TIME_OPENDOOR 600 #define TIME_CLOSEDOOR 600 #define TIME_PICKUP 600 #define TIME_SEARCH 900 #define TIME_AUTOSEARCH 400 #define TIME_MELEEATTACK 600 /* per hand */ #define TIME_EATKILO 400 /* per kilo */ #define TIME_DROPITEM 400 #define TIME_MISSILEATTACK 600 #define TACTIC_COWARD 0 #define TACTIC_VERYDEF 1 #define TACTIC_DEF 2 #define TACTIC_NORMAL 3 #define TACTIC_AGGR 4 #define TACTIC_VERYAGGR 5 #define TACTIC_BERZERK 6 /* magic elements */ #define ELEMENT_NOTHING 0 #define ELEMENT_FIRE 1 #define ELEMENT_POISON 2 #define ELEMENT_COLD 3 #define ELEMENT_ELEC 4 #define ELEMENT_WATER 5 #define ELEMENT_ACID 6 /* inventory structure for players and monsters */ typedef struct invnode { int16s x; // position in the level int16s y; int32u count; // number of this kind of items in inventory struct invnode *next; // pointer to next item in inventory int16s slot; // if item is equipped, slot number item_def i; // item definition structure } inv_info; typedef inv_info *Tinvpointer; /* * One equipment slot */ typedef struct { Tinvpointer item; int8u in_use; int8u reserv; int8u status; } _Tequipslot; /* * Creatures inventory, inventory holds a linked list of * items (type Tinvpointer), and the array of equipped * items (type _Tequipslot). Weight is the total weight of * the inventory. * */ typedef struct _Sinventory { Tinvpointer first; // _Tequipslot equip[MAX_EQUIP+1]; int32u weight; int32u copper; int32u capasity; } Tinventory; typedef struct { int16s initial; /* initial status value */ int16s temp; /* temporary change */ int16s perm; /* permanent status change */ int16s min; /* minimum value */ int16s max; /* maximum value */ } _statpack; typedef struct { int16u group; int16u type; int8u select; } Tquickskill; typedef struct { char name[NAMEMAX+1]; char title[TITLEMAX+1]; int16s pos_x; // position in the dungeon int16s pos_y; int8u spos_x; // position in the screen int8u spos_y; int16s lreg_x, lreg_y; int16s wildx; int16s wildy; int16s attackbonus; int16s dungeon; // in which dungeon player is // 0 is OUTWORLD int16s dungeonlev; // dungeonlevel index where player is... int16s timetaken; // how much "timeunits" used in current turn int16s align; int8u prace; int8u pclass; int8u lastdir; int8u color; // color of player char // Gametime nutritime; int32u movecount; int32u exp; int32u light; int32u bill; // player bill to the shop int16u num_places; // number of places visited int16u num_levels; // number of levels visited int16u num_kills; // int16s ac; // armor class (PV) int16s hp; // hitpoints int16s sp; // spellpoints int16s hp_max; // hitpoints int16s sp_max; // spellpoints int8u level; int32u regentime; int32s nutr; // food status int8u sight; // distance of sight int32u weight; // player weight (1000 is 1kg) // int32u packweight; // inventory weight in grams (1000 is 1kg) real goldamount; int8u gender; /* player's sex */ int8u tactic; int8s hitwall; int32u status; /* status flags */ bool huntmode; bool alive; // life status bool repeatwalk; bool monsterinsight; bool iteminsight; bool searchmode; int16s inroom; // set to -1 if player is not in any room, // else the room index struct _dungeonleveldef *levptr; /* pointer to dungeon level */ /* equipment wielded, pointer is NULL if not wielding anything */ // _Tequipslot equip[MAX_EQUIP+1]; _statpack stat[STAT_ARRAYSIZE+1]; _hpslot hpp[HPSLOT_MAX+1]; // hitpoints pack _Tequipslot equip[MAX_EQUIP+1]; /* player inventory - linked list */ Tinventory inv; /* linked skill list */ Tskillpointer skills; Tcondpointer conditions; Tquestpointer quests; Tquickskill qskills[NUM_QUICKSKILLS]; /* walking path if any */ Tpathlist path; } playerinfo; #ifdef _OLDINVENTORY // level item structure typedef struct levinode { int32u count; // count of these items (pile) int16s x; // position in the level int16s y; item_def i; // item structure levinode *next; // pointer to next item or NULL } item_info; typedef struct { item_info *ptr; int8u sel; } _ptrlistdef; #endif typedef struct { inv_info *ptr; int8u sel; } _playerptrlistdef; typedef _playerptrlistdef *Titemlistptr; typedef struct { int16s dam; /* damage modifier */ int16s spd; /* speed modify */ int16s hit; /* hit modify */ int16s pv; /* absorbed hp */ int16s dv; /* defense value, */ } _Ttactic; // level monster structure typedef struct _levmonster { int32u id; /* monster generation ID */ int32s npc; /* if monster is NPC, this is the number */ int32u hpregen; /* hitpoints regeneration */ int32u bill; int32u exp; int32u movecount; int16s x; // position in the level int16s y; int16s time; // time left from last move int16s base_hp; int16s hp; // current hitpoints of the monster int16s sp; // current spellpoints // int16s ac; // armor class int16s hp_max; // current hitpoints of the monster int16s sp_max; // current spellpoints int16s targetx; int16s targety; int16s attackbonus; int16s rev_x1; // monster location limits, shopkeepers int16s rev_x2; int16s rev_y1; int16s rev_y2; int16s roomnum; // shopkeeper room index int16s dist_2_player; bool cansee_player; int8u light; int16s inroom; int8u lastdir; // direction of last move int8u sindex; // special index, ie for shopkeepers guard route int8u tactic; _monsterdef m; /* hitpoints array */ _hpslot hpp[HPSLOT_MAX+1]; // hitpoints pack /* stat array */ _statpack stat[STAT_ARRAYSIZE+1]; /* equipment wielded */ _Tequipslot equip[MAX_EQUIP+1]; // _Tequipslot equip[MAX_EQUIP+1]; /* linked skill list */ Tskillpointer skills; Tcondpointer conditions; /* monster inventory, exactly as players inv */ Tinventory inv; _levmonster *target; // who is the monster attacking // NULL if player (and MST_ATTACKMODE is set) _levmonster *next; // points to next monster in level /* walking path if any */ Tpathlist path; } _monsterlist; typedef struct { int32u monid; /* monster generation id, for next monster */ } Tgamedata; #endif
23.310185
76
0.653128
aba2acabfd77baf6d889ca919e99f966ba81b55f
123
rb
Ruby
db/migrate/20180923070454_change_column_name.rb
OlgaCoskun/Articles
bac0267d17bc3c6e514c3db7978d40ec00deb175
[ "MIT" ]
null
null
null
db/migrate/20180923070454_change_column_name.rb
OlgaCoskun/Articles
bac0267d17bc3c6e514c3db7978d40ec00deb175
[ "MIT" ]
null
null
null
db/migrate/20180923070454_change_column_name.rb
OlgaCoskun/Articles
bac0267d17bc3c6e514c3db7978d40ec00deb175
[ "MIT" ]
null
null
null
class ChangeColumnName < ActiveRecord::Migration[5.2] def change rename_column :comments, :body, :com_body end end
20.5
53
0.747967
906a6e2f367837f2666c1453f9a5d04e8a090d6c
4,896
py
Python
psdaq/psdaq/tests/test_json2xtc.py
ZhenghengLi/lcls2
94e75c6536954a58c8937595dcac295163aa1cdf
[ "BSD-3-Clause-LBNL" ]
16
2017-11-09T17:10:56.000Z
2022-03-09T23:03:10.000Z
psdaq/psdaq/tests/test_json2xtc.py
ZhenghengLi/lcls2
94e75c6536954a58c8937595dcac295163aa1cdf
[ "BSD-3-Clause-LBNL" ]
6
2017-12-12T19:30:05.000Z
2020-07-09T00:28:33.000Z
psdaq/psdaq/tests/test_json2xtc.py
ZhenghengLi/lcls2
94e75c6536954a58c8937595dcac295163aa1cdf
[ "BSD-3-Clause-LBNL" ]
25
2017-09-18T20:02:43.000Z
2022-03-27T22:27:42.000Z
from psdaq.configdb.typed_json import * from psana import DataSource, container import numpy as np import subprocess import os, re class Test_JSON2XTC: def check(self, co, cl, base=""): result = True for n in dir(co): if n[0] != '_': v = co.__getattribute__(n) # Change xxx_nnn to xxx.nnn m = re.search('^(.*)_([0-9]+)$', n) if m is not None: n = m.group(1) + "." + m.group(2) if base == "": bnew = n else: bnew = base + "." + n print(bnew, v) v2 = cl.get(bnew) if isinstance(v, container.Container): if isinstance(v2, int): # bnew must be the name of an enum! if v.value != v2 or v.names != cl.getenumdict(bnew, reverse=True): print("Failure on %s" % bnew) print(v.value) print(v.names) print(v2) result = False else: result = self.check(v, cl, bnew) and result elif isinstance(v, np.ndarray): if not (v == v2).all(): print("Failure on %s" % bnew) print(v) print(v2) result = False elif isinstance(v, int) or isinstance(v, str): if v != v2: print("Failure on %s" % bnew) print(v) print(v2) result = False else: if abs(v - v2) > 0.00001: print("Failure on %s" % bnew) print(v) print(v2) result = False return result def test_one(self, tmp_path): c = cdict() c.setInfo("test", "test1", None, "serial1234", "No comment") c.setAlg("raw", [1,2,3]) # Scalars c.set("aa", -5, "INT8") c.set("ab", -5192, "INT16") c.set("ac", -393995, "INT32") c.set("ad", -51000303030, "INT64") c.set("ae", 3, "UINT8") c.set("af", 39485, "UINT16") c.set("ag", 1023935, "UINT32") c.set("ah", 839394939393, "UINT64") c.set("ai", 52.4, "FLOAT") c.set("aj", -39.455, "DOUBLE") c.set("ak", "A random string!", "CHARSTR") # Arrays c.set("al", [1, 3, 7]) c.set("am", [[4,6,8],[7,8,3]], "INT16") c.set("an", np.array([12, 13, 17],dtype='int32')) c.set("ao", np.array([[6,8,13],[19,238,998]],dtype='uint16')) # Submodules d = cdict() d.set("b", 33) d.set("c", 39) d.set("d", 696) c.set("b", d, append=True) d.set("b", 95) d.set("c", 973) d.set("d", 939) c.set("b", d, append=True) d.set("d", 15) c.set("b", d, append=True) # Deeper names c.set("c.d.e", 42.49, "FLOAT") c.set("c.d.f", -30.34, "DOUBLE") c.set("b.0.c", 72) # Enums c.define_enum("q", {"Off": 0, "On": 1}) c.define_enum("r", {"Down": -1, "Up": 1}) c.set("c.d.g", 0, "q") c.set("c.d.h", 1, "q") c.set("c.d.k", 1, "r") c.set("c.d.l", -1, "r") # MCB - Right now, psana doesn't support arrays of enums, so comment # this out. If CPO ever implements this, this test will need to be # revisited. # assert c.set("c.d.m", [0, 1, 0], "q") # Write it out!! json_file = os.path.join(tmp_path, "json2xtc_test.json") xtc_file = os.path.join(tmp_path, "json2xtc_test.xtc2") assert c.writeFile(json_file) # Convert it to xtc2! # this test should really run in psdaq where json2xtc # lives. as a kludge, abort the test if the exe is # not found - cpo exe_found = False for path in os.environ["PATH"].split(os.pathsep): exe_file = os.path.join(path, 'json2xtc') if os.path.isfile(exe_file): exe_found = True break if not exe_found: return subprocess.call(["json2xtc", json_file, xtc_file]) # Now, let's read it in! ds = DataSource(files=xtc_file) dg = ds._configs[0] print(dir(dg.software), c.dict['detId:RO']) assert dg.software.test1[0].detid == c.dict['detId:RO'] assert dg.software.test1[0].dettype == c.dict['detType:RO'] assert self.check(dg.test1[0].raw, c) def run(): test = Test_JSON2XTC() import pathlib test.test_one(pathlib.Path('.')) if __name__ == "__main__": run()
36.266667
90
0.445261
04610c904b712447436ce31938841ad0254da83a
2,452
java
Java
reposilite-backend/src/main/java/org/panda_lang/reposilite/repository/LookupController.java
insertt/Reposilite
d310424bbc1754562da313cc27936e98667698c8
[ "Apache-2.0" ]
null
null
null
reposilite-backend/src/main/java/org/panda_lang/reposilite/repository/LookupController.java
insertt/Reposilite
d310424bbc1754562da313cc27936e98667698c8
[ "Apache-2.0" ]
null
null
null
reposilite-backend/src/main/java/org/panda_lang/reposilite/repository/LookupController.java
insertt/Reposilite
d310424bbc1754562da313cc27936e98667698c8
[ "Apache-2.0" ]
null
null
null
/* * Copyright (c) 2020 Dzikoysk * * 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. */ package org.panda_lang.reposilite.repository; import io.javalin.http.Context; import io.javalin.http.Handler; import org.apache.http.HttpStatus; import org.panda_lang.reposilite.Reposilite; import org.panda_lang.reposilite.api.ErrorDto; import org.panda_lang.reposilite.frontend.FrontendService; import org.panda_lang.reposilite.utils.Result; public final class LookupController implements Handler { private final FrontendService frontend; private final LookupService lookupService; public LookupController(FrontendService frontend, LookupService lookupService) { this.frontend = frontend; this.lookupService = lookupService; } @Override public void handle(Context context) { Reposilite.getLogger().info("LOOKUP " + context.req.getRequestURI() + " from " + context.req.getRemoteAddr()); Result<Context, ErrorDto> lookupResponse = lookupService.serveLocal(context); if (isProxied(lookupResponse)) { if (lookupService.hasProxiedRepositories()) { lookupResponse = lookupResponse.orElse(localError -> lookupService.serveProxied(context).map(context::result)); } if (isProxied(lookupResponse)) { lookupResponse = lookupResponse.mapError(proxiedError -> new ErrorDto(HttpStatus.SC_NOT_FOUND, proxiedError.getMessage())); } } lookupResponse.onError(error -> { context.res.setCharacterEncoding("UTF-8"); context.status(error.getStatus()) .contentType("text/html") .result(frontend.forMessage(error.getMessage())); }); } private boolean isProxied(Result<Context, ErrorDto> lookupResponse) { return lookupResponse.containsError() && lookupResponse.getError().getStatus() == HttpStatus.SC_USE_PROXY; } }
37.723077
139
0.703915
405e20a9f2ecb089c8560be7dea97ae80e9b5ae8
3,101
py
Python
code/lib/helpers/tester_helper.py
yfthu/GUPNet
12474476f5a00ad34f7dfe1d0c6b1e266e326f85
[ "MIT" ]
53
2021-08-16T01:20:01.000Z
2022-03-22T14:05:55.000Z
code/lib/helpers/tester_helper.py
yfthu/GUPNet
12474476f5a00ad34f7dfe1d0c6b1e266e326f85
[ "MIT" ]
17
2021-09-08T05:15:21.000Z
2022-03-09T06:57:45.000Z
code/lib/helpers/tester_helper.py
yfthu/GUPNet
12474476f5a00ad34f7dfe1d0c6b1e266e326f85
[ "MIT" ]
8
2021-10-09T05:36:52.000Z
2022-03-28T09:20:46.000Z
import os import tqdm import torch import numpy as np from lib.helpers.save_helper import load_checkpoint from lib.helpers.decode_helper import extract_dets_from_outputs from lib.helpers.decode_helper import decode_detections class Tester(object): def __init__(self, cfg, model, data_loader, logger): self.cfg = cfg self.model = model self.data_loader = data_loader self.logger = logger self.class_name = data_loader.dataset.class_name self.device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") if self.cfg.get('resume_model', None): load_checkpoint(model = self.model, optimizer = None, filename = cfg['resume_model'], logger = self.logger, map_location=self.device) self.model.to(self.device) def test(self): torch.set_grad_enabled(False) self.model.eval() results = {} progress_bar = tqdm.tqdm(total=len(self.data_loader), leave=True, desc='Evaluation Progress') for batch_idx, (inputs, calibs, coord_ranges, _, info) in enumerate(self.data_loader): # load evaluation data and move data to current device. inputs = inputs.to(self.device) calibs = calibs.to(self.device) coord_ranges = coord_ranges.to(self.device) # the outputs of centernet outputs = self.model(inputs,coord_ranges,calibs,K=50,mode='test') dets = extract_dets_from_outputs(outputs=outputs, K=50) dets = dets.detach().cpu().numpy() # get corresponding calibs & transform tensor to numpy calibs = [self.data_loader.dataset.get_calib(index) for index in info['img_id']] info = {key: val.detach().cpu().numpy() for key, val in info.items()} cls_mean_size = self.data_loader.dataset.cls_mean_size dets = decode_detections(dets = dets, info = info, calibs = calibs, cls_mean_size=cls_mean_size, threshold = self.cfg['threshold']) results.update(dets) progress_bar.update() # save the result for evaluation. self.save_results(results) progress_bar.close() def save_results(self, results, output_dir='./outputs'): output_dir = os.path.join(output_dir, 'data') os.makedirs(output_dir, exist_ok=True) for img_id in results.keys(): out_path = os.path.join(output_dir, '{:06d}.txt'.format(img_id)) f = open(out_path, 'w') for i in range(len(results[img_id])): class_name = self.class_name[int(results[img_id][i][0])] f.write('{} 0.0 0'.format(class_name)) for j in range(1, len(results[img_id][i])): f.write(' {:.2f}'.format(results[img_id][i][j])) f.write('\n') f.close()
37.361446
101
0.577878
693fdb7e768be123063126fc76f5ee05de3f60c5
1,464
dart
Dart
lib/activities/done-button.dart
suhrmann/IchMacheEsRichtig-ODER
2e2faaea9e356926d86d6fa24e1e303d442eb952
[ "MIT" ]
2
2020-03-24T13:06:41.000Z
2020-04-20T08:40:58.000Z
lib/activities/done-button.dart
suhrmann/IchMacheEsRichtig-ODER
2e2faaea9e356926d86d6fa24e1e303d442eb952
[ "MIT" ]
null
null
null
lib/activities/done-button.dart
suhrmann/IchMacheEsRichtig-ODER
2e2faaea9e356926d86d6fa24e1e303d442eb952
[ "MIT" ]
null
null
null
import 'package:flutter/material.dart'; import 'package:scoped_model/scoped_model.dart'; import '../scoped-model/main-model.dart'; import '../model/activity.dart'; class DoneButton extends StatelessWidget { final Activity activityToAdd; final Function onTap; Color color; DoneButton({this.activityToAdd, this.onTap, this.color}) { if (this.color == null) this.color = Colors.yellow[200]; } @override Widget build(BuildContext context) { return Container( width: MediaQuery.of(context).size.width / 2, child: RaisedButton( shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)), color: color, onPressed: () async { await ScopedModel.of<MainModel>(context).addActivity(activityToAdd); //model.visibleIcon(true); await onTap(); Navigator.pushReplacementNamed(context, '/'); }, child: Container( child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: <Widget>[ Container(child: Text("Erledigt")), SizedBox( width: 5, ), Container( decoration: BoxDecoration( borderRadius: BorderRadius.circular(20), color: Colors.yellow[200], ), child: Icon(Icons.check)), ], ), ), ), ); } }
29.877551
79
0.574454
5d61ee223dd2a7d3dcba7edc8318190a0e4f2932
2,093
go
Go
messages/line.go
volons/ground-station
7818d9cb4dc5697da7cedf74bc4074f5226a4307
[ "MIT" ]
1
2020-02-07T19:40:27.000Z
2020-02-07T19:40:27.000Z
messages/line.go
volons/ground-station
7818d9cb4dc5697da7cedf74bc4074f5226a4307
[ "MIT" ]
null
null
null
messages/line.go
volons/ground-station
7818d9cb4dc5697da7cedf74bc4074f5226a4307
[ "MIT" ]
1
2020-12-12T20:20:03.000Z
2020-12-12T20:20:03.000Z
package messages import ( "errors" "log" "sync" "time" "github.com/volons/hive/libs" ) type Line struct { lock sync.RWMutex closeOnDisconnect bool Name string receive chan Message peer *Line done libs.Done } func NewLine(name string, closeOnDisconnect bool) *Line { return &Line{ Name: name, closeOnDisconnect: closeOnDisconnect, receive: make(chan Message), done: libs.NewDone(), } } func (l *Line) Connection() <-chan interface{} { return nil } func (l *Line) Connected() bool { l.lock.RLock() defer l.lock.RUnlock() return l.peer != nil } func (l *Line) Connect(peer *Line) { l.Disconnect() peer.Disconnect() l.setPeer(peer) peer.setPeer(l) } func (l *Line) Disconnect() { l.lock.Lock() peer := l.peer l.peer = nil l.lock.Unlock() if peer != nil { peer.Disconnect() if l.closeOnDisconnect { l.Close() } } } func (l *Line) setPeer(peer *Line) { l.lock.Lock() l.peer = peer l.lock.Unlock() } //func (l *Line) Request(msg Message) *callback.Callback { // return l.RequestWithCallback(msg, callback.New()) //} // //func (l *Line) RequestWithCallback(msg Message, cb *callback.Callback) *callback.Callback { // msg.callback(cb) // // err := l.Send(msg) // if err != nil { // cb.Reject(err) // } // // return cb //} func (l *Line) Peer() *Line { l.lock.RLock() defer l.lock.RUnlock() return l.peer } func (l *Line) Send(msg Message) error { peer := l.Peer() if peer == nil { return errors.New("not connected") } return peer.Push(msg) } func (l *Line) Push(msg Message) error { select { case l.receive <- msg: case <-time.After(time.Millisecond * 100): log.Println(libs.TMP) log.Printf("Message discarded, not read within 100ms on line %v", l.Name) log.Println(msg) return errors.New("Message discarded, not read within 10ms") case <-l.Done(): return errors.New("disconnected") } return nil } func (l *Line) Done() <-chan bool { return l.done.WaitCh() } func (l *Line) Close() { l.done.Done() } func (l *Line) Recv() <-chan Message { return l.receive }
16.1
93
0.638318
84337300a35cd50854c33abef6ea571e82aa5bfc
1,978
html
HTML
Basic_Html/scoreboard.html
imnik-45/frontend-libraries-certification
ddb249a9db36088c3e3ecfd8eed9487380ec1247
[ "MIT" ]
1
2020-08-31T18:42:51.000Z
2020-08-31T18:42:51.000Z
Basic_Html/scoreboard.html
imnik-45/frontend-libraries-certification
ddb249a9db36088c3e3ecfd8eed9487380ec1247
[ "MIT" ]
null
null
null
Basic_Html/scoreboard.html
imnik-45/frontend-libraries-certification
ddb249a9db36088c3e3ecfd8eed9487380ec1247
[ "MIT" ]
null
null
null
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Scoreboard</title> <style> h3 { text-align: center; } .leg { text-align: center; font-size: larger; } table.a { table-layout: auto; width: 100%; text-align: center; } </style> </head> <body> <fieldset> <legend class="leg">Virat Kohli Batting Stats</legend> <h3>Test's</h3> <table border="1px" cellspacing="5px" cellpadding="10px" class="a"> <tr> <th>Matches</th> <th>Innings</th> <th>Runs</th> <th>Average</th> <th>100s</th> <th>50s</th> </tr> <tr> <td>86</td> <td>145</td> <td>7240</td> <td>53.60</td> <td>27</td> <td>22</td> </tr> </table> <br /><br /> <table border="1px" cellspacing="5px" cellpadding="10px" class="a"> <h3>ODI's</h3> <tr> <th>Matches</th> <th>Innings</th> <th>Runs</th> <th>Average</th> <th>100s</th> <th>50s</th> </tr> <tr> <td>248</td> <td>239</td> <td>11587</td> <td>59.3</td> <td>43</td> <td>58</td> </tr> </table> <br /><br /> <table border="1px" cellspacing="5px" cellpadding="10px" class="a"> <h3>T20's</h3> <tr> <th>Matches</th> <th>Innings</th> <th>Runs</th> <th>Average</th> <th>100s</th> <th>50s</th> </tr> <tr> <td>82</td> <td>76</td> <td>2794</td> <td>50.8</td> <td>0</td> <td>24</td> </tr> </table> <br /><br /> </fieldset> </body> </html>
22.477273
76
0.40546
3253c4a00363297c211ffcd1654acd43f9643064
225
sql
SQL
quests/data-science-on-gcp-edition1_tf2/03_sqlstudio/create_views.sql
Glairly/introduction_to_tensorflow
aa0a44d9c428a6eb86d1f79d73f54c0861b6358d
[ "Apache-2.0" ]
2
2022-01-06T11:52:57.000Z
2022-01-09T01:53:56.000Z
quests/data-science-on-gcp-edition1_tf2/03_sqlstudio/create_views.sql
Glairly/introduction_to_tensorflow
aa0a44d9c428a6eb86d1f79d73f54c0861b6358d
[ "Apache-2.0" ]
null
null
null
quests/data-science-on-gcp-edition1_tf2/03_sqlstudio/create_views.sql
Glairly/introduction_to_tensorflow
aa0a44d9c428a6eb86d1f79d73f54c0861b6358d
[ "Apache-2.0" ]
null
null
null
use bts; CREATE VIEW delayed_10 AS SELECT * FROM flights WHERE dep_delay > 10; CREATE VIEW delayed_15 AS SELECT * FROM flights WHERE dep_delay > 15; CREATE VIEW delayed_20 AS SELECT * FROM flights WHERE dep_delay > 20;
37.5
70
0.76
aa932e7bd171862d7222eaa75230607e46811dda
145,119
sql
SQL
h2si3.sql
AyymericM/H2_SI3
c38c4468382f408072ce211d71d10c074826bc3d
[ "MIT" ]
null
null
null
h2si3.sql
AyymericM/H2_SI3
c38c4468382f408072ce211d71d10c074826bc3d
[ "MIT" ]
null
null
null
h2si3.sql
AyymericM/H2_SI3
c38c4468382f408072ce211d71d10c074826bc3d
[ "MIT" ]
null
null
null
-- phpMyAdmin SQL Dump -- version 4.6.6deb4 -- https://www.phpmyadmin.net/ -- -- Client : localhost:3306 -- Généré le : Jeu 11 Avril 2019 à 19:28 -- Version du serveur : 10.1.37-MariaDB-0+deb9u1 -- Version de PHP : 7.0.33-0+deb9u3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de données : `h2si3` -- CREATE DATABASE IF NOT EXISTS `h2si3` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; USE `h2si3`; -- -------------------------------------------------------- -- -- Structure de la table `questions` -- CREATE TABLE `questions` ( `id` int(11) NOT NULL, `text` varchar(1024) NOT NULL, `answers` varchar(1024) NOT NULL, `type` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Contenu de la table `questions` -- INSERT INTO `questions` (`id`, `text`, `answers`, `type`) VALUES (1457, 'Who is leading the \"House Hightower of the Hightower\"?', '[{\"right\":false,\"text\":\"Alerie Hightower\"},{\"right\":false,\"text\":\"Alysanne Osgrey\"},{\"right\":false,\"text\":\"Cortnay Penrose\"},{\"right\":true,\"text\":\"Leyton Hightower\"}]', 1), (1458, 'In how many Star Wars movies appeared Padmé Amidala ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":2},{\"right\":true,\"text\":3},{\"right\":false,\"text\":4}]', 2), (1459, 'In how many Star Wars movies appeared Wedge Antilles ?', '[{\"right\":false,\"text\":4},{\"right\":true,\"text\":3},{\"right\":false,\"text\":1},{\"right\":false,\"text\":2}]', 2), (1460, 'In how many season Qhorin appears?', '[{\"right\":false,\"text\":\"6\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"1\"}]', 1), (1461, 'On which planet was Han Solo born ?', '[{\"right\":false,\"text\":\"Hoth\"},{\"right\":false,\"text\":\"Kamino\"},{\"right\":true,\"text\":\"Corellia\"},{\"right\":false,\"text\":\"Umbara\"}]', 2), (1462, 'How heavy is R5-D4 ? (in kg)', '[{\"right\":false,\"text\":\"140\"},{\"right\":false,\"text\":\"48\"},{\"right\":true,\"text\":\"32\"},{\"right\":false,\"text\":\"90\"}]', 2), (1463, 'In how many season Melessa Florent appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"1\"}]', 1), (1464, 'In how many Star Wars movies appeared Dooku ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":2},{\"right\":false,\"text\":6},{\"right\":false,\"text\":5}]', 2), (1465, 'In how many Star Wars movies appeared Wicket Systri Warrick ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":4}]', 2), (1466, 'On which planet was Quarsh Panaka born ?', '[{\"right\":false,\"text\":\"Skako\"},{\"right\":true,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Mustafar\"},{\"right\":false,\"text\":\"Stewjon\"}]', 2), (1467, 'On which planet was Padmé Amidala born ?', '[{\"right\":false,\"text\":\"Cato Neimoidia\"},{\"right\":true,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Toydaria\"},{\"right\":false,\"text\":\"Kamino\"}]', 2), (1468, 'In how many season Asha Greyjoy appears?', '[{\"right\":false,\"text\":\"6\"},{\"right\":true,\"text\":\"3\"}]', 1), (1469, 'In how many season Bronn appears?', '[{\"right\":false,\"text\":\"4\"},{\"right\":true,\"text\":\"5\"},{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"2\"}]', 1), (1470, 'Who is leading the \"House Graceford of Holyhall\"?', '[{\"right\":false,\"text\":\"Walder\"},{\"right\":true,\"text\":\"Alyce Graceford\"}]', 1), (1471, 'Which language does the Droid species speak ?', '[{\"right\":false,\"text\":\"Utapese\"},{\"right\":true,\"text\":\"n\\/a\"},{\"right\":false,\"text\":\"Xextese\"},{\"right\":false,\"text\":\"Aleena\"}]', 2), (1472, 'In how many Star Wars movies appeared Cordé ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":7},{\"right\":false,\"text\":2}]', 2), (1473, 'In how many season Mace Tyrell appears?', '[{\"right\":false,\"text\":\"2\"},{\"right\":true,\"text\":\"3\"}]', 1), (1474, 'On which planet was Jocasta Nu born ?', '[{\"right\":false,\"text\":\"Champala\"},{\"right\":false,\"text\":\"Socorro\"},{\"right\":true,\"text\":\"Coruscant\"},{\"right\":false,\"text\":\"Felucia\"}]', 2), (1475, 'On which planet was Shmi Skywalker born ?', '[{\"right\":false,\"text\":\"Dagobah\"},{\"right\":false,\"text\":\"Tund\"},{\"right\":false,\"text\":\"Mygeeto\"},{\"right\":true,\"text\":\"Tatooine\"}]', 2), (1476, 'How tall is Leia Organa ? (in cm)', '[{\"right\":false,\"text\":\"200\"},{\"right\":false,\"text\":\"157\"},{\"right\":true,\"text\":\"150\"},{\"right\":false,\"text\":\"178\"}]', 2), (1477, 'In how many season Podrick Payne appears?', '[{\"right\":false,\"text\":\"1\"},{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"5\"}]', 1), (1478, 'In how many season Mandon Moore appears?', '[{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"2\"}]', 1), (1479, 'Which language does the Sullustan species speak ?', '[{\"right\":false,\"text\":\"Utapese\"},{\"right\":true,\"text\":\"Sullutese\"},{\"right\":false,\"text\":\"Nautila\"},{\"right\":false,\"text\":\"Dosh\"}]', 2), (1480, 'Who is leading the \"House Goodbrook\"?', '[{\"right\":false,\"text\":\"Alerie Hightower\"},{\"right\":true,\"text\":\"Lymond Goodbrook\"},{\"right\":false,\"text\":\"Crake\"}]', 1), (1481, 'Who directed Star Wars - Revenge of the Sith ?', '[{\"right\":false,\"text\":\"Irvin Kershner\"},{\"right\":false,\"text\":\"Richard Marquand\"},{\"right\":true,\"text\":\"George Lucas\"},{\"right\":false,\"text\":\"J. J. Abrams\"}]', 2), (1482, 'In how many season Theon Greyjoy appears?', '[{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"5\"},{\"right\":true,\"text\":\"6\"}]', 1), (1483, 'How heavy is Jar Jar Binks ? (in kg)', '[{\"right\":false,\"text\":\"82\"},{\"right\":true,\"text\":\"66\"},{\"right\":false,\"text\":\"113\"},{\"right\":false,\"text\":\"1,358\"}]', 2), (1484, 'In how many Star Wars movies the planet Dorin has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":true,\"text\":0}]', 2), (1485, 'How tall is Boba Fett ? (in cm)', '[{\"right\":false,\"text\":\"170\"},{\"right\":true,\"text\":\"183\"},{\"right\":false,\"text\":\"178\"},{\"right\":false,\"text\":\"175\"}]', 2), (1486, 'How tall is Quarsh Panaka ? (in cm)', '[{\"right\":true,\"text\":\"183\"},{\"right\":false,\"text\":\"112\"},{\"right\":false,\"text\":\"264\"},{\"right\":false,\"text\":\"79\"}]', 2), (1487, 'In how many Star Wars movies the planet Chandrila has appeared ?', '[{\"right\":true,\"text\":0},{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":false,\"text\":4}]', 2), (1488, 'What is the nickname of Benedict I Justman?', '[{\"right\":false,\"text\":\"Treb\"},{\"right\":false,\"text\":\"Big Ben\"},{\"right\":true,\"text\":\"Benedict Rivers\"}]', 1), (1489, 'On which planet was IG-88 born ?', '[{\"right\":false,\"text\":\"Trandosha\"},{\"right\":false,\"text\":\"Toydaria\"},{\"right\":true,\"text\":\"unknown\"},{\"right\":false,\"text\":\"Ord Mantell\"}]', 2), (1490, 'What is the title of Star Wars episode 4 ?', '[{\"right\":false,\"text\":\"Revenge of the Sith\"},{\"right\":false,\"text\":\"Return of the Jedi\"},{\"right\":true,\"text\":\"A New Hope\"},{\"right\":false,\"text\":\"The Empire Strikes Back\"}]', 2), (1491, 'In how many Star Wars movies the planet Umbara has appeared ?', '[{\"right\":false,\"text\":5},{\"right\":false,\"text\":2},{\"right\":true,\"text\":0},{\"right\":false,\"text\":1}]', 2), (1492, 'In how many Star Wars movies appeared Eeth Koth ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":3},{\"right\":true,\"text\":2},{\"right\":false,\"text\":6}]', 2), (1493, 'Which language does the Nautolan species speak ?', '[{\"right\":false,\"text\":\"Iktotchese\"},{\"right\":true,\"text\":\"Nautila\"},{\"right\":false,\"text\":\"Togruti\"},{\"right\":false,\"text\":\"vulpterish\"}]', 2), (1494, 'Who is leading the \"House Bolton of the Dreadfort\"?', '[{\"right\":true,\"text\":\"Roose Bolton\"},{\"right\":false,\"text\":\"Garth XII Gardener\"},{\"right\":false,\"text\":\"Arstan Selmy\"},{\"right\":false,\"text\":\"\"}]', 1), (1495, 'In how many Star Wars movies appeared Cliegg Lars ?', '[{\"right\":false,\"text\":6},{\"right\":false,\"text\":2},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3}]', 2), (1496, 'In how many Star Wars movies the planet Yavin IV has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":4},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3}]', 2), (1497, 'What is the nickname of Della Frey?', '[{\"right\":false,\"text\":\"The Leech Lord\"},{\"right\":true,\"text\":\"Deaf Della\"},{\"right\":false,\"text\":\"Bittersteel\"}]', 1), (1498, 'Who is leading the \"House Dayne of High Hermitage\"?', '[{\"right\":true,\"text\":\"Gerold Dayne\"},{\"right\":false,\"text\":\"Cleyton Caswell\"},{\"right\":false,\"text\":\"Arwyn Frey\"},{\"right\":false,\"text\":\"Bethany Bolton\"}]', 1), (1499, 'In how many Star Wars movies appeared Mon Mothma ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":5},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1}]', 2), (1500, 'Who directed Star Wars - A New Hope ?', '[{\"right\":false,\"text\":\"Richard Marquand\"},{\"right\":false,\"text\":\"J. J. Abrams\"},{\"right\":true,\"text\":\"George Lucas\"},{\"right\":false,\"text\":\"Irvin Kershner\"}]', 2), (1501, 'What is the nickname of Baelon Targaryen?', '[{\"right\":true,\"text\":\"Heir for a Day\"},{\"right\":false,\"text\":\"Misery, the White Worm\"},{\"right\":false,\"text\":\"Quickfinger\"}]', 1), (1502, 'In how many season Jon Arryn appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"5\"}]', 1), (1503, 'On which planet was Mace Windu born ?', '[{\"right\":true,\"text\":\"Haruun Kal\"},{\"right\":false,\"text\":\"Dantooine\"},{\"right\":false,\"text\":\"Mirial\"},{\"right\":false,\"text\":\"Trandosha\"}]', 2), (1504, 'On which planet was Nute Gunray born ?', '[{\"right\":false,\"text\":\"Mirial\"},{\"right\":false,\"text\":\"Malastare\"},{\"right\":true,\"text\":\"Cato Neimoidia\"},{\"right\":false,\"text\":\"Quermia\"}]', 2), (1505, 'On which planet was Luke Skywalker born ?', '[{\"right\":false,\"text\":\"Cato Neimoidia\"},{\"right\":true,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Trandosha\"},{\"right\":false,\"text\":\"Vulpter\"}]', 2), (1506, 'What is the nickname of Brandon Stark?', '[{\"right\":false,\"text\":\"Garin of the Orphans\"},{\"right\":false,\"text\":\"The Black Swan\"},{\"right\":true,\"text\":\"Bran the Builder\"},{\"right\":false,\"text\":\"Brotherfuckerthe bitch queen\"}]', 1), (1507, 'In how many season Jaime Lannister appears?', '[{\"right\":false,\"text\":\"1\"},{\"right\":true,\"text\":\"5\"}]', 1), (1508, 'How heavy is C-3PO ? (in kg)', '[{\"right\":false,\"text\":\"82\"},{\"right\":false,\"text\":\"113\"},{\"right\":true,\"text\":\"75\"},{\"right\":false,\"text\":\"84\"}]', 2), (1509, 'What is the nickname of Barristan Selmy?', '[{\"right\":false,\"text\":\"Left-Hand Lucas\"},{\"right\":true,\"text\":\"Barristan the Bold\"}]', 1), (1510, 'Who is leading the \"House Lannister of Darry\"?', '[{\"right\":true,\"text\":\"Lancel Lannister\"},{\"right\":false,\"text\":\"Addam Marbrand\"}]', 1), (1511, 'On which planet was Jek Tono Porkins born ?', '[{\"right\":true,\"text\":\"Bestine IV\"},{\"right\":false,\"text\":\"Ojom\"},{\"right\":false,\"text\":\"Endor\"},{\"right\":false,\"text\":\"Geonosis\"}]', 2), (1512, 'On which planet was Roos Tarpals born ?', '[{\"right\":false,\"text\":\"Iridonia\"},{\"right\":false,\"text\":\"Kalee\"},{\"right\":false,\"text\":\"Iktotch\"},{\"right\":true,\"text\":\"Naboo\"}]', 2), (1513, 'How tall is R4-P17 ? (in cm)', '[{\"right\":false,\"text\":\"170\"},{\"right\":true,\"text\":\"96\"},{\"right\":false,\"text\":\"167\"},{\"right\":false,\"text\":\"180\"}]', 2), (1514, 'In how many Star Wars movies appeared Bail Prestor Organa ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":1},{\"right\":false,\"text\":6},{\"right\":true,\"text\":2}]', 2), (1515, 'How heavy is Anakin Skywalker ? (in kg)', '[{\"right\":false,\"text\":\"78.2\"},{\"right\":false,\"text\":\"74\"},{\"right\":true,\"text\":\"84\"},{\"right\":false,\"text\":\"32\"}]', 2), (1516, 'In how many Star Wars movies the planet Mon Cala has appeared ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":0},{\"right\":false,\"text\":1},{\"right\":false,\"text\":4}]', 2), (1517, 'In how many season Kevan Lannister appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"2\"}]', 1), (1518, 'Who is leading the \"House Baratheon of Storm\'s End\"?', '[{\"right\":true,\"text\":\"Tommen Baratheon\"},{\"right\":false,\"text\":\"Aerys II\"},{\"right\":false,\"text\":\"\"},{\"right\":false,\"text\":\"Scolera\"}]', 1), (1519, 'In how many Star Wars movies appeared Ben Quadinaros ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":4}]', 2), (1520, 'On which planet was Ratts Tyerell born ?', '[{\"right\":false,\"text\":\"Sullust\"},{\"right\":false,\"text\":\"Trandosha\"},{\"right\":false,\"text\":\"Toydaria\"},{\"right\":true,\"text\":\"Aleen Minor\"}]', 2), (1521, 'In how many Star Wars movies the planet Kamino has appeared ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":2}]', 2), (1522, 'In how many season Ilyn Payne appears?', '[{\"right\":false,\"text\":\"1\"},{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"6\"}]', 1), (1523, 'In how many Star Wars movies appeared Shaak Ti ?', '[{\"right\":true,\"text\":2},{\"right\":false,\"text\":6},{\"right\":false,\"text\":3},{\"right\":false,\"text\":1}]', 2), (1524, 'Who is leading the \"House Borrell of Sweetsister\"?', '[{\"right\":false,\"text\":\"Alester Oakheart\"},{\"right\":true,\"text\":\"Godric Borrell\"},{\"right\":false,\"text\":\"Dick Follard\"},{\"right\":false,\"text\":\"Eleanor Mooton\"}]', 1), (1525, 'In how many season Howland Reed appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"1\"}]', 1), (1526, 'In how many season Lothar Frey appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"5\"}]', 1), (1527, 'How tall is Lama Su ? (in cm)', '[{\"right\":false,\"text\":\"160\"},{\"right\":false,\"text\":\"137\"},{\"right\":true,\"text\":\"229\"},{\"right\":false,\"text\":\"175\"}]', 2), (1528, 'Who is leading the \"House Belmore of Strongsong\"?', '[{\"right\":false,\"text\":\"Tywin Lannister\"},{\"right\":true,\"text\":\"Benedar Belmore\"},{\"right\":false,\"text\":\"Donnel Locke\"},{\"right\":false,\"text\":\"Arron Qorgyle\"}]', 1), (1529, 'How heavy is Chewbacca ? (in kg)', '[{\"right\":false,\"text\":\"48\"},{\"right\":false,\"text\":\"82\"},{\"right\":true,\"text\":\"112\"},{\"right\":false,\"text\":\"75\"}]', 2), (1530, 'In how many Star Wars movies the planet Muunilinst has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":true,\"text\":0},{\"right\":false,\"text\":4}]', 2), (1531, 'How heavy is Barriss Offee ? (in kg)', '[{\"right\":false,\"text\":\"66\"},{\"right\":false,\"text\":\"68\"},{\"right\":false,\"text\":\"55\"},{\"right\":true,\"text\":\"50\"}]', 2), (1532, 'Who is leading the \"House Manderly of White Harbor\"?', '[{\"right\":false,\"text\":\"Ashara Dayne\"},{\"right\":true,\"text\":\"Wyman Manderly\"},{\"right\":false,\"text\":\"Bonifer Hasty\"},{\"right\":false,\"text\":\"Brandon Stark\"}]', 1), (1533, 'What is the nickname of Alesander Staedmon?', '[{\"right\":false,\"text\":\"The Titan\'s Bastard\"},{\"right\":false,\"text\":\"Strong Belwas\"},{\"right\":true,\"text\":\"the Pennylover\"}]', 1), (1534, 'What is the nickname of Alan?', '[{\"right\":false,\"text\":\"Aegon the Unworthy\"},{\"right\":false,\"text\":\"Ella\"},{\"right\":true,\"text\":\"Alan o\' the Oak\"}]', 1), (1535, 'What is the nickname of Aegon Frey?', '[{\"right\":false,\"text\":\"Dale the Dread\"},{\"right\":false,\"text\":\"The Kindly Man\"},{\"right\":true,\"text\":\"Jinglebell\"},{\"right\":false,\"text\":\"Treb\"}]', 1), (1536, 'How heavy is Sebulba ? (in kg)', '[{\"right\":false,\"text\":\"45\"},{\"right\":false,\"text\":\"17\"},{\"right\":false,\"text\":\"74\"},{\"right\":true,\"text\":\"40\"}]', 2), (1537, 'What is the nickname of Aeron Greyjoy?', '[{\"right\":false,\"text\":\"The Laughing Lion\"},{\"right\":true,\"text\":\"The Damphair\"}]', 1), (1538, 'How tall is Wicket Systri Warrick ? (in cm)', '[{\"right\":false,\"text\":\"166\"},{\"right\":false,\"text\":\"178\"},{\"right\":false,\"text\":\"180\"},{\"right\":true,\"text\":\"88\"}]', 2), (1539, 'How heavy is Grievous ? (in kg)', '[{\"right\":false,\"text\":\"79\"},{\"right\":true,\"text\":\"159\"},{\"right\":false,\"text\":\"90\"},{\"right\":false,\"text\":\"102\"}]', 2), (1540, 'On which planet was Cordé born ?', '[{\"right\":false,\"text\":\"Concord Dawn\"},{\"right\":true,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Haruun Kal\"},{\"right\":false,\"text\":\"Kalee\"}]', 2), (1541, 'In how many Star Wars movies the planet Rodia has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":3}]', 2), (1542, 'In how many Star Wars movies the planet Sullust has appeared ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":true,\"text\":0}]', 2), (1543, 'In how many Star Wars movies appeared Ayla Secura ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":true,\"text\":3},{\"right\":false,\"text\":7}]', 2), (1544, 'In how many Star Wars movies the planet Skako has appeared ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":0},{\"right\":false,\"text\":4},{\"right\":false,\"text\":1}]', 2), (1545, 'Which language does the Cerean species speak ?', '[{\"right\":true,\"text\":\"Cerean\"},{\"right\":false,\"text\":\"Zabraki\"},{\"right\":false,\"text\":\"Tundan\"},{\"right\":false,\"text\":\"Neimoidia\"}]', 2), (1546, 'How tall is IG-88 ? (in cm)', '[{\"right\":false,\"text\":\"157\"},{\"right\":false,\"text\":\"191\"},{\"right\":true,\"text\":\"200\"},{\"right\":false,\"text\":\"180\"}]', 2), (1547, 'Who is leading the \"House Caswell of Bitterbridge\"?', '[{\"right\":true,\"text\":\"Lorent Caswell\"},{\"right\":false,\"text\":\"Edgerran Oakheart\"},{\"right\":false,\"text\":\"Addam Frey\"},{\"right\":false,\"text\":\"Garth Greenfield\"}]', 1), (1548, 'In how many Star Wars movies appeared Sly Moore ?', '[{\"right\":false,\"text\":3},{\"right\":true,\"text\":2},{\"right\":false,\"text\":6},{\"right\":false,\"text\":1}]', 2), (1549, 'What is the nickname of Cersei Frey?', '[{\"right\":true,\"text\":\"the Little Bee\"},{\"right\":false,\"text\":\"Gerrick Kingsblood\"},{\"right\":false,\"text\":\"The Shavepate\"}]', 1), (1550, 'In how many Star Wars movies the planet Dantooine has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3},{\"right\":true,\"text\":0}]', 2), (1551, 'What is the nickname of Alyn Velaryon?', '[{\"right\":false,\"text\":\"the Tickler\"},{\"right\":true,\"text\":\"Alyn of Hull\"}]', 1), (1552, 'In how many Star Wars movies appeared Obi-Wan Kenobi ?', '[{\"right\":true,\"text\":6},{\"right\":false,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2}]', 2), (1553, 'What is the nickname of Archibald Yronwood?', '[{\"right\":false,\"text\":\"The Black Centaur\"},{\"right\":false,\"text\":\"Black Tom Heddle\"},{\"right\":false,\"text\":\"the little monsterthe abomination\"},{\"right\":true,\"text\":\"Big Man\"}]', 1), (1554, 'Who is leading the \"House Bar Emmon of Sharp Point\"?', '[{\"right\":false,\"text\":\"Ben Plumm\"},{\"right\":true,\"text\":\"Duram Bar Emmon\"},{\"right\":false,\"text\":\"Devan Seaworth\"},{\"right\":false,\"text\":\"Osmynd\"}]', 1), (1555, 'On which planet was Dooku born ?', '[{\"right\":false,\"text\":\"Jakku\"},{\"right\":false,\"text\":\"Dorin\"},{\"right\":false,\"text\":\"Concord Dawn\"},{\"right\":true,\"text\":\"Serenno\"}]', 2), (1556, 'How tall is Barriss Offee ? (in cm)', '[{\"right\":false,\"text\":\"170\"},{\"right\":false,\"text\":\"216\"},{\"right\":false,\"text\":\"163\"},{\"right\":true,\"text\":\"166\"}]', 2), (1557, 'Which language does the Zabrak species speak ?', '[{\"right\":false,\"text\":\"Dugese\"},{\"right\":false,\"text\":\"Huttese\"},{\"right\":true,\"text\":\"Zabraki\"},{\"right\":false,\"text\":\"Twi\'leki\"}]', 2), (1558, 'How tall is Bossk ? (in cm)', '[{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"96\"},{\"right\":true,\"text\":\"190\"},{\"right\":false,\"text\":\"97\"}]', 2), (1559, 'What is the nickname of Boremund Harlaw?', '[{\"right\":true,\"text\":\"Boremund the Blue\"},{\"right\":false,\"text\":\"Dolorous Edd\"}]', 1), (1560, 'Who is leading the \"House Brune of Brownhollow\"?', '[{\"right\":true,\"text\":\"Bennard Brune\"},{\"right\":false,\"text\":\"Tywin Lannister\"},{\"right\":false,\"text\":\"Edwyn Stark\"}]', 1), (1561, 'Which language does the Rodian species speak ?', '[{\"right\":false,\"text\":\"Cerean\"},{\"right\":false,\"text\":\"Kaminoan\"},{\"right\":true,\"text\":\"Galactic Basic\"},{\"right\":false,\"text\":\"Kaleesh\"}]', 2), (1562, 'Who is leading the \"House Manwoody of Kingsgrave\"?', '[{\"right\":false,\"text\":\"Anya Waynwood\"},{\"right\":true,\"text\":\"Dagos Manwoody\"},{\"right\":false,\"text\":\"Doran Martell\"},{\"right\":false,\"text\":\"Alannys Harlaw\"}]', 1), (1563, 'What is the nickname of Donnel Swann?', '[{\"right\":false,\"text\":\"Mellario of Norvos\"},{\"right\":false,\"text\":\"Black Pearl of Braavos\"},{\"right\":false,\"text\":\"The Black Swan\"},{\"right\":true,\"text\":\"Ser Donnel the Constant\"}]', 1), (1564, 'Who is leading the \"House Florent of Brightwater Keep\"?', '[{\"right\":true,\"text\":\"Alekyne Florent\"},{\"right\":false,\"text\":\"\"},{\"right\":false,\"text\":\"Bennard Brune\"},{\"right\":false,\"text\":\"Edwyn Frey\"}]', 1), (1565, 'What is the nickname of Aegon III?', '[{\"right\":false,\"text\":\"Lorath\"},{\"right\":false,\"text\":\"Old Nan\"},{\"right\":false,\"text\":\"Porridge\"},{\"right\":true,\"text\":\"Aegon the Younger\"}]', 1), (1566, 'Who is leading the \"House Hayford of Hayford\"?', '[{\"right\":true,\"text\":\"Ermesande Hayford\"},{\"right\":false,\"text\":\"Gormond Goodbrother\"},{\"right\":false,\"text\":\"Daemon Targaryen\"}]', 1), (1567, 'In how many Star Wars movies appeared Biggs Darklighter ?', '[{\"right\":false,\"text\":7},{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3}]', 2), (1568, 'Which language does the Hutt species speak ?', '[{\"right\":false,\"text\":\"Shyriiwook\"},{\"right\":true,\"text\":\"Huttese\"},{\"right\":false,\"text\":\"Muun\"},{\"right\":false,\"text\":\"Dugese\"}]', 2), (1569, 'What is the nickname of Asha Greyjoy?', '[{\"right\":true,\"text\":\"Esgred\"},{\"right\":false,\"text\":\"Esgred\"}]', 1), (1570, 'On which planet was Ackbar born ?', '[{\"right\":true,\"text\":\"Mon Cala\"},{\"right\":false,\"text\":\"Geonosis\"},{\"right\":false,\"text\":\"Ojom\"},{\"right\":false,\"text\":\"Cerea\"}]', 2), (1571, 'How heavy is Beru Whitesun lars ? (in kg)', '[{\"right\":true,\"text\":\"75\"},{\"right\":false,\"text\":\"89\"},{\"right\":false,\"text\":\"80\"},{\"right\":false,\"text\":\"113\"}]', 2), (1572, 'In how many season Roose Bolton appears?', '[{\"right\":false,\"text\":\"1\"},{\"right\":true,\"text\":\"5\"}]', 1), (1573, 'Who is leading the \"House Cuy of Sunhouse\"?', '[{\"right\":false,\"text\":\"Brandon Stark\"},{\"right\":true,\"text\":\"Branston Cuy\"}]', 1), (1574, 'In how many Star Wars movies the planet Malastare has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":3},{\"right\":true,\"text\":0},{\"right\":false,\"text\":1}]', 2), (1575, 'How tall is Rugor Nass ? (in cm)', '[{\"right\":true,\"text\":\"206\"},{\"right\":false,\"text\":\"234\"},{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"137\"}]', 2), (1576, 'How tall is Obi-Wan Kenobi ? (in cm)', '[{\"right\":true,\"text\":\"182\"},{\"right\":false,\"text\":\"172\"},{\"right\":false,\"text\":\"157\"},{\"right\":false,\"text\":\"193\"}]', 2), (1577, 'On which planet was Lama Su born ?', '[{\"right\":false,\"text\":\"Dorin\"},{\"right\":false,\"text\":\"Haruun Kal\"},{\"right\":false,\"text\":\"Dantooine\"},{\"right\":true,\"text\":\"Kamino\"}]', 2), (1578, 'In how many season Arthur Dayne appears?', '[{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"6\"},{\"right\":true,\"text\":\"1\"}]', 1), (1579, 'On which planet was Arvel Crynyd born ?', '[{\"right\":false,\"text\":\"Endor\"},{\"right\":false,\"text\":\"Cerea\"},{\"right\":false,\"text\":\"Saleucami\"},{\"right\":true,\"text\":\"unknown\"}]', 2), (1580, 'On which planet was Beru Whitesun lars born ?', '[{\"right\":true,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Glee Anselm\"},{\"right\":false,\"text\":\"Zolan\"},{\"right\":false,\"text\":\"Troiken\"}]', 2), (1581, 'How heavy is Han Solo ? (in kg)', '[{\"right\":false,\"text\":\"75\"},{\"right\":false,\"text\":\"79\"},{\"right\":false,\"text\":\"77\"},{\"right\":true,\"text\":\"80\"}]', 2), (1582, 'In how many Star Wars movies appeared Ackbar ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":2},{\"right\":false,\"text\":3},{\"right\":false,\"text\":5}]', 2), (1583, 'Which language does the Mon Calamari species speak ?', '[{\"right\":false,\"text\":\"Galactic Basic\"},{\"right\":false,\"text\":\"Aleena\"},{\"right\":false,\"text\":\"Geonosian\"},{\"right\":true,\"text\":\"Mon Calamarian\"}]', 2), (1584, 'On which planet was Grievous born ?', '[{\"right\":false,\"text\":\"Bespin\"},{\"right\":false,\"text\":\"Rodia\"},{\"right\":false,\"text\":\"Kamino\"},{\"right\":true,\"text\":\"Kalee\"}]', 2), (1585, 'Who is leading the \"House Bulwer of Blackcrown\"?', '[{\"right\":true,\"text\":\"Alysanne Bulwer\"},{\"right\":false,\"text\":\"Ebben\"},{\"right\":false,\"text\":\"Brandon Stark\"},{\"right\":false,\"text\":\"Doran Martell\"}]', 1), (1586, 'In how many season Margaery Tyrell appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"5\"}]', 1), (1587, 'What is the nickname of Benjen Stark?', '[{\"right\":true,\"text\":\"Benjen the Bitter\"},{\"right\":false,\"text\":\"Urron Redhand\"},{\"right\":false,\"text\":\"Gerrick Kingsblood\"},{\"right\":false,\"text\":\"Warrior of Light\"}]', 1), (1588, 'How tall is Jocasta Nu ? (in cm)', '[{\"right\":false,\"text\":\"188\"},{\"right\":true,\"text\":\"167\"},{\"right\":false,\"text\":\"94\"},{\"right\":false,\"text\":\"178\"}]', 2), (1589, 'How tall is Ayla Secura ? (in cm)', '[{\"right\":false,\"text\":\"170\"},{\"right\":true,\"text\":\"178\"},{\"right\":false,\"text\":\"193\"},{\"right\":false,\"text\":\"202\"}]', 2), (1590, 'What is the nickname of Bryce Caron?', '[{\"right\":true,\"text\":\"Bryce the Orange\"},{\"right\":false,\"text\":\"Hoke the Horseleg\"},{\"right\":false,\"text\":\"The Hammer of Justice\"}]', 1), (1591, 'What is the nickname of Artys I Arryn?', '[{\"right\":true,\"text\":\"Falcon Knight\"},{\"right\":false,\"text\":\"Bonifer the Good\"},{\"right\":false,\"text\":\"Toad\"},{\"right\":false,\"text\":\"Serwyn of the Mirror Shield\"}]', 1), (1592, 'On which planet was Zam Wesell born ?', '[{\"right\":false,\"text\":\"Serenno\"},{\"right\":false,\"text\":\"Tholoth\"},{\"right\":false,\"text\":\"Cato Neimoidia\"},{\"right\":true,\"text\":\"Zolan\"}]', 2), (1593, 'Who is leading the \"House Lydden of Deep Den\"?', '[{\"right\":false,\"text\":\"Alysanne Targaryen\"},{\"right\":true,\"text\":\"Lewys Lydden\"},{\"right\":false,\"text\":\"Tywin Lannister\"}]', 1), (1594, 'In how many Star Wars movies appeared R2-D2 ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":true,\"text\":7},{\"right\":false,\"text\":3}]', 2), (1595, 'In how many season Sandor Clegane appears?', '[{\"right\":true,\"text\":\"5\"},{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"1\"},{\"right\":false,\"text\":\"6\"}]', 1), (1596, 'In how many Star Wars movies the planet Trandosha has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":true,\"text\":0}]', 2), (1597, 'Which language does the Skakoan species speak ?', '[{\"right\":false,\"text\":\"Toydarian\"},{\"right\":false,\"text\":\"Galactic Basic\"},{\"right\":false,\"text\":\"Aleena\"},{\"right\":true,\"text\":\"Skakoan\"}]', 2), (1598, 'Which language does the Xexto species speak ?', '[{\"right\":false,\"text\":\"Gungan basic\"},{\"right\":false,\"text\":\"Geonosian\"},{\"right\":false,\"text\":\"Clawdite\"},{\"right\":true,\"text\":\"Xextese\"}]', 2), (1599, 'In how many Star Wars movies the planet Alderaan has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3},{\"right\":true,\"text\":2}]', 2), (1600, 'Which language does the Kaleesh species speak ?', '[{\"right\":false,\"text\":\"Shyriiwook\"},{\"right\":false,\"text\":\"Zabraki\"},{\"right\":false,\"text\":\"Ewokese\"},{\"right\":true,\"text\":\"Kaleesh\"}]', 2), (1601, 'How heavy is Jango Fett ? (in kg)', '[{\"right\":false,\"text\":\"55\"},{\"right\":true,\"text\":\"79\"},{\"right\":false,\"text\":\"82\"},{\"right\":false,\"text\":\"50\"}]', 2), (1602, 'Which language does the Besalisk species speak ?', '[{\"right\":false,\"text\":\"Kaminoan\"},{\"right\":false,\"text\":\"Nautila\"},{\"right\":false,\"text\":\"Clawdite\"},{\"right\":true,\"text\":\"besalisk\"}]', 2), (1603, 'In how many Star Wars movies appeared Tarfful ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2}]', 2), (1604, 'In how many Star Wars movies appeared C-3PO ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":false,\"text\":1},{\"right\":true,\"text\":6}]', 2), (1605, 'In how many Star Wars movies appeared Mace Windu ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":true,\"text\":3}]', 2), (1606, 'What is the nickname of Baelon Targaryen?', '[{\"right\":true,\"text\":\"Baelon the Brave\"},{\"right\":false,\"text\":\"Big Belly Ben\"}]', 1), (1607, 'What is the nickname of Cregan Stark?', '[{\"right\":false,\"text\":\"The Veiled Lady\"},{\"right\":false,\"text\":\"The Magnificent\"},{\"right\":true,\"text\":\"The Old Man of the North\"},{\"right\":false,\"text\":\"Ella\"}]', 1), (1608, 'In how many season Martyn Lannister appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"4\"}]', 1), (1609, 'Who is leading the \"House Brune of the Dyre Den\"?', '[{\"right\":false,\"text\":\"Grazdan mo Eraz\"},{\"right\":false,\"text\":\"Daemon Targaryen\"},{\"right\":true,\"text\":\"Eustace Brune\"}]', 1), (1610, 'What is the nickname of Catelyn Stark?', '[{\"right\":false,\"text\":\"Baelor the Beloved\"},{\"right\":true,\"text\":\"Catelyn Tully\"}]', 1), (1611, 'How tall is Saesee Tiin ? (in cm)', '[{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"171\"},{\"right\":true,\"text\":\"188\"},{\"right\":false,\"text\":\"166\"}]', 2), (1612, 'In how many Star Wars movies the planet Serenno has appeared ?', '[{\"right\":true,\"text\":0},{\"right\":false,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":4}]', 2), (1613, 'In how many season Loras Tyrell appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"6\"},{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"1\"}]', 1), (1614, 'What is the nickname of Danelle Lothston?', '[{\"right\":false,\"text\":\"Zollo the Fat\"},{\"right\":true,\"text\":\"Mad Danelle\"},{\"right\":false,\"text\":\"Dunk\"},{\"right\":false,\"text\":\"Likely Luke\"}]', 1), (1615, 'In how many season Jory Cassel appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"1\"}]', 1), (1616, 'How tall is Mas Amedda ? (in cm)', '[{\"right\":false,\"text\":\"193\"},{\"right\":false,\"text\":\"180\"},{\"right\":false,\"text\":\"175\"},{\"right\":true,\"text\":\"196\"}]', 2), (1617, 'Who is leading the \"House Ironmaker\"?', '[{\"right\":false,\"text\":\"Raynard\"},{\"right\":true,\"text\":\"Erik Ironmaker\"},{\"right\":false,\"text\":\"Bethany Redwyne\"},{\"right\":false,\"text\":\"Aegon Frey\"}]', 1), (1618, 'In how many season Aeron Greyjoy appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"7\"}]', 1), (1619, 'In how many season Unella appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"1\"}]', 1), (1620, 'Which language does the Toydarian species speak ?', '[{\"right\":false,\"text\":\"Geonosian\"},{\"right\":false,\"text\":\"Tundan\"},{\"right\":true,\"text\":\"Toydarian\"},{\"right\":false,\"text\":\"Dosh\"}]', 2), (1621, 'What is the title of Star Wars episode 6 ?', '[{\"right\":true,\"text\":\"Return of the Jedi\"},{\"right\":false,\"text\":\"Attack of the Clones\"},{\"right\":false,\"text\":\"The Empire Strikes Back\"},{\"right\":false,\"text\":\"The Phantom Menace\"}]', 2), (1622, 'In how many Star Wars movies appeared Jar Jar Binks ?', '[{\"right\":false,\"text\":5},{\"right\":false,\"text\":1},{\"right\":false,\"text\":3},{\"right\":true,\"text\":2}]', 2), (1623, 'Which language does the Vulptereen species speak ?', '[{\"right\":false,\"text\":\"Geonosian\"},{\"right\":true,\"text\":\"vulpterish\"},{\"right\":false,\"text\":\"Galactic Basic\"},{\"right\":false,\"text\":\"Kaminoan\"}]', 2), (1624, 'On which planet was Ayla Secura born ?', '[{\"right\":true,\"text\":\"Ryloth\"},{\"right\":false,\"text\":\"Kalee\"},{\"right\":false,\"text\":\"Bestine IV\"},{\"right\":false,\"text\":\"Polis Massa\"}]', 2), (1625, 'In how many Star Wars movies appeared Saesee Tiin ?', '[{\"right\":true,\"text\":2},{\"right\":false,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":4}]', 2), (1626, 'In how many Star Wars movies the planet Tatooine has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":false,\"text\":3},{\"right\":true,\"text\":5}]', 2), (1627, 'In how many Star Wars movies the planet Tholoth has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":true,\"text\":0},{\"right\":false,\"text\":1},{\"right\":false,\"text\":3}]', 2), (1628, 'How heavy is Dooku ? (in kg)', '[{\"right\":false,\"text\":\"110\"},{\"right\":false,\"text\":\"66\"},{\"right\":true,\"text\":\"80\"},{\"right\":false,\"text\":\"79\"}]', 2), (1629, 'In how many season Brandon Stark appears?', '[{\"right\":true,\"text\":\"5\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"3\"}]', 1), (1630, 'In how many season Rickard Stark appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"7\"}]', 1), (1631, 'In how many season Jon Snow appears?', '[{\"right\":true,\"text\":\"6\"},{\"right\":false,\"text\":\"1\"},{\"right\":false,\"text\":\"7\"}]', 1), (1632, 'Who is leading the \"House Foote of Nightsong\"?', '[{\"right\":false,\"text\":\"Alesander Staedmon\"},{\"right\":true,\"text\":\"Philip Foote\"}]', 1), (1633, 'What is the nickname of Benjen Stark?', '[{\"right\":false,\"text\":\"Ser Donnel the Constant\"},{\"right\":true,\"text\":\"The Wolf Pup\"}]', 1), (1634, 'On which planet was Jabba Desilijic Tiure born ?', '[{\"right\":false,\"text\":\"Mon Cala\"},{\"right\":false,\"text\":\"Utapau\"},{\"right\":false,\"text\":\"Toydaria\"},{\"right\":true,\"text\":\"Nal Hutta\"}]', 2), (1635, 'How heavy is Dexter Jettster ? (in kg)', '[{\"right\":true,\"text\":\"102\"},{\"right\":false,\"text\":\"80\"},{\"right\":false,\"text\":\"78.2\"},{\"right\":false,\"text\":\"84\"}]', 2), (1636, 'In how many season Robert Arryn appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"3\"}]', 1), (1637, 'How tall is Lando Calrissian ? (in cm)', '[{\"right\":false,\"text\":\"180\"},{\"right\":true,\"text\":\"177\"},{\"right\":false,\"text\":\"166\"},{\"right\":false,\"text\":\"193\"}]', 2), (1638, 'Which language does the Quermian species speak ?', '[{\"right\":false,\"text\":\"Aleena\"},{\"right\":false,\"text\":\"Mon Calamarian\"},{\"right\":true,\"text\":\"Quermian\"},{\"right\":false,\"text\":\"Skakoan\"}]', 2), (1639, 'Who is leading the \"House Beesbury of Honeyholt\"?', '[{\"right\":true,\"text\":\"Warryn Beesbury\"},{\"right\":false,\"text\":\"Daenora Targaryen\"},{\"right\":false,\"text\":\"Duncan Targaryen\"},{\"right\":false,\"text\":\"Torbert\"}]', 1), (1640, 'On which planet was Raymus Antilles born ?', '[{\"right\":false,\"text\":\"Concord Dawn\"},{\"right\":true,\"text\":\"Alderaan\"},{\"right\":false,\"text\":\"Kalee\"},{\"right\":false,\"text\":\"Sullust\"}]', 2), (1641, 'How heavy is Kit Fisto ? (in kg)', '[{\"right\":false,\"text\":\"77\"},{\"right\":false,\"text\":\"79\"},{\"right\":false,\"text\":\"56.2\"},{\"right\":true,\"text\":\"87\"}]', 2), (1642, 'Who is leading the \"House Celtigar of Claw Isle\"?', '[{\"right\":false,\"text\":\"Benedict I Justman\"},{\"right\":true,\"text\":\"Ardrian Celtigar\"}]', 1), (1643, 'What is the nickname of Damon Lannister?', '[{\"right\":false,\"text\":\"Warrior of Light\"},{\"right\":true,\"text\":\"The Grey Lion\"},{\"right\":false,\"text\":\"Tom O\'Sevens\"}]', 1), (1644, 'What is the nickname of Daeron II?', '[{\"right\":true,\"text\":\"Daeron the Good\"},{\"right\":false,\"text\":\"Prince of the City\"}]', 1), (1645, 'On which planet was Jango Fett born ?', '[{\"right\":false,\"text\":\"Hoth\"},{\"right\":false,\"text\":\"Mustafar\"},{\"right\":true,\"text\":\"Concord Dawn\"},{\"right\":false,\"text\":\"Coruscant\"}]', 2), (1646, 'What is the nickname of Brynden Tully?', '[{\"right\":true,\"text\":\"Blackfish\"},{\"right\":false,\"text\":\"Durran Godsgrief\"},{\"right\":false,\"text\":\"\'Yaya\"},{\"right\":false,\"text\":\"Artos the Implacable\"}]', 1), (1647, 'How tall is Yarael Poof ? (in cm)', '[{\"right\":true,\"text\":\"264\"},{\"right\":false,\"text\":\"198\"},{\"right\":false,\"text\":\"166\"},{\"right\":false,\"text\":\"191\"}]', 2), (1648, 'On which planet was Finis Valorum born ?', '[{\"right\":false,\"text\":\"Ryloth\"},{\"right\":false,\"text\":\"Tholoth\"},{\"right\":false,\"text\":\"Mygeeto\"},{\"right\":true,\"text\":\"Coruscant\"}]', 2), (1649, 'In how many Star Wars movies appeared R4-P17 ?', '[{\"right\":false,\"text\":3},{\"right\":true,\"text\":2},{\"right\":false,\"text\":5},{\"right\":false,\"text\":1}]', 2), (1650, 'Which language does the Aleena species speak ?', '[{\"right\":true,\"text\":\"Aleena\"},{\"right\":false,\"text\":\"Zabraki\"},{\"right\":false,\"text\":\"Neimoidia\"},{\"right\":false,\"text\":\"Gungan basic\"}]', 2), (1651, 'In how many season Walder appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"5\"},{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"4\"}]', 1), (1652, 'What is the nickname of Aegon V?', '[{\"right\":true,\"text\":\"Aegon the Unlikely\"},{\"right\":false,\"text\":\"Lommy Greenhands\"},{\"right\":false,\"text\":\"Stone Head\"}]', 1), (1653, 'In how many Star Wars movies the planet Ojom has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":true,\"text\":0},{\"right\":false,\"text\":5},{\"right\":false,\"text\":1}]', 2), (1654, 'How tall is Jango Fett ? (in cm)', '[{\"right\":false,\"text\":\"206\"},{\"right\":true,\"text\":\"183\"},{\"right\":false,\"text\":\"185\"},{\"right\":false,\"text\":\"234\"}]', 2), (1655, 'In how many Star Wars movies appeared Finn ?', '[{\"right\":false,\"text\":3},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2},{\"right\":false,\"text\":5}]', 2), (1656, 'Who is leading the \"House Greenfield of Greenfield\"?', '[{\"right\":false,\"text\":\"Cedrik Storm\"},{\"right\":true,\"text\":\"Garth Greenfield\"},{\"right\":false,\"text\":\"Corenna Swann\"}]', 1), (1657, 'In how many Star Wars movies the planet Saleucami has appeared ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2}]', 2), (1658, 'In how many Star Wars movies the planet Mirial has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":true,\"text\":0}]', 2), (1659, 'In how many season Grenn appears?', '[{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"1\"}]', 1), (1660, 'Who directed Star Wars - The Force Awakens ?', '[{\"right\":true,\"text\":\"J. J. Abrams\"},{\"right\":false,\"text\":\"Richard Marquand\"},{\"right\":false,\"text\":\"Irvin Kershner\"},{\"right\":false,\"text\":\"George Lucas\"}]', 2), (1661, 'In how many Star Wars movies appeared Luminara Unduli ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":true,\"text\":2}]', 2), (1662, 'Which language does the Dug species speak ?', '[{\"right\":true,\"text\":\"Dugese\"},{\"right\":false,\"text\":\"Twi\'leki\"},{\"right\":false,\"text\":\"Dosh\"},{\"right\":false,\"text\":\"Sullutese\"}]', 2), (1663, 'Who is leading the \"House Hewett of Oakenshield\"?', '[{\"right\":true,\"text\":\"Humfrey Hewett\"},{\"right\":false,\"text\":\"Ellyn Ever Sweet\"},{\"right\":false,\"text\":\"Barth\"},{\"right\":false,\"text\":\"Baela Targaryen\"}]', 1), (1664, 'Who is leading the \"House Cassel\"?', '[{\"right\":false,\"text\":\"Amerei Frey\"},{\"right\":true,\"text\":\"Beth Cassel\"}]', 1), (1665, 'In how many season Sansa Stark appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"6\"},{\"right\":false,\"text\":\"1\"}]', 1), (1666, 'Who is leading the \"House Baelish of the Fingers\"?', '[{\"right\":false,\"text\":\"Aemon Blackfyre\"},{\"right\":false,\"text\":\"Damon Shett\"},{\"right\":true,\"text\":\"Petyr Baelish\"}]', 1), (1667, 'Who is leading the \"House Arryn of the Eyrie\"?', '[{\"right\":true,\"text\":\"Robert Arryn\"},{\"right\":false,\"text\":\"Corwyn Corbray\"}]', 1), (1668, 'How tall is Ratts Tyerell ? (in cm)', '[{\"right\":false,\"text\":\"165\"},{\"right\":true,\"text\":\"79\"},{\"right\":false,\"text\":\"170\"},{\"right\":false,\"text\":\"183\"}]', 2), (1669, 'How tall is Jek Tono Porkins ? (in cm)', '[{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"178\"},{\"right\":false,\"text\":\"150\"},{\"right\":true,\"text\":\"180\"}]', 2), (1670, 'How heavy is Wicket Systri Warrick ? (in kg)', '[{\"right\":false,\"text\":\"48\"},{\"right\":true,\"text\":\"20\"},{\"right\":false,\"text\":\"79\"},{\"right\":false,\"text\":\"66\"}]', 2), (1671, 'On which planet was Sly Moore born ?', '[{\"right\":false,\"text\":\"Dantooine\"},{\"right\":false,\"text\":\"Utapau\"},{\"right\":true,\"text\":\"Umbara\"},{\"right\":false,\"text\":\"Quermia\"}]', 2), (1672, 'In how many Star Wars movies appeared Dexter Jettster ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2}]', 2), (1673, 'What is the nickname of Amerei Frey?', '[{\"right\":true,\"text\":\"Gatehouse Ami\"},{\"right\":false,\"text\":\"Darkstar\"}]', 1), (1674, 'In how many Star Wars movies appeared Poe Dameron ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3},{\"right\":false,\"text\":5}]', 2), (1675, 'In how many Star Wars movies appeared Roos Tarpals ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":2},{\"right\":false,\"text\":5},{\"right\":false,\"text\":3}]', 2), (1676, 'In how many season Petyr Baelish appears?', '[{\"right\":true,\"text\":\"6\"},{\"right\":false,\"text\":\"4\"}]', 1), (1677, 'How tall is Kit Fisto ? (in cm)', '[{\"right\":false,\"text\":\"206\"},{\"right\":false,\"text\":\"180\"},{\"right\":false,\"text\":\"188\"},{\"right\":true,\"text\":\"196\"}]', 2), (1678, 'Which language does the Geonosian species speak ?', '[{\"right\":false,\"text\":\"Skakoan\"},{\"right\":false,\"text\":\"Dugese\"},{\"right\":false,\"text\":\"Kaminoan\"},{\"right\":true,\"text\":\"Geonosian\"}]', 2), (1679, 'What is the nickname of Clarence Crabb?', '[{\"right\":true,\"text\":\"Clarence the Short\"},{\"right\":false,\"text\":\"Gareth the Grey\"},{\"right\":false,\"text\":\"Bittersteel\"},{\"right\":false,\"text\":\"the Little Bee\"}]', 1), (1680, 'In how many season Catelyn Stark appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"3\"}]', 1), (1681, 'Who is leading the \"House Harlaw of Harridan Hill\"?', '[{\"right\":false,\"text\":\"Melicent\"},{\"right\":true,\"text\":\"Boremund Harlaw\"}]', 1), (1682, 'On which planet was Jar Jar Binks born ?', '[{\"right\":true,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Trandosha\"},{\"right\":false,\"text\":\"Dorin\"},{\"right\":false,\"text\":\"Iktotch\"}]', 2), (1683, 'In how many Star Wars movies the planet Felucia has appeared ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":5},{\"right\":false,\"text\":2}]', 2), (1684, 'In how many Star Wars movies the planet unknown has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":4},{\"right\":false,\"text\":5}]', 2), (1685, 'In how many season Gerold Hightower appears?', '[{\"right\":false,\"text\":\"6\"},{\"right\":true,\"text\":\"1\"}]', 1), (1686, 'In how many Star Wars movies appeared Qui-Gon Jinn ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":2},{\"right\":false,\"text\":5},{\"right\":false,\"text\":3}]', 2), (1687, 'In how many Star Wars movies the planet Nal Hutta has appeared ?', '[{\"right\":true,\"text\":0},{\"right\":false,\"text\":5},{\"right\":false,\"text\":1},{\"right\":false,\"text\":4}]', 2), (1688, 'In how many Star Wars movies appeared BB8 ?', '[{\"right\":false,\"text\":3},{\"right\":true,\"text\":1},{\"right\":false,\"text\":5},{\"right\":false,\"text\":2}]', 2), (1689, 'In how many season Barristan Selmy appears?', '[{\"right\":false,\"text\":\"1\"},{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"5\"}]', 1), (1690, 'Who is leading the \"House Longthorpe of Longsister\"?', '[{\"right\":true,\"text\":\"Rolland Longthorpe\"},{\"right\":false,\"text\":\"Gerald Gower\"}]', 1), (1691, 'In how many Star Wars movies appeared Bossk ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":5}]', 2), (1692, 'On which planet was Obi-Wan Kenobi born ?', '[{\"right\":false,\"text\":\"Tund\"},{\"right\":false,\"text\":\"Dathomir\"},{\"right\":false,\"text\":\"Dantooine\"},{\"right\":true,\"text\":\"Stewjon\"}]', 2), (1693, 'How tall is Wat Tambor ? (in cm)', '[{\"right\":false,\"text\":\"165\"},{\"right\":false,\"text\":\"88\"},{\"right\":true,\"text\":\"193\"},{\"right\":false,\"text\":\"175\"}]', 2), (1694, 'In how many Star Wars movies appeared Greedo ?', '[{\"right\":false,\"text\":5},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2}]', 2), (1695, 'On which planet was Bossk born ?', '[{\"right\":false,\"text\":\"Coruscant\"},{\"right\":true,\"text\":\"Trandosha\"},{\"right\":false,\"text\":\"Toydaria\"},{\"right\":false,\"text\":\"Tund\"}]', 2), (1696, 'In how many Star Wars movies the planet Corellia has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2}]', 2), (1697, 'In how many Star Wars movies appeared Owen Lars ?', '[{\"right\":true,\"text\":3},{\"right\":false,\"text\":1},{\"right\":false,\"text\":6},{\"right\":false,\"text\":2}]', 2), (1698, 'Who is leading the \"House Chyttering\"?', '[{\"right\":true,\"text\":\"Lucos Chyttering\"},{\"right\":false,\"text\":\"Brandon Stark\"},{\"right\":false,\"text\":\"Alys Beesbury\"},{\"right\":false,\"text\":\"Daeron I\"}]', 1), (1699, 'Which language does the Kaminoan species speak ?', '[{\"right\":false,\"text\":\"Gungan basic\"},{\"right\":false,\"text\":\"Skakoan\"},{\"right\":true,\"text\":\"Kaminoan\"},{\"right\":false,\"text\":\"Galactic Basic\"}]', 2), (1700, 'What is the nickname of Duncan?', '[{\"right\":false,\"text\":\"The Archer\"},{\"right\":true,\"text\":\"Dunk\"},{\"right\":false,\"text\":\"Lady Tysha of House Silverfist\"}]', 1), (1701, 'In how many Star Wars movies the planet Dathomir has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":3},{\"right\":false,\"text\":4}]', 2), (1702, 'How heavy is Wat Tambor ? (in kg)', '[{\"right\":false,\"text\":\"80\"},{\"right\":true,\"text\":\"48\"},{\"right\":false,\"text\":\"68\"},{\"right\":false,\"text\":\"50\"}]', 2), (1703, 'In how many Star Wars movies appeared Anakin Skywalker ?', '[{\"right\":false,\"text\":5},{\"right\":false,\"text\":2},{\"right\":true,\"text\":3},{\"right\":false,\"text\":1}]', 2), (1704, 'Who is leading the \"House Lefford of the Golden Tooth\"?', '[{\"right\":true,\"text\":\"Alysanne Lefford\"},{\"right\":false,\"text\":\"Damion Lannister\"},{\"right\":false,\"text\":\"Anya Waynwood\"}]', 1), (1705, 'In how many Star Wars movies appeared Ric Olié ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":2},{\"right\":false,\"text\":6},{\"right\":false,\"text\":3}]', 2), (1706, 'How heavy is Qui-Gon Jinn ? (in kg)', '[{\"right\":false,\"text\":\"32\"},{\"right\":false,\"text\":\"48\"},{\"right\":true,\"text\":\"89\"},{\"right\":false,\"text\":\"88\"}]', 2), (1707, 'What is the nickname of Bonifer Hasty?', '[{\"right\":false,\"text\":\"Black Walder\"},{\"right\":false,\"text\":\"The Sisterman\"},{\"right\":true,\"text\":\"Bonifer the Good\"}]', 1), (1708, 'In how many Star Wars movies appeared Beru Whitesun lars ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":5},{\"right\":true,\"text\":3},{\"right\":false,\"text\":1}]', 2), (1709, 'How heavy is Bossk ? (in kg)', '[{\"right\":false,\"text\":\"84\"},{\"right\":true,\"text\":\"113\"},{\"right\":false,\"text\":\"89\"},{\"right\":false,\"text\":\"90\"}]', 2), (1710, 'How heavy is Roos Tarpals ? (in kg)', '[{\"right\":false,\"text\":\"79\"},{\"right\":true,\"text\":\"82\"},{\"right\":false,\"text\":\"159\"},{\"right\":false,\"text\":\"77\"}]', 2), (1711, 'How heavy is Lobot ? (in kg)', '[{\"right\":false,\"text\":\"84\"},{\"right\":true,\"text\":\"79\"},{\"right\":false,\"text\":\"87\"},{\"right\":false,\"text\":\"48\"}]', 2), (1712, 'Who is leading the \"House Fowler of Skyreach\"?', '[{\"right\":true,\"text\":\"Frankyln Fowler\"},{\"right\":false,\"text\":\"Aron Santagar\"},{\"right\":false,\"text\":\"Donnel Locke\"}]', 1); INSERT INTO `questions` (`id`, `text`, `answers`, `type`) VALUES (1713, 'How heavy is Owen Lars ? (in kg)', '[{\"right\":false,\"text\":\"90\"},{\"right\":false,\"text\":\"84\"},{\"right\":false,\"text\":\"45\"},{\"right\":true,\"text\":\"120\"}]', 2), (1714, 'In how many season Viserys Targaryen appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"5\"}]', 1), (1715, 'How tall is Palpatine ? (in cm)', '[{\"right\":false,\"text\":\"180\"},{\"right\":true,\"text\":\"170\"},{\"right\":false,\"text\":\"188\"},{\"right\":false,\"text\":\"167\"}]', 2), (1716, 'In how many Star Wars movies the planet Haruun Kal has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":2},{\"right\":true,\"text\":0},{\"right\":false,\"text\":3}]', 2), (1717, 'Which language does the Ewok species speak ?', '[{\"right\":false,\"text\":\"Muun\"},{\"right\":false,\"text\":\"Dugese\"},{\"right\":true,\"text\":\"Ewokese\"},{\"right\":false,\"text\":\"Gungan basic\"}]', 2), (1718, 'On which planet was Wat Tambor born ?', '[{\"right\":false,\"text\":\"Dantooine\"},{\"right\":false,\"text\":\"Quermia\"},{\"right\":false,\"text\":\"Stewjon\"},{\"right\":true,\"text\":\"Skako\"}]', 2), (1719, 'Who is leading the \"House Cox of Saltpans\"?', '[{\"right\":false,\"text\":\"Erena Glover\"},{\"right\":true,\"text\":\"Quincy Cox\"},{\"right\":false,\"text\":\"Aegor Rivers\"}]', 1), (1720, 'How heavy is Jabba Desilijic Tiure ? (in kg)', '[{\"right\":true,\"text\":\"1,358\"},{\"right\":false,\"text\":\"80\"},{\"right\":false,\"text\":\"83\"},{\"right\":false,\"text\":\"120\"}]', 2), (1721, 'How tall is Ric Olié ? (in cm)', '[{\"right\":false,\"text\":\"200\"},{\"right\":false,\"text\":\"178\"},{\"right\":false,\"text\":\"180\"},{\"right\":true,\"text\":\"183\"}]', 2), (1722, 'In how many Star Wars movies the planet Zolan has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":false,\"text\":4},{\"right\":true,\"text\":0}]', 2), (1723, 'How heavy is Obi-Wan Kenobi ? (in kg)', '[{\"right\":false,\"text\":\"65\"},{\"right\":true,\"text\":\"77\"},{\"right\":false,\"text\":\"82\"},{\"right\":false,\"text\":\"80\"}]', 2), (1724, 'What is the nickname of Ben Plumm?', '[{\"right\":true,\"text\":\"Brown Ben Plumm\"},{\"right\":false,\"text\":\"Black Tom Heddle\"},{\"right\":false,\"text\":\"The Red Viper\"}]', 1), (1725, 'In how many season Janos Slynt appears?', '[{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"1\"},{\"right\":false,\"text\":\"3\"}]', 1), (1726, 'In how many season Imry Florent appears?', '[{\"right\":false,\"text\":\"6\"},{\"right\":false,\"text\":\"2\"},{\"right\":true,\"text\":\"1\"}]', 1), (1727, 'On which planet was Captain Phasma born ?', '[{\"right\":false,\"text\":\"Saleucami\"},{\"right\":true,\"text\":\"unknown\"},{\"right\":false,\"text\":\"Chandrila\"},{\"right\":false,\"text\":\"Alderaan\"}]', 2), (1728, 'Who is leading the \"House Farwynd of Sealskin Point\"?', '[{\"right\":false,\"text\":\"Beren Tallhart\"},{\"right\":true,\"text\":\"Triston Farwynd\"}]', 1), (1729, 'In how many Star Wars movies the planet Troiken has appeared ?', '[{\"right\":true,\"text\":0},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":1}]', 2), (1730, 'In how many season Robett Glover appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"4\"}]', 1), (1731, 'In how many Star Wars movies appeared Gasgano ?', '[{\"right\":false,\"text\":5},{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1}]', 2), (1732, 'How tall is Raymus Antilles ? (in cm)', '[{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"163\"},{\"right\":true,\"text\":\"188\"},{\"right\":false,\"text\":\"206\"}]', 2), (1733, 'What is the nickname of Walder?', '[{\"right\":true,\"text\":\"Hodor\"},{\"right\":false,\"text\":\"Bran the Builder\"},{\"right\":false,\"text\":\"Strongboar\"}]', 1), (1734, 'In how many Star Wars movies appeared Jango Fett ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":false,\"text\":5},{\"right\":true,\"text\":1}]', 2), (1735, 'What is the nickname of Aegon I?', '[{\"right\":false,\"text\":\"Godry the Giantslayer\"},{\"right\":true,\"text\":\"Aegon the Conqueror\"},{\"right\":false,\"text\":\"Kettleblack\"}]', 1), (1736, 'How tall is Gregar Typho ? (in cm)', '[{\"right\":true,\"text\":\"185\"},{\"right\":false,\"text\":\"178\"},{\"right\":false,\"text\":\"96\"},{\"right\":false,\"text\":\"190\"}]', 2), (1737, 'In how many Star Wars movies the planet Cato Neimoidia has appeared ?', '[{\"right\":false,\"text\":3},{\"right\":true,\"text\":1},{\"right\":false,\"text\":5},{\"right\":false,\"text\":4}]', 2), (1738, 'On which planet was Kit Fisto born ?', '[{\"right\":false,\"text\":\"Toydaria\"},{\"right\":false,\"text\":\"Trandosha\"},{\"right\":true,\"text\":\"Glee Anselm\"},{\"right\":false,\"text\":\"Concord Dawn\"}]', 2), (1739, 'In how many season Galbart Glover appears?', '[{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"0\"}]', 1), (1740, 'How tall is Lobot ? (in cm)', '[{\"right\":false,\"text\":\"188\"},{\"right\":true,\"text\":\"175\"},{\"right\":false,\"text\":\"264\"},{\"right\":false,\"text\":\"66\"}]', 2), (1741, 'Who is leading the \"House Corbray of Heart\'s Home\"?', '[{\"right\":false,\"text\":\"Gilbert of the Vines\"},{\"right\":true,\"text\":\"Lyonel Corbray\"},{\"right\":false,\"text\":\"Argella Durrandon\"}]', 1), (1742, 'How tall is Wedge Antilles ? (in cm)', '[{\"right\":true,\"text\":\"170\"},{\"right\":false,\"text\":\"171\"},{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"202\"}]', 2), (1743, 'In how many Star Wars movies appeared Boba Fett ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":1}]', 2), (1744, 'In how many Star Wars movies the planet Kashyyyk has appeared ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2}]', 2), (1745, 'On which planet was Chewbacca born ?', '[{\"right\":false,\"text\":\"Polis Massa\"},{\"right\":false,\"text\":\"Iktotch\"},{\"right\":false,\"text\":\"Skako\"},{\"right\":true,\"text\":\"Kashyyyk\"}]', 2), (1746, 'What is the nickname of Boros Blount?', '[{\"right\":false,\"text\":\"Jon Darry\"},{\"right\":false,\"text\":\"Gascoyne of the Greenblood\"},{\"right\":true,\"text\":\"Boros the Belly\"},{\"right\":false,\"text\":\"Maester\"}]', 1), (1747, 'What is the nickname of Daeron I?', '[{\"right\":false,\"text\":\"Egon Emeros the Exquisite\"},{\"right\":true,\"text\":\"The Young Dragon\"},{\"right\":false,\"text\":\"Dermot of the Rainwood\"},{\"right\":false,\"text\":\"Nute the Barber\"}]', 1), (1748, 'Who is leading the \"House Costayne of Three Towers\"?', '[{\"right\":true,\"text\":\"Tommen Costayne\"},{\"right\":false,\"text\":\"Armond Caswell\"},{\"right\":false,\"text\":\"Baelor I\"},{\"right\":false,\"text\":\"Baelon Targaryen\"}]', 1), (1749, 'In how many season Shireen Baratheon appears?', '[{\"right\":true,\"text\":\"3\"},{\"right\":false,\"text\":\"5\"}]', 1), (1750, 'What is the nickname of Benjen Stark?', '[{\"right\":true,\"text\":\"Benjen the Sweet\"},{\"right\":false,\"text\":\"Brandon the Bad\"},{\"right\":false,\"text\":\"Edgerran the Open-Handed\"},{\"right\":false,\"text\":\"Hardstone\"}]', 1), (1751, 'How tall is Bail Prestor Organa ? (in cm)', '[{\"right\":false,\"text\":\"193\"},{\"right\":false,\"text\":\"216\"},{\"right\":true,\"text\":\"191\"},{\"right\":false,\"text\":\"183\"}]', 2), (1752, 'What is the nickname of Daemon Blackfyre?', '[{\"right\":false,\"text\":\"Prince of the City\"},{\"right\":false,\"text\":\"Erreg the Kinslayer\"},{\"right\":false,\"text\":\"The dancer\"},{\"right\":true,\"text\":\"Daemon Waters\"}]', 1), (1753, 'In how many season Jojen Reed appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"7\"}]', 1), (1754, 'How heavy is IG-88 ? (in kg)', '[{\"right\":false,\"text\":\"77\"},{\"right\":true,\"text\":\"140\"},{\"right\":false,\"text\":\"89\"},{\"right\":false,\"text\":\"32\"}]', 2), (1755, 'In how many season Samwell Tarly appears?', '[{\"right\":true,\"text\":\"6\"},{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"7\"}]', 1), (1756, 'Who is leading the \"House Karstark of Karhold\"?', '[{\"right\":false,\"text\":\"Daven Lannister\"},{\"right\":false,\"text\":\"Edwyn Stark\"},{\"right\":true,\"text\":\"Harrion Karstark\"},{\"right\":false,\"text\":\"Gladden Wylde\"}]', 1), (1757, 'What is the nickname of Baelor Targaryen?', '[{\"right\":false,\"text\":\"Brandon the Shipwright\"},{\"right\":true,\"text\":\"Baelor Breakspear\"}]', 1), (1758, 'How tall is Ben Quadinaros ? (in cm)', '[{\"right\":true,\"text\":\"163\"},{\"right\":false,\"text\":\"198\"},{\"right\":false,\"text\":\"170\"},{\"right\":false,\"text\":\"112\"}]', 2), (1759, 'In how many Star Wars movies the planet Mustafar has appeared ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":5},{\"right\":false,\"text\":3}]', 2), (1760, 'What is the nickname of Arya Stark?', '[{\"right\":false,\"text\":\"Daeron the Daring\"},{\"right\":true,\"text\":\"Arya Horseface\"}]', 1), (1761, 'On which planet was Mas Amedda born ?', '[{\"right\":true,\"text\":\"Champala\"},{\"right\":false,\"text\":\"Geonosis\"},{\"right\":false,\"text\":\"Dantooine\"},{\"right\":false,\"text\":\"Tund\"}]', 2), (1762, 'How tall is Finis Valorum ? (in cm)', '[{\"right\":false,\"text\":\"196\"},{\"right\":false,\"text\":\"213\"},{\"right\":false,\"text\":\"234\"},{\"right\":true,\"text\":\"170\"}]', 2), (1763, 'In how many Star Wars movies appeared Wat Tambor ?', '[{\"right\":false,\"text\":2},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":7}]', 2), (1764, 'How heavy is Darth Vader ? (in kg)', '[{\"right\":false,\"text\":\"102\"},{\"right\":true,\"text\":\"136\"},{\"right\":false,\"text\":\"55\"},{\"right\":false,\"text\":\"74\"}]', 2), (1765, 'Who is leading the \"House Frey of the Crossing\"?', '[{\"right\":false,\"text\":\"Deziel Dalt\"},{\"right\":true,\"text\":\"Walder Frey\"}]', 1), (1766, 'How tall is Padmé Amidala ? (in cm)', '[{\"right\":false,\"text\":\"160\"},{\"right\":true,\"text\":\"165\"},{\"right\":false,\"text\":\"163\"},{\"right\":false,\"text\":\"191\"}]', 2), (1767, 'How tall is Han Solo ? (in cm)', '[{\"right\":true,\"text\":\"180\"},{\"right\":false,\"text\":\"200\"},{\"right\":false,\"text\":\"193\"},{\"right\":false,\"text\":\"79\"}]', 2), (1768, 'Who is leading the \"House Drumm of Old Wyk\"?', '[{\"right\":false,\"text\":\"Alys Karstark\"},{\"right\":false,\"text\":\"Cassella Vaith\"},{\"right\":false,\"text\":\"Andros Brax\"},{\"right\":true,\"text\":\"Dunstan Drumm\"}]', 1), (1769, 'In how many Star Wars movies appeared Yoda ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":true,\"text\":5}]', 2), (1770, 'How tall is Watto ? (in cm)', '[{\"right\":false,\"text\":\"79\"},{\"right\":false,\"text\":\"170\"},{\"right\":true,\"text\":\"137\"},{\"right\":false,\"text\":\"173\"}]', 2), (1771, 'How heavy is Gregar Typho ? (in kg)', '[{\"right\":true,\"text\":\"85\"},{\"right\":false,\"text\":\"75\"},{\"right\":false,\"text\":\"68\"},{\"right\":false,\"text\":\"66\"}]', 2), (1772, 'In how many Star Wars movies the planet Coruscant has appeared ?', '[{\"right\":false,\"text\":5},{\"right\":false,\"text\":1},{\"right\":true,\"text\":4},{\"right\":false,\"text\":2}]', 2), (1773, 'What is the nickname of Aegor Rivers?', '[{\"right\":false,\"text\":\"Anvyl Ryn\"},{\"right\":true,\"text\":\"Bittersteel\"},{\"right\":false,\"text\":\"Baelor Breakspear\"},{\"right\":false,\"text\":\"Greenbeard\"}]', 1), (1774, 'How heavy is Padmé Amidala ? (in kg)', '[{\"right\":false,\"text\":\"56.2\"},{\"right\":true,\"text\":\"45\"},{\"right\":false,\"text\":\"84\"},{\"right\":false,\"text\":\"77\"}]', 2), (1775, 'Who is leading the \"House Clifton\"?', '[{\"right\":false,\"text\":\"Balon Botley\"},{\"right\":true,\"text\":\"Gareth Clifton\"},{\"right\":false,\"text\":\"Godry Farring\"},{\"right\":false,\"text\":\"Gulian Swann\"}]', 1), (1776, 'Who is leading the \"House Harlaw of the Tower of Glimmering\"?', '[{\"right\":false,\"text\":\"Arra Norrey\"},{\"right\":false,\"text\":\"Ellaria Sand\"},{\"right\":true,\"text\":\"Hotho Harlaw\"}]', 1), (1777, 'In how many season Amory Lorch appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"4\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"7\"}]', 1), (1778, 'What is the nickname of Alannys Harlaw?', '[{\"right\":false,\"text\":\"The She-Wolf\"},{\"right\":false,\"text\":\"Maelys the Monstrous\"},{\"right\":true,\"text\":\"Lanny\"},{\"right\":false,\"text\":\"Greybeard\"}]', 1), (1779, 'In how many Star Wars movies appeared Lobot ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":2},{\"right\":false,\"text\":7},{\"right\":false,\"text\":5}]', 2), (1780, 'What is the nickname of Dunstan Drumm?', '[{\"right\":true,\"text\":\"The Drumm\"},{\"right\":false,\"text\":\"Torr\"},{\"right\":false,\"text\":\"Daeron the Drunken\"}]', 1), (1781, 'How heavy is Raymus Antilles ? (in kg)', '[{\"right\":false,\"text\":\"15\"},{\"right\":false,\"text\":\"77\"},{\"right\":false,\"text\":\"49\"},{\"right\":true,\"text\":\"79\"}]', 2), (1782, 'In how many Star Wars movies appeared Dormé ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":2},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3}]', 2), (1783, 'What is the nickname of Bronn?', '[{\"right\":false,\"text\":\"One-Eye\"},{\"right\":true,\"text\":\"Ser Bronn of the Blackwater\"}]', 1), (1784, 'Who is leading the \"House Flint of the mountains\"?', '[{\"right\":false,\"text\":\"\"},{\"right\":false,\"text\":\"Cersei Frey\"},{\"right\":false,\"text\":\"Alesander Frey\"},{\"right\":true,\"text\":\"Torghen Flint\"}]', 1), (1785, 'In how many Star Wars movies the planet Utapau has appeared ?', '[{\"right\":false,\"text\":3},{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":2}]', 2), (1786, 'In how many Star Wars movies appeared Raymus Antilles ?', '[{\"right\":false,\"text\":6},{\"right\":true,\"text\":2},{\"right\":false,\"text\":3},{\"right\":false,\"text\":1}]', 2), (1787, 'In how many Star Wars movies the planet Shili has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":2},{\"right\":false,\"text\":3}]', 2), (1788, 'How heavy is Poggle the Lesser ? (in kg)', '[{\"right\":false,\"text\":\"89\"},{\"right\":false,\"text\":\"48\"},{\"right\":true,\"text\":\"80\"},{\"right\":false,\"text\":\"17\"}]', 2), (1789, 'Who is leading the \"House Allyrion of Godsgrace\"?', '[{\"right\":false,\"text\":\"Garrett Paege\"},{\"right\":true,\"text\":\"Delonne Allyrion\"},{\"right\":false,\"text\":\"\"},{\"right\":false,\"text\":\"Gawen Wylde\"}]', 1), (1790, 'In how many Star Wars movies appeared Chewbacca ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":6},{\"right\":true,\"text\":5},{\"right\":false,\"text\":1}]', 2), (1791, 'What is the title of Star Wars episode 1 ?', '[{\"right\":true,\"text\":\"The Phantom Menace\"},{\"right\":false,\"text\":\"A New Hope\"},{\"right\":false,\"text\":\"Attack of the Clones\"},{\"right\":false,\"text\":\"The Empire Strikes Back\"}]', 2), (1792, 'Who is leading the \"House Lynderly of the Snakewood\"?', '[{\"right\":false,\"text\":\"Aegon Blackfyre\"},{\"right\":true,\"text\":\"Jon Lynderly\"}]', 1), (1793, 'On which planet was Poe Dameron born ?', '[{\"right\":true,\"text\":\"unknown\"},{\"right\":false,\"text\":\"Shili\"},{\"right\":false,\"text\":\"Mon Cala\"},{\"right\":false,\"text\":\"Kamino\"}]', 2), (1794, 'In how many season Bowen Marsh appears?', '[{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"4\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"2\"}]', 1), (1795, 'On which planet was Ric Olié born ?', '[{\"right\":false,\"text\":\"Trandosha\"},{\"right\":true,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Saleucami\"},{\"right\":false,\"text\":\"Malastare\"}]', 2), (1796, 'In how many Star Wars movies appeared Watto ?', '[{\"right\":false,\"text\":7},{\"right\":true,\"text\":2},{\"right\":false,\"text\":4},{\"right\":false,\"text\":1}]', 2), (1797, 'In how many season Jon Umber appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"1\"}]', 1), (1798, 'In how many Star Wars movies appeared Finis Valorum ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":true,\"text\":1},{\"right\":false,\"text\":7}]', 2), (1799, 'What is the nickname of Denys Arryn?', '[{\"right\":false,\"text\":\"Heir for a Day\"},{\"right\":true,\"text\":\"The Darling of the Vale\"},{\"right\":false,\"text\":\"Craghas Crabfeeder\"},{\"right\":false,\"text\":\"Wet Wat\"}]', 1), (1800, 'In how many Star Wars movies appeared Zam Wesell ?', '[{\"right\":false,\"text\":5},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2}]', 2), (1801, 'Who is leading the \"House Brax of Hornvale\"?', '[{\"right\":false,\"text\":\"Alyssa Targaryen\"},{\"right\":true,\"text\":\"Tytos Brax\"}]', 1), (1802, 'In how many season Beric Dondarrion appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"4\"}]', 1), (1803, 'Who is leading the \"House Flint of Flint\'s Finger\"?', '[{\"right\":false,\"text\":\"\"},{\"right\":true,\"text\":\"Robin Flint\"}]', 1), (1804, 'What is the nickname of Crake?', '[{\"right\":true,\"text\":\"Crake the Boarkiller\"},{\"right\":false,\"text\":\"Qhorin Halfhand\"},{\"right\":false,\"text\":\"The lightning lord\"},{\"right\":false,\"text\":\"Pinkeye\"}]', 1), (1805, 'Which language does the Muun species speak ?', '[{\"right\":true,\"text\":\"Muun\"},{\"right\":false,\"text\":\"Gungan basic\"},{\"right\":false,\"text\":\"Neimoidia\"},{\"right\":false,\"text\":\"Quermian\"}]', 2), (1806, 'How heavy is Tarfful ? (in kg)', '[{\"right\":false,\"text\":\"85\"},{\"right\":false,\"text\":\"65\"},{\"right\":false,\"text\":\"32\"},{\"right\":true,\"text\":\"136\"}]', 2), (1807, 'Who is leading the \"House Baratheon of King\'s Landing\"?', '[{\"right\":false,\"text\":\"Durran\"},{\"right\":true,\"text\":\"Tommen Baratheon\"},{\"right\":false,\"text\":\"Dyanna Dayne\"}]', 1), (1808, 'On which planet was Ki-Adi-Mundi born ?', '[{\"right\":false,\"text\":\"Trandosha\"},{\"right\":true,\"text\":\"Cerea\"},{\"right\":false,\"text\":\"Zolan\"},{\"right\":false,\"text\":\"Muunilinst\"}]', 2), (1809, 'In how many Star Wars movies appeared Darth Vader ?', '[{\"right\":false,\"text\":6},{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":true,\"text\":4}]', 2), (1810, 'On which planet was C-3PO born ?', '[{\"right\":false,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Bestine IV\"},{\"right\":true,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Saleucami\"}]', 2), (1811, 'In how many Star Wars movies appeared R5-D4 ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":3},{\"right\":false,\"text\":5},{\"right\":true,\"text\":1}]', 2), (1812, 'What is the nickname of Ambrose Butterwell?', '[{\"right\":true,\"text\":\"Old Milkblood\"},{\"right\":false,\"text\":\"Hookface Will\"},{\"right\":false,\"text\":\"The dancer\"},{\"right\":false,\"text\":\"Clarence the Short\"}]', 1), (1813, 'What is the nickname of Betha Blackwood?', '[{\"right\":false,\"text\":\"Triston of Tally Hill\"},{\"right\":true,\"text\":\"Black Betha\"}]', 1), (1814, 'On which planet was Anakin Skywalker born ?', '[{\"right\":false,\"text\":\"Corellia\"},{\"right\":false,\"text\":\"Yavin IV\"},{\"right\":false,\"text\":\"Sullust\"},{\"right\":true,\"text\":\"Tatooine\"}]', 2), (1815, 'In how many Star Wars movies appeared Dud Bolt ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":false,\"text\":7}]', 2), (1816, 'What is the nickname of Brienne of Tarth?', '[{\"right\":true,\"text\":\"The Maid of Tarth\"},{\"right\":false,\"text\":\"Lady Tysha of House Silverfist\"}]', 1), (1817, 'Who is leading the \"House Crakehall of Crakehall\"?', '[{\"right\":false,\"text\":\"Eldon Estermont\"},{\"right\":true,\"text\":\"Roland Crakehall\"},{\"right\":false,\"text\":\"Alys Karstark\"}]', 1), (1818, 'On which planet was Rey born ?', '[{\"right\":true,\"text\":\"unknown\"},{\"right\":false,\"text\":\"Haruun Kal\"},{\"right\":false,\"text\":\"Muunilinst\"},{\"right\":false,\"text\":\"Dathomir\"}]', 2), (1819, 'In how many Star Wars movies appeared Jocasta Nu ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2}]', 2), (1820, 'On which planet was Plo Koon born ?', '[{\"right\":false,\"text\":\"Shili\"},{\"right\":false,\"text\":\"Cerea\"},{\"right\":false,\"text\":\"Dantooine\"},{\"right\":true,\"text\":\"Dorin\"}]', 2), (1821, 'Who is leading the \"House Liddle\"?', '[{\"right\":false,\"text\":\"Guncer Sunglass\"},{\"right\":true,\"text\":\"Torren Liddle\"},{\"right\":false,\"text\":\"Daryn Hornwood\"}]', 1), (1822, 'How tall is Shmi Skywalker ? (in cm)', '[{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"170\"},{\"right\":false,\"text\":\"264\"},{\"right\":true,\"text\":\"163\"}]', 2), (1823, 'On which planet was Tarfful born ?', '[{\"right\":true,\"text\":\"Kashyyyk\"},{\"right\":false,\"text\":\"Troiken\"},{\"right\":false,\"text\":\"Felucia\"},{\"right\":false,\"text\":\"Dathomir\"}]', 2), (1824, 'On which planet was Qui-Gon Jinn born ?', '[{\"right\":false,\"text\":\"Ord Mantell\"},{\"right\":false,\"text\":\"Dorin\"},{\"right\":false,\"text\":\"Mustafar\"},{\"right\":true,\"text\":\"unknown\"}]', 2), (1825, 'Who is leading the \"House Blackmont of Blackmont\"?', '[{\"right\":true,\"text\":\"Larra Blackmont\"},{\"right\":false,\"text\":\"Scolera\"},{\"right\":false,\"text\":\"Bronn\"}]', 1), (1826, 'What is the nickname of Artos Stark?', '[{\"right\":false,\"text\":\"The Sisterman\"},{\"right\":false,\"text\":\"Gascoyne of the Greenblood\"},{\"right\":true,\"text\":\"Artos the Implacable\"}]', 1), (1827, 'How heavy is Biggs Darklighter ? (in kg)', '[{\"right\":false,\"text\":\"140\"},{\"right\":false,\"text\":\"75\"},{\"right\":false,\"text\":\"82\"},{\"right\":true,\"text\":\"84\"}]', 2), (1828, 'What is the nickname of Buford Bulwer?', '[{\"right\":true,\"text\":\"The Old Ox\"},{\"right\":false,\"text\":\"Gyles Greycloak\"},{\"right\":false,\"text\":\"Wulfe One-Ear\"}]', 1), (1829, 'How tall is Dooku ? (in cm)', '[{\"right\":true,\"text\":\"193\"},{\"right\":false,\"text\":\"182\"},{\"right\":false,\"text\":\"79\"},{\"right\":false,\"text\":\"157\"}]', 2), (1830, 'Who is leading the \"House Bracken of Stone Hedge\"?', '[{\"right\":false,\"text\":\"Alysanne Osgrey\"},{\"right\":true,\"text\":\"Jonos Bracken\"}]', 1), (1831, 'What is the nickname of Alysane Mormont?', '[{\"right\":true,\"text\":\"The Young She-Bear\"},{\"right\":false,\"text\":\"Deaf Dick Follard\"}]', 1), (1832, 'What is the title of Star Wars episode 7 ?', '[{\"right\":false,\"text\":\"Attack of the Clones\"},{\"right\":false,\"text\":\"A New Hope\"},{\"right\":false,\"text\":\"Revenge of the Sith\"},{\"right\":true,\"text\":\"The Force Awakens\"}]', 2), (1833, 'In how many Star Wars movies the planet Bestine IV has appeared ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":true,\"text\":0}]', 2), (1834, 'On which planet was Darth Vader born ?', '[{\"right\":true,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Iridonia\"},{\"right\":false,\"text\":\"Yavin IV\"},{\"right\":false,\"text\":\"Bespin\"}]', 2), (1835, 'How tall is Grievous ? (in cm)', '[{\"right\":false,\"text\":\"180\"},{\"right\":false,\"text\":\"184\"},{\"right\":false,\"text\":\"94\"},{\"right\":true,\"text\":\"216\"}]', 2), (1836, 'Who is leading the \"House Estren of Wyndhall\"?', '[{\"right\":false,\"text\":\"Donnel\"},{\"right\":true,\"text\":\"Regenard Estren\"},{\"right\":false,\"text\":\"Arya Stark\"}]', 1), (1837, 'What is the nickname of Brandon Stark?', '[{\"right\":false,\"text\":\"Green Gergen\"},{\"right\":true,\"text\":\"Brandon the Burner\"},{\"right\":false,\"text\":\"Fair Walda\"}]', 1), (1838, 'In how many season Brynden Tully appears?', '[{\"right\":true,\"text\":\"3\"},{\"right\":false,\"text\":\"6\"},{\"right\":false,\"text\":\"1\"}]', 1), (1839, 'What is the nickname of Aemond Targaryen?', '[{\"right\":true,\"text\":\"Aemond One-Eye Aemond the Kinslayer\"},{\"right\":false,\"text\":\"Bael the Bard\"},{\"right\":false,\"text\":\"Merry Frey\"},{\"right\":false,\"text\":\"Brotherfuckerthe bitch queen\"}]', 1), (1840, 'How tall is Tarfful ? (in cm)', '[{\"right\":true,\"text\":\"234\"},{\"right\":false,\"text\":\"178\"},{\"right\":false,\"text\":\"193\"},{\"right\":false,\"text\":\"173\"}]', 2), (1841, 'In how many Star Wars movies the planet Aleen Minor has appeared ?', '[{\"right\":true,\"text\":0},{\"right\":false,\"text\":2},{\"right\":false,\"text\":4},{\"right\":false,\"text\":1}]', 2), (1842, 'How heavy is Dud Bolt ? (in kg)', '[{\"right\":false,\"text\":\"89\"},{\"right\":false,\"text\":\"80\"},{\"right\":false,\"text\":\"75\"},{\"right\":true,\"text\":\"45\"}]', 2), (1843, 'In how many Star Wars movies the planet Dagobah has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":5},{\"right\":true,\"text\":3}]', 2), (1844, 'In how many Star Wars movies the planet Vulpter has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":5}]', 2), (1845, 'In how many season Randyll Tarly appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"3\"}]', 1), (1846, 'On which planet was Lobot born ?', '[{\"right\":true,\"text\":\"Bespin\"},{\"right\":false,\"text\":\"Glee Anselm\"},{\"right\":false,\"text\":\"Quermia\"},{\"right\":false,\"text\":\"Troiken\"}]', 2), (1847, 'Who is leading the \"House Glover of Deepwood Motte\"?', '[{\"right\":false,\"text\":\"Aegor Rivers\"},{\"right\":true,\"text\":\"Galbart Glover\"},{\"right\":false,\"text\":\"Donnel Drumm\"},{\"right\":false,\"text\":\"Alesander Frey\"}]', 1), (1848, 'Which language does the Trandoshan species speak ?', '[{\"right\":false,\"text\":\"Mon Calamarian\"},{\"right\":false,\"text\":\"Toydarian\"},{\"right\":false,\"text\":\"vulpterish\"},{\"right\":true,\"text\":\"Dosh\"}]', 2), (1849, 'What is the nickname of Tywin Lannister?', '[{\"right\":false,\"text\":\"Light of the North\"},{\"right\":false,\"text\":\"Bronze Bitch\"},{\"right\":false,\"text\":\"Merrett Muttonhead\"},{\"right\":true,\"text\":\"The Lion of Lannister\"}]', 1), (1850, 'Who is leading the \"House Coldwater of Coldwater Burn\"?', '[{\"right\":false,\"text\":\"Ollidor\"},{\"right\":false,\"text\":\"Bellena Hawick\"},{\"right\":true,\"text\":\"Royce Coldwater\"}]', 1), (1851, 'In how many Star Wars movies appeared Grievous ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":4}]', 2), (1852, 'How tall is Eeth Koth ? (in cm)', '[{\"right\":true,\"text\":\"171\"},{\"right\":false,\"text\":\"66\"},{\"right\":false,\"text\":\"198\"},{\"right\":false,\"text\":\"163\"}]', 2), (1853, 'In how many Star Wars movies appeared Sebulba ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":5},{\"right\":false,\"text\":2}]', 2), (1854, 'In how many Star Wars movies appeared Shmi Skywalker ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":true,\"text\":2},{\"right\":false,\"text\":3}]', 2), (1855, 'How heavy is Jek Tono Porkins ? (in kg)', '[{\"right\":false,\"text\":\"48\"},{\"right\":false,\"text\":\"56.2\"},{\"right\":true,\"text\":\"110\"},{\"right\":false,\"text\":\"85\"}]', 2), (1856, 'Who is leading the \"House Lychester\"?', '[{\"right\":false,\"text\":\"Ellaria Sand\"},{\"right\":true,\"text\":\"Lymond Lychester\"},{\"right\":false,\"text\":\"Burton Crakehall\"},{\"right\":false,\"text\":\"Colen of Greenpools\"}]', 1), (1857, 'How heavy is Ratts Tyerell ? (in kg)', '[{\"right\":false,\"text\":\"57\"},{\"right\":false,\"text\":\"32\"},{\"right\":true,\"text\":\"15\"},{\"right\":false,\"text\":\"120\"}]', 2), (1858, 'In how many Star Wars movies appeared Yarael Poof ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":true,\"text\":1}]', 2), (1859, 'What is the nickname of Aegon IV?', '[{\"right\":false,\"text\":\"Red Walder\"},{\"right\":false,\"text\":\"Duck\"},{\"right\":false,\"text\":\"Ser Donnel the Constant\"},{\"right\":true,\"text\":\"Aegon the Unworthy\"}]', 1), (1860, 'Who is leading the \"House Harlaw of Harlaw\"?', '[{\"right\":false,\"text\":\"Edwyn Osgrey\"},{\"right\":true,\"text\":\"Rodrik Harlaw\"},{\"right\":false,\"text\":\"Aegon IV\"}]', 1), (1861, 'What is the nickname of Margaery Tyrell?', '[{\"right\":false,\"text\":\"Elia of Dorne\"},{\"right\":false,\"text\":\"Old Ser Rodrik\"},{\"right\":false,\"text\":\"The Veiled Lady\"},{\"right\":true,\"text\":\"The Little Queen\"}]', 1), (1862, 'Who is leading the \"House Jast\"?', '[{\"right\":true,\"text\":\"Antario Jast\"},{\"right\":false,\"text\":\"Baelor Targaryen\"}]', 1), (1863, 'In how many Star Wars movies appeared Nute Gunray ?', '[{\"right\":false,\"text\":6},{\"right\":false,\"text\":1},{\"right\":true,\"text\":3},{\"right\":false,\"text\":2}]', 2), (1864, 'On which planet was Bib Fortuna born ?', '[{\"right\":false,\"text\":\"Cato Neimoidia\"},{\"right\":false,\"text\":\"Dantooine\"},{\"right\":true,\"text\":\"Ryloth\"},{\"right\":false,\"text\":\"Toydaria\"}]', 2), (1865, 'On which planet was Mon Mothma born ?', '[{\"right\":true,\"text\":\"Chandrila\"},{\"right\":false,\"text\":\"Ojom\"},{\"right\":false,\"text\":\"Concord Dawn\"},{\"right\":false,\"text\":\"Ryloth\"}]', 2), (1866, 'On which planet was Boba Fett born ?', '[{\"right\":false,\"text\":\"Quermia\"},{\"right\":true,\"text\":\"Kamino\"},{\"right\":false,\"text\":\"Mirial\"},{\"right\":false,\"text\":\"Coruscant\"}]', 2), (1867, 'On which planet was Poggle the Lesser born ?', '[{\"right\":false,\"text\":\"Rodia\"},{\"right\":false,\"text\":\"Ryloth\"},{\"right\":true,\"text\":\"Geonosis\"},{\"right\":false,\"text\":\"Champala\"}]', 2), (1868, 'What is the nickname of Alysanne Targaryen?', '[{\"right\":false,\"text\":\"The Kindly Man\"},{\"right\":true,\"text\":\"Good Queen Alysanne\"},{\"right\":false,\"text\":\"The Boy King\"}]', 1), (1869, 'On which planet was Wedge Antilles born ?', '[{\"right\":false,\"text\":\"Dantooine\"},{\"right\":false,\"text\":\"Saleucami\"},{\"right\":false,\"text\":\"Dathomir\"},{\"right\":true,\"text\":\"Corellia\"}]', 2), (1870, 'In how many Star Wars movies appeared Darth Maul ?', '[{\"right\":false,\"text\":6},{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1}]', 2), (1871, 'In how many Star Wars movies appeared Poggle the Lesser ?', '[{\"right\":false,\"text\":7},{\"right\":false,\"text\":1},{\"right\":true,\"text\":2},{\"right\":false,\"text\":5}]', 2), (1872, 'Who is leading the \"House Baelish of Harrenhal\"?', '[{\"right\":false,\"text\":\"Baelon Targaryen\"},{\"right\":true,\"text\":\"Petyr Baelish\"}]', 1), (1873, 'How tall is San Hill ? (in cm)', '[{\"right\":false,\"text\":\"79\"},{\"right\":true,\"text\":\"191\"},{\"right\":false,\"text\":\"160\"},{\"right\":false,\"text\":\"198\"}]', 2), (1874, 'In how many season Stevron Frey appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"4\"}]', 1), (1875, 'What is the nickname of Addison Hill?', '[{\"right\":false,\"text\":\"The Young King\"},{\"right\":true,\"text\":\"The Bastard of Cornfield\"},{\"right\":false,\"text\":\"Blackfish\"},{\"right\":false,\"text\":\"Edgerran the Open-Handed\"}]', 1), (1876, 'In how many Star Wars movies appeared Tion Medon ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":false,\"text\":2}]', 2), (1877, 'How heavy is Shaak Ti ? (in kg)', '[{\"right\":true,\"text\":\"57\"},{\"right\":false,\"text\":\"87\"},{\"right\":false,\"text\":\"136\"},{\"right\":false,\"text\":\"112\"}]', 2), (1878, 'Who is leading the \"House Goodbrother of Hammerhorn\"?', '[{\"right\":false,\"text\":\"Donal Noye\"},{\"right\":false,\"text\":\"Scolera\"},{\"right\":false,\"text\":\"Colen of Greenpools\"},{\"right\":true,\"text\":\"Gorold Goodbrother\"}]', 1), (1879, 'Who is leading the \"House Harlaw of Harlaw Hall\"?', '[{\"right\":false,\"text\":\"Dick Follard\"},{\"right\":false,\"text\":\"Corlys Velaryon\"},{\"right\":true,\"text\":\"Sigfryd Harlaw\"},{\"right\":false,\"text\":\"Aeron Greyjoy\"}]', 1), (1880, 'In how many season Pypar appears?', '[{\"right\":true,\"text\":\"3\"},{\"right\":false,\"text\":\"1\"},{\"right\":false,\"text\":\"6\"}]', 1), (1881, 'On which planet was Dexter Jettster born ?', '[{\"right\":false,\"text\":\"Shili\"},{\"right\":true,\"text\":\"Ojom\"},{\"right\":false,\"text\":\"Polis Massa\"},{\"right\":false,\"text\":\"Dorin\"}]', 2), (1882, 'Who is leading the \"House Banefort of Banefort\"?', '[{\"right\":false,\"text\":\"Daella Targaryen\"},{\"right\":true,\"text\":\"Quenten Banefort\"},{\"right\":false,\"text\":\"Bryan Fossoway\"}]', 1), (1883, 'In how many season High Septon appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"2\"}]', 1), (1884, 'In how many season Balon Greyjoy appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"4\"},{\"right\":true,\"text\":\"3\"}]', 1), (1885, 'What is the nickname of Aegon II?', '[{\"right\":true,\"text\":\"Aegon the Elder\"},{\"right\":false,\"text\":\"Harrag Sheepstealer\"},{\"right\":false,\"text\":\"Blind Wyl the Whittler\"}]', 1), (1886, 'How heavy is Zam Wesell ? (in kg)', '[{\"right\":false,\"text\":\"82\"},{\"right\":false,\"text\":\"1,358\"},{\"right\":false,\"text\":\"48\"},{\"right\":true,\"text\":\"55\"}]', 2), (1887, 'In how many season Eddard Stark appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"6\"}]', 1), (1888, 'How tall is Jar Jar Binks ? (in cm)', '[{\"right\":false,\"text\":\"198\"},{\"right\":true,\"text\":\"196\"},{\"right\":false,\"text\":\"180\"},{\"right\":false,\"text\":\"188\"}]', 2), (1889, 'How tall is R5-D4 ? (in cm)', '[{\"right\":true,\"text\":\"97\"},{\"right\":false,\"text\":\"229\"},{\"right\":false,\"text\":\"193\"},{\"right\":false,\"text\":\"188\"}]', 2), (1890, 'Who is leading the \"House Flint of Widow\'s Watch\"?', '[{\"right\":true,\"text\":\"Lyessa Flint\"},{\"right\":false,\"text\":\"Grance Morrigen\"}]', 1), (1891, 'How tall is Jabba Desilijic Tiure ? (in cm)', '[{\"right\":false,\"text\":\"166\"},{\"right\":true,\"text\":\"175\"},{\"right\":false,\"text\":\"185\"},{\"right\":false,\"text\":\"183\"}]', 2), (1892, 'What is the nickname of Dontos Hollard?', '[{\"right\":true,\"text\":\"Dontos the Red\"},{\"right\":false,\"text\":\"Ollo Lophand\"}]', 1), (1893, 'What is the nickname of Aerys II?', '[{\"right\":true,\"text\":\"The Mad King\"},{\"right\":false,\"text\":\"Sour Alyn\"},{\"right\":false,\"text\":\"Sylas Sourmouth\"},{\"right\":false,\"text\":\"Warrior of Light\"}]', 1), (1894, 'What is the title of Star Wars episode 2 ?', '[{\"right\":false,\"text\":\"Return of the Jedi\"},{\"right\":false,\"text\":\"A New Hope\"},{\"right\":false,\"text\":\"The Empire Strikes Back\"},{\"right\":true,\"text\":\"Attack of the Clones\"}]', 2), (1895, 'Which language does the Pau\'an species speak ?', '[{\"right\":true,\"text\":\"Utapese\"},{\"right\":false,\"text\":\"Toydarian\"},{\"right\":false,\"text\":\"Galactic Basic\"},{\"right\":false,\"text\":\"Aleena\"}]', 2), (1896, 'In how many season Olenna Redwyne appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"3\"}]', 1), (1897, 'In how many Star Wars movies the planet Concord Dawn has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":3},{\"right\":false,\"text\":4}]', 2), (1898, 'Who is leading the \"House Hogg of Sow\'s Horn\"?', '[{\"right\":false,\"text\":\"Buford Bulwer\"},{\"right\":true,\"text\":\"Roger Hogg\"},{\"right\":false,\"text\":\"Arthur Ambrose\"}]', 1), (1899, 'How tall is Poggle the Lesser ? (in cm)', '[{\"right\":false,\"text\":\"228\"},{\"right\":false,\"text\":\"200\"},{\"right\":false,\"text\":\"167\"},{\"right\":true,\"text\":\"183\"}]', 2), (1900, 'In how many season Arya Stark appears?', '[{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"1\"},{\"right\":true,\"text\":\"6\"},{\"right\":false,\"text\":\"4\"}]', 1), (1901, 'On which planet was Biggs Darklighter born ?', '[{\"right\":false,\"text\":\"Bestine IV\"},{\"right\":true,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Dagobah\"},{\"right\":false,\"text\":\"Champala\"}]', 2), (1902, 'On which planet was Leia Organa born ?', '[{\"right\":false,\"text\":\"Tholoth\"},{\"right\":false,\"text\":\"Troiken\"},{\"right\":false,\"text\":\"Toydaria\"},{\"right\":true,\"text\":\"Alderaan\"}]', 2), (1903, 'How tall is Plo Koon ? (in cm)', '[{\"right\":false,\"text\":\"216\"},{\"right\":true,\"text\":\"188\"},{\"right\":false,\"text\":\"167\"},{\"right\":false,\"text\":\"66\"}]', 2), (1904, 'In how many Star Wars movies the planet Endor has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":5},{\"right\":false,\"text\":2},{\"right\":true,\"text\":1}]', 2), (1905, 'What is the nickname of Amory Lorch?', '[{\"right\":false,\"text\":\"Maester\"},{\"right\":true,\"text\":\"The Manticore\"},{\"right\":false,\"text\":\"The Imp\"}]', 1), (1906, 'In how many season Melisandre appears?', '[{\"right\":true,\"text\":\"5\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"6\"}]', 1), (1907, 'In how many season Walder Frey appears?', '[{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"6\"},{\"right\":false,\"text\":\"5\"}]', 1), (1908, 'How tall is Shaak Ti ? (in cm)', '[{\"right\":false,\"text\":\"160\"},{\"right\":true,\"text\":\"178\"},{\"right\":false,\"text\":\"167\"},{\"right\":false,\"text\":\"165\"}]', 2), (1909, 'In how many season Cersei Lannister appears?', '[{\"right\":true,\"text\":\"6\"},{\"right\":false,\"text\":\"0\"}]', 1), (1910, 'In how many Star Wars movies the planet Mygeeto has appeared ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":2},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3}]', 2), (1911, 'On which planet was Wicket Systri Warrick born ?', '[{\"right\":false,\"text\":\"Glee Anselm\"},{\"right\":false,\"text\":\"Bespin\"},{\"right\":true,\"text\":\"Endor\"},{\"right\":false,\"text\":\"Vulpter\"}]', 2), (1912, 'Who is leading the \"House Dayne of Starfall\"?', '[{\"right\":false,\"text\":\"Desmond Redwyne\"},{\"right\":false,\"text\":\"Eden Risley\"},{\"right\":true,\"text\":\"Edric Dayne\"},{\"right\":false,\"text\":\"Aegon Targaryen\"}]', 1), (1913, 'In how many season Brienne of Tarth appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"5\"},{\"right\":false,\"text\":\"6\"},{\"right\":false,\"text\":\"1\"}]', 1), (1914, 'What is the nickname of Aegon Frey?', '[{\"right\":false,\"text\":\"Garin the Great\"},{\"right\":false,\"text\":\"The She-Wolf\"},{\"right\":true,\"text\":\"Aegon Bloodborn\"},{\"right\":false,\"text\":\"Bryce the Orange\"}]', 1), (1915, 'What is the nickname of Durran?', '[{\"right\":false,\"text\":\"Blushing Bethany\"},{\"right\":false,\"text\":\"Pinchface Jon\"},{\"right\":false,\"text\":\"Oswald Kettleblack\"},{\"right\":true,\"text\":\"Durran Godsgrief\"}]', 1), (1916, 'How tall is Nien Nunb ? (in cm)', '[{\"right\":false,\"text\":\"122\"},{\"right\":true,\"text\":\"160\"},{\"right\":false,\"text\":\"193\"},{\"right\":false,\"text\":\"180\"}]', 2), (1917, 'Who is leading the \"House Buckler of Bronzegate\"?', '[{\"right\":false,\"text\":\"Ellaria Sand\"},{\"right\":true,\"text\":\"Ralph Buckler\"},{\"right\":false,\"text\":\"Bowen Marsh\"}]', 1), (1918, 'On which planet was Luminara Unduli born ?', '[{\"right\":false,\"text\":\"Saleucami\"},{\"right\":false,\"text\":\"Kashyyyk\"},{\"right\":false,\"text\":\"Muunilinst\"},{\"right\":true,\"text\":\"Mirial\"}]', 2), (1919, 'In how many Star Wars movies appeared Rey ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2}]', 2), (1920, 'In how many Star Wars movies the planet Tund has appeared ?', '[{\"right\":true,\"text\":0},{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":false,\"text\":3}]', 2), (1921, 'In how many season Meryn Trant appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"5\"},{\"right\":false,\"text\":\"2\"}]', 1), (1922, 'In how many season Jeor Mormont appears?', '[{\"right\":true,\"text\":\"3\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"0\"}]', 1), (1923, 'In how many season Addam Marbrand appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"3\"}]', 1), (1924, 'In how many season Lyanna Mormont appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"6\"}]', 1), (1925, 'In how many season Benjen Stark appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"4\"},{\"right\":true,\"text\":\"2\"}]', 1), (1926, 'In how many season Aemon Targaryen appears?', '[{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"3\"}]', 1), (1927, 'Which language does the Iktotchi species speak ?', '[{\"right\":false,\"text\":\"Gungan basic\"},{\"right\":false,\"text\":\"Chagria\"},{\"right\":false,\"text\":\"Togruti\"},{\"right\":true,\"text\":\"Iktotchese\"}]', 2), (1928, 'What is the nickname of Aerion Targaryen?', '[{\"right\":false,\"text\":\"Rat\"},{\"right\":false,\"text\":\"Knight of Kisses\"},{\"right\":true,\"text\":\"Brightflame\"}]', 1), (1929, 'In how many season Alliser Thorne appears?', '[{\"right\":false,\"text\":\"6\"},{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"5\"}]', 1), (1930, 'In how many Star Wars movies appeared Lando Calrissian ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":true,\"text\":2},{\"right\":false,\"text\":1}]', 2), (1931, 'In how many Star Wars movies the planet Polis Massa has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1},{\"right\":false,\"text\":5}]', 2), (1932, 'In how many Star Wars movies the planet Cerea has appeared ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":1},{\"right\":false,\"text\":4},{\"right\":true,\"text\":0}]', 2), (1933, 'In how many season Dontos Hollard appears?', '[{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"6\"}]', 1), (1934, 'What is the nickname of Baelor I?', '[{\"right\":true,\"text\":\"Baelor the Beloved\"},{\"right\":false,\"text\":\"Kenned the Whale\"}]', 1), (1935, 'Who is leading the \"House Harlaw of Grey Garden\"?', '[{\"right\":false,\"text\":\"Unella\"},{\"right\":true,\"text\":\"Harras Harlaw\"},{\"right\":false,\"text\":\"Duram Bar Emmon\"},{\"right\":false,\"text\":\"Melicent\"}]', 1), (1936, 'What is the nickname of Barthogan Stark?', '[{\"right\":false,\"text\":\"Greenbeard\"},{\"right\":true,\"text\":\"Barth Blacksword\"},{\"right\":false,\"text\":\"Aurochs\"}]', 1), (1937, 'In how many season Doran Martell appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"6\"}]', 1), (1938, 'What is the nickname of Argilac Durrandon?', '[{\"right\":false,\"text\":\"Drink\"},{\"right\":false,\"text\":\"Devyn Sealskinner\"},{\"right\":false,\"text\":\"Patches\"},{\"right\":true,\"text\":\"Argilac the Arrogant\"}]', 1), (1939, 'In how many season Othell Yarwyck appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"6\"},{\"right\":false,\"text\":\"4\"}]', 1), (1940, 'How tall is Anakin Skywalker ? (in cm)', '[{\"right\":false,\"text\":\"112\"},{\"right\":false,\"text\":\"180\"},{\"right\":true,\"text\":\"188\"},{\"right\":false,\"text\":\"150\"}]', 2), (1941, 'Who is leading the \"House Gargalen of Salt Shore\"?', '[{\"right\":false,\"text\":\"Benjen Stark\"},{\"right\":true,\"text\":\"Tremond Gargalen\"}]', 1), (1942, 'How tall is Dud Bolt ? (in cm)', '[{\"right\":false,\"text\":\"190\"},{\"right\":false,\"text\":\"213\"},{\"right\":false,\"text\":\"180\"},{\"right\":true,\"text\":\"94\"}]', 2), (1943, 'In how many Star Wars movies the planet Geonosis has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":5},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1}]', 2), (1944, 'On which planet was R5-D4 born ?', '[{\"right\":true,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Iridonia\"},{\"right\":false,\"text\":\"Tund\"},{\"right\":false,\"text\":\"Coruscant\"}]', 2), (1945, 'Which language does the Mirialan species speak ?', '[{\"right\":false,\"text\":\"Huttese\"},{\"right\":true,\"text\":\"Mirialan\"},{\"right\":false,\"text\":\"Kaleesh\"},{\"right\":false,\"text\":\"Dugese\"}]', 2), (1946, 'Who is leading the \"House Dustin of Barrowton\"?', '[{\"right\":false,\"text\":\"Edmund Ambrose\"},{\"right\":true,\"text\":\"Barbrey Dustin\"}]', 1), (1947, 'In how many Star Wars movies appeared Adi Gallia ?', '[{\"right\":true,\"text\":2},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3},{\"right\":false,\"text\":1}]', 2), (1948, 'In how many season Walder Frey appears?', '[{\"right\":true,\"text\":\"3\"},{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"6\"}]', 1), (1949, 'On which planet was Nien Nunb born ?', '[{\"right\":true,\"text\":\"Sullust\"},{\"right\":false,\"text\":\"Tholoth\"},{\"right\":false,\"text\":\"Skako\"},{\"right\":false,\"text\":\"Shili\"}]', 2), (1950, 'How tall is Taun We ? (in cm)', '[{\"right\":true,\"text\":\"213\"},{\"right\":false,\"text\":\"216\"},{\"right\":false,\"text\":\"168\"},{\"right\":false,\"text\":\"112\"}]', 2), (1951, 'How tall is Mon Mothma ? (in cm)', '[{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"167\"},{\"right\":true,\"text\":\"150\"},{\"right\":false,\"text\":\"180\"}]', 2), (1952, 'How heavy is Ki-Adi-Mundi ? (in kg)', '[{\"right\":true,\"text\":\"82\"},{\"right\":false,\"text\":\"102\"},{\"right\":false,\"text\":\"88\"},{\"right\":false,\"text\":\"80\"}]', 2), (1953, 'Which language does the Human species speak ?', '[{\"right\":true,\"text\":\"Galactic Basic\"},{\"right\":false,\"text\":\"Huttese\"},{\"right\":false,\"text\":\"Kel Dor\"},{\"right\":false,\"text\":\"Muun\"}]', 2), (1954, 'How heavy is Tion Medon ? (in kg)', '[{\"right\":true,\"text\":\"80\"},{\"right\":false,\"text\":\"74\"},{\"right\":false,\"text\":\"55\"},{\"right\":false,\"text\":\"65\"}]', 2), (1955, 'In how many season Ramsay Snow appears?', '[{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"0\"}]', 1), (1956, 'In how many Star Wars movies the planet Toydaria has appeared ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":2}]', 2), (1957, 'On which planet was Shaak Ti born ?', '[{\"right\":true,\"text\":\"Shili\"},{\"right\":false,\"text\":\"Mustafar\"},{\"right\":false,\"text\":\"Cato Neimoidia\"},{\"right\":false,\"text\":\"Coruscant\"}]', 2), (1958, 'On which planet was Palpatine born ?', '[{\"right\":true,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Vulpter\"},{\"right\":false,\"text\":\"Stewjon\"},{\"right\":false,\"text\":\"Zolan\"}]', 2), (1959, 'Who is leading the \"House Cerwyn of Cerwyn\"?', '[{\"right\":true,\"text\":\"Jonelle Cerwyn\"},{\"right\":false,\"text\":\"Aegon Targaryen\"},{\"right\":false,\"text\":\"Alannys Harlaw\"},{\"right\":false,\"text\":\"Della Frey\"}]', 1), (1960, 'In how many Star Wars movies appeared Gregar Typho ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":false,\"text\":5},{\"right\":true,\"text\":1}]', 2), (1961, 'How tall is Greedo ? (in cm)', '[{\"right\":false,\"text\":\"184\"},{\"right\":true,\"text\":\"173\"},{\"right\":false,\"text\":\"180\"},{\"right\":false,\"text\":\"213\"}]', 2), (1962, 'In how many season Joyeuse Erenford appears?', '[{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"4\"}]', 1), (1963, 'In how many season Renly Baratheon appears?', '[{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"1\"}]', 1), (1964, 'Who is leading the \"House Botley of Lordsport\"?', '[{\"right\":false,\"text\":\"Aegon Blackfyre\"},{\"right\":false,\"text\":\"Bass\"},{\"right\":true,\"text\":\"Germund Botley\"},{\"right\":false,\"text\":\"Geremy Frey\"}]', 1), (1965, 'On which planet was Barriss Offee born ?', '[{\"right\":true,\"text\":\"Mirial\"},{\"right\":false,\"text\":\"Socorro\"},{\"right\":false,\"text\":\"Iridonia\"},{\"right\":false,\"text\":\"Tholoth\"}]', 2), (1966, 'How tall is Luminara Unduli ? (in cm)', '[{\"right\":true,\"text\":\"170\"},{\"right\":false,\"text\":\"185\"},{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"200\"}]', 2), (1967, 'Which language does the Neimodian species speak ?', '[{\"right\":false,\"text\":\"Clawdite\"},{\"right\":false,\"text\":\"Dugese\"},{\"right\":true,\"text\":\"Neimoidia\"},{\"right\":false,\"text\":\"Kaminoan\"}]', 2), (1968, 'Who is leading the \"House Lorch\"?', '[{\"right\":false,\"text\":\"Garrison Prester\"},{\"right\":true,\"text\":\"Lorent Lorch\"}]', 1), (1969, 'How heavy is Greedo ? (in kg)', '[{\"right\":false,\"text\":\"80\"},{\"right\":false,\"text\":\"79\"},{\"right\":true,\"text\":\"74\"},{\"right\":false,\"text\":\"136\"}]', 2); INSERT INTO `questions` (`id`, `text`, `answers`, `type`) VALUES (1970, 'In how many season Robert I Baratheon appears?', '[{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"5\"},{\"right\":true,\"text\":\"1\"}]', 1), (1971, 'In how many Star Wars movies appeared Nien Nunb ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2}]', 2), (1972, 'How heavy is Leia Organa ? (in kg)', '[{\"right\":false,\"text\":\"32\"},{\"right\":true,\"text\":\"49\"},{\"right\":false,\"text\":\"89\"},{\"right\":false,\"text\":\"85\"}]', 2), (1973, 'How heavy is Wedge Antilles ? (in kg)', '[{\"right\":false,\"text\":\"48\"},{\"right\":true,\"text\":\"77\"},{\"right\":false,\"text\":\"68\"},{\"right\":false,\"text\":\"120\"}]', 2), (1974, 'On which planet was Eeth Koth born ?', '[{\"right\":false,\"text\":\"Stewjon\"},{\"right\":false,\"text\":\"Jakku\"},{\"right\":false,\"text\":\"Socorro\"},{\"right\":true,\"text\":\"Iridonia\"}]', 2), (1975, 'Who is leading the \"House Greyjoy of Pyke\"?', '[{\"right\":false,\"text\":\"Aglantine\"},{\"right\":false,\"text\":\"Berena Hornwood\"},{\"right\":true,\"text\":\"Euron Greyjoy\"},{\"right\":false,\"text\":\"Arianne Tarth\"}]', 1), (1976, 'On which planet was Finn born ?', '[{\"right\":false,\"text\":\"Cerea\"},{\"right\":false,\"text\":\"Bespin\"},{\"right\":false,\"text\":\"Sullust\"},{\"right\":true,\"text\":\"unknown\"}]', 2), (1977, 'What is the nickname of Brandon Stark?', '[{\"right\":true,\"text\":\"Bran\"},{\"right\":false,\"text\":\"Lewys the Fishwife\"}]', 1), (1978, 'In how many Star Wars movies appeared Han Solo ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":true,\"text\":4},{\"right\":false,\"text\":5}]', 2), (1979, 'How heavy is Nute Gunray ? (in kg)', '[{\"right\":false,\"text\":\"40\"},{\"right\":true,\"text\":\"90\"},{\"right\":false,\"text\":\"20\"},{\"right\":false,\"text\":\"57\"}]', 2), (1980, 'In how many season Mordane appears?', '[{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"7\"}]', 1), (1981, 'Who is leading the \"House Mallister of Seagard\"?', '[{\"right\":false,\"text\":\"Denys Darklyn\"},{\"right\":true,\"text\":\"Jason Mallister\"}]', 1), (1982, 'In how many Star Wars movies appeared Barriss Offee ?', '[{\"right\":false,\"text\":5},{\"right\":false,\"text\":2},{\"right\":false,\"text\":4},{\"right\":true,\"text\":1}]', 2), (1983, 'What is the nickname of Dale Drumm?', '[{\"right\":false,\"text\":\"Gery\"},{\"right\":true,\"text\":\"Dale the Dread\"},{\"right\":false,\"text\":\"Big Belly Ben\"}]', 1), (1984, 'What is the nickname of Baelor Hightower?', '[{\"right\":true,\"text\":\"Baelor Brightsmile\"},{\"right\":false,\"text\":\"The Laughing Wolf\"},{\"right\":false,\"text\":\"The Archer\"},{\"right\":false,\"text\":\"The Grey Lion\"}]', 1), (1985, 'In how many season Tywin Lannister appears?', '[{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"6\"}]', 1), (1986, 'What is the nickname of Ardrian Celtigar?', '[{\"right\":true,\"text\":\"the Red Crab\"},{\"right\":false,\"text\":\"The Slayer\"},{\"right\":false,\"text\":\"Grigg the Goat\"}]', 1), (1987, 'How tall is Luke Skywalker ? (in cm)', '[{\"right\":false,\"text\":\"196\"},{\"right\":false,\"text\":\"183\"},{\"right\":true,\"text\":\"172\"},{\"right\":false,\"text\":\"264\"}]', 2), (1988, 'What is the nickname of Beron Blacktyde?', '[{\"right\":false,\"text\":\"Rat\"},{\"right\":false,\"text\":\"Hother Whoresbane\"},{\"right\":true,\"text\":\"Blind Beron Blacktyde\"}]', 1), (1989, 'On which planet was Dormé born ?', '[{\"right\":false,\"text\":\"Bespin\"},{\"right\":false,\"text\":\"Ojom\"},{\"right\":false,\"text\":\"Serenno\"},{\"right\":true,\"text\":\"Naboo\"}]', 2), (1990, 'How heavy is Sly Moore ? (in kg)', '[{\"right\":true,\"text\":\"48\"},{\"right\":false,\"text\":\"79\"},{\"right\":false,\"text\":\"80\"},{\"right\":false,\"text\":\"55\"}]', 2), (1991, 'In how many Star Wars movies the planet Ord Mantell has appeared ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":5},{\"right\":false,\"text\":2}]', 2), (1992, 'In how many Star Wars movies the planet Stewjon has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":true,\"text\":0},{\"right\":false,\"text\":1}]', 2), (1993, 'How heavy is Ackbar ? (in kg)', '[{\"right\":false,\"text\":\"48\"},{\"right\":false,\"text\":\"55\"},{\"right\":true,\"text\":\"83\"},{\"right\":false,\"text\":\"79\"}]', 2), (1994, 'On which planet was Watto born ?', '[{\"right\":false,\"text\":\"Tholoth\"},{\"right\":false,\"text\":\"Vulpter\"},{\"right\":false,\"text\":\"Troiken\"},{\"right\":true,\"text\":\"Toydaria\"}]', 2), (1995, 'How tall is Darth Vader ? (in cm)', '[{\"right\":true,\"text\":\"202\"},{\"right\":false,\"text\":\"188\"},{\"right\":false,\"text\":\"173\"},{\"right\":false,\"text\":\"172\"}]', 2), (1996, 'In how many Star Wars movies appeared Jabba Desilijic Tiure ?', '[{\"right\":false,\"text\":6},{\"right\":true,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":1}]', 2), (1997, 'What is the nickname of High Septon?', '[{\"right\":true,\"text\":\"The High Sparrow\"},{\"right\":false,\"text\":\"Jon Darry\"}]', 1), (1998, 'In how many season Rickon Stark appears?', '[{\"right\":false,\"text\":\"6\"},{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"5\"}]', 1), (1999, 'What is the nickname of Beric Dondarrion?', '[{\"right\":true,\"text\":\"The lightning lord\"},{\"right\":false,\"text\":\"Iron Emmett\"},{\"right\":false,\"text\":\"\'Vinegar\' Vaellyn\"}]', 1), (2000, 'How tall is Cliegg Lars ? (in cm)', '[{\"right\":false,\"text\":\"167\"},{\"right\":true,\"text\":\"183\"},{\"right\":false,\"text\":\"175\"},{\"right\":false,\"text\":\"94\"}]', 2), (2001, 'Who is leading the \"House Jordayne of the Tor\"?', '[{\"right\":false,\"text\":\"Asha Greyjoy\"},{\"right\":true,\"text\":\"Trebor Jordayne\"}]', 1), (2002, 'On which planet was Wilhuff Tarkin born ?', '[{\"right\":false,\"text\":\"Dorin\"},{\"right\":false,\"text\":\"Muunilinst\"},{\"right\":true,\"text\":\"Eriadu\"},{\"right\":false,\"text\":\"Felucia\"}]', 2), (2003, 'Who is leading the \"House Grandison of Grandview\"?', '[{\"right\":false,\"text\":\"Alysane Mormont\"},{\"right\":true,\"text\":\"Hugh Grandison\"},{\"right\":false,\"text\":\"Cregan Karstark\"}]', 1), (2004, 'In how many Star Wars movies the planet Ryloth has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":true,\"text\":0},{\"right\":false,\"text\":4}]', 2), (2005, 'In how many Star Wars movies appeared Ratts Tyerell ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1},{\"right\":false,\"text\":7}]', 2), (2006, 'How heavy is Adi Gallia ? (in kg)', '[{\"right\":false,\"text\":\"82\"},{\"right\":false,\"text\":\"57\"},{\"right\":true,\"text\":\"50\"},{\"right\":false,\"text\":\"20\"}]', 2), (2007, 'In how many season Lancel Lannister appears?', '[{\"right\":false,\"text\":\"5\"},{\"right\":true,\"text\":\"3\"},{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"0\"}]', 1), (2008, 'On which planet was Dud Bolt born ?', '[{\"right\":false,\"text\":\"Kashyyyk\"},{\"right\":false,\"text\":\"Malastare\"},{\"right\":true,\"text\":\"Vulpter\"},{\"right\":false,\"text\":\"Toydaria\"}]', 2), (2009, 'On which planet was Rugor Nass born ?', '[{\"right\":true,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Coruscant\"},{\"right\":false,\"text\":\"Mygeeto\"},{\"right\":false,\"text\":\"Muunilinst\"}]', 2), (2010, 'On which planet was R2-D2 born ?', '[{\"right\":false,\"text\":\"Concord Dawn\"},{\"right\":false,\"text\":\"Mustafar\"},{\"right\":false,\"text\":\"Endor\"},{\"right\":true,\"text\":\"Naboo\"}]', 2), (2011, 'In how many Star Wars movies the planet Iridonia has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3}]', 2), (2012, 'In how many Star Wars movies appeared Leia Organa ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":true,\"text\":5}]', 2), (2013, 'In how many season Maege Mormont appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"1\"}]', 1), (2014, 'Who is leading the \"House Locke of Oldcastle\"?', '[{\"right\":false,\"text\":\"Balon Botley\"},{\"right\":false,\"text\":\"Duncan Targaryen\"},{\"right\":true,\"text\":\"Ondrew Locke\"}]', 1), (2015, 'On which planet was Bail Prestor Organa born ?', '[{\"right\":false,\"text\":\"Zolan\"},{\"right\":false,\"text\":\"Concord Dawn\"},{\"right\":true,\"text\":\"Alderaan\"},{\"right\":false,\"text\":\"Dathomir\"}]', 2), (2016, 'Who is leading the \"House Lannister of Casterly Rock\"?', '[{\"right\":false,\"text\":\"Clarence Charlton\"},{\"right\":false,\"text\":\"Daeron Vaith\"},{\"right\":true,\"text\":\"Cersei Lannister\"},{\"right\":false,\"text\":\"Elmar Frey\"}]', 1), (2017, 'How tall is Sly Moore ? (in cm)', '[{\"right\":false,\"text\":\"188\"},{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"180\"},{\"right\":true,\"text\":\"178\"}]', 2), (2018, 'In how many season Ellaria Sand appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"1\"}]', 1), (2019, 'In how many Star Wars movies appeared Mas Amedda ?', '[{\"right\":false,\"text\":3},{\"right\":true,\"text\":2},{\"right\":false,\"text\":1},{\"right\":false,\"text\":5}]', 2), (2020, 'What is the nickname of Brandon Stark?', '[{\"right\":true,\"text\":\"Brandon the Bad\"},{\"right\":false,\"text\":\"Harghaz the Hero\"},{\"right\":false,\"text\":\"Gormond the Oldfather\"},{\"right\":false,\"text\":\"Giant\"}]', 1), (2021, 'How tall is Biggs Darklighter ? (in cm)', '[{\"right\":false,\"text\":\"178\"},{\"right\":true,\"text\":\"183\"},{\"right\":false,\"text\":\"166\"},{\"right\":false,\"text\":\"190\"}]', 2), (2022, 'Which language does the Toong species speak ?', '[{\"right\":false,\"text\":\"Quermian\"},{\"right\":false,\"text\":\"Galactic basic\"},{\"right\":false,\"text\":\"Xextese\"},{\"right\":true,\"text\":\"Tundan\"}]', 2), (2023, 'In how many Star Wars movies the planet Glee Anselm has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":5},{\"right\":false,\"text\":3}]', 2), (2024, 'In how many season Aerys II appears?', '[{\"right\":false,\"text\":\"5\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"2\"},{\"right\":false,\"text\":\"4\"}]', 1), (2025, 'How tall is Adi Gallia ? (in cm)', '[{\"right\":true,\"text\":\"184\"},{\"right\":false,\"text\":\"193\"},{\"right\":false,\"text\":\"94\"},{\"right\":false,\"text\":\"198\"}]', 2), (2026, 'What is the nickname of Arnolf Karstark?', '[{\"right\":true,\"text\":\"Lord Arnolf\"},{\"right\":false,\"text\":\"Jon Darry\"}]', 1), (2027, 'In how many season Torrhen Karstark appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"6\"}]', 1), (2028, 'In how many Star Wars movies the planet Kalee has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":3}]', 2), (2029, 'What is the nickname of Brandon Stark?', '[{\"right\":true,\"text\":\"Brandon the Shipwright\"},{\"right\":false,\"text\":\"The Iron Captain\"},{\"right\":false,\"text\":\"Symon Silver Tongue\"},{\"right\":false,\"text\":\"Quaithe of the Shadow\"}]', 1), (2030, 'What is the nickname of Aemon Targaryen?', '[{\"right\":false,\"text\":\"Godry the Giantslayer\"},{\"right\":true,\"text\":\"Aemon Targaryen\"},{\"right\":false,\"text\":\"The Wild Wolf\"}]', 1), (2031, 'Who directed Star Wars - The Phantom Menace ?', '[{\"right\":false,\"text\":\"J. J. Abrams\"},{\"right\":false,\"text\":\"Richard Marquand\"},{\"right\":false,\"text\":\"Irvin Kershner\"},{\"right\":true,\"text\":\"George Lucas\"}]', 2), (2032, 'What is the nickname of Balon Greyjoy?', '[{\"right\":false,\"text\":\"Brotherfuckerthe bitch queen\"},{\"right\":false,\"text\":\"Rainbow Knight\"},{\"right\":true,\"text\":\"Balon the Brave\"},{\"right\":false,\"text\":\"Pretty Pia\"}]', 1), (2033, 'On which planet was Yoda born ?', '[{\"right\":true,\"text\":\"unknown\"},{\"right\":false,\"text\":\"Socorro\"},{\"right\":false,\"text\":\"Sullust\"},{\"right\":false,\"text\":\"Quermia\"}]', 2), (2034, 'In how many season Tommen Baratheon appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"2\"}]', 1), (2035, 'Who is leading the \"House Dondarrion of Blackhaven\"?', '[{\"right\":false,\"text\":\"Gared\"},{\"right\":true,\"text\":\"Beric Dondarrion\"}]', 1), (2036, 'Who is leading the \"House Ambrose\"?', '[{\"right\":false,\"text\":\"Germund Botley\"},{\"right\":false,\"text\":\"Daemon Blackfyre\"},{\"right\":true,\"text\":\"Arthur Ambrose\"},{\"right\":false,\"text\":\"Addam Frey\"}]', 1), (2037, 'Who is leading the \"House Farman of Faircastle\"?', '[{\"right\":false,\"text\":\"Brandon Stark\"},{\"right\":true,\"text\":\"Sebaston Farman\"}]', 1), (2038, 'On which planet was Saesee Tiin born ?', '[{\"right\":false,\"text\":\"Rodia\"},{\"right\":false,\"text\":\"Cato Neimoidia\"},{\"right\":false,\"text\":\"Concord Dawn\"},{\"right\":true,\"text\":\"Iktotch\"}]', 2), (2039, 'On which planet was R4-P17 born ?', '[{\"right\":false,\"text\":\"Felucia\"},{\"right\":true,\"text\":\"unknown\"},{\"right\":false,\"text\":\"Bespin\"},{\"right\":false,\"text\":\"Naboo\"}]', 2), (2040, 'In how many Star Wars movies the planet Hoth has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":4},{\"right\":false,\"text\":5},{\"right\":true,\"text\":1}]', 2), (2041, 'In how many season Talla Tarly appears?', '[{\"right\":false,\"text\":\"5\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"0\"},{\"right\":false,\"text\":\"6\"}]', 1), (2042, 'Which language does the Kel Dor species speak ?', '[{\"right\":true,\"text\":\"Kel Dor\"},{\"right\":false,\"text\":\"Galactic Basic\"},{\"right\":false,\"text\":\"Dosh\"},{\"right\":false,\"text\":\"Kaminoan\"}]', 2), (2043, 'On which planet was Yarael Poof born ?', '[{\"right\":true,\"text\":\"Quermia\"},{\"right\":false,\"text\":\"Iridonia\"},{\"right\":false,\"text\":\"Utapau\"},{\"right\":false,\"text\":\"Polis Massa\"}]', 2), (2044, 'In how many season Walda Frey appears?', '[{\"right\":true,\"text\":\"3\"},{\"right\":false,\"text\":\"4\"}]', 1), (2045, 'How tall is Dexter Jettster ? (in cm)', '[{\"right\":false,\"text\":\"185\"},{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"79\"},{\"right\":true,\"text\":\"198\"}]', 2), (2046, 'How tall is Owen Lars ? (in cm)', '[{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"202\"},{\"right\":true,\"text\":\"178\"},{\"right\":false,\"text\":\"193\"}]', 2), (2047, 'Who is leading the \"House Grafton of Gulltown\"?', '[{\"right\":true,\"text\":\"Gerold Grafton\"},{\"right\":false,\"text\":\"Alyn Haigh\"},{\"right\":false,\"text\":\"Darlessa Marbrand\"},{\"right\":false,\"text\":\"Burton Crakehall\"}]', 1), (2048, 'In how many season Trystane Martell appears?', '[{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"3\"}]', 1), (2049, 'Who is leading the \"House Marbrand of Ashemark\"?', '[{\"right\":false,\"text\":\"Carolei Waynwood\"},{\"right\":true,\"text\":\"Damon Marbrand\"},{\"right\":false,\"text\":\"Eddard Stark\"}]', 1), (2050, 'What is the nickname of Duncan Targaryen?', '[{\"right\":false,\"text\":\"Homeless Harry Strickland\"},{\"right\":true,\"text\":\"Prince Duncan the Small\"},{\"right\":false,\"text\":\"Urrathon Night-Walker\"}]', 1), (2051, 'On which planet was Sebulba born ?', '[{\"right\":false,\"text\":\"Trandosha\"},{\"right\":false,\"text\":\"Stewjon\"},{\"right\":true,\"text\":\"Malastare\"},{\"right\":false,\"text\":\"Naboo\"}]', 2), (2052, 'On which planet was San Hill born ?', '[{\"right\":false,\"text\":\"Jakku\"},{\"right\":false,\"text\":\"Champala\"},{\"right\":false,\"text\":\"Cerea\"},{\"right\":true,\"text\":\"Muunilinst\"}]', 2), (2053, 'In how many Star Wars movies appeared Rugor Nass ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2}]', 2), (2054, 'In how many Star Wars movies appeared Arvel Crynyd ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":true,\"text\":1},{\"right\":false,\"text\":6}]', 2), (2055, 'How tall is Yoda ? (in cm)', '[{\"right\":false,\"text\":\"206\"},{\"right\":false,\"text\":\"188\"},{\"right\":true,\"text\":\"66\"},{\"right\":false,\"text\":\"193\"}]', 2), (2056, 'Who is leading the \"House Fossoway of New Barrel\"?', '[{\"right\":true,\"text\":\"Jon Fossoway\"},{\"right\":false,\"text\":\"Alysanne Targaryen\"},{\"right\":false,\"text\":\"Anya Waynwood\"}]', 1), (2057, 'What is the nickname of Corlys Velaryon?', '[{\"right\":true,\"text\":\"The Sea Snake\"},{\"right\":false,\"text\":\"The Little Queen\"},{\"right\":false,\"text\":\"The Old Man of the North\"}]', 1), (2058, 'In how many Star Wars movies appeared Jek Tono Porkins ?', '[{\"right\":false,\"text\":6},{\"right\":true,\"text\":1},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3}]', 2), (2059, 'How heavy is Nien Nunb ? (in kg)', '[{\"right\":true,\"text\":\"68\"},{\"right\":false,\"text\":\"159\"},{\"right\":false,\"text\":\"17\"},{\"right\":false,\"text\":\"136\"}]', 2), (2060, 'In how many Star Wars movies the planet Eriadu has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":true,\"text\":0},{\"right\":false,\"text\":1},{\"right\":false,\"text\":3}]', 2), (2061, 'Who directed Star Wars - The Empire Strikes Back ?', '[{\"right\":false,\"text\":\"George Lucas\"},{\"right\":false,\"text\":\"Richard Marquand\"},{\"right\":false,\"text\":\"J. J. Abrams\"},{\"right\":true,\"text\":\"Irvin Kershner\"}]', 2), (2062, 'What is the nickname of Alyn Connington?', '[{\"right\":false,\"text\":\"Tallad the Tall\"},{\"right\":true,\"text\":\"The Pale Griffin\"}]', 1), (2063, 'On which planet was Taun We born ?', '[{\"right\":false,\"text\":\"Polis Massa\"},{\"right\":true,\"text\":\"Kamino\"},{\"right\":false,\"text\":\"Kashyyyk\"},{\"right\":false,\"text\":\"Glee Anselm\"}]', 2), (2064, 'In how many season Jon Umber appears?', '[{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"4\"},{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"3\"}]', 1), (2065, 'Who is leading the \"House Estermont of Greenstone\"?', '[{\"right\":false,\"text\":\"Alysanne Lefford\"},{\"right\":false,\"text\":\"Alyssa Velaryon\"},{\"right\":true,\"text\":\"Eldon Estermont\"}]', 1), (2066, 'How tall is Qui-Gon Jinn ? (in cm)', '[{\"right\":false,\"text\":\"96\"},{\"right\":false,\"text\":\"175\"},{\"right\":true,\"text\":\"193\"},{\"right\":false,\"text\":\"178\"}]', 2), (2067, 'How tall is Roos Tarpals ? (in cm)', '[{\"right\":false,\"text\":\"170\"},{\"right\":false,\"text\":\"112\"},{\"right\":true,\"text\":\"224\"},{\"right\":false,\"text\":\"172\"}]', 2), (2068, 'What is the nickname of Daeron Targaryen?', '[{\"right\":false,\"text\":\"Hodor\"},{\"right\":false,\"text\":\"Joffrey the Illborn\"},{\"right\":true,\"text\":\"Daeron the Drunken\"},{\"right\":false,\"text\":\"Patches\"}]', 1), (2069, 'What is the nickname of Daeron Targaryen?', '[{\"right\":false,\"text\":\"Red Robert Flowers\"},{\"right\":false,\"text\":\"Rubert Brax\"},{\"right\":false,\"text\":\"Sigrin the Shipwright\"},{\"right\":true,\"text\":\"Daeron the Daring\"}]', 1), (2070, 'Who is leading the \"House Frey of Riverrun\"?', '[{\"right\":false,\"text\":\"Daven Lannister\"},{\"right\":true,\"text\":\"Emmon Frey\"}]', 1), (2071, 'How heavy is Palpatine ? (in kg)', '[{\"right\":false,\"text\":\"45\"},{\"right\":true,\"text\":\"75\"},{\"right\":false,\"text\":\"48\"},{\"right\":false,\"text\":\"66\"}]', 2), (2072, 'In how many season Rodrik Cassel appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"5\"},{\"right\":false,\"text\":\"3\"}]', 1), (2073, 'How tall is Chewbacca ? (in cm)', '[{\"right\":false,\"text\":\"88\"},{\"right\":false,\"text\":\"168\"},{\"right\":true,\"text\":\"228\"},{\"right\":false,\"text\":\"165\"}]', 2), (2074, 'In how many season Edmure Tully appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"2\"},{\"right\":false,\"text\":\"3\"}]', 1), (2075, 'How tall is Bib Fortuna ? (in cm)', '[{\"right\":false,\"text\":\"188\"},{\"right\":false,\"text\":\"66\"},{\"right\":true,\"text\":\"180\"},{\"right\":false,\"text\":\"165\"}]', 2), (2076, 'How heavy is Ayla Secura ? (in kg)', '[{\"right\":false,\"text\":\"40\"},{\"right\":true,\"text\":\"55\"},{\"right\":false,\"text\":\"79\"},{\"right\":false,\"text\":\"1,358\"}]', 2), (2077, 'In how many season Vardis Egen appears?', '[{\"right\":false,\"text\":\"6\"},{\"right\":true,\"text\":\"1\"}]', 1), (2078, 'In how many season Dickon Tarly appears?', '[{\"right\":false,\"text\":\"4\"},{\"right\":true,\"text\":\"1\"}]', 1), (2079, 'In how many Star Wars movies the planet Socorro has appeared ?', '[{\"right\":false,\"text\":1},{\"right\":true,\"text\":0},{\"right\":false,\"text\":5},{\"right\":false,\"text\":4}]', 2), (2080, 'What is the nickname of Cedrik Storm?', '[{\"right\":false,\"text\":\"Devyn Sealskinner\"},{\"right\":false,\"text\":\"Brandon the Burner\"},{\"right\":true,\"text\":\"the Bastard of Bronzegate\"},{\"right\":false,\"text\":\"Bran\"}]', 1), (2081, 'How heavy is R2-D2 ? (in kg)', '[{\"right\":false,\"text\":\"87\"},{\"right\":false,\"text\":\"80\"},{\"right\":true,\"text\":\"32\"},{\"right\":false,\"text\":\"40\"}]', 2), (2082, 'What is the nickname of Cersei Lannister?', '[{\"right\":false,\"text\":\"Pinkeye\"},{\"right\":true,\"text\":\"Brotherfuckerthe bitch queen\"}]', 1), (2083, 'Who directed Star Wars - Return of the Jedi ?', '[{\"right\":false,\"text\":\"Irvin Kershner\"},{\"right\":true,\"text\":\"Richard Marquand\"},{\"right\":false,\"text\":\"George Lucas\"},{\"right\":false,\"text\":\"J. J. Abrams\"}]', 2), (2084, 'In how many season Rickard Karstark appears?', '[{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"3\"}]', 1), (2085, 'In how many season Meera Reed appears?', '[{\"right\":true,\"text\":\"3\"},{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"2\"}]', 1), (2086, 'What is the nickname of Dalbridge?', '[{\"right\":false,\"text\":\"Lucamore the Lusty\"},{\"right\":true,\"text\":\"Squire Dalbridge\"}]', 1), (2087, 'On which planet was Greedo born ?', '[{\"right\":false,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Polis Massa\"},{\"right\":false,\"text\":\"Dathomir\"},{\"right\":true,\"text\":\"Rodia\"}]', 2), (2088, 'How heavy is Luminara Unduli ? (in kg)', '[{\"right\":false,\"text\":\"102\"},{\"right\":false,\"text\":\"136\"},{\"right\":false,\"text\":\"80\"},{\"right\":true,\"text\":\"56.2\"}]', 2), (2089, 'On which planet was Gasgano born ?', '[{\"right\":false,\"text\":\"Shili\"},{\"right\":true,\"text\":\"Troiken\"},{\"right\":false,\"text\":\"Rodia\"},{\"right\":false,\"text\":\"Ord Mantell\"}]', 2), (2090, 'In how many Star Wars movies appeared Plo Koon ?', '[{\"right\":false,\"text\":2},{\"right\":true,\"text\":3},{\"right\":false,\"text\":5},{\"right\":false,\"text\":1}]', 2), (2091, 'In how many season Lysa Arryn appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":true,\"text\":\"2\"}]', 1), (2092, 'In how many Star Wars movies appeared Kit Fisto ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":2},{\"right\":true,\"text\":3},{\"right\":false,\"text\":6}]', 2), (2093, 'What is the nickname of Bowen Marsh?', '[{\"right\":false,\"text\":\"The Slayer\"},{\"right\":true,\"text\":\"Old Pomegranate\"},{\"right\":false,\"text\":\"The King in the Narrow Sea\"}]', 1), (2094, 'What is the nickname of Dick Follard?', '[{\"right\":false,\"text\":\"Boros the Belly\"},{\"right\":true,\"text\":\"Deaf Dick Follard\"}]', 1), (2095, 'Who is leading the \"House Hunter of Longbow Hall\"?', '[{\"right\":false,\"text\":\"Bowen Marsh\"},{\"right\":false,\"text\":\"Brandon Stark\"},{\"right\":false,\"text\":\"Dorna Swyft\"},{\"right\":true,\"text\":\"Gilwood Hunter\"}]', 1), (2096, 'In how many Star Wars movies appeared Bib Fortuna ?', '[{\"right\":false,\"text\":2},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":5}]', 2), (2097, 'Who is leading the \"House Hetherspoon\"?', '[{\"right\":false,\"text\":\"Grenn\"},{\"right\":true,\"text\":\"Tybolt Hetherspoon\"}]', 1), (2098, 'How tall is Zam Wesell ? (in cm)', '[{\"right\":false,\"text\":\"170\"},{\"right\":false,\"text\":\"167\"},{\"right\":false,\"text\":\"183\"},{\"right\":true,\"text\":\"168\"}]', 2), (2099, 'Who is leading the \"House Baratheon of Dragonstone\"?', '[{\"right\":true,\"text\":\"Stannis Baratheon\"},{\"right\":false,\"text\":\"Frankyln Fowler\"},{\"right\":false,\"text\":\"Albar Royce\"},{\"right\":false,\"text\":\"Andrew Estermont\"}]', 1), (2100, 'How heavy is Darth Maul ? (in kg)', '[{\"right\":false,\"text\":\"45\"},{\"right\":false,\"text\":\"32\"},{\"right\":true,\"text\":\"80\"},{\"right\":false,\"text\":\"90\"}]', 2), (2101, 'How tall is Nute Gunray ? (in cm)', '[{\"right\":false,\"text\":\"183\"},{\"right\":false,\"text\":\"180\"},{\"right\":false,\"text\":\"193\"},{\"right\":true,\"text\":\"191\"}]', 2), (2102, 'How heavy is Lando Calrissian ? (in kg)', '[{\"right\":false,\"text\":\"1,358\"},{\"right\":false,\"text\":\"82\"},{\"right\":true,\"text\":\"79\"},{\"right\":false,\"text\":\"55\"}]', 2), (2103, 'In how many Star Wars movies appeared Quarsh Panaka ?', '[{\"right\":false,\"text\":7},{\"right\":false,\"text\":2},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3}]', 2), (2104, 'In how many Star Wars movies appeared Ki-Adi-Mundi ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":true,\"text\":3}]', 2), (2105, 'Who is leading the \"House Goodbrother of Shatterstone\"?', '[{\"right\":false,\"text\":\"Bass\"},{\"right\":true,\"text\":\"Norne Goodbrother\"},{\"right\":false,\"text\":\"Betha Blackwood\"}]', 1), (2106, 'On which planet was Gregar Typho born ?', '[{\"right\":false,\"text\":\"Stewjon\"},{\"right\":false,\"text\":\"Dantooine\"},{\"right\":true,\"text\":\"Naboo\"},{\"right\":false,\"text\":\"Polis Massa\"}]', 2), (2107, 'Who is leading the \"House Dalt of Lemonwood\"?', '[{\"right\":false,\"text\":\"Eldred Codd\"},{\"right\":true,\"text\":\"Deziel Dalt\"}]', 1), (2108, 'In how many Star Wars movies the planet Quermia has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":1},{\"right\":false,\"text\":5},{\"right\":true,\"text\":0}]', 2), (2109, 'In how many Star Wars movies appeared Lama Su ?', '[{\"right\":false,\"text\":6},{\"right\":false,\"text\":4},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2}]', 2), (2110, 'On which planet was Owen Lars born ?', '[{\"right\":true,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Troiken\"},{\"right\":false,\"text\":\"Mustafar\"},{\"right\":false,\"text\":\"Mirial\"}]', 2), (2111, 'What is the title of Star Wars episode 5 ?', '[{\"right\":false,\"text\":\"Return of the Jedi\"},{\"right\":false,\"text\":\"The Phantom Menace\"},{\"right\":true,\"text\":\"The Empire Strikes Back\"},{\"right\":false,\"text\":\"Attack of the Clones\"}]', 2), (2112, 'Who directed Star Wars - Attack of the Clones ?', '[{\"right\":true,\"text\":\"George Lucas\"},{\"right\":false,\"text\":\"J. J. Abrams\"},{\"right\":false,\"text\":\"Richard Marquand\"},{\"right\":false,\"text\":\"Irvin Kershner\"}]', 2), (2113, 'On which planet was Darth Maul born ?', '[{\"right\":false,\"text\":\"Zolan\"},{\"right\":false,\"text\":\"Champala\"},{\"right\":true,\"text\":\"Dathomir\"},{\"right\":false,\"text\":\"Iridonia\"}]', 2), (2114, 'How tall is R2-D2 ? (in cm)', '[{\"right\":true,\"text\":\"96\"},{\"right\":false,\"text\":\"198\"},{\"right\":false,\"text\":\"167\"},{\"right\":false,\"text\":\"66\"}]', 2), (2115, 'How tall is Tion Medon ? (in cm)', '[{\"right\":true,\"text\":\"206\"},{\"right\":false,\"text\":\"228\"},{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"171\"}]', 2), (2116, 'What is the nickname of Ben Bushy?', '[{\"right\":true,\"text\":\"Big Ben\"},{\"right\":false,\"text\":\"Edgerran the Open-Handed\"},{\"right\":false,\"text\":\"Toregg the Tall\"},{\"right\":false,\"text\":\"Randa\"}]', 1), (2117, 'In how many Star Wars movies the planet Champala has appeared ?', '[{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":false,\"text\":2},{\"right\":true,\"text\":0}]', 2), (2118, 'How tall is C-3PO ? (in cm)', '[{\"right\":false,\"text\":\"150\"},{\"right\":false,\"text\":\"96\"},{\"right\":true,\"text\":\"167\"},{\"right\":false,\"text\":\"193\"}]', 2), (2119, 'How heavy is Plo Koon ? (in kg)', '[{\"right\":false,\"text\":\"50\"},{\"right\":false,\"text\":\"56.2\"},{\"right\":false,\"text\":\"84\"},{\"right\":true,\"text\":\"80\"}]', 2), (2120, 'How heavy is Yoda ? (in kg)', '[{\"right\":false,\"text\":\"20\"},{\"right\":false,\"text\":\"75\"},{\"right\":true,\"text\":\"17\"},{\"right\":false,\"text\":\"80\"}]', 2), (2121, 'Which language does the Gungan species speak ?', '[{\"right\":false,\"text\":\"Kaminoan\"},{\"right\":false,\"text\":\"besalisk\"},{\"right\":true,\"text\":\"Gungan basic\"},{\"right\":false,\"text\":\"Chagria\"}]', 2), (2122, 'Who is leading the \"House Errol of Haystack Hall\"?', '[{\"right\":false,\"text\":\"Alys Arryn\"},{\"right\":false,\"text\":\"Beron Blacktyde\"},{\"right\":true,\"text\":\"Sebastion Errol\"}]', 1), (2123, 'In how many Star Wars movies appeared San Hill ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2}]', 2), (2124, 'How tall is Cordé ? (in cm)', '[{\"right\":false,\"text\":\"160\"},{\"right\":false,\"text\":\"170\"},{\"right\":true,\"text\":\"157\"},{\"right\":false,\"text\":\"229\"}]', 2), (2125, 'What is the title of Star Wars episode 3 ?', '[{\"right\":true,\"text\":\"Revenge of the Sith\"},{\"right\":false,\"text\":\"Return of the Jedi\"},{\"right\":false,\"text\":\"The Phantom Menace\"},{\"right\":false,\"text\":\"The Empire Strikes Back\"}]', 2), (2126, 'Which language does the Twi\'lek species speak ?', '[{\"right\":false,\"text\":\"Quermian\"},{\"right\":false,\"text\":\"Iktotchese\"},{\"right\":true,\"text\":\"Twi\'leki\"},{\"right\":false,\"text\":\"Xextese\"}]', 2), (2127, 'Who is leading the \"House Caron of Nightsong\"?', '[{\"right\":true,\"text\":\"Rolland Storm\"},{\"right\":false,\"text\":\"Aglantine\"},{\"right\":false,\"text\":\"Edwyn Frey\"}]', 1), (2128, 'How heavy is Lama Su ? (in kg)', '[{\"right\":false,\"text\":\"80\"},{\"right\":true,\"text\":\"88\"},{\"right\":false,\"text\":\"50\"},{\"right\":false,\"text\":\"48\"}]', 2), (2129, 'On which planet was Tion Medon born ?', '[{\"right\":true,\"text\":\"Utapau\"},{\"right\":false,\"text\":\"Eriadu\"},{\"right\":false,\"text\":\"Kalee\"},{\"right\":false,\"text\":\"Socorro\"}]', 2), (2130, 'What is the nickname of Aegon Targaryen?', '[{\"right\":true,\"text\":\"Young Griff\"},{\"right\":false,\"text\":\"Arya Horseface\"}]', 1), (2131, 'In how many Star Wars movies the planet Naboo has appeared ?', '[{\"right\":true,\"text\":4},{\"right\":false,\"text\":3},{\"right\":false,\"text\":5},{\"right\":false,\"text\":1}]', 2), (2132, 'On which planet was Lando Calrissian born ?', '[{\"right\":true,\"text\":\"Socorro\"},{\"right\":false,\"text\":\"Dagobah\"},{\"right\":false,\"text\":\"Troiken\"},{\"right\":false,\"text\":\"Toydaria\"}]', 2), (2133, 'How tall is Mace Windu ? (in cm)', '[{\"right\":false,\"text\":\"180\"},{\"right\":true,\"text\":\"188\"},{\"right\":false,\"text\":\"137\"},{\"right\":false,\"text\":\"170\"}]', 2), (2134, 'In how many Star Wars movies appeared Taun We ?', '[{\"right\":false,\"text\":5},{\"right\":true,\"text\":1},{\"right\":false,\"text\":2},{\"right\":false,\"text\":3}]', 2), (2135, 'How heavy is Ben Quadinaros ? (in kg)', '[{\"right\":false,\"text\":\"113\"},{\"right\":true,\"text\":\"65\"},{\"right\":false,\"text\":\"90\"},{\"right\":false,\"text\":\"45\"}]', 2), (2136, 'On which planet was Ben Quadinaros born ?', '[{\"right\":false,\"text\":\"Endor\"},{\"right\":false,\"text\":\"Yavin IV\"},{\"right\":true,\"text\":\"Tund\"},{\"right\":false,\"text\":\"Haruun Kal\"}]', 2), (2137, 'Which language does the Chagrian species speak ?', '[{\"right\":false,\"text\":\"Ewokese\"},{\"right\":false,\"text\":\"n\\/a\"},{\"right\":true,\"text\":\"Chagria\"},{\"right\":false,\"text\":\"Twi\'leki\"}]', 2), (2138, 'Who is leading the \"House Kenning of Kayce\"?', '[{\"right\":false,\"text\":\"Deana Hardyng\"},{\"right\":false,\"text\":\"Alyn Estermont\"},{\"right\":true,\"text\":\"Terrence Kenning\"}]', 1), (2139, 'In how many Star Wars movies the planet Iktotch has appeared ?', '[{\"right\":false,\"text\":3},{\"right\":false,\"text\":4},{\"right\":false,\"text\":1},{\"right\":true,\"text\":0}]', 2), (2140, 'Who is leading the \"House Darry of Darry\"?', '[{\"right\":false,\"text\":\"Della Frey\"},{\"right\":false,\"text\":\"Alysanne Osgrey\"},{\"right\":true,\"text\":\"Mariya Darry\"}]', 1), (2141, 'What is the nickname of Daemon II Blackfyre?', '[{\"right\":true,\"text\":\"Ser John the Fiddler\"},{\"right\":false,\"text\":\"The waif\"},{\"right\":false,\"text\":\"Toregg the Tall\"},{\"right\":false,\"text\":\"Pate the Plowman\"}]', 1), (2142, 'On which planet was Adi Gallia born ?', '[{\"right\":false,\"text\":\"Bespin\"},{\"right\":false,\"text\":\"Ojom\"},{\"right\":true,\"text\":\"Coruscant\"},{\"right\":false,\"text\":\"Cato Neimoidia\"}]', 2), (2143, 'In how many Star Wars movies appeared Wilhuff Tarkin ?', '[{\"right\":false,\"text\":1},{\"right\":false,\"text\":3},{\"right\":true,\"text\":2},{\"right\":false,\"text\":4}]', 2), (2144, 'In how many Star Wars movies appeared IG-88 ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":2},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3}]', 2), (2145, 'What is the nickname of Addam Velaryon?', '[{\"right\":true,\"text\":\"Addam of Hull\"},{\"right\":false,\"text\":\"The Bloody Maester\"}]', 1), (2146, 'How heavy is Mace Windu ? (in kg)', '[{\"right\":false,\"text\":\"77\"},{\"right\":true,\"text\":\"84\"},{\"right\":false,\"text\":\"20\"},{\"right\":false,\"text\":\"80\"}]', 2), (2147, 'Which language does the Yoda\'s species species speak ?', '[{\"right\":false,\"text\":\"Iktotchese\"},{\"right\":false,\"text\":\"Neimoidia\"},{\"right\":false,\"text\":\"Xextese\"},{\"right\":true,\"text\":\"Galactic basic\"}]', 2), (2148, 'How tall is Dormé ? (in cm)', '[{\"right\":true,\"text\":\"165\"},{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"216\"},{\"right\":false,\"text\":\"183\"}]', 2), (2149, 'In how many season Joffrey Baratheon appears?', '[{\"right\":false,\"text\":\"7\"},{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"3\"}]', 1), (2150, 'Which language does the Clawdite species speak ?', '[{\"right\":false,\"text\":\"Neimoidia\"},{\"right\":true,\"text\":\"Clawdite\"},{\"right\":false,\"text\":\"Ewokese\"},{\"right\":false,\"text\":\"Nautila\"}]', 2), (2151, 'How tall is Sebulba ? (in cm)', '[{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"202\"},{\"right\":true,\"text\":\"112\"},{\"right\":false,\"text\":\"229\"}]', 2), (2152, 'Who is leading the \"House Connington of Griffin\'s Roost\"?', '[{\"right\":false,\"text\":\"Alan\"},{\"right\":false,\"text\":\"Alys Karstark\"},{\"right\":true,\"text\":\"Jon Connington\"}]', 1), (2153, 'Which language does the Wookiee species speak ?', '[{\"right\":false,\"text\":\"Clawdite\"},{\"right\":false,\"text\":\"Iktotchese\"},{\"right\":false,\"text\":\"Galactic basic\"},{\"right\":true,\"text\":\"Shyriiwook\"}]', 2), (2154, 'On which planet was Cliegg Lars born ?', '[{\"right\":true,\"text\":\"Tatooine\"},{\"right\":false,\"text\":\"Saleucami\"},{\"right\":false,\"text\":\"Toydaria\"},{\"right\":false,\"text\":\"Felucia\"}]', 2), (2155, 'What is the nickname of Daena Targaryen?', '[{\"right\":true,\"text\":\"Daena the Defiant\"},{\"right\":false,\"text\":\"Baelor the Beloved\"},{\"right\":false,\"text\":\"Old Pomegranate\"}]', 1), (2156, 'What is the nickname of Brandon Stark?', '[{\"right\":true,\"text\":\"The Wild Wolf\"},{\"right\":false,\"text\":\"Blue Bard\"}]', 1), (2157, 'How tall is Darth Maul ? (in cm)', '[{\"right\":false,\"text\":\"198\"},{\"right\":false,\"text\":\"206\"},{\"right\":false,\"text\":\"183\"},{\"right\":true,\"text\":\"175\"}]', 2), (2158, 'How heavy is Boba Fett ? (in kg)', '[{\"right\":false,\"text\":\"79\"},{\"right\":false,\"text\":\"45\"},{\"right\":true,\"text\":\"78.2\"},{\"right\":false,\"text\":\"66\"}]', 2), (2159, 'In how many season Myrcella Baratheon appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"5\"},{\"right\":true,\"text\":\"4\"},{\"right\":false,\"text\":\"6\"}]', 1), (2160, 'In how many Star Wars movies the planet Jakku has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":4},{\"right\":false,\"text\":3},{\"right\":true,\"text\":1}]', 2), (2161, 'In how many season Anya Waynwood appears?', '[{\"right\":true,\"text\":\"1\"},{\"right\":false,\"text\":\"7\"}]', 1), (2162, 'How heavy is Luke Skywalker ? (in kg)', '[{\"right\":false,\"text\":\"45\"},{\"right\":true,\"text\":\"77\"},{\"right\":false,\"text\":\"80\"},{\"right\":false,\"text\":\"75\"}]', 2), (2163, 'How tall is Ki-Adi-Mundi ? (in cm)', '[{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"216\"},{\"right\":true,\"text\":\"198\"},{\"right\":false,\"text\":\"188\"}]', 2), (2164, 'In how many Star Wars movies appeared Captain Phasma ?', '[{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":6}]', 2), (2165, 'How tall is Wilhuff Tarkin ? (in cm)', '[{\"right\":true,\"text\":\"180\"},{\"right\":false,\"text\":\"150\"},{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"177\"}]', 2), (2166, 'Which language does the Togruta species speak ?', '[{\"right\":false,\"text\":\"Utapese\"},{\"right\":false,\"text\":\"Mirialan\"},{\"right\":false,\"text\":\"n\\/a\"},{\"right\":true,\"text\":\"Togruti\"}]', 2), (2167, 'In how many season Eddison Tollet appears?', '[{\"right\":true,\"text\":\"5\"},{\"right\":false,\"text\":\"6\"}]', 1), (2168, 'In how many Star Wars movies appeared Palpatine ?', '[{\"right\":false,\"text\":2},{\"right\":false,\"text\":3},{\"right\":false,\"text\":1},{\"right\":true,\"text\":5}]', 2), (2169, 'On which planet was BB8 born ?', '[{\"right\":false,\"text\":\"Mygeeto\"},{\"right\":false,\"text\":\"Bestine IV\"},{\"right\":true,\"text\":\"unknown\"},{\"right\":false,\"text\":\"Ord Mantell\"}]', 2), (2170, 'What is the nickname of Daemon Targaryen?', '[{\"right\":false,\"text\":\"Quickfinger\"},{\"right\":false,\"text\":\"Manfryd o\' the Black Hood\"},{\"right\":true,\"text\":\"Prince of the City\"},{\"right\":false,\"text\":\"the rabbit keeper\"}]', 1), (2171, 'How tall is Gasgano ? (in cm)', '[{\"right\":false,\"text\":\"165\"},{\"right\":false,\"text\":\"96\"},{\"right\":true,\"text\":\"122\"},{\"right\":false,\"text\":\"234\"}]', 2), (2172, 'How tall is Beru Whitesun lars ? (in cm)', '[{\"right\":false,\"text\":\"191\"},{\"right\":false,\"text\":\"264\"},{\"right\":true,\"text\":\"165\"},{\"right\":false,\"text\":\"97\"}]', 2), (2173, 'Who is leading the \"House Farwynd of the Lonely Light\"?', '[{\"right\":true,\"text\":\"Gylbert Farwynd\"},{\"right\":false,\"text\":\"Ben Bushy\"},{\"right\":false,\"text\":\"Eustace Osgrey\"},{\"right\":false,\"text\":\"Donella Hornwood\"}]', 1), (2174, 'In how many Star Wars movies the planet Bespin has appeared ?', '[{\"right\":false,\"text\":2},{\"right\":true,\"text\":1},{\"right\":false,\"text\":3},{\"right\":false,\"text\":4}]', 2), (2175, 'In how many season Tyrion Lannister appears?', '[{\"right\":false,\"text\":\"3\"},{\"right\":false,\"text\":\"0\"},{\"right\":true,\"text\":\"6\"}]', 1), (2176, 'Who is leading the \"House Chester of Greenshield\"?', '[{\"right\":false,\"text\":\"Brandon Tallhart\"},{\"right\":true,\"text\":\"Moribald Chester\"},{\"right\":false,\"text\":\"Chayle\"},{\"right\":false,\"text\":\"Aegon I\"}]', 1), (2177, 'Who is leading the \"House Grimm of Greyshield\"?', '[{\"right\":true,\"text\":\"Guthor Grimm\"},{\"right\":false,\"text\":\"Brandon Stark\"},{\"right\":false,\"text\":\"Gilwood Hunter\"},{\"right\":false,\"text\":\"Crake\"}]', 1), (2178, 'How tall is Ackbar ? (in cm)', '[{\"right\":true,\"text\":\"180\"},{\"right\":false,\"text\":\"224\"},{\"right\":false,\"text\":\"188\"},{\"right\":false,\"text\":\"216\"}]', 2), (2179, 'In how many Star Wars movies appeared Luke Skywalker ?', '[{\"right\":true,\"text\":5},{\"right\":false,\"text\":3},{\"right\":false,\"text\":2},{\"right\":false,\"text\":1}]', 2), (2180, 'Who is leading the \"House Blackwood of Raventree Hall\"?', '[{\"right\":true,\"text\":\"Tytos Blackwood\"},{\"right\":false,\"text\":\"Alester Norcross\"},{\"right\":false,\"text\":\"Benfrey Frey\"}]', 1), (2181, 'In how many season Roslin Frey appears?', '[{\"right\":false,\"text\":\"4\"},{\"right\":false,\"text\":\"5\"},{\"right\":true,\"text\":\"1\"}]', 1), (2182, 'What is the nickname of Bennis?', '[{\"right\":false,\"text\":\"Lommy Greenhands\"},{\"right\":true,\"text\":\"Bennis of the Brown Shield\"},{\"right\":false,\"text\":\"The King in the Narrow Sea\"}]', 1); -- -------------------------------------------------------- -- -- Structure de la table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `username` varchar(255) NOT NULL, `progression` varchar(1024) NOT NULL DEFAULT '{"type_1": "0", "type_2": "0"}', `password` varchar(255) NOT NULL, `unlocked_badges` varchar(1024) NOT NULL DEFAULT '[]' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Contenu de la table `users` -- INSERT INTO `users` (`id`, `username`, `progression`, `password`, `unlocked_badges`) VALUES (7, 'test', '{\"type_1\":\"7\", \"type_2\": \"9\"}', '81dc9bdb52d04dc20036dbd8313ed055', '[0, 25, 50]'); -- -- Index pour les tables exportées -- -- -- Index pour la table `questions` -- ALTER TABLE `questions` ADD PRIMARY KEY (`id`); -- -- Index pour la table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT pour les tables exportées -- -- -- AUTO_INCREMENT pour la table `questions` -- ALTER TABLE `questions` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2183; -- -- AUTO_INCREMENT pour la table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
175.688862
273
0.555034
3750a5451109e98fb3f14c41e3b382c2ddb8b26a
7,113
swift
Swift
Puzzle15/Managers/TilesManager.swift
cybersamx/ios-puzzle15
c1ee6b447cf09a122c5cc459b1ec5887da46ebd1
[ "MIT" ]
null
null
null
Puzzle15/Managers/TilesManager.swift
cybersamx/ios-puzzle15
c1ee6b447cf09a122c5cc459b1ec5887da46ebd1
[ "MIT" ]
null
null
null
Puzzle15/Managers/TilesManager.swift
cybersamx/ios-puzzle15
c1ee6b447cf09a122c5cc459b1ec5887da46ebd1
[ "MIT" ]
null
null
null
// // TilesManager.swift // Puzzle15 // // Created by Samuel Chow on 7/23/18. // Copyright © 2018 Samuel Chow. All rights reserved. // import Foundation import UIKit func sqrtInt(_ x: Int) -> Int { return Int(sqrt(Double(x))) } class TilesManager { // Configuration. var count: Int // Number of tiles // State variables var tiles: [Tile] = [] var completeImage: UIImage? = nil // Number of tiles per row var gridWidth: Int { return sqrtInt(count) } // Assumes a NxN init(count: Int) { self.count = count } // MARK: - Private image helper fucntions private func cropToSquare(image: UIImage) -> UIImage { // Due to the DPI, we need to convert a CG image and reconvert back to a UIImage to get the correct // width and height. For example: the actual image size is 32x32, so the image object reads 32x32 while // context image reads 64x64 if the higher res image is loaded to a device screen supporting retina. // See: https://stackoverflow.com/questions/32041420/cropping-image-with-swift-and-put-it-on-center-position let cgImage = image.cgImage! let contextImage = UIImage(cgImage: cgImage) let contextSize = contextImage.size var targetX, targetY, targetWidth, targetHeight: CGFloat // Determine the origin to move the image and readjust the size if contextSize.width > contextSize.height { targetX = ((contextSize.width - contextSize.height) / 2) targetY = 0 targetWidth = contextSize.height targetHeight = contextSize.height } else { targetX = 0 targetY = ((contextSize.height - contextSize.width) / 2) targetWidth = contextSize.width targetHeight = contextSize.width } let rect = CGRect(x: targetX, y: targetY, width: targetWidth, height: targetHeight) // Create a bitmap image with the cropped size and then recreate a new UIImage let targetCGImage = cgImage.cropping(to: rect)! let targetImage = UIImage(cgImage: targetCGImage, scale: 1.0, orientation: image.imageOrientation) return targetImage } private func crop(image: UIImage, rect: CGRect) -> UIImage { let cgImage = image.cgImage! let targetCGImage = cgImage.cropping(to: rect)! let targetImage = UIImage(cgImage: targetCGImage, scale: image.scale, orientation: image.imageOrientation) return targetImage } private func sliceImage(image: UIImage, rows: Int, columns: Int) -> [UIImage] { // Crop the big image into a square image let croppedImage = cropToSquare(image: image) let colLength: CGFloat = croppedImage.size.width/CGFloat(columns) let rowLength: CGFloat = croppedImage.size.height/CGFloat(rows) var slicedImages = [UIImage]() for i in 0..<rows { for j in 0..<columns { let rect = CGRect(x: CGFloat(j)*colLength, y: CGFloat(i)*rowLength, width: colLength, height: rowLength) let slicedImage = crop(image: croppedImage, rect: rect) slicedImages.append(slicedImage) } } return slicedImages } // Suffle the tiles until we get a solvable set func shuffle() { repeat { // Shuffle the tiles tiles.shuffle() // Reindex the current indices for i in 0..<tiles.count { tiles[i].currentIndex = i } } while !TilesManager.isSolvable(tiles: tiles) } // MARK: - Class functions // Credits: // 1. Algorithm based on https://www.cs.bham.ac.uk/~mdr/teaching/modules04/java2/TilesSolvability.html // 2. Code modified from https://stackoverflow.com/questions/34570344/check-if-15-puzzle-is-solvable static func isSolvable(tiles: [Tile]) -> Bool { // Algorithm assumes NxN grid but we pass a 1-dimension serialized array representing // the puzzle var parity = 0 let gridWith = sqrtInt(tiles.count) var row = 0 // The current row we are on var blankRow = 0 // The row with the blank tile for i in 0..<tiles.count { if (i % gridWith == 0) { // Advance to the next row row += 1 } if tiles[i].isEmpty { // The blank tile blankRow = row continue } if i+1 >= tiles.count { continue } for j in i+1..<tiles.count { if !tiles[i].isEmpty && !tiles[j].isEmpty && tiles[i].index > tiles[j].index { parity += 1 } } } if gridWith % 2 == 0 { // Even gird if blankRow % 2 == 0 { // Blank on odd row, counting from bottom return parity % 2 == 0 } else { // Blank on even row, counting from bottom return parity % 2 != 0 } } else { // Odd grid return parity % 2 == 0 } } // MARK: - Instance functions func loadAndSliceImage(image: UIImage, toShuffle: Bool = true) { // Crop the image. let slicedImages = sliceImage(image: image, rows: gridWidth, columns: gridWidth) // Initialize the array of tiles tiles.removeAll() for i in 0..<count { if i < count-1 { tiles.append(Tile(index: i, image: slicedImages[i])) } else { tiles.append(Tile(index: i)) } } // Shuffle the tiles if toShuffle { shuffle() } } // Given a tile index, get an array of indices that are adjacent to the tile func indicesAdjacentTo(index: Int) -> [Int] { var adjacentIndices: [Int] = [] let foundTile: Tile? = tiles.first { (testTile) -> Bool in return testTile.index == index } guard let tile = foundTile else { return adjacentIndices } // Check left. if ((tile.index + 1) % gridWidth) != 1 { adjacentIndices.append(tile.index - 1) } // Check top. if (tile.index + 1) > gridWidth { adjacentIndices.append(tile.index - gridWidth) } // Check right. if ((tile.index + 1) % gridWidth) != 0 { adjacentIndices.append(tile.index + 1) } // Check bottom. if (tile.index + 1) < (count - gridWidth + 1) { adjacentIndices.append(tile.index + gridWidth) } return adjacentIndices } func getEmptyTile() -> Tile? { let emptyTile = tiles.first { (testTile) -> Bool in return testTile.isEmpty } return emptyTile } func moveToEmptyTile(from: Tile) -> Bool { // Sanity check to make sure that the tile is adjacent to empty tile guard let emptyTile = getEmptyTile() else { return false } let indices = indicesAdjacentTo(index: emptyTile.currentIndex) if !indices.contains(from.currentIndex) { return false } // Move the tile to the empty tile tiles.swapAt(emptyTile.currentIndex, from.currentIndex) let tmpIndex = emptyTile.currentIndex emptyTile.currentIndex = from.currentIndex from.currentIndex = tmpIndex return true } func isComplete() -> Bool { for i in 0..<tiles.count { // The indices should be sequential, matching the array index if i != tiles[i].index { return false } } return true } }
27.677043
112
0.62449
aa20cabcc9852f1a14cf894a0efa4e0f3af07bc3
244
lua
Lua
wow7.0/oUF_OrbsConfig/focus.lua
bailingzhl/rothui
fc2a07b7e62572b8c6b1a9a6a12d86620e670705
[ "MIT" ]
118
2015-08-22T19:02:45.000Z
2022-03-14T04:21:17.000Z
wow7.0/oUF_OrbsConfig/focus.lua
Allenhorst/rothui
cecb35dddb3caffb7c18aa1762722a30b4f10caa
[ "MIT" ]
63
2015-08-22T19:05:26.000Z
2020-07-13T21:05:28.000Z
wow7.0/oUF_OrbsConfig/focus.lua
Allenhorst/rothui
cecb35dddb3caffb7c18aa1762722a30b4f10caa
[ "MIT" ]
74
2015-09-27T08:01:15.000Z
2022-02-04T19:08:37.000Z
-- oUF_OrbsConfig: focus -- zork, 2018 ----------------------------- -- Variables ----------------------------- local A, L = ... ----------------------------- -- Focus Config ----------------------------- L.C.focus = { enabled = false, }
14.352941
29
0.29918
bc7ff1c658bea6dc8229591ef60b09540eba9cb0
2,069
dart
Dart
examples/github_client/lib/filter/filter.dart
p69/flip_flop
e4617e795d8b52d55c552ceb2da485a951b632b2
[ "MIT" ]
117
2018-05-16T04:21:12.000Z
2022-03-27T02:58:35.000Z
examples/github_client/lib/filter/filter.dart
p69/flip_flop
e4617e795d8b52d55c552ceb2da485a951b632b2
[ "MIT" ]
21
2018-08-20T06:57:46.000Z
2021-11-14T09:09:03.000Z
examples/github_client/lib/filter/filter.dart
p69/flip_flop
e4617e795d8b52d55c552ceb2da485a951b632b2
[ "MIT" ]
22
2018-08-04T04:41:47.000Z
2021-12-17T10:40:49.000Z
library filter; import 'package:dartea/dartea.dart'; import 'package:flutter/material.dart'; import 'package:github_client/api.dart'; import 'package:github_client/helpers/router.dart'; import 'package:github_client/trending/trending.dart'; part 'filter_state.dart'; part 'filter_view.dart'; class LanguagesFilterWidget extends StatelessWidget { final DarteaStorageKey darteaKey; const LanguagesFilterWidget({Key key, this.darteaKey}) : super(key: key); @override Widget build(BuildContext context) { return ProgramWidget( key: darteaKey, init: _init, update: (msg, model) => _update(msg, model, Router(Navigator.of(context))), view: _view, withDebugTrace: true, ); } } /// **** Model **** /// class LanguagesFilterModel { final List<Language> items; final Language selectedItem; final TrendingPeriod selectedPeriod; LanguagesFilterModel({this.items, this.selectedItem, this.selectedPeriod}); factory LanguagesFilterModel.init() => LanguagesFilterModel( items: [], selectedItem: Language.All, selectedPeriod: TrendingPeriod.weekly); LanguagesFilterModel copyWith( {List<Language> items, Language selectedItem, TrendingPeriod selectedPeriod}) { return LanguagesFilterModel( items: items ?? this.items, selectedItem: selectedItem ?? this.selectedItem, selectedPeriod: selectedPeriod ?? this.selectedPeriod, ); } } /// **** Messages **** /// abstract class LanguagesFilterMsg {} class LoadLanguagesList implements LanguagesFilterMsg {} class OnLanguagesListLoaded implements LanguagesFilterMsg { final List<Language> langs; OnLanguagesListLoaded(this.langs); } class OnLanguagesTapped implements LanguagesFilterMsg { final Language lang; OnLanguagesTapped(this.lang); } class OnAllLanguagesTappedMsg implements LanguagesFilterMsg {} class OnPeriodTapped implements LanguagesFilterMsg { final TrendingPeriod period; OnPeriodTapped(this.period); }
27.959459
85
0.713388
dd3dcf3a750ca8cf33ed2952c9228019372b757e
1,617
go
Go
vendor/k8s.io/kubernetes/pkg/proxy/healthcheck/http.go
MarkDeMaria/origin
da8083ad7d4a5f27525a18ab5a450b4405b84d6e
[ "Apache-2.0" ]
173
2015-10-21T20:24:52.000Z
2021-09-22T08:30:32.000Z
vendor/k8s.io/kubernetes/pkg/proxy/healthcheck/http.go
MarkDeMaria/origin
da8083ad7d4a5f27525a18ab5a450b4405b84d6e
[ "Apache-2.0" ]
455
2015-07-28T11:14:25.000Z
2018-06-20T14:10:35.000Z
vendor/k8s.io/kubernetes/pkg/proxy/healthcheck/http.go
MarkDeMaria/origin
da8083ad7d4a5f27525a18ab5a450b4405b84d6e
[ "Apache-2.0" ]
90
2015-08-26T15:52:13.000Z
2021-05-19T12:19:34.000Z
/* Copyright 2016 The Kubernetes Authors. 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. */ package healthcheck import ( "fmt" "net/http" "github.com/golang/glog" ) // A healthCheckHandler serves http requests on /healthz on the service health check node port, // and responds to every request with either: // 200 OK and the count of endpoints for the given service that are local to this node. // or // 503 Service Unavailable If the count is zero or the service does not exist type healthCheckHandler struct { svcNsName string } // HTTP Utility function to send the required statusCode and error text to a http.ResponseWriter object func sendHealthCheckResponse(rw http.ResponseWriter, statusCode int, error string) { rw.Header().Set("Content-Type", "text/plain") rw.WriteHeader(statusCode) fmt.Fprint(rw, error) } // ServeHTTP: Interface callback method for net.Listener Handlers func (h healthCheckHandler) ServeHTTP(response http.ResponseWriter, req *http.Request) { glog.V(4).Infof("Received HC Request Service %s from Cloud Load Balancer", h.svcNsName) healthchecker.handleHealthCheckRequest(response, h.svcNsName) }
34.404255
103
0.779839
dfc331b31ac1be55a90eeaf43a13dcff7360e465
1,419
tsx
TypeScript
src/components/ErrorBoundary/ReportButton/index.tsx
nionis99/intercom
97c61da90c44dfede90f63fcd9e611ede90bc8db
[ "Apache-2.0" ]
null
null
null
src/components/ErrorBoundary/ReportButton/index.tsx
nionis99/intercom
97c61da90c44dfede90f63fcd9e611ede90bc8db
[ "Apache-2.0" ]
null
null
null
src/components/ErrorBoundary/ReportButton/index.tsx
nionis99/intercom
97c61da90c44dfede90f63fcd9e611ede90bc8db
[ "Apache-2.0" ]
null
null
null
import React, { useState } from 'react'; import { useTranslation } from 'react-i18next'; import { Report } from '@styled-icons/material-rounded'; import Button from 'react-bootstrap/Button'; import Modal from 'react-bootstrap/Modal'; import FeedbackForm from 'components/ErrorBoundary/ReportForm'; interface Props { eventId: string; redirectToHomepage: () => void; } const ReportButton = ({ redirectToHomepage, eventId }: Props) => { const { t } = useTranslation(); const [isModalOpen, setModalOpen] = useState<boolean>(false); if (!process.env.REACT_APP_SENTRY_FEEDBACK_PATH) { return null; } const closeModal = () => setModalOpen(false); return ( <> <Button variant="outline-danger" className="mx-2" onClick={() => setModalOpen(!isModalOpen)}> <Report className="mr-1" size={20} /> {t('report')} </Button> <Modal show={isModalOpen} onHide={() => setModalOpen(!isModalOpen)} centered> <Modal.Header className="d-flex flex-column align-items-center"> <h5 className="text-center">{t('internal_issues_label')}</h5> <small className="text-center">{t('feedback_form_suggestion_label')}</small> </Modal.Header> <Modal.Body> <FeedbackForm redirectToHomepage={redirectToHomepage} eventId={eventId} closeModal={closeModal} /> </Modal.Body> </Modal> </> ); }; export default ReportButton;
32.25
108
0.665257
c12c9c017256552ebe7f33933b79d0c2b38f60f8
1,365
rs
Rust
tests/number_literals.rs
DoNotDoughnut/rhai
83648f36bea5c787df2996d7bb736306c467cb0e
[ "Apache-2.0", "MIT" ]
null
null
null
tests/number_literals.rs
DoNotDoughnut/rhai
83648f36bea5c787df2996d7bb736306c467cb0e
[ "Apache-2.0", "MIT" ]
null
null
null
tests/number_literals.rs
DoNotDoughnut/rhai
83648f36bea5c787df2996d7bb736306c467cb0e
[ "Apache-2.0", "MIT" ]
null
null
null
use quad_compat_rhai::{Engine, EvalAltResult, INT}; #[test] fn test_number_literal() -> Result<(), Box<EvalAltResult>> { let engine = Engine::new(); assert_eq!(engine.eval::<INT>("42")?, 42); #[cfg(not(feature = "no_object"))] assert_eq!( engine.eval::<String>("42.type_of()")?, if cfg!(feature = "only_i32") { "i32" } else { "i64" } ); Ok(()) } #[test] fn test_hex_literal() -> Result<(), Box<EvalAltResult>> { let engine = Engine::new(); assert_eq!(engine.eval::<INT>("let x = 0xf; x")?, 15); assert_eq!(engine.eval::<INT>("let x = 0Xf; x")?, 15); assert_eq!(engine.eval::<INT>("let x = 0xff; x")?, 255); Ok(()) } #[test] fn test_octal_literal() -> Result<(), Box<EvalAltResult>> { let engine = Engine::new(); assert_eq!(engine.eval::<INT>("let x = 0o77; x")?, 63); assert_eq!(engine.eval::<INT>("let x = 0O77; x")?, 63); assert_eq!(engine.eval::<INT>("let x = 0o1234; x")?, 668); Ok(()) } #[test] fn test_binary_literal() -> Result<(), Box<EvalAltResult>> { let engine = Engine::new(); assert_eq!(engine.eval::<INT>("let x = 0b1111; x")?, 15); assert_eq!(engine.eval::<INT>("let x = 0B1111; x")?, 15); assert_eq!( engine.eval::<INT>("let x = 0b0011_1100_1010_0101; x")?, 15525 ); Ok(()) }
23.947368
64
0.542125
df814329d8d07f9e1171d9b030aa68a221d6f00e
552
dart
Dart
movie/test/helpers/test_helper.dart
attalariq123/flutter-movie-database-app
9fd42b87e3ccc50e334997f2715d30bfc605c76a
[ "Apache-2.0" ]
18
2022-01-05T11:48:19.000Z
2022-03-27T19:07:07.000Z
movie/test/helpers/test_helper.dart
attalariq123/flutter-movie-database-app
9fd42b87e3ccc50e334997f2715d30bfc605c76a
[ "Apache-2.0" ]
25
2022-01-07T01:57:45.000Z
2022-03-14T05:14:21.000Z
movie/test/helpers/test_helper.dart
attalariq123/flutter-movie-database-app
9fd42b87e3ccc50e334997f2715d30bfc605c76a
[ "Apache-2.0" ]
11
2022-01-06T14:00:35.000Z
2022-03-31T03:33:35.000Z
import 'package:http/http.dart' as http; import 'package:mockito/annotations.dart'; import 'package:movie/data/datasources/db/movie_database_helper.dart'; import 'package:movie/data/datasources/movie_local_data_source.dart'; import 'package:movie/data/datasources/movie_remote_data_source.dart'; import 'package:movie/domain/repositories/movie_repository.dart'; @GenerateMocks([ MovieRepository, MovieRemoteDataSource, MovieLocalDataSource, MovieDatabaseHelper, ], customMocks: [ MockSpec<http.Client>(as: #MockHttpClient) ]) void main() {}
32.470588
70
0.804348
a7ca5d70fb3184d45c8ad417012d26f2bd09d12d
751
asm
Assembly
oeis/204/A204090.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/204/A204090.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/204/A204090.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A204090: The number of 1 X n Haunted Mirror Maze puzzles with a unique solution where mirror orientation is fixed. ; Submitted by Jamie Morken(s2) ; 1,2,8,34,134,498,1786,6274,21778,75074,257762,882946,3020354,10323714,35270530,120467458,411394306,1404773378,4796567042,16377245698,55916897282,190915194882,651831179266,2225502715906,7598365282306,25942489251842,88573293551618,302408329920514,1032487001014274,3525131881086978,12035554596061186,41091956769554434,140296722181062658,479002983775076354,1635418507918049282,5583668098481782786,19063835446810509314,65088005727717425154,222224352292126588930,758721398262827319298 lpb $0 sub $0,1 mul $1,2 mul $2,2 add $1,$2 add $3,1 add $2,$3 add $3,$2 lpe add $1,$2 mov $0,$1 add $0,1
44.176471
480
0.816245
7776dd1823cb995ffbcdd56eabfaf714c2d0f63b
2,636
html
HTML
src/pages/status/status.html
CASAN-TH/bitebite
e39793562eb7370ebfe8ef3bfec219d2c5464c4e
[ "MIT" ]
null
null
null
src/pages/status/status.html
CASAN-TH/bitebite
e39793562eb7370ebfe8ef3bfec219d2c5464c4e
[ "MIT" ]
1
2021-03-09T21:45:44.000Z
2021-03-09T21:45:44.000Z
src/pages/status/status.html
CASAN-TH/bitebite
e39793562eb7370ebfe8ef3bfec219d2c5464c4e
[ "MIT" ]
null
null
null
<ion-header> <ion-navbar color="bite"> <ion-buttons start *ngIf="user && user.profileImageURL"> <button ion-button clear (click)="goToProfile()"> <ion-avatar class="avatar-profile"> <preload-image class="preload-profile-image" [ratio]="{w:1, h:1}" [src]="user.profileImageURL" [isIcon]="true"></preload-image> </ion-avatar> </button> </ion-buttons> <ion-title>{{ 'STATUS' | translate }}</ion-title> </ion-navbar> </ion-header> <ion-content> <ion-refresher (ionRefresh)="doRefresh($event)"> <ion-refresher-content pullingIcon="arrow-down" pullingText="{{ 'PULL_TO_REFRESH' | translate }}" refreshingSpinner="dots" refreshingText="{{ 'REFRESHING' | translate }}"></ion-refresher-content> </ion-refresher> <!-- <search-input></search-input> --> <ion-list> <ion-item (click)="gotoDetail()"> <ion-row> <ion-col no-padding> <p>09 มีนาคม 2561 12:00 น.</p> </ion-col> </ion-row> <ion-row> <ion-col no-padding> <p>No. BB001</p> </ion-col> <ion-col no-padding text-right> <h2>500 ฿</h2> </ion-col> </ion-row> <ion-row> <ion-col no-padding> <h5>ร้านละมุนภัณฑ์</h5> </ion-col> <ion-col no-padding text-right> <h5 class="paid">ชำระเงินปลายทาง</h5> </ion-col> </ion-row> </ion-item> <ion-item (click)="gotoDetail()"> <ion-row> <ion-col no-padding> <p>09 มีนาคม 2561 16:00 น.</p> </ion-col> </ion-row> <ion-row> <ion-col no-padding> <p>No. BB002</p> </ion-col> <ion-col no-padding text-right> <h2>1500 ฿</h2> </ion-col> </ion-row> <ion-row> <ion-col no-padding> <h5>ร้านละมุนภัณฑ์</h5> </ion-col> <ion-col no-padding text-right> <h5 class="paid">ชำระเงินด้วยบัตรเครดิต</h5> </ion-col> </ion-row> </ion-item> <ion-item (click)="gotoDetail()"> <ion-row> <ion-col no-padding> <p>09 มีนาคม 2561 20:00 น.</p> </ion-col> </ion-row> <ion-row> <ion-col no-padding> <p>No. BB003</p> </ion-col> <ion-col no-padding text-right> <h2>700 ฿</h2> </ion-col> </ion-row> <ion-row> <ion-col no-padding> <h5>ร้านละมุนภัณฑ์</h5> </ion-col> <ion-col no-padding text-right> <h5 class="paid">ชำระเงินปลายทาง</h5> </ion-col> </ion-row> </ion-item> </ion-list> </ion-content>
27.747368
137
0.508346
3e94a4416bd074f40103ffe68e3d833394d1a84e
2,197
h
C
ReactNativeFrontend/ios/Pods/Flipper-RSocket/rsocket/ConnectionAcceptor.h
Harshitha91/Tmdb-react-native-node
e06e3f25a7ee6946ef07a1f524fdf62e48424293
[ "Apache-2.0" ]
217
2017-04-29T14:44:39.000Z
2022-03-29T04:06:17.000Z
ReactNativeFrontend/ios/Pods/Flipper-RSocket/rsocket/ConnectionAcceptor.h
Harshitha91/Tmdb-react-native-node
e06e3f25a7ee6946ef07a1f524fdf62e48424293
[ "Apache-2.0" ]
270
2017-04-28T04:12:23.000Z
2022-03-11T20:39:33.000Z
ReactNativeFrontend/ios/Pods/Flipper-RSocket/rsocket/ConnectionAcceptor.h
Harshitha91/Tmdb-react-native-node
e06e3f25a7ee6946ef07a1f524fdf62e48424293
[ "Apache-2.0" ]
83
2017-04-28T02:06:16.000Z
2022-03-11T20:35:16.000Z
// Copyright (c) Facebook, Inc. and its affiliates. // // 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. #pragma once #include <folly/Optional.h> #include "rsocket/DuplexConnection.h" namespace folly { class EventBase; } namespace rsocket { using OnDuplexConnectionAccept = std::function< void(std::unique_ptr<rsocket::DuplexConnection>, folly::EventBase&)>; /** * Common interface for a server that accepts connections and turns them into * DuplexConnection. * * This is primarily used with RSocket::createServer(ConnectionAcceptor) * * Built-in implementations can be found in rsocket/transports/, such as * rsocket/transports/TcpConnectionAcceptor.h */ class ConnectionAcceptor { public: ConnectionAcceptor() = default; virtual ~ConnectionAcceptor() = default; ConnectionAcceptor(const ConnectionAcceptor&) = delete; ConnectionAcceptor(ConnectionAcceptor&&) = delete; ConnectionAcceptor& operator=(const ConnectionAcceptor&) = delete; ConnectionAcceptor& operator=(ConnectionAcceptor&&) = delete; /** * Allocate/start required resources (threads, sockets, etc) and begin * listening for new connections. Must be synchronous. * * This can only be called once. */ virtual void start(OnDuplexConnectionAccept) = 0; /** * Stop listening for new connections. * * This can only be called once. Must be called in or before * the implementation's destructor. Must be synchronous. */ virtual void stop() = 0; /** * Get the port the acceptor is listening on. Returns folly::none when the * acceptor is not listening. */ virtual folly::Optional<uint16_t> listeningPort() const = 0; }; } // namespace rsocket
30.09589
77
0.731907
e8282522eae79c0cbbe7483dcbd3dbfa2c97e242
1,026
hpp
C++
antlr4cpp/antlr/v4/runtime/atn/atn_deserialization_options.hpp
antlr/antlr4-cpp
20b0421010863d6c2644bbc89cf027f90834784d
[ "BSD-3-Clause" ]
77
2015-05-12T07:02:07.000Z
2022-03-12T01:06:28.000Z
antlr4cpp/antlr/v4/runtime/atn/atn_deserialization_options.hpp
seanwallawalla-forks/antlr4-cpp
20b0421010863d6c2644bbc89cf027f90834784d
[ "BSD-3-Clause" ]
6
2015-09-28T01:36:32.000Z
2021-12-19T15:44:21.000Z
antlr4cpp/antlr/v4/runtime/atn/atn_deserialization_options.hpp
seanwallawalla-forks/antlr4-cpp
20b0421010863d6c2644bbc89cf027f90834784d
[ "BSD-3-Clause" ]
48
2015-05-13T17:53:20.000Z
2022-03-12T01:09:43.000Z
// Copyright (c) Terence Parr, Sam Harwell. Licensed under the BSD license. See LICENSE in the project root for license information. #pragma once namespace antlr4 { namespace atn { class atn_deserialization_options { private: bool _verify_atn; bool _generate_rule_bypass_transitions; bool _optimize; public: atn_deserialization_options() : _verify_atn(true) , _generate_rule_bypass_transitions(false) , _optimize(true) { } public: static atn_deserialization_options default_options() { return atn_deserialization_options(); } public: bool verify_atn() const { return _verify_atn; } void verify_atn(bool value) { _verify_atn = value; } bool generate_rule_bypass_transitions() const { return _generate_rule_bypass_transitions; } void generate_rule_bypass_transitions(bool value) { _generate_rule_bypass_transitions = value; } bool optimize() const { return _optimize; } void optimize(bool value) { _optimize = value; } }; } }
16.548387
132
0.723197
874a93e2740f88e032e58966aec3c19b0988122e
969
html
HTML
manuscript/page-750/body.html
marvindanig/broken-to-harness
67aaa4734392557da1916eec71bbf4d3bf34adaa
[ "BlueOak-1.0.0", "CC-BY-4.0", "Unlicense" ]
null
null
null
manuscript/page-750/body.html
marvindanig/broken-to-harness
67aaa4734392557da1916eec71bbf4d3bf34adaa
[ "BlueOak-1.0.0", "CC-BY-4.0", "Unlicense" ]
null
null
null
manuscript/page-750/body.html
marvindanig/broken-to-harness
67aaa4734392557da1916eec71bbf4d3bf34adaa
[ "BlueOak-1.0.0", "CC-BY-4.0", "Unlicense" ]
null
null
null
<div class="leaf flex"><div class="inner justify"><p class="no-indent ">and as he spoke he struck the palm of his hand with the handle of his hunting-whip in an unmistakably vicious manner. "Dunno waät's coom to her to-day," he continued, after a pause; "haven't set eyes on her all the morning. Hasn't been in t'yard, hasn't been in t'staäbles, hasn't moved out of t'house."</p><p>This latter part of Freeman's speech seemed to arouse Mr. Simnel's fading attention; he looked up sharply, and said,</p><p>"Not been out of the house all the morning! what does that mean? Who was here yesterday?"</p><p>"Yesterday," said the old man slowly considering; "there were Sandcrack coom oop about Telegram's navicular,—no more navicular than I am; nowt but a sprain;—and Wallis from Wethers's wi' a pair o' job grays; and old Mr. Isaacson as tried some pheayton 'osses; and—"</p><p class=" stretch-last-line ">"Yes, yes," said Mr. Simnel; "no young man; no one</p></div> </div>
969
969
0.731682
56c020ff3ab56bbcb26c120a3fa1e72c90a84263
337
tsx
TypeScript
src/index.tsx
zsajjad/react-native-mathematics
a60cb4b62d5e06a4506fc2877344371b5243da9e
[ "MIT" ]
1
2021-08-12T16:19:52.000Z
2021-08-12T16:19:52.000Z
src/index.tsx
zsajjad/react-native-mathematics
a60cb4b62d5e06a4506fc2877344371b5243da9e
[ "MIT" ]
null
null
null
src/index.tsx
zsajjad/react-native-mathematics
a60cb4b62d5e06a4506fc2877344371b5243da9e
[ "MIT" ]
null
null
null
import { NativeModules } from 'react-native'; type MathematicsType = { calculate( formulae: Record< string, { formula: string; values: Record<string, number>; } > ): Promise<Record<string, number>>; }; const { Mathematics } = NativeModules; export default Mathematics as MathematicsType;
18.722222
46
0.635015
802b4c22cb497eaaf3c92671a8f6e2532b8b28e9
3,933
swift
Swift
Sources/TuistEnvKit/Installer/Installer.swift
ryantstone/tuist
057d96fe54be7428729e6da3ade76f827d4f5353
[ "MIT" ]
1
2021-09-17T12:50:04.000Z
2021-09-17T12:50:04.000Z
Sources/TuistEnvKit/Installer/Installer.swift
ryantstone/tuist
057d96fe54be7428729e6da3ade76f827d4f5353
[ "MIT" ]
null
null
null
Sources/TuistEnvKit/Installer/Installer.swift
ryantstone/tuist
057d96fe54be7428729e6da3ade76f827d4f5353
[ "MIT" ]
null
null
null
import Foundation import RxBlocking import TSCBasic import TuistSupport /// Protocol that defines the interface of an instance that can install versions of Tuist. protocol Installing: AnyObject { /// It installs a version of Tuist in the local environment. /// /// - Parameters: /// - version: Version to be installed. /// - Throws: An error if the installation fails. func install(version: String) throws } /// Error thrown by the installer. /// /// - versionNotFound: When the specified version cannot be found. /// - incompatibleSwiftVersion: When the environment Swift version is incompatible with the Swift version Tuist has been compiled with. enum InstallerError: FatalError, Equatable { case versionNotFound(String) case incompatibleSwiftVersion(local: String, expected: String) var type: ErrorType { switch self { case .versionNotFound: return .abort case .incompatibleSwiftVersion: return .abort } } var description: String { switch self { case let .versionNotFound(version): return "Version \(version) not found" case let .incompatibleSwiftVersion(local, expected): return "Found \(local) Swift version but expected \(expected)" } } static func == (lhs: InstallerError, rhs: InstallerError) -> Bool { switch (lhs, rhs) { case let (.versionNotFound(lhsVersion), .versionNotFound(rhsVersion)): return lhsVersion == rhsVersion case let (.incompatibleSwiftVersion(lhsLocal, lhsExpected), .incompatibleSwiftVersion(rhsLocal, rhsExpected)): return lhsLocal == rhsLocal && lhsExpected == rhsExpected default: return false } } } /// Class that manages the installation of Tuist versions. final class Installer: Installing { // MARK: - Attributes let buildCopier: BuildCopying let versionsController: VersionsControlling let googleCloudStorageClient: GoogleCloudStorageClienting // MARK: - Init init(buildCopier: BuildCopying = BuildCopier(), versionsController: VersionsControlling = VersionsController(), googleCloudStorageClient: GoogleCloudStorageClienting = GoogleCloudStorageClient()) { self.buildCopier = buildCopier self.versionsController = versionsController self.googleCloudStorageClient = googleCloudStorageClient } // MARK: - Installing func install(version: String) throws { try withTemporaryDirectory { temporaryDirectory in try install(version: version, temporaryDirectory: temporaryDirectory) } } func install(version: String, temporaryDirectory: AbsolutePath) throws { let bundleURL: URL? = try googleCloudStorageClient.tuistBundleURL(version: version).toBlocking().first() ?? nil if let bundleURL = bundleURL { try installFromBundle(bundleURL: bundleURL, version: version, temporaryDirectory: temporaryDirectory) } } func installFromBundle(bundleURL: URL, version: String, temporaryDirectory: AbsolutePath) throws { try versionsController.install(version: version, installation: { installationDirectory in // Download bundle logger.notice("Downloading version \(version)") let downloadPath = temporaryDirectory.appending(component: Constants.bundleName) try System.shared.run("/usr/bin/curl", "-LSs", "--output", downloadPath.pathString, bundleURL.absoluteString) // Unzip logger.notice("Installing...") try System.shared.run("/usr/bin/unzip", "-q", downloadPath.pathString, "-d", installationDirectory.pathString) logger.notice("Version \(version) installed") }) } }
36.082569
135
0.661836
b9a1087f08210527cc768d92ba440fea0eaf4ce6
471
swift
Swift
Cards/Sources/Cards/Model/Suit.swift
Oliver-Binns/cards
9c44c048f43122778395f5e75426215aad934bd2
[ "MIT" ]
2
2022-01-30T05:45:01.000Z
2022-02-03T08:12:30.000Z
Cards/Sources/Cards/Model/Suit.swift
Oliver-Binns/cards
9c44c048f43122778395f5e75426215aad934bd2
[ "MIT" ]
null
null
null
Cards/Sources/Cards/Model/Suit.swift
Oliver-Binns/cards
9c44c048f43122778395f5e75426215aad934bd2
[ "MIT" ]
null
null
null
public enum Suit: String, CaseIterable, Equatable, Codable { case spades case clubs case diamonds case hearts } extension Suit: Comparable { public static func < (lhs: Suit, rhs: Suit) -> Bool { lhs.compareValue < rhs.compareValue } private var compareValue: Int { switch self { case .spades: return 0 case .hearts: return 1 case .clubs: return 2 case .diamonds: return 3 } } }
22.428571
60
0.59448
75fd29b46bfb44d8145f91e425ec4085d1f336dd
2,301
java
Java
app/src/main/java/com/lfork/a98620/lfree/main/myinfo/MyInfoFragmentViewModel.java
dongzhixuanyuan/E_business
3ec52bf65d6dfc6d902d0d98d1f9e84b41d9c893
[ "Apache-2.0" ]
16
2019-05-22T08:24:25.000Z
2022-03-13T15:22:14.000Z
app/src/main/java/com/lfork/a98620/lfree/main/myinfo/MyInfoFragmentViewModel.java
dongzhixuanyuan/E_business
3ec52bf65d6dfc6d902d0d98d1f9e84b41d9c893
[ "Apache-2.0" ]
3
2018-04-23T11:59:15.000Z
2018-06-18T05:16:53.000Z
app/src/main/java/com/lfork/a98620/lfree/main/myinfo/MyInfoFragmentViewModel.java
dongzhixuanyuan/E_business
3ec52bf65d6dfc6d902d0d98d1f9e84b41d9c893
[ "Apache-2.0" ]
4
2019-02-25T04:02:36.000Z
2020-01-08T02:53:22.000Z
package com.lfork.a98620.lfree.main.myinfo; import android.text.TextUtils; import com.lfork.a98620.lfree.base.viewmodel.UserViewModel; import com.lfork.a98620.lfree.data.DataSource; import com.lfork.a98620.lfree.data.base.entity.User; import com.lfork.a98620.lfree.data.user.UserDataRepository; import com.lfork.a98620.lfree.main.MainActivity; import com.lfork.a98620.lfree.base.Config; /** * Created by 98620 on 2018/4/5. */ public class MyInfoFragmentViewModel extends UserViewModel { private MyInfoFragmentNavigator navigator; MyInfoFragmentViewModel(MainActivity context) { super(context); } private void getUserInfo() { UserDataRepository repository = UserDataRepository.INSTANCE; repository.getUserInfo(new DataSource.GeneralCallback<User>() { @Override public void succeed(User data) { setUser(data); } @Override public void failed(String log) { showToast(log); } },repository.getUserId()); } private void setUser(User user){ username.set(user.getUserName()); if (TextUtils.isEmpty(user.getUserDesc())) { description.set("该用户还没有自我介绍...."); } else { description.set(user.getUserDesc()); } imageUrl.set(Config.ServerURL + "/image" + user.getUserImagePath()); } public void onQuit() { if (navigatorIsNotNull()) { navigator.logoff(); } } public void openSettings() { if(navigatorIsNotNull()){ navigator.openSettings(); } } public void openUserInfoDetail() { if(navigatorIsNotNull()){ navigator.openUserInfoDetail(); } } public void openMyGoods() { if(navigatorIsNotNull()){ navigator.openMyGoods(); } } private boolean navigatorIsNotNull(){ return navigator != null; } public void setNavigator(MyInfoFragmentNavigator navigator) { super.setNavigator(navigator); this.navigator = navigator; } @Override public void start() { getUserInfo(); } @Override public void onDestroy() { super.onDestroy(); navigator = null; } }
23.721649
76
0.613646
b30218f0f4ed80498f2dd1ba328298092342b2c4
2,924
swift
Swift
Sources/ModelsSTU3/CodeSystemUsageContextType.swift
GrandLarseny/FHIRModels
d4acbcf08376af10d20c1df808e6f943d2033912
[ "Apache-2.0" ]
117
2020-06-26T17:12:32.000Z
2022-03-20T18:34:05.000Z
Sources/ModelsSTU3/CodeSystemUsageContextType.swift
GrandLarseny/FHIRModels
d4acbcf08376af10d20c1df808e6f943d2033912
[ "Apache-2.0" ]
14
2020-06-30T14:55:50.000Z
2022-03-18T20:30:19.000Z
Sources/ModelsSTU3/CodeSystemUsageContextType.swift
GrandLarseny/FHIRModels
d4acbcf08376af10d20c1df808e6f943d2033912
[ "Apache-2.0" ]
24
2020-08-19T15:48:58.000Z
2022-03-26T11:20:14.000Z
// // CodeSystems.swift // HealthRecords // // Generated from FHIR 3.0.1.11917 // Copyright 2020 Apple 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 FMCore /** A code that specifies a type of context being specified by a usage context URL: http://hl7.org/fhir/usage-context-type ValueSet: http://hl7.org/fhir/ValueSet/usage-context-type */ public enum UsageContextType: String, FHIRPrimitiveType { /// The gender of the patient. For this context type, the value should be a code taken from the /// http://hl7.org/fhir/ValueSet/administrative-gender value set case gender = "gender" /// The age of the patient. For this context type, the value should be a range the specifies the applicable ages or /// a code from the MeSH value set http://hl7.org/fhir/ValueSet/v3-AgeGroupObservationValue case age = "age" /// The clinical concept(s) addressed by the artifact. For example, disease, diagnostic test interpretation, /// medication ordering as in http://hl7.org/fhir/ValueSet/condition-code. case focus = "focus" /// The clinical specialty of the context in which the patient is being treated - For example, PCP, Patient, /// Cardiologist, Behavioral Professional, Oral Health Professional, Prescriber, etc... taken from the NUCC Health /// Care provider taxonomy value set http://hl7.org/fhir/ValueSet/provider-taxonomy. case user = "user" /// The settings in which the artifact is intended for use. For example, admission, pre-op, etc. For example, the /// ActEncounterCode value set http://hl7.org/fhir/ValueSet/v3-ActEncounterCode case workflow = "workflow" /// The context for the clinical task(s) represented by this artifact. Can be any task context represented by the /// HL7 ActTaskCode value set http://hl7.org/fhir/ValueSet/v3-ActTaskCode. General categories include: order entry, /// patient documentation and patient information review. case task = "task" /// The venue in which an artifact could be used. For example, Outpatient, Inpatient, Home, Nursing home. The code /// value may originate from either the HL7 ActEncounterCode http://hl7.org/fhir/ValueSet/v3-ActEncounterCode or /// NUCC non-individual provider codes http://hl7.org/fhir/ValueSet/provider-taxonomy case venue = "venue" /// The species to which an artifact applies. For example, SNOMED - 387961004 | Kingdom Animalia (organism). case species = "species" }
45.6875
116
0.74487
4d223d945b8587b2555bdf03eb603d148a8f0b21
3,526
lua
Lua
resources/[FAROESTE]/[SYSTEM]/frp_jail/server/main.lua
redharlow2614/frp-lua-rdr3
29c8595dd55a318576f970ef34d234e6c7645c84
[ "MIT" ]
null
null
null
resources/[FAROESTE]/[SYSTEM]/frp_jail/server/main.lua
redharlow2614/frp-lua-rdr3
29c8595dd55a318576f970ef34d234e6c7645c84
[ "MIT" ]
null
null
null
resources/[FAROESTE]/[SYSTEM]/frp_jail/server/main.lua
redharlow2614/frp-lua-rdr3
29c8595dd55a318576f970ef34d234e6c7645c84
[ "MIT" ]
1
2021-12-15T03:30:41.000Z
2021-12-15T03:30:41.000Z
local Tunnel = module("_core", "lib/Tunnel") local Proxy = module("_core", "lib/Proxy") API = Proxy.getInterface("API") cAPI = Tunnel.getInterface("API") RegisterCommand( "jail", function(source, args, rawCommand) local User = API.getUserFromSource(source) local Character = User:getCharacter() if Character:hasGroup("police") or Character:hasGroup("admin") and args[1] then if args[1] then print(API.getUserFromUserId(tonumber(args[1])):getSource()) TriggerEvent('FRP:JAIL:sendToJail', API.getUserFromUserId(tonumber(args[1])):getSource(), tonumber(args[2] * 60)) end end end ) RegisterCommand( "unjail", function(source, args, rawCommand) local User = API.getUserFromSource(source) local Character = User:getCharacter() if Character:hasGroup("police") or Character:hasGroup("admin") and args[1] then if args[1] then TriggerEvent('FRP:JAIL:unjailQuest', API.getUserFromUserId(tonumber(args[1])):getSource()) end end end ) -- send to jail and register in database RegisterServerEvent('FRP:JAIL:sendToJail') AddEventHandler('FRP:JAIL:sendToJail', function(target, jailTime) local User = API.getUserFromSource(target) local Character = User:getCharacter() local nome = Character:getName() TriggerClientEvent('FRP:JAIL:jail', User, jailTime) local check = Character:getJail(Character:getId()) if check == '' then Character:setJail(Character:getId(), jailTime) TriggerClientEvent('FRP:JAIL:jail', User, tonumber(jailTime)) else Character:updJail(Character:getId(), jailTime) TriggerClientEvent('FRP:JAIL:jail', User, json.encode(check[1].jail_time)) end print(nome .. ' foi preso por ' .. jailTime) end) -- should the player be in jail? RegisterServerEvent('FRP:JAIL:checkJail') AddEventHandler('FRP:JAIL:checkJail', function() local _source = source local User = API.getUserFromSource(_source) local Character = User:getCharacter() if Character == nil then return end local nome = Character:getName() local check = Character:getJail(Character:getId()) if check ~= '' then TriggerClientEvent('FRP:JAIL:jail', _source, tonumber(check[1].jail_time)) end end) -- unjail via command RegisterServerEvent('FRP:JAIL:unjailQuest') AddEventHandler('FRP:JAIL:unjailQuest', function(source) if source ~= nil then unjail(source) end end) -- unjail after time served RegisterServerEvent('FRP:JAIL:unjailTime') AddEventHandler('FRP:JAIL:unjailTime', function() unjail(source) end) RegisterServerEvent('FRP:JAIL:updateRemaining') AddEventHandler('FRP:JAIL:updateRemaining', function(jailTime) local _source = source local User = API.getUserFromSource(_source) local Character = User:getCharacter() local nome = Character:getName() Character:updJail(Character:getId(), jailTime) end) function unjail(target) local _source = target local User = API.getUserFromSource(_source) local Character = User:getCharacter() local nome = Character:getName() Character:remJail(Character:getId()) -- TriggerClientEvent('chat:addMessage', -1, { args = { _U('judge'), _U('unjailed', GetPlayerName(target)) }, color = { 147, 196, 109 } }) cAPI.SetPedModel(User:getSource(), json.decode(Character:getModel())) Wait(1000) cAPI.setDados(User:getSource(), Character:getmetaData()) Wait(500) cAPI.SetPedClothinges(User:getSource(), Character:getClothes()) TriggerClientEvent('FRP:JAIL:unjail', target) print(nome .. ' was released ') end
27.984127
138
0.719229
f29930c3e233c4169f21418d395708311b1d293d
4,932
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0x48.log_21829_816.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0x48.log_21829_816.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0x48.log_21829_816.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r8 push %r9 push %rbx push %rdx push %rsi lea addresses_normal_ht+0x13777, %rsi nop and $62283, %rbx mov $0x6162636465666768, %r11 movq %r11, %xmm3 vmovups %ymm3, (%rsi) nop xor %r8, %r8 lea addresses_normal_ht+0x14eb7, %r9 add $52504, %rdx movups (%r9), %xmm1 vpextrq $0, %xmm1, %r10 nop nop nop nop dec %r9 lea addresses_UC_ht+0xf6b7, %rdx clflush (%rdx) nop nop nop sub $4904, %r10 mov $0x6162636465666768, %rsi movq %rsi, %xmm2 movups %xmm2, (%rdx) nop nop nop nop nop inc %r9 pop %rsi pop %rdx pop %rbx pop %r9 pop %r8 pop %r11 pop %r10 ret .global s_faulty_load s_faulty_load: push %r10 push %r13 push %r8 push %r9 push %rbx push %rcx push %rdx // Store lea addresses_UC+0x36b7, %r10 clflush (%r10) nop nop nop nop nop sub %r13, %r13 movw $0x5152, (%r10) nop nop nop nop nop sub $8051, %r9 // Faulty Load lea addresses_UC+0x36b7, %r10 nop nop nop cmp $23351, %r8 mov (%r10), %bx lea oracles, %rcx and $0xff, %rbx shlq $12, %rbx mov (%rcx,%rbx,1), %rbx pop %rdx pop %rcx pop %rbx pop %r9 pop %r8 pop %r13 pop %r10 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_UC', 'AVXalign': False, 'congruent': 0, 'size': 1, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'AVXalign': False, 'congruent': 0, 'size': 2, 'same': True, 'NT': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_UC', 'AVXalign': True, 'congruent': 0, 'size': 2, 'same': True, 'NT': False}} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'AVXalign': False, 'congruent': 4, 'size': 32, 'same': False, 'NT': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_normal_ht', 'AVXalign': False, 'congruent': 11, 'size': 16, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'AVXalign': False, 'congruent': 10, 'size': 16, 'same': False, 'NT': False}} {'52': 21829} 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 */
44.035714
2,999
0.660787
c54099e5eb58a54c80c6a3246ed2d1f88ce26b2c
1,546
cpp
C++
example/private-claims.cpp
mind-owner/jwt-cpp
9d1a010fea3ed3293112edec9745dc435a85a849
[ "MIT" ]
null
null
null
example/private-claims.cpp
mind-owner/jwt-cpp
9d1a010fea3ed3293112edec9745dc435a85a849
[ "MIT" ]
7
2020-12-24T01:55:59.000Z
2022-01-30T05:59:42.000Z
example/private-claims.cpp
mind-owner/jwt-cpp
9d1a010fea3ed3293112edec9745dc435a85a849
[ "MIT" ]
1
2020-02-16T12:53:10.000Z
2020-02-16T12:53:10.000Z
#include <jwt-cpp/jwt.h> #include <iostream> #include <sstream> using sec = std::chrono::seconds; using min = std::chrono::minutes; int main() { jwt::claim from_raw_json; std::istringstream iss{R"##({"api":{"array":[1,2,3],"null":null}})##"}; iss >> from_raw_json; jwt::claim::set_t list{"once", "twice"}; std::vector<int64_t> big_numbers{727663072ULL, 770979831ULL, 427239169ULL, 525936436ULL}; const auto time = jwt::date::clock::now(); const auto token = jwt::create() .set_type("JWT") .set_issuer("auth.mydomain.io") .set_audience("mydomain.io") .set_issued_at(time) .set_not_before(time + sec{15}) .set_expires_at(time + sec{15} + min{2}) .set_payload_claim("boolean", picojson::value(true)) .set_payload_claim("integer", picojson::value(int64_t{12345})) .set_payload_claim("precision", picojson::value(12.345)) .set_payload_claim("strings", jwt::claim(list)) .set_payload_claim("array", jwt::claim(big_numbers.begin(), big_numbers.end())) .set_payload_claim("object", from_raw_json) .sign(jwt::algorithm::none{}); const auto decoded = jwt::decode(token); const auto api_array = decoded.get_payload_claims()["object"].to_json().get("api").get("array"); std::cout << "api array = " << api_array << std::endl; jwt::verify() .allow_algorithm(jwt::algorithm::none{}) .with_issuer("auth.mydomain.io") .with_audience("mydomain.io") .with_claim("object", from_raw_json) .verify(decoded); return 0; }
32.893617
97
0.651358
5057864bc5d42882a5ba3c6a527b252b33fd550e
277
html
HTML
test.html
MujurID/smanega
da0293b256ac3dac74e7adadbbd416ca03697116
[ "CC-BY-3.0" ]
null
null
null
test.html
MujurID/smanega
da0293b256ac3dac74e7adadbbd416ca03697116
[ "CC-BY-3.0" ]
null
null
null
test.html
MujurID/smanega
da0293b256ac3dac74e7adadbbd416ca03697116
[ "CC-BY-3.0" ]
null
null
null
<div data-video="wF57YRbxzlU" data-autoplay="1" data-loop="1" id="youtube-audio"> </div> <script src="https://www.youtube.com/iframe_api"></script> <script src="https://cdn.rawgit.com/labnol/files/master/yt.js"></script>
39.571429
74
0.570397
bc846973cd7c377b352945b638505c5218fedcdd
4,176
sql
SQL
backend/de.metas.handlingunits.base/src/main/sql/postgresql/system/5462431_cli_gh1502_DropM_HU_PI_Item_Product_For_NoHU_Fixed_2.sql
dram/metasfresh
a1b881a5b7df8b108d4c4ac03082b72c323873eb
[ "RSA-MD" ]
1,144
2016-02-14T10:29:35.000Z
2022-03-30T09:50:41.000Z
backend/de.metas.handlingunits.base/src/main/sql/postgresql/system/5462431_cli_gh1502_DropM_HU_PI_Item_Product_For_NoHU_Fixed_2.sql
vestigegroup/metasfresh
4b2d48c091fb2a73e6f186260a06c715f5e2fe96
[ "RSA-MD" ]
8,283
2016-04-28T17:41:34.000Z
2022-03-30T13:30:12.000Z
backend/de.metas.handlingunits.base/src/main/sql/postgresql/system/5462431_cli_gh1502_DropM_HU_PI_Item_Product_For_NoHU_Fixed_2.sql
vestigegroup/metasfresh
4b2d48c091fb2a73e6f186260a06c715f5e2fe96
[ "RSA-MD" ]
441
2016-04-29T08:06:07.000Z
2022-03-28T06:09:56.000Z
drop table if exists PIP_ToDelete; create temporary table PIP_ToDelete as select * from M_HU_PI_Item_Product pip where exists (select * from M_HU_PI_Item i where i.M_HU_PI_Item_ID=pip.M_HU_PI_Item_ID and i.M_HU_PI_Version_ID=100); UPDATE M_ProductPrice SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE C_Order SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE C_OrderLine SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); -- UPDATE M_InOutLine SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_InOutLine SET M_HU_PI_Item_Product_Override_ID = 101 WHERE M_HU_PI_Item_Product_Override_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_InOutLine SET M_HU_PI_Item_Product_Calculated_ID = 101 WHERE M_HU_PI_Item_Product_Calculated_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); -- UPDATE M_InventoryLine SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE C_InvoiceLine SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE DD_OrderLine SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); -- UPDATE M_ShipmentSchedule SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_ShipmentSchedule SET M_HU_PI_Item_Product_Override_ID = 101 WHERE M_HU_PI_Item_Product_Override_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_ShipmentSchedule SET M_HU_PI_Item_Product_Calculated_ID = 101 WHERE M_HU_PI_Item_Product_Calculated_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); -- UPDATE C_OLCand SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_HU SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_ProductPrice_Attribute SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_ReceiptSchedule SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); -- UPDATE EDI_M_HU_PI_Item_Product_Lookup_UPC_v SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_HU_LUTU_Configuration SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE C_Invoice_Detail SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE M_HU_Snapshot SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE PMM_PurchaseCandidate SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE PMM_QtyReport_Event SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE PMM_Product SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE PMM_WeekReport_Event SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE PMM_Week SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); UPDATE PMM_Balance SET M_HU_PI_Item_Product_ID = 101 WHERE M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete); delete from M_HU_PI_Item_Product pip where M_HU_PI_Item_Product_ID in (select M_HU_PI_Item_Product_ID from PIP_ToDelete);
90.782609
167
0.869971
cc386fc35ded5775612395713ac395545eeff783
481
swift
Swift
WooKeyWallet/Extension/NSMutableString + Ext.swift
WookeyWallet/wookey-wallet-ios-app
e78c1f722ec36f0e0b8dc14977bcebbf2babf753
[ "MIT" ]
10
2019-04-15T09:40:08.000Z
2019-05-24T08:13:48.000Z
WooKeyWallet/Extension/NSMutableString + Ext.swift
WookeyWallet/wookey-wallet-ios-app
e78c1f722ec36f0e0b8dc14977bcebbf2babf753
[ "MIT" ]
3
2020-01-22T02:57:58.000Z
2022-03-30T14:38:30.000Z
WooKeyWallet/Extension/NSMutableString + Ext.swift
WookeyWallet/wookey-wallet-ios-app
e78c1f722ec36f0e0b8dc14977bcebbf2babf753
[ "MIT" ]
8
2019-09-16T23:40:03.000Z
2022-01-24T14:33:52.000Z
// // NSMutableString + Ext.swift import UIKit extension NSMutableAttributedString { func add(_ text: String, color: UIColor? = nil, font: UIFont? = nil) { var attributes: [NSAttributedString.Key: Any] = [:] if let color = color { attributes[.foregroundColor] = color } if let font = font { attributes[.font] = font } self.append(NSAttributedString.init(string: text, attributes: attributes)) } }
25.315789
82
0.600832
a50c5e40f0b73a3590736a963d2041c1ffe46f96
501
lua
Lua
foundation_kdl/kdl.lua
IceDragon200/mt-foundation
970baf8460137f0949cc84cc3a87a00b90de3ad6
[ "Apache-2.0" ]
null
null
null
foundation_kdl/kdl.lua
IceDragon200/mt-foundation
970baf8460137f0949cc84cc3a87a00b90de3ad6
[ "Apache-2.0" ]
null
null
null
foundation_kdl/kdl.lua
IceDragon200/mt-foundation
970baf8460137f0949cc84cc3a87a00b90de3ad6
[ "Apache-2.0" ]
null
null
null
local mod = foundation_kdl -- @namespace foundation.com.KDL local KDL = {} foundation_kdl.KDL = KDL mod:require("kdl/node.lua") mod:require("kdl/lexer.lua") -- @spec tokenize(String): (true, Table) | (false, Table, String) KDL.tokenize = KDL.Lexer.tokenize mod:require("kdl/decoder.lua") -- @spec decode(String): (Boolean, Table | nil, String) KDL.decode = KDL.Decoder.decode mod:require("kdl/encoder.lua") -- @spec encode(Table): String KDL.encode = KDL.Encoder.encode foundation.com.KDL = KDL
22.772727
65
0.716567
24b01ffaab57fcba1157cebd84be6f8448ba5d57
28,679
swift
Swift
martkurly/martkurly/Utils/KurlyService.swift
KasRoid/martkurly-ios
d4c3cc6b4503f8b6756b51ceb21f9dfaffe679ec
[ "MIT" ]
4
2020-09-22T06:37:08.000Z
2020-10-11T19:59:01.000Z
martkurly/martkurly/Utils/KurlyService.swift
KasRoid/martkurly-ios
d4c3cc6b4503f8b6756b51ceb21f9dfaffe679ec
[ "MIT" ]
28
2020-08-19T17:17:32.000Z
2020-10-11T19:51:40.000Z
martkurly/martkurly/Utils/KurlyService.swift
KasRoid/martkurly-ios
d4c3cc6b4503f8b6756b51ceb21f9dfaffe679ec
[ "MIT" ]
5
2020-08-17T06:16:35.000Z
2020-10-11T20:03:37.000Z
// // CurlyService.swift // martkurly // // Created by 천지운 on 2020/09/08. // Copyright © 2020 Team3x3. All rights reserved. // import Alamofire import Foundation struct KurlyService { static let shared = KurlyService() private init() { } private let decoder = JSONDecoder() // MARK: - [추천] 데이터 상품 목록 가져오기 func fetchRecommendationReviewProducts(completion: @escaping(ReviewProductsModel?) -> Void) { AF.request(REF_RC_REVIEW_GOODS, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(nil) } do { let responseData = try self.decoder.decode(ReviewProductsModel.self, from: jsonData) completion(responseData) } catch { print("ERROR: Recommendation ERROR, \(error.localizedDescription)") completion(nil) } } } func fetchRecommendationProducts(requestURL: String, completion: @escaping(Recommendation?) -> Void) { AF.request(requestURL, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(nil) } do { let responseData = try self.decoder.decode(Recommendation.self, from: jsonData) completion(responseData) } catch { print("ERROR: Recommendation ERROR, \(error.localizedDescription)") completion(nil) } } } // MARK: - MD의 추천 상품 목록 가져오기 func fetchMDRecommendProducts(completion: @escaping([MDRecommendModel]) -> Void) { var recommendProducts = [MDRecommendModel]() AF.request(REF_MDRECOMMAND_PRODUCTS, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(recommendProducts) } do { recommendProducts = try self.decoder.decode([MDRecommendModel].self, from: jsonData) } catch { print("ERROR: SQAURE DATA REQUEST ERROR, \(error.localizedDescription)") } completion(recommendProducts) } } // MARK: - 이벤트 소식 데이터 가져오기 func fetchSqaureEventList(completion: @escaping([EventSqaureModel]) -> Void) { var sqaureEvents = [EventSqaureModel]() AF.request(REF_SQAURE_EVENTS, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(sqaureEvents) } do { sqaureEvents = try self.decoder.decode([EventSqaureModel].self, from: jsonData) } catch { print("ERROR: SQAURE DATA REQUEST ERROR, \(error.localizedDescription)") } completion(sqaureEvents) } } // MARK: - 상품들의 정보 가져오기 func fetchProducts(requestURL: String, completion: @escaping([Product]) -> Void) { var products = [Product]() AF.request(requestURL, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(products) } do { products = try self.decoder.decode([Product].self, from: jsonData) } catch { print("DEBUG: Products List Fetch Error, ", error.localizedDescription) } completion(products) } } // MARK: - 신상품 상품 가져오기 func fetchNewProducts(completion: @escaping([Product]) -> Void) { var newProducts = [Product]() AF.request(REF_NEW_PRODUCTS, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(newProducts) } do { let products = try self.decoder.decode([Product].self, from: jsonData) newProducts = products } catch { print("DEBUG: New Products Request Error, ", error.localizedDescription) } completion(newProducts) } } // MARK: - 베스트 상품 가져오기 func fetchBestProducts(completion: @escaping([Product]) -> Void) { var bestProducts = [Product]() AF.request(REF_BEST_PRODUCTS, method: .get).responseJSON { response in guard let jsonData = response.data else { completion(bestProducts); return } do { let products = try self.decoder.decode([Product].self, from: jsonData) bestProducts = products } catch { print("DEBUG: Cheap Products Request Error, ", error.localizedDescription) } completion(bestProducts) } } // MARK: - [홈] > [컬리추천] > [이 상품 어때요?] func fetchRecommendProducts(completion: @escaping([Product]) -> Void) { var recommendProducts = [Product]() AF.request(REF_RECOMMEND_PRODUCTS, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(recommendProducts) } do { recommendProducts = try self.decoder.decode([Product].self, from: jsonData) } catch { print("DEBUG: Recommend List Fetch Error, ", error.localizedDescription) } completion(recommendProducts) } } // MARK: - 타입 상품 목록 가져오기 func requestTypeProdcuts(type: String, completion: @escaping([Product]) -> Void) { var typeProducts = [Product]() let parameters = ["type": type] AF.request(KURLY_GOODS_REF, method: .get, parameters: parameters).responseJSON { response in guard let jsonData = response.data else { return completion(typeProducts) } do { typeProducts = try self.decoder.decode([Product].self, from: jsonData) } catch { print("DEBUG: Category List 3 Request Error, ", error.localizedDescription) print(response.response?.statusCode) } completion(typeProducts) } } // MARK: - 카테고리 전체보기 상품 목록 가져오기 func requestCategoryProdcuts(category: String, completion: @escaping([Product]) -> Void) { var categoryProducts = [Product]() let parameters = ["category": category] AF.request(KURLY_GOODS_REF, method: .get, parameters: parameters).responseJSON { response in guard let jsonData = response.data else { return completion(categoryProducts) } do { categoryProducts = try self.decoder.decode([Product].self, from: jsonData) } catch { print("DEBUG: Category List 2 Request Error, ", error.localizedDescription) } completion(categoryProducts) } } // MARK: - 카테고리 목록 가져오기 func requestCurlyCategoryList(completion: @escaping([Category]) -> Void) { var categoryList = [Category]() AF.request(REF_CATEGORY, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(categoryList) } do { categoryList = try self.decoder.decode([Category].self, from: jsonData) } catch { print("DEBUG: Category List 1 Request Error, ", error.localizedDescription) } completion(categoryList) } } // MARK: - 인기 검색어 가져오기 func fetchPopularSearchWords(completion: @escaping([PopularSearchModel]) -> Void) { var searchWords = [PopularSearchModel]() guard let currentUser = UserService.shared.currentUser else { return completion(searchWords) } let requestURL = REF_USER + "/\(currentUser.id)" + "/search_word/popular_word" AF.request(requestURL, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(searchWords) } do { searchWords = try self.decoder.decode([PopularSearchModel].self, from: jsonData) } catch { print("DEBUG: Popular Search Request Error, ", error.localizedDescription) } completion(searchWords) } } // MARK: - 최근 검색어 가져오기 func fetchRecentSearchWords(completion: @escaping([RecentSearchModel]) -> Void) { var searchWords = [RecentSearchModel]() guard let currentUser = UserService.shared.currentUser else { return completion(searchWords) } let requestURL = REF_USER + "/\(currentUser.id)" + "/search_word" AF.request(requestURL, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(searchWords) } do { searchWords = try self.decoder.decode([RecentSearchModel].self, from: jsonData) } catch { print("DEBUG: Recent Search Request Error, ", error.localizedDescription) } completion(searchWords) } } // MARK: - 상품 검색 상품 목록 가져오기(저장) func requestSaveSearchProducts(searchKeyword: String, completion: @escaping([Product]) -> Void) { var products = [Product]() guard let currentUser = UserService.shared.currentUser else { return completion(products) } let headers: HTTPHeaders = ["Authorization": currentUser.token] let parameter = ["word": searchKeyword] AF.request(REF_SEARCH_WORD_PRODUCTS, method: .get, parameters: parameter, headers: headers).responseJSON { response in guard let jsonData = response.data else { return completion(products) } do { products = try self.decoder.decode([Product].self, from: jsonData) } catch { print("DEBUG: Search Products Request Error, ", error.localizedDescription) } completion(products) } } // MARK: - 상품 검색 상품 목록 가져오기(타이핑) func requestTypingSearchProducts(searchKeyword: String, completion: @escaping([Product]) -> Void) { var products = [Product]() guard let currentUser = UserService.shared.currentUser else { return completion(products) } let headers: HTTPHeaders = ["Authorization": currentUser.token] let parameter = ["word": searchKeyword] AF.request(REF_SEARCH_TYPING_PRODUCTS, method: .get, parameters: parameter, headers: headers).responseJSON { response in guard let jsonData = response.data else { return completion(products) } do { products = try self.decoder.decode([Product].self, from: jsonData) } catch { print("DEBUG: Search Products Request Error, ", error.localizedDescription) } completion(products) } } // MARK: - 메인 이벤트 목록 가져오기 & 이벤트 상품 가져오기 func fetchMainEventList(completion: @escaping([MainEvent]) -> Void) { var mainEventList = [MainEvent]() AF.request(KURLY_MAIN_EVENT_REF, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(mainEventList) } do { let eventList = try self.decoder.decode([MainEvent].self, from: jsonData) mainEventList = eventList } catch { print("DEBUG: Main Event List Request Error, ", error.localizedDescription) } completion(mainEventList) } } func fetchMainEventProducts(eventID: Int, completion: @escaping(MainEventProducts?) -> Void) { AF.request(REF_MAIN_EVENT + "\(eventID)", method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(nil) } do { let eventProducts = try self.decoder.decode(MainEventProducts.self, from: jsonData) completion(eventProducts) } catch { print("DEBUG: Main Event Products Request Error, ", error.localizedDescription) completion(nil) } } } // MARK: - 이벤트 목록 및 이벤트 상품 가져오기 func fetchEventList(completion: @escaping([EventModel]) -> Void) { var events = [EventModel]() AF.request(KURLY_EVENT_REF, method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(events) } do { let eventList = try self.decoder.decode([EventModel].self, from: jsonData) events = eventList } catch { print("DEBUG: Event List Request Error, ", error.localizedDescription) } completion(events) } } func fetchEventProducts(eventID: Int, completion: @escaping(EventProducts?) -> Void) { AF.request(REF_EVENT_GOODS + "\(eventID)", method: .get).responseJSON { response in guard let jsonData = response.data else { return completion(nil) } do { let eventProducts = try self.decoder.decode(EventProducts.self, from: jsonData) completion(eventProducts) } catch { print("DEBUG: Event Products Request Error, ", error.localizedDescription) completion(nil) } } } // MARK: - 알뜰상품 목록 가져오기 func fetchCheapProducts(completion: @escaping([Product]) -> Void) { var cheapProducts = [Product]() AF.request(REF_CHEAP_PRODUCTS, method: .get).responseJSON { response in guard let jsonData = response.data else { completion(cheapProducts); return } do { let products = try self.decoder.decode([Product].self, from: jsonData) cheapProducts = products } catch { print("DEBUG: Cheap Products Request Error, ", error.localizedDescription) } completion(cheapProducts) } } // MARK: - 상품 상세 정보 가져오기 func requestProductDetailData(productID: Int, completion: @escaping(ProductDetail?) -> Void) { let productURL = REF_GOODS + "\(productID)" AF.request(productURL, method: .get).responseJSON { response in guard let jsonData = response.data else { completion(nil); return } do { let productDetailInfo = try self.decoder.decode(ProductDetail?.self, from: jsonData) completion(productDetailInfo) } catch { print("DEBUG: Product Detail Request Error, ", error.localizedDescription) completion(nil) } } } // MARK: - 회원가입 func signUp(username: String, password: String, nickname: String, email: String, phone: String, gender: String, address: String, completionHandler: @escaping () -> Void ) { let value = [ "username": username, "nickname": nickname, "password": password, "email": email, "phone": phone, "gender": gender, "address": address ] let urlString = REF_USER var request = URLRequest(url: URL(string: urlString)!) request.httpMethod = "POST" request.setValue("application/json", forHTTPHeaderField: "Content-Type") request.httpBody = try! JSONSerialization.data(withJSONObject: value) AF.request(request).responseString { (response) in switch response.result { case .success(let data): print("Success", data) completionHandler() case .failure(let error): print("Failure", error) } } } // MARK: - 아이디 중복확인 func checkUsername(username: String, completionHandler: @escaping (String) -> Void) { let urlString = REF_USER + "/check_username?username=" + username print(urlString) let request = URLRequest(url: URL(string: urlString)!) AF.request(request).responseJSON { (response) in switch response.result { case .success: switch response.response?.statusCode { case 200: print("Great Username") completionHandler("사용하실 수 있는 아이디입니다!") case 400: print("Username is already taken.") completionHandler("동일한 아이디가 이미 등록되어 있습니다") default: print("Unknown Response StatusCode") completionHandler("알 수 없는 오류가 발생했습니다") } case .failure(let error): print("Error", error.localizedDescription) completionHandler("통신에 실패했습니다. 다시 시도해주세요.") } } } // MARK: - 로그인 func signIn(username: String, password: String, completionHandler: @escaping (Bool, LoginData?) -> Void) { let value = [ "username": username, "password": password ] let signInURL = URL(string: REF_SIGNIN)! var request = URLRequest(url: signInURL) request.httpMethod = "POST" request.setValue("application/json", forHTTPHeaderField: "Content-Type") request.httpBody = try! JSONSerialization.data(withJSONObject: value) AF.request(request).responseString { (response) in switch response.result { case .success(let json): print("Success: ", json) guard let jsonData = response.data else { return } do { let loginData = try self.decoder.decode(LoginData.self, from: jsonData) completionHandler(true, loginData) } catch { completionHandler(false, nil) } case .failure(let error): print("Error: ", error) } } } // MARK: - 장바구니 속 상품 func setListCart(completion: @escaping([Cart]) -> Void) { guard let currentUser = UserService.shared.currentUser else { return completion([])} var cartList = [Cart]() let headers: HTTPHeaders = ["Authorization": currentUser.token] // AF.request(REF_CART_LOCAL, method: .get, headers: headers).responseJSON { response in AF.request(REF_CART, method: .get, headers: headers).responseJSON { response in guard let jsonData = response.data else { print("Guard"); return completion(cartList) } do { let cartUpList = try self.decoder.decode(Cart.self, from: jsonData) cartList = [cartUpList] ShoppingCartSingleton.shared.shoppingCartView.basketCount = cartList[0].items.count } catch { print("DEBUG: Cart List Request Error, ", error) } completion(cartList) } } // MARK: - 장바구니 상품 추가 func pushCartData(goods: Int, quantity: Int, cart: Int, completionHandler: @escaping () -> Void) { let value = [ "goods": goods, "quantity": quantity, "cart": cart ] // let cartURL = URL(string: REF_CART_PUSH_LOCAL)! let cartURL = URL(string: REF_CART_PUSH)! let token = UserDefaults.standard.string(forKey: "token")! print(token) var request = URLRequest(url: cartURL) let headers: HTTPHeaders = ["Authorization": "token " + token] request.httpMethod = "POST" request.setValue("application/json", forHTTPHeaderField: "Content-Type") request.httpBody = try! JSONSerialization.data(withJSONObject: value) request.headers = headers AF.request(request).responseString { (response) in switch response.result { case .success(let data): completionHandler() print("Success", data) setListCart { _ in } case .failure(let error): print("Faulure", error) } } } // MARK: - 장바구니 상품 업데이트 func cartUpdata(goods: Int, quantity: Int, cart: Int) { let value = [ "goods": goods, "quantity": quantity, "cart": cart ] let id = goods // let cartURL = URL(string: REF_CART_PUSH_LOCAL + "/\(id)")! let cartURL = URL(string: REF_CART_PUSH + "/\(id)")! let token = UserDefaults.standard.string(forKey: "token")! print(token) var request = URLRequest(url: cartURL) let headers: HTTPHeaders = ["Authorization": "token " + token] request.httpMethod = "PATCH" request.setValue("application/json", forHTTPHeaderField: "Content-Type") request.httpBody = try! JSONSerialization.data(withJSONObject: value) request.headers = headers AF.request(request).responseString { (response) in switch response.result { case .success(let data): print("Success", data) setListCart { _ in } case .failure(let error): print("Faulure", error) } } } // MARK: - 장바구니 상품 삭제 func deleteCartData(goods: [Int]) { // let value = [ "items": [goods] ] var urlResult = "" for i in goods { urlResult += "\(i)" + "," } urlResult.removeLast(1) print(urlResult) let value = ["items": urlResult] // let cartURL = URL(string: REF_CART_DELETE_LOCAL + "/\(urlResult)")! // let cartURL = URL(string: REF_CART_DELETE_LOCAL + "/goods_delete")! // let cartURL = URL(string: REF_CART_DELETE + "/goods_delete")! let cartURL = URL(string: REF_CART_DELETE)! let token = UserDefaults.standard.string(forKey: "token")! var request = URLRequest(url: cartURL) let headers: HTTPHeaders = ["Authorization": "token " + token] // let headers: HTTPHeaders = ["Authorization": "token 88f0566e6db5ebaa0e46eae16f5a092610f46345"] request.httpMethod = "DELETE" request.setValue("application/json", forHTTPHeaderField: "Content-Type") request.httpBody = try! JSONSerialization.data(withJSONObject: value) request.headers = headers AF.request(request).responseString { (response) in switch response.result { case .success(let data): print("Success", data) setListCart { _ in } case .failure(let error): print("Faulure", error) } } } // MARK: - 장바구니 func cartUpdate(completion: @escaping([Cart]) -> Void) { let headers: HTTPHeaders = ["Authorization": "token 88f0566e6db5ebaa0e46eae16f5a092610f46345"] var cartList = [Cart]() AF.request(REF_CART, method: .get, headers: headers).responseJSON { response in guard let jsonData = response.data else { print("Guard"); return completion(cartList) } print(jsonData) do { let cartUpList = try self.decoder.decode(Cart.self, from: jsonData) print(cartUpList) cartList = [cartUpList] setListCart { _ in } } catch { print("DEBUG: Cart List Request Error, ", error) } completion(cartList) } } // MARK: - 주문 생성 func createOrder(cartItems: [Int], completion: @escaping(Int?) -> Void) { guard let currentUser = UserService.shared.currentUser else { return completion(nil) } let headers: HTTPHeaders = ["Authorization": currentUser.token] let parameters = ["items": cartItems] AF.request(REF_ORDER, method: .post, parameters: parameters, encoding: JSONEncoding.default, headers: headers).responseJSON { response in guard let jsonData = response.data else { return completion(nil) } do { let orderID = try self.decoder.decode(OrderModel.self, from: jsonData) print(response.response?.statusCode) completion(orderID.id) } catch { print("ERROR: ORDER CREATE FAIL, \(error.localizedDescription)") print(response.response?.statusCode) completion(nil) } } } // MARK: - 주문 상세 생성 func createOrderDetail(orderID: Int, delivery_cost: Int?, consumer: String?, // username receiver: String, // nickname receiver_phone: String, delivery_type: String, // "샛별배송", "택배배송" zip_code: String, // "123456" address: String, receiving_place: String, entrance_password: String?, free_pass: Bool?, etc: String?, extra_message: String?, message: Bool, payment_type: String?, completion: @escaping(Bool) -> Void) { let parameters = [ "delivery_cost": delivery_cost as Any, "consumer": consumer as Any, "receiver": receiver, "receiver_phone": receiver_phone, "delivery_type": delivery_type, "zip_code": "23412", "address": address, "receiving_place": receiving_place, "entrance_password": entrance_password as Any, "free_pass": free_pass as Any, "etc": etc as Any, "extra_message": extra_message as Any, "message": message, "payment_type": "카카오페이" ] as [String: Any] let requestURL = REF_ORDER + "/\(orderID)/detail" AF.request(requestURL, method: .post, parameters: parameters, encoding: JSONEncoding.default).responseJSON { response in if let statusCode = response.response?.statusCode { setListCart { _ in } completion(statusCode < 400 ? true : false) } else { completion(false) } } } // MARK: - 마이컬리 주문내역 리스트 func fetchOrderList(token: String, completionHandler: @escaping ([Order]) -> Void) { let headers: HTTPHeaders = ["Authorization": token] // let headers: HTTPHeaders = ["Authorization": "token 88f0566e6db5ebaa0e46eae16f5a092610f46345"] let urlString = REF_USER_ORDER // let urlString = REF_ORDER_LOCAL var request = URLRequest(url: URL(string: urlString)!) request.headers = headers AF.request(request).responseJSON { (response) in switch response.result { case .success: guard let jsonData = response.data else { print("No Data"); return } do { let data = try decoder.decode([Order].self, from: jsonData) print(#function, "Parsing Success") completionHandler(data) } catch { print(#function, "Parsing Error", error) } case .failure(let error): print("Failure: ", error) } } } // MARK: - 마이컬리 자주사는 상품 리스트 func fetchFrequantlyBuyingProductsData(token: String, completionHandler: @escaping (FrequantlyBuyingProducts) -> Void) { print(#function) let headers: HTTPHeaders = ["Authorization": token] print(headers) // let headers: HTTPHeaders = ["Authorization": "token 88f0566e6db5ebaa0e46eae16f5a092610f46345"] // let urlString = REF_OFTEN_PURCHASE_LOCAL let urlString = REF_OFTEN_PURCHASE var request = URLRequest(url: URL(string: urlString)!) request.headers = headers AF.request(request).responseJSON { (response) in switch response.result { case .success: guard let jsonData = response.data else { return } do { let data = try self.decoder.decode(FrequantlyBuyingProducts.self, from: jsonData) print(#function, "Parsing Success", data.goods_purchase_count ?? 0) completionHandler(data) } catch { print("Parsing Error", error) } case .failure(let error): print(error) } } } }
38.18775
176
0.569127
4c0f39e084625e7f7b81029a3b47a931724819ea
3,289
php
PHP
haidao/haidao_install/system/module/goods/model/table/goods_spu_table.class.php
gavin2lee/incubator-gl
c95623af811195c3e89513ec30e52862d6562add
[ "Apache-2.0" ]
3
2016-07-25T03:47:06.000Z
2019-11-18T08:42:00.000Z
haidao/haidao_install/system/module/goods/model/table/goods_spu_table.class.php
gavin2lee/incubator-gl
c95623af811195c3e89513ec30e52862d6562add
[ "Apache-2.0" ]
null
null
null
haidao/haidao_install/system/module/goods/model/table/goods_spu_table.class.php
gavin2lee/incubator-gl
c95623af811195c3e89513ec30e52862d6562add
[ "Apache-2.0" ]
2
2019-11-18T08:41:53.000Z
2020-09-11T08:53:18.000Z
<?php /** * 商品数据层 * [Haidao] (C)2013-2099 Dmibox Science and technology co., LTD. * This is NOT a freeware, use is subject to license terms * * http://www.haidao.la * tel:400-600-2042 */ class goods_spu_table extends table { protected $result = array(); protected $_validate = array( array('name','require','{goods/goods_name_require}',table::MUST_VALIDATE), array('catid','number','{goods/classify_id_require}',table::EXISTS_VALIDATE,'regex',table:: MODEL_BOTH), array('warn_number','number','{goods/stock_require}',table::EXISTS_VALIDATE,'regex',table:: MODEL_BOTH), array('status','number','{goods/state_require}',table::EXISTS_VALIDATE,'regex',table:: MODEL_BOTH), array('sort','number','{goods/sort_require}',table::EXISTS_VALIDATE,'regex',table:: MODEL_BOTH), ); protected $_auto = array( ); public function status($status){ if(is_null($status)){ return $this; } $this->where(array('status'=>$status)); return $this; } public function category($catid){ if(!$catid){ return $this; } $this->where(array('catid'=>array('IN',$catid))); return $this; } public function brand($brand_id){ if(!$brand_id){ return $this; } $this->where(array('brand_id'=>$brand_id)); return $this; } public function keyword($keyword){ if(!$keyword){ return $this; } $this->where(array('name'=>array('LIKE','%'.$keyword.'%'))); return $this; } public function detail($id,$field = TRUE){ if($id < 1){ return $this; } $this->result['goods'] = $this->field($field)->find($id); if(empty($this->result['goods'])) return $this; if(!empty($this->result['goods']['imgs'])){ $this->result['goods']['imgs'] = json_decode($this->result['goods']['imgs'],TRUE); } if(empty($this->result['goods']['thumb'])){ $this->result['goods']['thumb'] = $this->load->table('goods/goods_sku')->where(array('spu_id'=>$this->result['goods']['id']))->order('sku_id ASC')->getField('thumb'); } return $this; } public function sku_id(){ $this->result['goods']['sku_id'] = $this->load->table('goods/goods_sku')->order('sku_id ASC')->where(array('spu_id'=>$this->result['goods']['id']))->getField('sku_id'); return $this; } public function brandname(){ $this->result['goods']['brandname'] = $this->load->table('goods/brand')->where(array('id'=>$this->result['goods']['brand_id']))->getField('name'); return $this; } public function catname(){ $this->result['goods']['catname'] = $this->load->service('goods/goods_category')->create_cat_format($this->result['goods']['catid']); return $this; } public function cat_format(){ $this->result['goods']['cat_format'] = $this->load->service('goods/goods_category')->create_format_id($this->result['goods']['catid']); return $this; } public function output(){ return $this->result['goods']; } }
39.626506
179
0.5564
abb73b2ec9529ed704405224cd89fe0884c38ae6
217
swift
Swift
Example/Player Example/UIView+DMAdditions.swift
snibblecorp/dailymotion-swift-player-sdk-ios
492aa073de4c54d8f0a5803df76e6cfb135fa87c
[ "MIT" ]
30
2017-01-09T17:42:05.000Z
2021-05-20T12:18:49.000Z
Example/Player Example/UIView+DMAdditions.swift
snibblecorp/dailymotion-swift-player-sdk-ios
492aa073de4c54d8f0a5803df76e6cfb135fa87c
[ "MIT" ]
45
2017-01-16T04:00:17.000Z
2022-01-26T15:41:59.000Z
Example/Player Example/UIView+DMAdditions.swift
snibblecorp/dailymotion-swift-player-sdk-ios
492aa073de4c54d8f0a5803df76e6cfb135fa87c
[ "MIT" ]
18
2017-02-08T13:40:24.000Z
2022-01-31T17:21:52.000Z
// // Copyright © 2017 Dailymotion. All rights reserved. // import UIKit extension UIView { func usesAutolayout(_ usesAutolayout: Bool) { translatesAutoresizingMaskIntoConstraints = !usesAutolayout } }
15.5
63
0.732719
67bc348083b41e2f9f445d3808fe79905b24efde
422
dart
Dart
lib/screens/second.dart
dorontal/split_view_named_routes
5fa3ca9eb9b22fa2bbd5b104b22ee4a5ce7f2c3f
[ "MIT" ]
null
null
null
lib/screens/second.dart
dorontal/split_view_named_routes
5fa3ca9eb9b22fa2bbd5b104b22ee4a5ce7f2c3f
[ "MIT" ]
null
null
null
lib/screens/second.dart
dorontal/split_view_named_routes
5fa3ca9eb9b22fa2bbd5b104b22ee4a5ce7f2c3f
[ "MIT" ]
null
null
null
import 'package:flutter/material.dart'; import '../widgets/split_view_scaffold.dart'; class Second extends StatelessWidget { const Second({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return SplitViewScaffold( title: 'Second Page', body: Center( child: Text('Second Page', style: Theme.of(context).textTheme.headline4), )); } }
24.823529
80
0.64218
04f42b5831fa0f6c02f15591244e3b9e8ffe1fe0
1,506
java
Java
mockserver-core/src/main/java/org/mockserver/model/XmlBody.java
micst96/mockserver
99df09db2dd2c7fe73dd1d7678ed483c53195fb9
[ "Apache-2.0" ]
null
null
null
mockserver-core/src/main/java/org/mockserver/model/XmlBody.java
micst96/mockserver
99df09db2dd2c7fe73dd1d7678ed483c53195fb9
[ "Apache-2.0" ]
null
null
null
mockserver-core/src/main/java/org/mockserver/model/XmlBody.java
micst96/mockserver
99df09db2dd2c7fe73dd1d7678ed483c53195fb9
[ "Apache-2.0" ]
null
null
null
package org.mockserver.model; import java.nio.charset.Charset; import static org.mockserver.mappers.ContentTypeMapper.DEFAULT_HTTP_CHARACTER_SET; /** * @author jamesdbloom */ public class XmlBody extends BodyWithContentType<String> { public static final MediaType DEFAULT_CONTENT_TYPE = MediaType.create("application", "xml"); private final String xml; private final byte[] rawBinaryData; public XmlBody(String xml) { this(xml, DEFAULT_CONTENT_TYPE); } public XmlBody(String xml, Charset charset) { this(xml, (charset != null ? MediaType.create("application", "xml").withCharset(charset) : null)); } public XmlBody(String xml, MediaType contentType) { super(Type.XML, contentType); this.xml = xml; if (xml != null) { this.rawBinaryData = xml.getBytes(determineCharacterSet(contentType, DEFAULT_HTTP_CHARACTER_SET)); } else { this.rawBinaryData = new byte[0]; } } public static XmlBody xml(String xml) { return new XmlBody(xml); } public static XmlBody xml(String xml, Charset charset) { return new XmlBody(xml, charset); } public static XmlBody xml(String xml, MediaType contentType) { return new XmlBody(xml, contentType); } public String getValue() { return xml; } public byte[] getRawBytes() { return rawBinaryData; } @Override public String toString() { return xml; } }
25.1
110
0.65073
8a0241d9d560a2c576c3e6d54f55e6325b5b582c
9,214
rs
Rust
crates/rplugin_macros/src/lib.rs
maxxcs/swc
a2a0b63c6297de039a5703a549eae62ae20b48c8
[ "Apache-2.0", "MIT" ]
5
2021-12-02T03:27:41.000Z
2021-12-02T07:44:13.000Z
crates/rplugin_macros/src/lib.rs
maxxcs/swc
a2a0b63c6297de039a5703a549eae62ae20b48c8
[ "Apache-2.0", "MIT" ]
1
2021-11-22T01:58:45.000Z
2021-11-22T01:58:45.000Z
crates/rplugin_macros/src/lib.rs
maxxcs/swc
a2a0b63c6297de039a5703a549eae62ae20b48c8
[ "Apache-2.0", "MIT" ]
null
null
null
extern crate proc_macro; use pmutil::{q, ToTokensExt}; use swc_macros_common::{ call_site, prelude::{BindedField, VariantBinder}, }; use syn::{ parse, punctuated::Punctuated, Arm, Attribute, Expr, ExprMatch, ExprStruct, Field, FieldValue, Fields, Index, Item, ItemEnum, ItemImpl, ItemMod, ItemStruct, Member, Path, Token, Type, Visibility, }; #[proc_macro_attribute] pub fn ast_for_plugin( input: proc_macro::TokenStream, module: proc_macro::TokenStream, ) -> proc_macro::TokenStream { let normal_crate_path: Path = parse(input).expect("failed to parse argument as path"); let module: ItemMod = parse(module).expect("failed to parse input as a module"); let content = module.content.expect("module should have content").1; let mut mod_items = vec![]; for mut item in content { match &mut item { Item::Struct(s) => { add_stable_abi(&mut s.attrs); patch_fields(&mut s.fields); mod_items.push(Item::Impl(make_unstable_ast_impl_for_struct( &normal_crate_path, &s, ))); } Item::Enum(s) => { add_stable_abi(&mut s.attrs); for v in s.variants.iter_mut() { patch_fields(&mut v.fields); } mod_items.push(Item::Impl(make_unstable_ast_impl_for_enum( &normal_crate_path, &s, ))); } _ => {} } mod_items.push(item); } ItemMod { content: Some((call_site(), mod_items)), ..module } .dump() .into() } fn patch_fields(f: &mut Fields) { match f { Fields::Named(f) => { f.named.iter_mut().for_each(|f| { patch_field(f); }); } Fields::Unnamed(f) => { f.unnamed.iter_mut().for_each(|f| { patch_field(f); }); } Fields::Unit => {} } } fn patch_field(f: &mut Field) { f.vis = Visibility::Inherited; f.ty = patch_field_type(&f.ty); } fn patch_field_type(ty: &Type) -> Type { if let Some(ty) = get_generic(&ty, "Box") { return q!( Vars { ty: patch_field_type(ty), }, (abi_stable::std_types::RBox<ty>) ) .parse(); } if let Some(ty) = get_generic(ty, "Vec") { return q!( Vars { ty: patch_field_type(ty), }, (abi_stable::std_types::RVec<ty>) ) .parse(); } if let Some(ty) = get_generic(ty, "Option") { return q!( Vars { ty: patch_field_type(ty), }, (abi_stable::std_types::ROption<ty>) ) .parse(); } match ty { Type::Path(p) => { if p.path.is_ident("String") { return q!((abi_stable::std_types::RString)).parse(); } } _ => {} } ty.clone() } fn get_generic<'a>(ty: &'a Type, wrapper_name: &str) -> Option<&'a Type> { match ty { Type::Path(ty) => { let ident = ty.path.segments.first().unwrap(); if ident.ident != wrapper_name { return None; } match &ident.arguments { syn::PathArguments::None => None, syn::PathArguments::AngleBracketed(generic) => generic .args .iter() .filter_map(|arg| match arg { syn::GenericArgument::Type(ty) => Some(ty), _ => None, }) .next(), syn::PathArguments::Parenthesized(_) => todo!(), } } _ => None, } } fn add_stable_abi(attrs: &mut Vec<Attribute>) { let s = q!({ #[repr(C)] #[derive(abi_stable::StableAbi)] struct Dummy; }) .parse::<ItemStruct>(); attrs.extend(s.attrs) } fn make_unstable_ast_impl_for_struct(normal_crate_path: &Path, src: &ItemStruct) -> ItemImpl { let binder = [VariantBinder::new( None, &src.ident, &src.fields, &src.attrs, )]; q!( Vars { normal_crate_path, Type: &src.ident, from_unstable_body: make_from_unstable_impl_body(normal_crate_path, &binder), into_unstable_body: make_into_unstable_impl_body(normal_crate_path, &binder), }, { impl rplugin::StableAst for Type { type Unstable = normal_crate_path::Type; fn from_unstable(unstable_node: Self::Unstable) -> Self { from_unstable_body } fn into_unstable(self) -> Self::Unstable { into_unstable_body } } } ) .parse() } fn make_unstable_ast_impl_for_enum(normal_crate_path: &Path, src: &ItemEnum) -> ItemImpl { let binder = src .variants .iter() .map(|v| VariantBinder::new(Some(&src.ident), &v.ident, &v.fields, &v.attrs)) .collect::<Vec<_>>(); q!( Vars { normal_crate_path, Type: &src.ident, from_unstable_body: make_from_unstable_impl_body(normal_crate_path, &binder), into_unstable_body: make_into_unstable_impl_body(normal_crate_path, &binder), }, { impl rplugin::StableAst for Type { type Unstable = normal_crate_path::Type; fn from_unstable(unstable_node: Self::Unstable) -> Self { from_unstable_body } fn into_unstable(self) -> Self::Unstable { into_unstable_body } } } ) .parse() } fn make_field_values<F>(fields: Vec<BindedField>, mut op: F) -> Punctuated<FieldValue, Token![,]> where F: FnMut(&BindedField) -> Expr, { fields .into_iter() .map(|f| { // Call from_unstable for each field FieldValue { attrs: Default::default(), member: f .field() .ident .clone() .map(Member::Named) .unwrap_or_else(|| Member::Unnamed(Index::from(f.idx()))), colon_token: Some(call_site()), expr: op(&f), } }) .collect() } fn make_from_unstable_impl_body(normal_crate_path: &Path, variants: &[VariantBinder]) -> Expr { let mut arms = vec![]; for v in variants { let (pat, fields) = v.bind("_", None, None); let fields = make_field_values(fields, |f| { q!(Vars { name: &f.name() }, { rplugin::StableAst::from_unstable(name) }) .parse() }); let pat = q!( Vars { pat, normal_crate_path }, { normal_crate_path::pat } ) .parse(); arms.push(Arm { attrs: Default::default(), pat, guard: Default::default(), fat_arrow_token: call_site(), body: Box::new(Expr::Struct(ExprStruct { attrs: Default::default(), path: v.qual_path(), fields, dot2_token: None, brace_token: call_site(), rest: None, })), comma: Some(call_site()), }); } Expr::Match(ExprMatch { attrs: Default::default(), match_token: call_site(), expr: q!((unstable_node)).parse(), brace_token: call_site(), arms, }) } fn make_into_unstable_impl_body(normal_crate_path: &Path, variants: &[VariantBinder]) -> Expr { let mut arms = vec![]; for v in variants { let (pat, fields) = v.bind("_", None, None); let fields = make_field_values(fields, |f| { q!(Vars { name: &f.name() }, { rplugin::StableAst::into_unstable(name) }) .parse() }); arms.push(Arm { attrs: Default::default(), pat, guard: Default::default(), fat_arrow_token: call_site(), body: Box::new(Expr::Struct(ExprStruct { attrs: Default::default(), path: q!( Vars { normal_crate_path, Type: v.qual_path() }, { normal_crate_path::Type } ) .parse(), fields, dot2_token: None, brace_token: call_site(), rest: None, })), comma: Some(call_site()), }); } Expr::Match(ExprMatch { attrs: Default::default(), match_token: call_site(), expr: q!((self)).parse(), brace_token: call_site(), arms, }) }
26.707246
98
0.47634
cb6be69d05de599f4fcab4f1c555a9be1df4a6ab
93,219
html
HTML
docs/ml-cfa-parameter-anova-relative-bias.html
noah-padgett/mcfa-para-est
dd5f179a974fc9c13459cfea3de391d356b5e257
[ "MIT" ]
null
null
null
docs/ml-cfa-parameter-anova-relative-bias.html
noah-padgett/mcfa-para-est
dd5f179a974fc9c13459cfea3de391d356b5e257
[ "MIT" ]
null
null
null
docs/ml-cfa-parameter-anova-relative-bias.html
noah-padgett/mcfa-para-est
dd5f179a974fc9c13459cfea3de391d356b5e257
[ "MIT" ]
null
null
null
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="generator" content="pandoc" /> <meta http-equiv="X-UA-Compatible" content="IE=EDGE" /> <meta name="date" content="2020-06-01" /> <title>Design Effects on Relative Bias of Parameter Estimates</title> <script src="site_libs/jquery-1.11.3/jquery.min.js"></script> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link href="site_libs/bootstrap-3.3.5/css/cosmo.min.css" rel="stylesheet" /> <script src="site_libs/bootstrap-3.3.5/js/bootstrap.min.js"></script> <script src="site_libs/bootstrap-3.3.5/shim/html5shiv.min.js"></script> <script src="site_libs/bootstrap-3.3.5/shim/respond.min.js"></script> <script src="site_libs/jqueryui-1.11.4/jquery-ui.min.js"></script> <link href="site_libs/tocify-1.9.1/jquery.tocify.css" rel="stylesheet" /> <script src="site_libs/tocify-1.9.1/jquery.tocify.js"></script> <script src="site_libs/navigation-1.1/tabsets.js"></script> <link href="site_libs/highlightjs-9.12.0/textmate.css" rel="stylesheet" /> <script src="site_libs/highlightjs-9.12.0/highlight.js"></script> <script src="site_libs/kePrint-0.0.1/kePrint.js"></script> <link rel="icon" href="https://github.com/workflowr/workflowr-assets/raw/master/img/reproducible.png"> <!-- Add a small amount of space between sections. --> <style type="text/css"> div.section { padding-top: 12px; } </style> <style type="text/css">code{white-space: pre;}</style> <style type="text/css"> pre:not([class]) { background-color: white; } </style> <script type="text/javascript"> if (window.hljs) { hljs.configure({languages: []}); hljs.initHighlightingOnLoad(); if (document.readyState && document.readyState === "complete") { window.setTimeout(function() { hljs.initHighlighting(); }, 0); } } </script> <style type="text/css"> h1 { font-size: 34px; } h1.title { font-size: 38px; } h2 { font-size: 30px; } h3 { font-size: 24px; } h4 { font-size: 18px; } h5 { font-size: 16px; } h6 { font-size: 12px; } .table th:not([align]) { text-align: left; } </style> <style type = "text/css"> .main-container { max-width: 940px; margin-left: auto; margin-right: auto; } code { color: inherit; background-color: rgba(0, 0, 0, 0.04); } img { max-width:100%; } .tabbed-pane { padding-top: 12px; } .html-widget { margin-bottom: 20px; } button.code-folding-btn:focus { outline: none; } summary { display: list-item; } </style> <style type="text/css"> /* padding for bootstrap navbar */ body { padding-top: 51px; padding-bottom: 40px; } /* offset scroll position for anchor links (for fixed navbar) */ .section h1 { padding-top: 56px; margin-top: -56px; } .section h2 { padding-top: 56px; margin-top: -56px; } .section h3 { padding-top: 56px; margin-top: -56px; } .section h4 { padding-top: 56px; margin-top: -56px; } .section h5 { padding-top: 56px; margin-top: -56px; } .section h6 { padding-top: 56px; margin-top: -56px; } .dropdown-submenu { position: relative; } .dropdown-submenu>.dropdown-menu { top: 0; left: 100%; margin-top: -6px; margin-left: -1px; border-radius: 0 6px 6px 6px; } .dropdown-submenu:hover>.dropdown-menu { display: block; } .dropdown-submenu>a:after { display: block; content: " "; float: right; width: 0; height: 0; border-color: transparent; border-style: solid; border-width: 5px 0 5px 5px; border-left-color: #cccccc; margin-top: 5px; margin-right: -10px; } .dropdown-submenu:hover>a:after { border-left-color: #ffffff; } .dropdown-submenu.pull-left { float: none; } .dropdown-submenu.pull-left>.dropdown-menu { left: -100%; margin-left: 10px; border-radius: 6px 0 6px 6px; } </style> <script> // manage active state of menu based on current page $(document).ready(function () { // active menu anchor href = window.location.pathname href = href.substr(href.lastIndexOf('/') + 1) if (href === "") href = "index.html"; var menuAnchor = $('a[href="' + href + '"]'); // mark it active menuAnchor.parent().addClass('active'); // if it's got a parent navbar menu mark it active as well menuAnchor.closest('li.dropdown').addClass('active'); }); </script> <!-- tabsets --> <style type="text/css"> .tabset-dropdown > .nav-tabs { display: inline-table; max-height: 500px; min-height: 44px; overflow-y: auto; background: white; border: 1px solid #ddd; border-radius: 4px; } .tabset-dropdown > .nav-tabs > li.active:before { content: ""; font-family: 'Glyphicons Halflings'; display: inline-block; padding: 10px; border-right: 1px solid #ddd; } .tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before { content: "&#xe258;"; border: none; } .tabset-dropdown > .nav-tabs.nav-tabs-open:before { content: ""; font-family: 'Glyphicons Halflings'; display: inline-block; padding: 10px; border-right: 1px solid #ddd; } .tabset-dropdown > .nav-tabs > li.active { display: block; } .tabset-dropdown > .nav-tabs > li > a, .tabset-dropdown > .nav-tabs > li > a:focus, .tabset-dropdown > .nav-tabs > li > a:hover { border: none; display: inline-block; border-radius: 4px; background-color: transparent; } .tabset-dropdown > .nav-tabs.nav-tabs-open > li { display: block; float: none; } .tabset-dropdown > .nav-tabs > li { display: none; } </style> <!-- code folding --> <style type="text/css"> #TOC { margin: 25px 0px 20px 0px; } @media (max-width: 768px) { #TOC { position: relative; width: 100%; } } @media print { .toc-content { /* see https://github.com/w3c/csswg-drafts/issues/4434 */ float: right; } } .toc-content { padding-left: 30px; padding-right: 40px; } div.main-container { max-width: 1200px; } div.tocify { width: 20%; max-width: 260px; max-height: 85%; } @media (min-width: 768px) and (max-width: 991px) { div.tocify { width: 25%; } } @media (max-width: 767px) { div.tocify { width: 100%; max-width: none; } } .tocify ul, .tocify li { line-height: 20px; } .tocify-subheader .tocify-item { font-size: 0.90em; } .tocify .list-group-item { border-radius: 0px; } </style> </head> <body> <div class="container-fluid main-container"> <!-- setup 3col/9col grid for toc_float and main content --> <div class="row-fluid"> <div class="col-xs-12 col-sm-4 col-md-3"> <div id="TOC" class="tocify"> </div> </div> <div class="toc-content col-xs-12 col-sm-8 col-md-9"> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.html">ML-CFA Parameter Recovery and Estimation</a> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li> <a href="index.html">Home</a> </li> <li> <a href="about.html">About</a> </li> <li> <a href="license.html">License</a> </li> </ul> <ul class="nav navbar-nav navbar-right"> </ul> </div><!--/.nav-collapse --> </div><!--/.container --> </div><!--/.navbar --> <div class="fluid-row" id="header"> <h1 class="title toc-ignore">Design Effects on Relative Bias of Parameter Estimates</h1> <h4 class="date">2020-06-01</h4> </div> <p> <button type="button" class="btn btn-default btn-workflowr btn-workflowr-report" data-toggle="collapse" data-target="#workflowr-report"> <span class="glyphicon glyphicon-list" aria-hidden="true"></span> workflowr <span class="glyphicon glyphicon-exclamation-sign text-danger" aria-hidden="true"></span> </button> </p> <div id="workflowr-report" class="collapse"> <ul class="nav nav-tabs"> <li class="active"> <a data-toggle="tab" href="#summary">Summary</a> </li> <li> <a data-toggle="tab" href="#checks"> Checks <span class="glyphicon glyphicon-exclamation-sign text-danger" aria-hidden="true"></span> </a> </li> <li> <a data-toggle="tab" href="#versions">Past versions</a> </li> </ul> <div class="tab-content"> <div id="summary" class="tab-pane fade in active"> <p> <strong>Last updated:</strong> 2020-06-10 </p> <p> <strong>Checks:</strong> <span class="glyphicon glyphicon-ok text-success" aria-hidden="true"></span> 6 <span class="glyphicon glyphicon-exclamation-sign text-danger" aria-hidden="true"></span> 1 </p> <p> <strong>Knit directory:</strong> <code>mcfa-para-est/</code> <span class="glyphicon glyphicon-question-sign" aria-hidden="true" title="This is the local directory in which the code in this file was executed."> </span> </p> <p> This reproducible <a href="http://rmarkdown.rstudio.com">R Markdown</a> analysis was created with <a href="https://github.com/jdblischak/workflowr">workflowr</a> (version 1.6.2). The <em>Checks</em> tab describes the reproducibility checks that were applied when the results were created. The <em>Past versions</em> tab lists the development history. </p> <hr> </div> <div id="checks" class="tab-pane fade"> <div id="workflowr-checks" class="panel-group"> <div class="panel panel-default"> <div class="panel-heading"> <p class="panel-title"> <a data-toggle="collapse" data-parent="#workflowr-checks" href="#strongRMarkdownfilestronguncommittedchanges"> <span class="glyphicon glyphicon-exclamation-sign text-danger" aria-hidden="true"></span> <strong>R Markdown file:</strong> uncommitted changes </a> </p> </div> <div id="strongRMarkdownfilestronguncommittedchanges" class="panel-collapse collapse"> <div class="panel-body"> <p>The R Markdown is untracked by Git. To know which version of the R Markdown file created these results, you’ll want to first commit it to the Git repo. If you’re still working on the analysis, you can ignore this warning. When you’re finished, you can run <code>wflow_publish</code> to commit the R Markdown file and build the HTML.</p> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <p class="panel-title"> <a data-toggle="collapse" data-parent="#workflowr-checks" href="#strongEnvironmentstrongempty"> <span class="glyphicon glyphicon-ok text-success" aria-hidden="true"></span> <strong>Environment:</strong> empty </a> </p> </div> <div id="strongEnvironmentstrongempty" class="panel-collapse collapse"> <div class="panel-body"> <p>Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.</p> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <p class="panel-title"> <a data-toggle="collapse" data-parent="#workflowr-checks" href="#strongSeedstrongcodesetseed20190614code"> <span class="glyphicon glyphicon-ok text-success" aria-hidden="true"></span> <strong>Seed:</strong> <code>set.seed(20190614)</code> </a> </p> </div> <div id="strongSeedstrongcodesetseed20190614code" class="panel-collapse collapse"> <div class="panel-body"> <p>The command <code>set.seed(20190614)</code> was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.</p> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <p class="panel-title"> <a data-toggle="collapse" data-parent="#workflowr-checks" href="#strongSessioninformationstrongrecorded"> <span class="glyphicon glyphicon-ok text-success" aria-hidden="true"></span> <strong>Session information:</strong> recorded </a> </p> </div> <div id="strongSessioninformationstrongrecorded" class="panel-collapse collapse"> <div class="panel-body"> <p>Great job! Recording the operating system, R version, and package versions is critical for reproducibility.</p> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <p class="panel-title"> <a data-toggle="collapse" data-parent="#workflowr-checks" href="#strongCachestrongnone"> <span class="glyphicon glyphicon-ok text-success" aria-hidden="true"></span> <strong>Cache:</strong> none </a> </p> </div> <div id="strongCachestrongnone" class="panel-collapse collapse"> <div class="panel-body"> <p>Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.</p> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <p class="panel-title"> <a data-toggle="collapse" data-parent="#workflowr-checks" href="#strongFilepathsstrongrelative"> <span class="glyphicon glyphicon-ok text-success" aria-hidden="true"></span> <strong>File paths:</strong> relative </a> </p> </div> <div id="strongFilepathsstrongrelative" class="panel-collapse collapse"> <div class="panel-body"> <p>Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.</p> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <p class="panel-title"> <a data-toggle="collapse" data-parent="#workflowr-checks" href="#strongRepositoryversionstrongahrefhttpsgithubcomnoahpadgettmcfaparaesttreeeecb366e3b200a573540eab3625c5939657d53cftargetblankeecb366a"> <span class="glyphicon glyphicon-ok text-success" aria-hidden="true"></span> <strong>Repository version:</strong> <a href="https://github.com/noah-padgett/mcfa-para-est/tree/eecb366e3b200a573540eab3625c5939657d53cf" target="_blank">eecb366</a> </a> </p> </div> <div id="strongRepositoryversionstrongahrefhttpsgithubcomnoahpadgettmcfaparaesttreeeecb366e3b200a573540eab3625c5939657d53cftargetblankeecb366a" class="panel-collapse collapse"> <div class="panel-body"> <p> Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility. </p> <p> The results in this page were generated with repository version <a href="https://github.com/noah-padgett/mcfa-para-est/tree/eecb366e3b200a573540eab3625c5939657d53cf" target="_blank">eecb366</a>. See the <em>Past versions</em> tab to see a history of the changes made to the R Markdown and HTML files. </p> <p> Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use <code>wflow_publish</code> or <code>wflow_git_commit</code>). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated: </p> <pre><code> Ignored files: Ignored: .Rhistory Ignored: .Rproj.user/ Ignored: data/compiled_para_results.txt Ignored: data/results_bias_est.csv Ignored: data/results_bias_se.csv Ignored: fig/ Ignored: manuscript/ Ignored: output/fact-cov-converge-largeN.pdf Ignored: output/fact-cov-converge-medN.pdf Ignored: output/fact-cov-converge-smallN.pdf Ignored: output/loading-converge-largeN.pdf Ignored: output/loading-converge-medN.pdf Ignored: output/loading-converge-smallN.pdf Ignored: references/ Ignored: sera-presentation/ Untracked files: Untracked: analysis/ml-cfa-parameter-anova-estimates.Rmd Untracked: analysis/ml-cfa-parameter-anova-relative-bias.Rmd Untracked: analysis/ml-cfa-parameter-bias-latent-ICC.Rmd Untracked: analysis/ml-cfa-parameter-bias-observed-ICC.Rmd Untracked: analysis/ml-cfa-parameter-bias-pub-figure.Rmd Untracked: analysis/ml-cfa-parameter-convergence-ARD-L1-factor-covariance.Rmd Untracked: analysis/ml-cfa-parameter-convergence-ARD-L2-factor-covariance.Rmd Untracked: analysis/ml-cfa-parameter-convergence-ARD-L2-factor-variance.Rmd Untracked: analysis/ml-cfa-parameter-convergence-ARD-L2-residual-variance.Rmd Untracked: analysis/ml-cfa-parameter-convergence-ARD-factor-loadings.Rmd Untracked: analysis/ml-cfa-parameter-convergence-ARD-latent-ICC.Rmd Untracked: analysis/ml-cfa-parameter-convergence-ARD-observed-ICC.Rmd Untracked: analysis/ml-cfa-parameter-convergence-correlation-pubfigure.Rmd Untracked: analysis/ml-cfa-parameter-convergence-trace-plots-factor-loadings.Rmd Untracked: analysis/ml-cfa-standard-error-anova-logSE.Rmd Untracked: analysis/ml-cfa-standard-error-anova-relative-bias.Rmd Untracked: analysis/ml-cfa-standard-error-bias-factor-loadings.Rmd Untracked: analysis/ml-cfa-standard-error-bias-level1-factor-covariances.Rmd Untracked: analysis/ml-cfa-standard-error-bias-level2-factor-covariances.Rmd Untracked: analysis/ml-cfa-standard-error-bias-level2-factor-variances.Rmd Untracked: analysis/ml-cfa-standard-error-bias-level2-residual-variances.Rmd Untracked: analysis/ml-cfa-standard-error-bias-overview.Rmd Untracked: code/r_functions.R Untracked: renv.lock Untracked: renv/ Unstaged changes: Modified: .gitignore Modified: analysis/index.Rmd Modified: analysis/ml-cfa-convergence-summary.Rmd Modified: analysis/ml-cfa-parameter-bias-factor-loadings.Rmd Modified: analysis/ml-cfa-parameter-bias-level1-factor-covariances.Rmd Modified: analysis/ml-cfa-parameter-bias-level2-factor-covariances.Rmd Modified: analysis/ml-cfa-parameter-bias-level2-factor-variances.Rmd Modified: analysis/ml-cfa-parameter-bias-level2-residual-variances.Rmd Modified: analysis/ml-cfa-parameter-convergence-correlation-factor-loadings.Rmd Modified: code/get_data.R Modified: code/load_packages.R </code></pre> <p> Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes. </p> </div> </div> </div> </div> <hr> </div> <div id="versions" class="tab-pane fade"> <p> There are no past versions. Publish this analysis with <code>wflow_publish()</code> to start tracking its development. </p> <hr> </div> </div> </div> <p>The purpose of this page is to identify the impact of design factors on standard error estimates. This is done using analysis of variance (factorial) on the estimates of relative bias (RB) for the estimated parameter.</p> <div id="packages-and-set-up" class="section level1"> <h1>Packages and Set-Up</h1> <pre class="r"><code>rm(list=ls()) source(paste0(getwd(),&quot;/code/load_packages.R&quot;)) source(paste0(getwd(),&quot;/code/get_data.R&quot;)) source(paste0(getwd(),&quot;/code/r_functions.R&quot;)) # general options theme_set(theme_bw()) options(digits=3) ##Chunk iptions knitr::opts_chunk$set(out.width=&quot;225%&quot;)</code></pre> </div> <div id="data-management" class="section level1"> <h1>Data Management</h1> <pre class="r"><code># set up vectors of variable names pvec &lt;- c(paste0(&#39;lambda1&#39;,1:6), paste0(&#39;lambda2&#39;,6:10), &#39;psiW12&#39;,&#39;psiB1&#39;, &#39;psiB2&#39;, &#39;psiB12&#39;, paste0(&#39;thetaB&#39;,1:10), &#39;icc_lv1_est&#39;, &#39;icc_lv2_est&#39;, paste0(&#39;icc_ov&#39;,1:10,&#39;_est&#39;)) # stored &quot;true&quot; values of parameters by each condition ptvec &lt;- c(rep(&#39;lambdaT&#39;,11), &#39;psiW12T&#39;, &#39;psiB1T&#39;, &#39;psiB2T&#39;, &#39;psiB12T&#39;, rep(&quot;thetaBT&quot;, 10), rep(&#39;icc_lv&#39;,2), rep(&#39;icc_ov&#39;,10)) # take out non-converged/inadmissible cases sim_results &lt;- filter(sim_results, Converge==1, Admissible==1) # Set conditions levels as categorical values sim_results &lt;- sim_results %&gt;% mutate(N1 = factor(N1, c(&quot;5&quot;, &quot;10&quot;, &quot;30&quot;)), N2 = factor(N2, c(&quot;30&quot;, &quot;50&quot;, &quot;100&quot;, &quot;200&quot;)), ICC_OV = factor(ICC_OV, c(&quot;0.1&quot;,&quot;0.3&quot;, &quot;0.5&quot;)), ICC_LV = factor(ICC_LV, c(&quot;0.1&quot;, &quot;0.5&quot;))) # convert to long format long_res1 &lt;- sim_results[,c(&quot;Condition&quot;, &quot;Replication&quot;, &quot;N1&quot;, &quot;N2&quot;, &quot;ICC_OV&quot;, &quot;ICC_LV&quot;, &quot;Estimator&quot;, pvec)] %&gt;% pivot_longer( cols = all_of(pvec), names_to = &quot;Parameter&quot;, values_to = &quot;Estimate&quot; ) long_res2 &lt;- tibble(sim_results[,c(&quot;Condition&quot;, &quot;Replication&quot;, &quot;N1&quot;, &quot;N2&quot;, &quot;ICC_OV&quot;, &quot;ICC_LV&quot;, &quot;Estimator&quot;, ptvec)], .name_repair=&quot;universal&quot;) ptvec &lt;- colnames(long_res2)[8:44] long_res2 &lt;- long_res2 %&gt;% pivot_longer( cols = all_of(ptvec), names_to = &quot;ParameterT&quot;, values_to = &quot;Truth&quot; ) long_results &lt;- long_res1 long_results$ParameterT &lt;- long_res2$ParameterT long_results$Truth &lt;- long_res2$Truth</code></pre> <p>Now, we are only going to do ANOVA on the relative bias estimates (RB).</p> <pre class="r"><code>long_results &lt;- long_results %&gt;% mutate(RB = ((Estimate - Truth))/Truth*100) # Object to Story Results resultsList &lt;- list()</code></pre> </div> <div id="anova-and-effect-sizes-for-distributional-differences" class="section level1"> <h1>ANOVA and effect sizes for distributional differences</h1> <p>For this simulation experiment, there were 5 factors systematically varied. Of these 5 factors, 4 were factors influencing the observed data and 1 were factors pertaining to estimation and model fitting. The factors were</p> <ol style="list-style-type: decimal"> <li>Level-1 sample size (5, 10, 30)</li> <li>Level-2 sample size (30, 50, 100, 200)</li> <li>Observed indicator ICC (.1, .3, .5)</li> <li>Latent variable ICC (.1, .5)</li> <li>Model estimator (MLR, ULSMV, WLSMV)</li> </ol> <p>For each parameter, an analysis of variance (ANOVA) was conducted in order to test how much influence each of these design factors.</p> <p>General Linear Model investigated for estimated parameter was: <span class="math display">\[ Y_{ijklmn} = \mu + \alpha_{j} + \beta_{k} + \gamma_{l} + \delta_m + \theta_n +\\ (\alpha\beta)_{jk} + (\alpha\gamma)_{jl}+ (\alpha\delta)_{jm} + (\alpha\theta)_{jn}+ \\ (\beta\gamma)_{kl}+ (\beta\delta)_{km} + (\beta\theta)_{kn}+ (\gamma\delta)_{lm} + + (\gamma\theta)_{ln} + (\delta\theta)_{mn} + \varepsilon_{ijklmn} \]</span> where</p> <ol style="list-style-type: decimal"> <li><span class="math inline">\(\mu\)</span> is the grand mean,</li> <li><span class="math inline">\(\alpha_{j}\)</span> is the effect of Level-1 sample size,<br /> </li> <li><span class="math inline">\(\beta_{k}\)</span> is the effect of Level-2 sample size,</li> <li><span class="math inline">\(\gamma_{l}\)</span> is the effect of Observed indicator ICC,</li> <li><span class="math inline">\(\delta_m\)</span> is the effect of Latent variable ICC,</li> <li><span class="math inline">\(\theta_n\)</span> is the effect of Model estimator ,</li> <li><span class="math inline">\((\alpha\beta)_{jk}\)</span> is the interaction between Level-1 sample size and Level-2 sample size,</li> <li><span class="math inline">\((\alpha\gamma)_{jl}\)</span> is the interaction between Level-1 sample size and Observed indicator ICC,</li> <li><span class="math inline">\((\alpha\delta)_{jm}\)</span> is the interaction between Level-1 sample size and Latent variable ICC,</li> <li><span class="math inline">\((\alpha\theta)_{jn}\)</span> is the interaction between Level-1 sample size and Model estimator ,</li> <li><span class="math inline">\((\beta\gamma)_{kl}\)</span> is the interaction between Level-2 sample size and Observed indicator ICC,</li> <li><span class="math inline">\((\beta\delta)_{km}\)</span> is the interaction between Level-2 sample size and Latent variable ICC,</li> <li><span class="math inline">\((\beta\theta)_{kn}\)</span> is the interaction between Level-2 sample size and Model estimator ,</li> <li><span class="math inline">\((\gamma\delta)_{lm}\)</span> is the interaction between Observed indicator ICC and Latent variable ICC,</li> <li><span class="math inline">\((\gamma\theta)_{ln}\)</span> is the interaction between Observed indicator ICC and Model estimator ,</li> <li><span class="math inline">\((\delta\theta)_{mn}\)</span> is the interaction between Latent variable ICC and Model estimator , and</li> <li><span class="math inline">\(\varepsilon_{ijklmn}\)</span> is the residual error for the <span class="math inline">\(i^{th}\)</span> observed SE estimate.</li> </ol> <p>Note that for most of these terms there are actually 2 or 3 terms actually estimated. These additional terms are because of the categorical nature of each effect so we have to create “reference” groups and calculate the effect of being in a group other than the reference group. Higher order interactions were omitted for clarity of interpretation of the model. If interested in higher-order interactions, please see Maxwell and Delaney (2004).</p> <p>The real reason the higher order interaction was omitted: Because I have no clue how to interpret a 5-way interaction (whatever the heck that is), I am limiting the ANOVA to all bivariate interactions.</p> <p>Diagnostics for factorial ANOVA:</p> <ol style="list-style-type: decimal"> <li>Independence of Observations</li> <li>Normality of residuals across cells for the design</li> <li>Homogeneity of variance across cells</li> </ol> <p>Independence of observations is by design, where these data were randomly generated from a known population and observations are across replications and are independent. The normality assumptions is that the residuals of the models are normally distributed across the design cells. The normality assumption is tested by investigation by Shapiro-Wilks Test, the K-S test, and visual inspection of QQ-plots and histograms. The equality of variance is checked through Levene’s test across all the different conditions/groupings. Furthermore, the plots of the residuals are also indicative of the equality of variance across groups as there should be no apparent pattern to the residual plots.</p> <div id="factor-loadings" class="section level2"> <h2>Factor Loadings</h2> <div id="assumption-checking" class="section level3"> <h3>Assumption Checking</h3> <pre class="r"><code>sdat &lt;- filter(long_results, Parameter %like% &quot;lambda&quot;) sdat &lt;- sdat %&gt;% group_by(Replication, N1, N2, ICC_OV, ICC_LV, Estimator) %&gt;% summarise(RB = mean(RB)) # first, look at summary of RB Estimates boxplot(sdat$RB)</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-1.png" width="225%" style="display: block; margin: auto;" /></p> <pre class="r"><code>## model factors... flist &lt;- c(&#39;N1&#39;, &#39;N2&#39;, &#39;ICC_OV&#39;, &#39;ICC_LV&#39;, &#39;Estimator&#39;) ## Check assumptions anova_assumptions_check( sdat, &#39;RB&#39;, factors = flist, model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;))</code></pre> <pre><code> ============================= Tests and Plots of Normality:</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-2.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> Shapiro-Wilks Test of Normality of Residuals: Shapiro-Wilk normality test data: res W = 0.3, p-value &lt;2e-16 K-S Test for Normality of Residuals: One-sample Kolmogorov-Smirnov test data: aov.out$residuals D = 0.3, p-value &lt;2e-16 alternative hypothesis: two-sided</code></pre> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 254 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-3.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 254 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 4 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-4.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 254 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-5.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 254 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 2 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-6.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 254 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-7.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> ============================= Tests of Homogeneity of Variance Levenes Test: N1 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 206 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: N2 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 3 216 &lt;2e-16 *** 83506 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_OV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 3722 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_LV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 1 3934 &lt;2e-16 *** 83508 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: Estimator Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 560 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> <pre class="r"><code># was bad... Remove extreme outliers quantile(sdat$RB, c(0.001, 0.01, 0.99, 0.999))</code></pre> <pre><code> 0.1% 1% 99% 99.9% -199.4 -46.5 12.3 23.3 </code></pre> <pre class="r"><code># remove RB&gt;100 sdat &lt;- filter(sdat, RB &lt;= 100) boxplot(sdat$RB)</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-8.png" width="225%" style="display: block; margin: auto;" /></p> <pre class="r"><code># rerun ## Check assumptions anova_assumptions_check( sdat, &#39;RB&#39;, factors = flist, model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;))</code></pre> <pre><code> ============================= Tests and Plots of Normality:</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-9.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> Shapiro-Wilks Test of Normality of Residuals: Shapiro-Wilk normality test data: res W = 0.3, p-value &lt;2e-16 K-S Test for Normality of Residuals: One-sample Kolmogorov-Smirnov test data: aov.out$residuals D = 0.3, p-value &lt;2e-16 alternative hypothesis: two-sided</code></pre> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 251 rows containing non-finite values (stat_bin). Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-10.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 251 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 4 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-11.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 251 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-12.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 251 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 2 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-13.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 251 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-fl-14.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> ============================= Tests of Homogeneity of Variance Levenes Test: N1 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 204 &lt;2e-16 *** 83504 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: N2 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 3 215 &lt;2e-16 *** 83503 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_OV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 3765 &lt;2e-16 *** 83504 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_LV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 1 3981 &lt;2e-16 *** 83505 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: Estimator Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 567 &lt;2e-16 *** 83504 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> </div> <div id="anova-results" class="section level3"> <h3>ANOVA Results</h3> <pre class="r"><code>model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;) fit &lt;- aov(model, data = sdat) fit.out &lt;- summary(fit) fit.out</code></pre> <pre><code> Df Sum Sq Mean Sq F value Pr(&gt;F) N1 2 18915 9458 9.15e+01 &lt; 2e-16 *** N2 3 56697 18899 1.83e+02 &lt; 2e-16 *** ICC_OV 2 276510 138255 1.34e+03 &lt; 2e-16 *** ICC_LV 1 187369 187369 1.81e+03 &lt; 2e-16 *** Estimator 2 23237551 11618775 1.12e+05 &lt; 2e-16 *** N1:N2 6 2947 491 4.75e+00 7.6e-05 *** N1:ICC_OV 4 742 186 1.79e+00 0.13 N1:ICC_LV 2 221 110 1.07e+00 0.34 N1:Estimator 4 20103 5026 4.86e+01 &lt; 2e-16 *** N2:ICC_OV 6 8628 1438 1.39e+01 7.1e-16 *** N2:ICC_LV 3 442 147 1.43e+00 0.23 N2:Estimator 6 27214 4536 4.39e+01 &lt; 2e-16 *** ICC_OV:ICC_LV 2 6794 3397 3.29e+01 5.5e-15 *** ICC_OV:Estimator 4 492400 123100 1.19e+03 &lt; 2e-16 *** ICC_LV:Estimator 2 127886 63943 6.18e+02 &lt; 2e-16 *** Residuals 83457 8630321 103 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> <pre class="r"><code>resultsList[[&quot;FactorLoadings&quot;]] &lt;- cbind(omega2(fit.out), p_omega2(fit.out)) resultsList[[&quot;FactorLoadings&quot;]]</code></pre> <pre><code> omega^2 partial-omega^2 N1 0.0006 0.0022 N2 0.0017 0.0065 ICC_OV 0.0083 0.0310 ICC_LV 0.0057 0.0212 Estimator 0.7021 0.7291 N1:N2 0.0001 0.0003 N1:ICC_OV 0.0000 0.0000 N1:ICC_LV 0.0000 0.0000 N1:Estimator 0.0006 0.0023 N2:ICC_OV 0.0002 0.0009 N2:ICC_LV 0.0000 0.0000 N2:Estimator 0.0008 0.0031 ICC_OV:ICC_LV 0.0002 0.0008 ICC_OV:Estimator 0.0149 0.0539 ICC_LV:Estimator 0.0039 0.0146</code></pre> </div> </div> <div id="level-1-factor-covariance" class="section level2"> <h2>Level-1 factor Covariance</h2> <div id="assumption-checking-1" class="section level3"> <h3>Assumption Checking</h3> <pre class="r"><code>sdat &lt;- filter(long_results, Parameter %like% &quot;psiW&quot;) sdat &lt;- sdat %&gt;% group_by(Replication, N1, N2, ICC_OV, ICC_LV, Estimator) %&gt;% summarise(RB = mean(RB)) # first, look at summary of RB Estimates boxplot(sdat$RB)</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-1.png" width="225%" style="display: block; margin: auto;" /></p> <pre class="r"><code>## model factors... flist &lt;- c(&#39;N1&#39;, &#39;N2&#39;, &#39;ICC_OV&#39;, &#39;ICC_LV&#39;, &#39;Estimator&#39;) ## Check assumptions anova_assumptions_check( sdat, &#39;RB&#39;, factors = flist, model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;))</code></pre> <pre><code> ============================= Tests and Plots of Normality:</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-2.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> Shapiro-Wilks Test of Normality of Residuals: Shapiro-Wilk normality test data: res W = 0.9, p-value &lt;2e-16 K-S Test for Normality of Residuals: One-sample Kolmogorov-Smirnov test data: aov.out$residuals D = 0.4, p-value &lt;2e-16 alternative hypothesis: two-sided</code></pre> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 626 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-3.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 626 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 4 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-4.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 626 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-5.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 626 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 2 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-6.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 626 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-7.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> ============================= Tests of Homogeneity of Variance Levenes Test: N1 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 5540 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: N2 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 3 3105 &lt;2e-16 *** 83506 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_OV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 492 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_LV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 1 353 &lt;2e-16 *** 83508 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: Estimator Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 26.4 3.3e-12 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> <pre class="r"><code># was bad... Remove extreme outliers quantile(sdat$RB, c(0.001, 0.01, 0.99, 0.999))</code></pre> <pre><code> 0.1% 1% 99% 99.9% -191.4 -73.6 71.9 126.4 </code></pre> <pre class="r"><code># remove RB&gt;100 sdat &lt;- filter(sdat, RB &lt;= 100) boxplot(sdat$RB)</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-8.png" width="225%" style="display: block; margin: auto;" /></p> <pre class="r"><code># rerun ## Check assumptions anova_assumptions_check( sdat, &#39;RB&#39;, factors = flist, model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;))</code></pre> <pre><code> ============================= Tests and Plots of Normality:</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-9.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> Shapiro-Wilks Test of Normality of Residuals: Shapiro-Wilk normality test data: res W = 0.9, p-value &lt;2e-16 K-S Test for Normality of Residuals: One-sample Kolmogorov-Smirnov test data: aov.out$residuals D = 0.4, p-value &lt;2e-16 alternative hypothesis: two-sided</code></pre> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 351 rows containing non-finite values (stat_bin). Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-10.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 351 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 4 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-11.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 351 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-12.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 351 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 2 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-13.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 351 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l1cv-14.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> ============================= Tests of Homogeneity of Variance Levenes Test: N1 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 5347 &lt;2e-16 *** 83232 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: N2 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 3 2970 &lt;2e-16 *** 83231 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_OV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 465 &lt;2e-16 *** 83232 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_LV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 1 379 &lt;2e-16 *** 83233 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: Estimator Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 27.1 1.6e-12 *** 83232 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> </div> <div id="anova-results-1" class="section level3"> <h3>ANOVA Results</h3> <pre class="r"><code>model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;) fit &lt;- aov(model, data = sdat) fit.out &lt;- summary(fit) fit.out</code></pre> <pre><code> Df Sum Sq Mean Sq F value Pr(&gt;F) N1 2 12098 6049 9.58 6.9e-05 *** N2 3 12985 4328 6.86 0.00013 *** ICC_OV 2 13539 6770 10.72 2.2e-05 *** ICC_LV 1 38331 38331 60.72 6.7e-15 *** Estimator 2 32169 16084 25.48 8.7e-12 *** N1:N2 6 72784 12131 19.22 &lt; 2e-16 *** N1:ICC_OV 4 11146 2786 4.41 0.00144 ** N1:ICC_LV 2 23091 11546 18.29 1.1e-08 *** N1:Estimator 4 8807 2202 3.49 0.00746 ** N2:ICC_OV 6 3309 551 0.87 0.51327 N2:ICC_LV 3 2618 873 1.38 0.24610 N2:Estimator 6 16206 2701 4.28 0.00026 *** ICC_OV:ICC_LV 2 3388 1694 2.68 0.06832 . ICC_OV:Estimator 4 21821 5455 8.64 5.7e-07 *** ICC_LV:Estimator 2 21537 10768 17.06 3.9e-08 *** Residuals 83185 52514022 631 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> <pre class="r"><code>resultsList[[&quot;Level1-FactorCovariance&quot;]] &lt;- cbind(omega2(fit.out), p_omega2(fit.out)) resultsList[[&quot;Level1-FactorCovariance&quot;]]</code></pre> <pre><code> omega^2 partial-omega^2 N1 0.0002 0.0002 N2 0.0002 0.0002 ICC_OV 0.0002 0.0002 ICC_LV 0.0007 0.0007 Estimator 0.0006 0.0006 N1:N2 0.0013 0.0013 N1:ICC_OV 0.0002 0.0002 N1:ICC_LV 0.0004 0.0004 N1:Estimator 0.0001 0.0001 N2:ICC_OV 0.0000 0.0000 N2:ICC_LV 0.0000 0.0000 N2:Estimator 0.0002 0.0002 ICC_OV:ICC_LV 0.0000 0.0000 ICC_OV:Estimator 0.0004 0.0004 ICC_LV:Estimator 0.0004 0.0004</code></pre> </div> </div> <div id="level-2-factor-covariances" class="section level2"> <h2>Level-2 factor (co)variances</h2> <div id="assumption-checking-2" class="section level3"> <h3>Assumption Checking</h3> <pre class="r"><code>sdat &lt;- filter(long_results, Parameter %like% &quot;psiB&quot;) sdat &lt;- sdat %&gt;% group_by(Replication, N1, N2, ICC_OV, ICC_LV, Estimator) %&gt;% summarise(RB = mean(RB)) # first, look at summary of RB Estimates boxplot(sdat$RB)</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-1.png" width="225%" style="display: block; margin: auto;" /></p> <pre class="r"><code>## model factors... flist &lt;- c(&#39;N1&#39;, &#39;N2&#39;, &#39;ICC_OV&#39;, &#39;ICC_LV&#39;, &#39;Estimator&#39;) ## Check assumptions anova_assumptions_check( sdat, &#39;RB&#39;, factors = flist, model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;))</code></pre> <pre><code> ============================= Tests and Plots of Normality:</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-2.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> Shapiro-Wilks Test of Normality of Residuals: Shapiro-Wilk normality test data: res W = 0.9, p-value &lt;2e-16 K-S Test for Normality of Residuals: One-sample Kolmogorov-Smirnov test data: aov.out$residuals D = 0.5, p-value &lt;2e-16 alternative hypothesis: two-sided</code></pre> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 6886 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-3.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 6886 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 4 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-4.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 6886 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-5.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 6886 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 2 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-6.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 6886 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-7.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> ============================= Tests of Homogeneity of Variance Levenes Test: N1 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 786 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: N2 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 3 2028 &lt;2e-16 *** 83506 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_OV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 1269 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_LV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 1 11718 &lt;2e-16 *** 83508 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: Estimator Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 125 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> <pre class="r"><code># was bad... Remove extreme outliers quantile(sdat$RB, c(0.001, 0.01, 0.99, 0.999))</code></pre> <pre><code> 0.1% 1% 99% 99.9% -281 -152 233 507 </code></pre> <pre class="r"><code># remove RB&gt;100 sdat &lt;- filter(sdat, RB &lt;= 100) boxplot(sdat$RB)</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-8.png" width="225%" style="display: block; margin: auto;" /></p> <pre class="r"><code># rerun ## Check assumptions anova_assumptions_check( sdat, &#39;RB&#39;, factors = flist, model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;))</code></pre> <pre><code> ============================= Tests and Plots of Normality:</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-9.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> Shapiro-Wilks Test of Normality of Residuals: Shapiro-Wilk normality test data: res W = 1, p-value &lt;2e-16 K-S Test for Normality of Residuals: One-sample Kolmogorov-Smirnov test data: aov.out$residuals D = 0.5, p-value &lt;2e-16 alternative hypothesis: two-sided</code></pre> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 2414 rows containing non-finite values (stat_bin). Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-10.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 2414 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 4 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-11.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 2414 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-12.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 2414 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 2 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-13.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 2414 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2cv-14.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> ============================= Tests of Homogeneity of Variance Levenes Test: N1 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 489 &lt;2e-16 *** 79035 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: N2 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 3 1476 &lt;2e-16 *** 79034 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_OV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 673 &lt;2e-16 *** 79035 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_LV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 1 10946 &lt;2e-16 *** 79036 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: Estimator Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 8.14 0.00029 *** 79035 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> </div> <div id="anova-results-2" class="section level3"> <h3>ANOVA Results</h3> <pre class="r"><code>model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;) fit &lt;- aov(model, data = sdat) fit.out &lt;- summary(fit) fit.out</code></pre> <pre><code> Df Sum Sq Mean Sq F value Pr(&gt;F) N1 2 2.71e+05 135524 71.34 &lt; 2e-16 *** N2 3 2.31e+06 770291 405.51 &lt; 2e-16 *** ICC_OV 2 9.59e+04 47937 25.24 1.1e-11 *** ICC_LV 1 2.99e+06 2991922 1575.05 &lt; 2e-16 *** Estimator 2 7.70e+05 384823 202.58 &lt; 2e-16 *** N1:N2 6 2.91e+05 48542 25.55 &lt; 2e-16 *** N1:ICC_OV 4 1.76e+04 4394 2.31 0.055 . N1:ICC_LV 2 5.94e+05 296985 156.34 &lt; 2e-16 *** N1:Estimator 4 1.74e+03 434 0.23 0.923 N2:ICC_OV 6 7.92e+04 13196 6.95 2.1e-07 *** N2:ICC_LV 3 2.38e+06 792029 416.95 &lt; 2e-16 *** N2:Estimator 6 1.97e+05 32868 17.30 &lt; 2e-16 *** ICC_OV:ICC_LV 2 8.56e+05 428080 225.36 &lt; 2e-16 *** ICC_OV:Estimator 4 2.17e+04 5430 2.86 0.022 * ICC_LV:Estimator 2 1.10e+05 54753 28.82 3.1e-13 *** Residuals 78988 1.50e+08 1900 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> <pre class="r"><code>resultsList[[&quot;Level2-FactorCovariance&quot;]] &lt;- cbind(omega2(fit.out), p_omega2(fit.out)) resultsList[[&quot;Level2-FactorCovariance&quot;]]</code></pre> <pre><code> omega^2 partial-omega^2 N1 0.0017 0.0018 N2 0.0143 0.0151 ICC_OV 0.0006 0.0006 ICC_LV 0.0186 0.0195 Estimator 0.0048 0.0051 N1:N2 0.0017 0.0019 N1:ICC_OV 0.0001 0.0001 N1:ICC_LV 0.0037 0.0039 N1:Estimator 0.0000 0.0000 N2:ICC_OV 0.0004 0.0005 N2:ICC_LV 0.0147 0.0155 N2:Estimator 0.0012 0.0012 ICC_OV:ICC_LV 0.0053 0.0056 ICC_OV:Estimator 0.0001 0.0001 ICC_LV:Estimator 0.0007 0.0007</code></pre> </div> </div> <div id="level-2-item-residual-variances" class="section level2"> <h2>Level-2 item residual variances</h2> <div id="assumption-checking-3" class="section level3"> <h3>Assumption Checking</h3> <pre class="r"><code>sdat &lt;- filter(long_results, Parameter %like% &quot;thetaB&quot;) sdat &lt;- sdat %&gt;% group_by(Replication, N1, N2, ICC_OV, ICC_LV, Estimator) %&gt;% summarise(RB = mean(RB)) # first, look at summary of RB Estimates boxplot(sdat$RB)</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-1.png" width="225%" style="display: block; margin: auto;" /></p> <pre class="r"><code>## model factors... flist &lt;- c(&#39;N1&#39;, &#39;N2&#39;, &#39;ICC_OV&#39;, &#39;ICC_LV&#39;, &#39;Estimator&#39;) ## Check assumptions anova_assumptions_check( sdat, &#39;RB&#39;, factors = flist, model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;))</code></pre> <pre><code> ============================= Tests and Plots of Normality:</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-2.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> Shapiro-Wilks Test of Normality of Residuals: Shapiro-Wilk normality test data: res W = 0.7, p-value &lt;2e-16 K-S Test for Normality of Residuals: One-sample Kolmogorov-Smirnov test data: aov.out$residuals D = 0.3, p-value &lt;2e-16 alternative hypothesis: two-sided</code></pre> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 16 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-3.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 16 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 4 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-4.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 16 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-5.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 16 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 2 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-6.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 16 rows containing non-finite values (stat_bin).</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-7.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> ============================= Tests of Homogeneity of Variance Levenes Test: N1 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 535 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: N2 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 3 290 &lt;2e-16 *** 83506 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_OV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 1265 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_LV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 1 2710 &lt;2e-16 *** 83508 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: Estimator Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 36.3 &lt;2e-16 *** 83507 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> <pre class="r"><code># was bad... Remove extreme outliers quantile(sdat$RB, c(0.001, 0.01, 0.99, 0.999))</code></pre> <pre><code> 0.1% 1% 99% 99.9% -74.7 -70.8 30.4 60.2 </code></pre> <pre class="r"><code># remove RB&gt;100 sdat &lt;- filter(sdat, RB &lt;= 100) boxplot(sdat$RB)</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-8.png" width="225%" style="display: block; margin: auto;" /></p> <pre class="r"><code># rerun ## Check assumptions anova_assumptions_check( sdat, &#39;RB&#39;, factors = flist, model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;))</code></pre> <pre><code> ============================= Tests and Plots of Normality:</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-9.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> Shapiro-Wilks Test of Normality of Residuals: Shapiro-Wilk normality test data: res W = 0.9, p-value &lt;2e-16 K-S Test for Normality of Residuals: One-sample Kolmogorov-Smirnov test data: aov.out$residuals D = 0.3, p-value &lt;2e-16 alternative hypothesis: two-sided</code></pre> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-10.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 4 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-11.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-12.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 2 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-13.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code>`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.</code></pre> <pre><code>Warning: Removed 3 rows containing missing values (geom_bar).</code></pre> <p><img src="figure/ml-cfa-parameter-anova-relative-bias.Rmd/ac-anova-l2r-14.png" width="225%" style="display: block; margin: auto;" /></p> <pre><code> ============================= Tests of Homogeneity of Variance Levenes Test: N1 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 577 &lt;2e-16 *** 83491 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: N2 Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 3 304 &lt;2e-16 *** 83490 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_OV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 1439 &lt;2e-16 *** 83491 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: ICC_LV Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 1 3097 &lt;2e-16 *** 83492 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1 Levenes Test: Estimator Levene&#39;s Test for Homogeneity of Variance (center = &quot;mean&quot;) Df F value Pr(&gt;F) group 2 83.5 &lt;2e-16 *** 83491 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> </div> <div id="anova-results-3" class="section level3"> <h3>ANOVA Results</h3> <pre class="r"><code>model = as.formula(&#39;RB ~ N1 + N2 + ICC_OV + ICC_LV + Estimator + N1:N2 + N1:ICC_OV + N1:ICC_LV + N1:Estimator + N2:ICC_OV + N2:ICC_LV + N2:Estimator + ICC_OV:ICC_LV + ICC_OV:Estimator + ICC_LV:Estimator&#39;) fit &lt;- aov(model, data = sdat) fit.out &lt;- summary(fit) fit.out</code></pre> <pre><code> Df Sum Sq Mean Sq F value Pr(&gt;F) N1 2 1810 905 1.22e+01 5e-06 *** N2 3 120963 40321 5.44e+02 &lt;2e-16 *** ICC_OV 2 221528 110764 1.50e+03 &lt;2e-16 *** ICC_LV 1 117591 117591 1.59e+03 &lt;2e-16 *** Estimator 2 64714778 32357389 4.37e+05 &lt;2e-16 *** N1:N2 6 40179 6697 9.04e+01 &lt;2e-16 *** N1:ICC_OV 4 21922 5480 7.40e+01 &lt;2e-16 *** N1:ICC_LV 2 986 493 6.65e+00 0.0013 ** N1:Estimator 4 133862 33465 4.52e+02 &lt;2e-16 *** N2:ICC_OV 6 31112 5185 7.00e+01 &lt;2e-16 *** N2:ICC_LV 3 6637 2212 2.99e+01 &lt;2e-16 *** N2:Estimator 6 198128 33021 4.46e+02 &lt;2e-16 *** ICC_OV:ICC_LV 2 15621 7811 1.05e+02 &lt;2e-16 *** ICC_OV:Estimator 4 732220 183055 2.47e+03 &lt;2e-16 *** ICC_LV:Estimator 2 360366 180183 2.43e+03 &lt;2e-16 *** Residuals 83444 6182165 74 --- Signif. codes: 0 &#39;***&#39; 0.001 &#39;**&#39; 0.01 &#39;*&#39; 0.05 &#39;.&#39; 0.1 &#39; &#39; 1</code></pre> <pre class="r"><code>resultsList[[&quot;Level2-ResidualCovariance&quot;]] &lt;- cbind(omega2(fit.out), p_omega2(fit.out)) resultsList[[&quot;Level2-ResidualCovariance&quot;]]</code></pre> <pre><code> omega^2 partial-omega^2 N1 0.0000 0.0003 N2 0.0017 0.0191 ICC_OV 0.0030 0.0346 ICC_LV 0.0016 0.0186 Estimator 0.8877 0.9128 N1:N2 0.0005 0.0064 N1:ICC_OV 0.0003 0.0035 N1:ICC_LV 0.0000 0.0001 N1:Estimator 0.0018 0.0211 N2:ICC_OV 0.0004 0.0049 N2:ICC_LV 0.0001 0.0010 N2:Estimator 0.0027 0.0310 ICC_OV:ICC_LV 0.0002 0.0025 ICC_OV:Estimator 0.0100 0.1058 ICC_LV:Estimator 0.0049 0.0550</code></pre> </div> </div> </div> <div id="summary-table-of-effect-sizes" class="section level1"> <h1>Summary Table of Effect Sizes</h1> <pre class="r"><code>tb &lt;- cbind(resultsList[[1]], resultsList[[2]], resultsList[[3]], resultsList[[4]]) kable(tb, format=&#39;html&#39;) %&gt;% kable_styling(full_width = T) %&gt;% add_header_above(c(&#39;Effect&#39;=1,&#39;Factor Loadings&#39;=2,&#39;Level-1 Factor Covariance&#39;=2,&#39;Level-2 Factor (co)variance&#39;=2,&#39;Level-2 Item Residual Variance&#39;=2))</code></pre> <table class="table" style="margin-left: auto; margin-right: auto;"> <thead> <tr> <th style="border-bottom:hidden; padding-bottom:0; padding-left:3px;padding-right:3px;text-align: center; " colspan="1"> <div style="border-bottom: 1px solid #ddd; padding-bottom: 5px; "> Effect </div> </th> <th style="border-bottom:hidden; padding-bottom:0; padding-left:3px;padding-right:3px;text-align: center; " colspan="2"> <div style="border-bottom: 1px solid #ddd; padding-bottom: 5px; "> Factor Loadings </div> </th> <th style="border-bottom:hidden; padding-bottom:0; padding-left:3px;padding-right:3px;text-align: center; " colspan="2"> <div style="border-bottom: 1px solid #ddd; padding-bottom: 5px; "> Level-1 Factor Covariance </div> </th> <th style="border-bottom:hidden; padding-bottom:0; padding-left:3px;padding-right:3px;text-align: center; " colspan="2"> <div style="border-bottom: 1px solid #ddd; padding-bottom: 5px; "> Level-2 Factor (co)variance </div> </th> <th style="border-bottom:hidden; padding-bottom:0; padding-left:3px;padding-right:3px;text-align: center; " colspan="2"> <div style="border-bottom: 1px solid #ddd; padding-bottom: 5px; "> Level-2 Item Residual Variance </div> </th> </tr> <tr> <th style="text-align:left;"> </th> <th style="text-align:right;"> omega^2 </th> <th style="text-align:right;"> partial-omega^2 </th> <th style="text-align:right;"> omega^2 </th> <th style="text-align:right;"> partial-omega^2 </th> <th style="text-align:right;"> omega^2 </th> <th style="text-align:right;"> partial-omega^2 </th> <th style="text-align:right;"> omega^2 </th> <th style="text-align:right;"> partial-omega^2 </th> </tr> </thead> <tbody> <tr> <td style="text-align:left;"> N1 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> </tr> <tr> <td style="text-align:left;"> N2 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.006 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.014 </td> <td style="text-align:right;"> 0.015 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.019 </td> </tr> <tr> <td style="text-align:left;"> ICC_OV </td> <td style="text-align:right;"> 0.008 </td> <td style="text-align:right;"> 0.031 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.003 </td> <td style="text-align:right;"> 0.035 </td> </tr> <tr> <td style="text-align:left;"> ICC_LV </td> <td style="text-align:right;"> 0.006 </td> <td style="text-align:right;"> 0.021 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.019 </td> <td style="text-align:right;"> 0.020 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.019 </td> </tr> <tr> <td style="text-align:left;"> Estimator </td> <td style="text-align:right;"> 0.702 </td> <td style="text-align:right;"> 0.729 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.005 </td> <td style="text-align:right;"> 0.005 </td> <td style="text-align:right;"> 0.888 </td> <td style="text-align:right;"> 0.913 </td> </tr> <tr> <td style="text-align:left;"> N1:N2 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.006 </td> </tr> <tr> <td style="text-align:left;"> N1:ICC_OV </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.004 </td> </tr> <tr> <td style="text-align:left;"> N1:ICC_LV </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.004 </td> <td style="text-align:right;"> 0.004 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> </tr> <tr> <td style="text-align:left;"> N1:Estimator </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.002 </td> <td style="text-align:right;"> 0.021 </td> </tr> <tr> <td style="text-align:left;"> N2:ICC_OV </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.005 </td> </tr> <tr> <td style="text-align:left;"> N2:ICC_LV </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.015 </td> <td style="text-align:right;"> 0.016 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.001 </td> </tr> <tr> <td style="text-align:left;"> N2:Estimator </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.003 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.003 </td> <td style="text-align:right;"> 0.031 </td> </tr> <tr> <td style="text-align:left;"> ICC_OV:ICC_LV </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.005 </td> <td style="text-align:right;"> 0.006 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.002 </td> </tr> <tr> <td style="text-align:left;"> ICC_OV:Estimator </td> <td style="text-align:right;"> 0.015 </td> <td style="text-align:right;"> 0.054 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.010 </td> <td style="text-align:right;"> 0.106 </td> </tr> <tr> <td style="text-align:left;"> ICC_LV:Estimator </td> <td style="text-align:right;"> 0.004 </td> <td style="text-align:right;"> 0.015 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.000 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.001 </td> <td style="text-align:right;"> 0.005 </td> <td style="text-align:right;"> 0.055 </td> </tr> </tbody> </table> <pre class="r"><code>## Print out in tex print(xtable(tb, digits = 3), booktabs = T, include.rownames = T)</code></pre> <pre><code>% latex table generated in R 3.6.3 by xtable 1.8-4 package % Wed Jun 10 21:16:34 2020 \begin{table}[ht] \centering \begin{tabular}{rrrrrrrrr} \toprule &amp; omega\verb|^|2 &amp; partial-omega\verb|^|2 &amp; omega\verb|^|2 &amp; partial-omega\verb|^|2 &amp; omega\verb|^|2 &amp; partial-omega\verb|^|2 &amp; omega\verb|^|2 &amp; partial-omega\verb|^|2 \\ \midrule N1 &amp; 0.001 &amp; 0.002 &amp; 0.000 &amp; 0.000 &amp; 0.002 &amp; 0.002 &amp; 0.000 &amp; 0.000 \\ N2 &amp; 0.002 &amp; 0.006 &amp; 0.000 &amp; 0.000 &amp; 0.014 &amp; 0.015 &amp; 0.002 &amp; 0.019 \\ ICC\_OV &amp; 0.008 &amp; 0.031 &amp; 0.000 &amp; 0.000 &amp; 0.001 &amp; 0.001 &amp; 0.003 &amp; 0.035 \\ ICC\_LV &amp; 0.006 &amp; 0.021 &amp; 0.001 &amp; 0.001 &amp; 0.019 &amp; 0.019 &amp; 0.002 &amp; 0.019 \\ Estimator &amp; 0.702 &amp; 0.729 &amp; 0.001 &amp; 0.001 &amp; 0.005 &amp; 0.005 &amp; 0.888 &amp; 0.913 \\ N1:N2 &amp; 0.000 &amp; 0.000 &amp; 0.001 &amp; 0.001 &amp; 0.002 &amp; 0.002 &amp; 0.000 &amp; 0.006 \\ N1:ICC\_OV &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.004 \\ N1:ICC\_LV &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.004 &amp; 0.004 &amp; 0.000 &amp; 0.000 \\ N1:Estimator &amp; 0.001 &amp; 0.002 &amp; 0.000 &amp; 0.000 &amp; -0.000 &amp; -0.000 &amp; 0.002 &amp; 0.021 \\ N2:ICC\_OV &amp; 0.000 &amp; 0.001 &amp; -0.000 &amp; -0.000 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.005 \\ N2:ICC\_LV &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.015 &amp; 0.015 &amp; 0.000 &amp; 0.001 \\ N2:Estimator &amp; 0.001 &amp; 0.003 &amp; 0.000 &amp; 0.000 &amp; 0.001 &amp; 0.001 &amp; 0.003 &amp; 0.031 \\ ICC\_OV:ICC\_LV &amp; 0.000 &amp; 0.001 &amp; 0.000 &amp; 0.000 &amp; 0.005 &amp; 0.006 &amp; 0.000 &amp; 0.002 \\ ICC\_OV:Estimator &amp; 0.015 &amp; 0.054 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.000 &amp; 0.010 &amp; 0.106 \\ ICC\_LV:Estimator &amp; 0.004 &amp; 0.015 &amp; 0.000 &amp; 0.000 &amp; 0.001 &amp; 0.001 &amp; 0.005 &amp; 0.055 \\ \bottomrule \end{tabular} \end{table}</code></pre> <pre class="r"><code># ## Table of partial-omega2 # tb &lt;- cbind(resultsList[[1]][,1, drop=F], resultsList[[2]][,1, drop=F], resultsList[[3]][,1, drop=F], resultsList[[4]][,1, drop=F]) # # kable(tb, format=&#39;html&#39;) %&gt;% # kable_styling(full_width = T) %&gt;% # add_header_above(c(&#39;Effect&#39;=1,&#39;Factor Loadings&#39;=2,&#39;Level-1 Factor Covariance&#39;=2,&#39;Level-2 Factor (co)variance&#39;=2,&#39;Level-2 Item Residual Variance&#39;=2)) # # ## Print out in tex # print(xtable(tb, digits = 3), booktabs = T, include.rownames = T) # # # ## Table of omega-2 # tb &lt;- cbind(resultsList[[1]][,1, drop=F], resultsList[[2]][,1, drop=F], resultsList[[3]][,1, drop=F], resultsList[[4]][,1, drop=F]) # # kable(tb, format=&#39;html&#39;) %&gt;% # kable_styling(full_width = T) %&gt;% # add_header_above(c(&#39;Effect&#39;=1,&#39;Factor Loadings&#39;=2,&#39;Level-1 Factor Covariance&#39;=2,&#39;Level-2 Factor (co)variance&#39;=2,&#39;Level-2 Item Residual Variance&#39;=2)) # # ## Print out in tex # print(xtable(tb, digits = 3), booktabs = T, include.rownames = T)</code></pre> <br> <p> <button type="button" class="btn btn-default btn-workflowr btn-workflowr-sessioninfo" data-toggle="collapse" data-target="#workflowr-sessioninfo" style="display: block;"> <span class="glyphicon glyphicon-wrench" aria-hidden="true"></span> Session information </button> </p> <div id="workflowr-sessioninfo" class="collapse"> <pre class="r"><code>sessionInfo()</code></pre> <pre><code>R version 3.6.3 (2020-02-29) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows 10 x64 (build 18362) Matrix products: default locale: [1] LC_COLLATE=English_United States.1252 [2] LC_CTYPE=English_United States.1252 [3] LC_MONETARY=English_United States.1252 [4] LC_NUMERIC=C [5] LC_TIME=English_United States.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] xtable_1.8-4 kableExtra_1.1.0 cowplot_1.0.0 [4] MplusAutomation_0.7-3 data.table_1.12.8 patchwork_1.0.0 [7] forcats_0.5.0 stringr_1.4.0 dplyr_0.8.5 [10] purrr_0.3.4 readr_1.3.1 tidyr_1.1.0 [13] tibble_3.0.1 ggplot2_3.3.0 tidyverse_1.3.0 [16] workflowr_1.6.2 loaded via a namespace (and not attached): [1] nlme_3.1-144 fs_1.4.1 lubridate_1.7.8 webshot_0.5.2 [5] httr_1.4.1 rprojroot_1.3-2 tools_3.6.3 backports_1.1.7 [9] R6_2.4.1 DBI_1.1.0 colorspace_1.4-1 withr_2.2.0 [13] tidyselect_1.1.0 curl_4.3 compiler_3.6.3 git2r_0.27.1 [17] cli_2.0.2 rvest_0.3.5 xml2_1.3.2 labeling_0.3 [21] scales_1.1.1 digest_0.6.25 foreign_0.8-75 rmarkdown_2.1 [25] rio_0.5.16 pkgconfig_2.0.3 htmltools_0.4.0 highr_0.8 [29] dbplyr_1.4.4 rlang_0.4.6 readxl_1.3.1 rstudioapi_0.11 [33] generics_0.0.2 farver_2.0.3 jsonlite_1.6.1 zip_2.0.4 [37] car_3.0-8 magrittr_1.5 texreg_1.36.23 Rcpp_1.0.4.6 [41] munsell_0.5.0 fansi_0.4.1 abind_1.4-5 proto_1.0.0 [45] lifecycle_0.2.0 stringi_1.4.6 yaml_2.2.1 carData_3.0-4 [49] plyr_1.8.6 grid_3.6.3 blob_1.2.1 parallel_3.6.3 [53] promises_1.1.0 crayon_1.3.4 lattice_0.20-38 haven_2.3.0 [57] pander_0.6.3 hms_0.5.3 knitr_1.28 pillar_1.4.4 [61] boot_1.3-24 reprex_0.3.0 glue_1.4.1 evaluate_0.14 [65] modelr_0.1.8 vctrs_0.3.0 httpuv_1.5.2 cellranger_1.1.0 [69] gtable_0.3.0 assertthat_0.2.1 gsubfn_0.7 xfun_0.14 [73] openxlsx_4.1.5 broom_0.5.6 coda_0.19-3 later_1.0.0 [77] viridisLite_0.3.0 ellipsis_0.3.1 </code></pre> </div> </div> <!-- Adjust MathJax settings so that all math formulae are shown using TeX fonts only; see http://docs.mathjax.org/en/latest/configuration.html. This will make the presentation more consistent at the cost of the webpage sometimes taking slightly longer to load. Note that this only works because the footer is added to webpages before the MathJax javascript. --> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ "HTML-CSS": { availableFonts: ["TeX"] } }); </script> </div> </div> </div> <script> // add bootstrap table styles to pandoc tables function bootstrapStylePandocTables() { $('tr.header').parent('thead').parent('table').addClass('table table-condensed'); } $(document).ready(function () { bootstrapStylePandocTables(); }); </script> <!-- tabsets --> <script> $(document).ready(function () { window.buildTabsets("TOC"); }); $(document).ready(function () { $('.tabset-dropdown > .nav-tabs > li').click(function () { $(this).parent().toggleClass('nav-tabs-open') }); }); </script> <!-- code folding --> <script> $(document).ready(function () { // move toc-ignore selectors from section div to header $('div.section.toc-ignore') .removeClass('toc-ignore') .children('h1,h2,h3,h4,h5').addClass('toc-ignore'); // establish options var options = { selectors: "h1,h2,h3", theme: "bootstrap3", context: '.toc-content', hashGenerator: function (text) { return text.replace(/[.\\/?&!#<>]/g, '').replace(/\s/g, '_').toLowerCase(); }, ignoreSelector: ".toc-ignore", scrollTo: 0 }; options.showAndHide = true; options.smoothScroll = true; // tocify var toc = $("#TOC").tocify(options).data("toc-tocify"); }); </script> <!-- dynamically load mathjax for compatibility with self-contained --> <script> (function () { var script = document.createElement("script"); script.type = "text/javascript"; script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"; document.getElementsByTagName("head")[0].appendChild(script); })(); </script> </body> </html>
37.242909
696
0.635428
7f172dd2460cc42c7b1775560ef4ffbc68f781ce
119
kt
Kotlin
postgresql-async/src/main/java/com/github/jasync/sql/db/postgresql/messages/backend/AuthenticationOkMessage.kt
andy-yx-chen/jasync-sql
1936057a0f12845814cd801eadaa578c2b9528e2
[ "Apache-2.0" ]
1,366
2018-08-23T20:04:52.000Z
2022-03-29T13:00:03.000Z
postgresql-async/src/main/java/com/github/jasync/sql/db/postgresql/messages/backend/AuthenticationOkMessage.kt
andy-yx-chen/jasync-sql
1936057a0f12845814cd801eadaa578c2b9528e2
[ "Apache-2.0" ]
238
2018-09-04T18:13:05.000Z
2022-03-29T15:47:10.000Z
postgresql-async/src/main/java/com/github/jasync/sql/db/postgresql/messages/backend/AuthenticationOkMessage.kt
andy-yx-chen/jasync-sql
1936057a0f12845814cd801eadaa578c2b9528e2
[ "Apache-2.0" ]
124
2018-08-27T08:28:32.000Z
2022-03-06T14:01:17.000Z
package com.github.jasync.sql.db.postgresql.messages.backend object AuthenticationOkMessage : AuthenticationMessage()
29.75
60
0.857143
acef2ab87a2c24f22998fce44cffc4170731046f
459
cpp
C++
C_C++_problems/Strings/swap_case.cpp
santoshgawande/DS-Algorithms
eb1de229fd3336d862bd4787295f208a4424d0bb
[ "Apache-2.0" ]
null
null
null
C_C++_problems/Strings/swap_case.cpp
santoshgawande/DS-Algorithms
eb1de229fd3336d862bd4787295f208a4424d0bb
[ "Apache-2.0" ]
null
null
null
C_C++_problems/Strings/swap_case.cpp
santoshgawande/DS-Algorithms
eb1de229fd3336d862bd4787295f208a4424d0bb
[ "Apache-2.0" ]
null
null
null
#include<iostream> using namespace std; int main(){ char st[] = "WelCome"; int n = sizeof(st)/sizeof(st[0]); cout<<n<<endl; for(int i=0;st[i]!='\0';i++){ if(st[i]>=97 && st[i] <= 122){ // if char is small then convert into capital letter st[i] = st[i]-32; }else{ // char is a Capital then convert into small letter st[i] = st[i] +32; } } cout<<st<<endl; }
21.857143
64
0.477124
74f5aab8b3b04c187f0aad4dfaf2baa86028d8d7
776
ps1
PowerShell
tools/extract_key.ps1
esbullington/cct
1a89d346c76236a9710177a208730584ecb65c02
[ "MIT" ]
null
null
null
tools/extract_key.ps1
esbullington/cct
1a89d346c76236a9710177a208730584ecb65c02
[ "MIT" ]
null
null
null
tools/extract_key.ps1
esbullington/cct
1a89d346c76236a9710177a208730584ecb65c02
[ "MIT" ]
null
null
null
$jsonObject = Get-Content $args[0] | Out-String | ConvertFrom-Json $toolsPath = Join-Path -Path $pwd -ChildPath 'tools' $tempfile = Join-Path -Path $toolsPath -ChildPath "temp_rsa_key.pem" Set-Content -Path $tempfile -Value $jsonObject.private_key.Trim() $pythonFile = Join-Path -Path $toolsPath -ChildPath "extract_key.py" $outFile = Join-Path -Path $toolsPath -ChildPath "temp_rsa_outfile.pem" Start-Process -Wait -NoNewWindow -FilePath "openssl" -ArgumentList "rsa -in $tempfile -out $outFile" $writeKeyFile = Join-Path -Path $pwd -ChildPath $args[1] Write-Host "Writing to: $writeKeyFile" Start-Process -Wait -NoNewWindow -FilePath "python3" -ArgumentList "$pythonFile $outFile $writeKeyFile" Remove-Item -Path $tempfile -Force Remove-Item -Path $outFile -Force
33.73913
103
0.753866
74dcdb3a0980929122a7fb178e74c7d40d67ad57
399
js
JavaScript
index.js
gregmortaud/reportParser
37018d3c16901d2b7d663aa5ab3a12ac5dcb04e2
[ "MIT" ]
null
null
null
index.js
gregmortaud/reportParser
37018d3c16901d2b7d663aa5ab3a12ac5dcb04e2
[ "MIT" ]
null
null
null
index.js
gregmortaud/reportParser
37018d3c16901d2b7d663aa5ab3a12ac5dcb04e2
[ "MIT" ]
null
null
null
const ReportParser = require('./reportParser'); const report_parser = new ReportParser(); const parser_config = { 'working_dir': __dirname, 'remove_after_parse' : false, 'filename' : 'qa.report', 'target_field': 'report_status' }; report_parser.parse(parser_config, (err, parsed_value) => { console.log('error is:', err); console.log('parsed value is:', parsed_value); });
26.6
59
0.681704
19c3f06d67ca4a75e68c37cdb6d7648a438fc58c
67
sql
SQL
tests/sql/select_query3.sql
openx/ox-bqpipeline
e850edce125c234ebf2b2e4199a55c6c6d97d16d
[ "Apache-2.0" ]
1
2019-07-25T13:08:15.000Z
2019-07-25T13:08:15.000Z
tests/sql/select_query3.sql
openx/ox-bqpipeline
e850edce125c234ebf2b2e4199a55c6c6d97d16d
[ "Apache-2.0" ]
6
2019-06-27T22:29:26.000Z
2019-08-07T22:54:58.000Z
tests/sql/select_query3.sql
openx/ox-bqpipeline
e850edce125c234ebf2b2e4199a55c6c6d97d16d
[ "Apache-2.0" ]
1
2019-06-28T23:41:35.000Z
2019-06-28T23:41:35.000Z
WITH test AS ( SELECT 1 AS a, 'one' as b ) SELECT * FROM test
8.375
26
0.597015
7b13dc18568ee2465b4ce74053621c3bc7036134
285
lua
Lua
ID.lua
rointep/mtalibs
334a8972355ab055a1b51979bbb9226883c554c8
[ "MIT" ]
null
null
null
ID.lua
rointep/mtalibs
334a8972355ab055a1b51979bbb9226883c554c8
[ "MIT" ]
null
null
null
ID.lua
rointep/mtalibs
334a8972355ab055a1b51979bbb9226883c554c8
[ "MIT" ]
null
null
null
ID = {} ID.instances = {} function ID.CreateFactory() local o = { _id_ = 0 } setmetatable(o, { __index = ID }) table.insert(ID.instances, o) return o end function ID:Obtain() local id = self._id_ self._id_ = id + 1 return id end function ID:Reset() self._id_ = 0 end
10.961538
34
0.638596
3e1e1165fea53720c4316158c55521dad94643ae
998
h
C
src/1.0/ucci.h
DinoMax00/AlphaCat
2269c2d7453a8827b152a6fcfd7b976d8514a70a
[ "MIT" ]
4
2021-06-07T05:57:42.000Z
2022-01-01T10:52:47.000Z
src/1.0/ucci.h
DinoMax00/AlphaCat
2269c2d7453a8827b152a6fcfd7b976d8514a70a
[ "MIT" ]
1
2021-06-07T05:58:25.000Z
2021-06-07T06:00:11.000Z
src/1.0/ucci.h
DinoMax00/AlphaCat
2269c2d7453a8827b152a6fcfd7b976d8514a70a
[ "MIT" ]
1
2021-07-23T01:36:05.000Z
2021-07-23T01:36:05.000Z
/*****************************************************************//** * \file ucci.h * \brief ucci协议头文件 * * \author AlphaCat * \date March 2021 *********************************************************************/ #ifndef UCCI_H #define UCCI_H #include <iostream> #include <string.h> #include <vector> #include "board.h" #include "base.h" class UcciEngine { private: /// 棋盘 Board board; /// 读入的命令字符串 std::string commandStr; /// 命令字符串分割后存放的Vec std::vector<std::string> commandVec; /** * @brief 获取一条命令并存入commandStr * */ void getCommand(); /** * @brief 对命令字符串按空格进行分割并存入commandVec * */ void split(); /** * @brief 清空命令字符串与命令Vec * */ void clear(); /** * @brief 更新当前执子 * */ void updWhichPlayer(); public: /** * @brief 对外调用引擎预启动的接口 * */ void bootEngine(); /** * @brief 对外调用引擎运行的接口 * */ void run(); }; #endif
14.676471
71
0.443888