├── Arduino ├── Mach4MPGModbus-ILI9341-Display │ ├── Mach4MPGModbus-ILI9341-Display.ino │ ├── axisPage.ino │ ├── controlPage.ino │ ├── droPage.ino │ ├── mpgPage.ino │ └── sliderPage.ino ├── Mach4MPGModbus │ └── Mach4MPGModbus.ino └── libraries │ ├── ESP32Encoder-master │ ├── README.md │ ├── examples │ │ ├── Encoder │ │ │ └── Encoder.ino │ │ └── Encoder_interrupt_display │ │ │ └── Encoder_interrupt_display.ino │ ├── library.properties │ ├── licence.txt │ └── src │ │ ├── ESP32Encoder.cpp │ │ ├── ESP32Encoder.h │ │ ├── InterruptEncoder.cpp │ │ └── InterruptEncoder.h │ ├── TFT_eSPI │ ├── Extensions │ │ ├── Button.cpp │ │ ├── Button.h │ │ ├── Smooth_font.cpp │ │ ├── Smooth_font.h │ │ ├── Sprite.cpp │ │ ├── Sprite.h │ │ ├── Touch.cpp │ │ └── Touch.h │ ├── Fonts │ │ ├── Custom │ │ │ ├── Orbitron_Light_24.h │ │ │ ├── Orbitron_Light_32.h │ │ │ ├── Roboto_Thin_24.h │ │ │ ├── Satisfy_24.h │ │ │ └── Yellowtail_32.h │ │ ├── Font16.c │ │ ├── Font16.h │ │ ├── Font32rle.c │ │ ├── Font32rle.h │ │ ├── Font64rle.c │ │ ├── Font64rle.h │ │ ├── Font72rle.c │ │ ├── Font72rle.h │ │ ├── Font72x53rle.c │ │ ├── Font72x53rle.h │ │ ├── Font7srle.c │ │ ├── Font7srle.h │ │ ├── GFXFF │ │ │ ├── FreeMono12pt7b.h │ │ │ ├── FreeMono18pt7b.h │ │ │ ├── FreeMono24pt7b.h │ │ │ ├── FreeMono9pt7b.h │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ ├── FreeSans12pt7b.h │ │ │ ├── FreeSans18pt7b.h │ │ │ ├── FreeSans24pt7b.h │ │ │ ├── FreeSans9pt7b.h │ │ │ ├── FreeSansBold12pt7b.h │ │ │ ├── FreeSansBold18pt7b.h │ │ │ ├── FreeSansBold24pt7b.h │ │ │ ├── FreeSansBold9pt7b.h │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ ├── FreeSerif12pt7b.h │ │ │ ├── FreeSerif18pt7b.h │ │ │ ├── FreeSerif24pt7b.h │ │ │ ├── FreeSerif9pt7b.h │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ ├── TomThumb.h │ │ │ ├── gfxfont.h │ │ │ ├── license.txt │ │ │ └── print.txt │ │ ├── TrueType │ │ │ └── Not_yet_supported.txt │ │ └── glcdfont.c │ ├── Processors │ │ ├── TFT_eSPI_ESP32.c │ │ ├── TFT_eSPI_ESP32.h │ │ ├── TFT_eSPI_ESP8266.c │ │ ├── TFT_eSPI_ESP8266.h │ │ ├── TFT_eSPI_Generic.c │ │ ├── TFT_eSPI_Generic.h │ │ ├── TFT_eSPI_STM32.c │ │ └── TFT_eSPI_STM32.h │ ├── README.md │ ├── README.txt │ ├── TFT_Drivers │ │ ├── EPD_Defines.h │ │ ├── GC9A01_Defines.h │ │ ├── GC9A01_Init.h │ │ ├── GC9A01_Rotation.h │ │ ├── HX8357D_Defines.h │ │ ├── HX8357D_Init.h │ │ ├── HX8357D_Rotation.h │ │ ├── ILI9163_Defines.h │ │ ├── ILI9163_Init.h │ │ ├── ILI9163_Rotation.h │ │ ├── ILI9225_Defines.h │ │ ├── ILI9225_Init.h │ │ ├── ILI9225_Rotation.h │ │ ├── ILI9341_Defines.h │ │ ├── ILI9341_Init.h │ │ ├── ILI9341_Rotation.h │ │ ├── ILI9481_Defines.h │ │ ├── ILI9481_Init.h │ │ ├── ILI9481_Rotation.h │ │ ├── ILI9486_Defines.h │ │ ├── ILI9486_Init.h │ │ ├── ILI9486_Rotation.h │ │ ├── ILI9488_Defines.h │ │ ├── ILI9488_Init.h │ │ ├── ILI9488_Rotation.h │ │ ├── R61581_Defines.h │ │ ├── R61581_Init.h │ │ ├── R61581_Rotation.h │ │ ├── RM68140_Defines.h │ │ ├── RM68140_Init.h │ │ ├── RM68140_Rotation.h │ │ ├── S6D02A1_Defines.h │ │ ├── S6D02A1_Init.h │ │ ├── S6D02A1_Rotation.h │ │ ├── SSD1963_Defines.h │ │ ├── SSD1963_Init.h │ │ ├── SSD1963_Rotation.h │ │ ├── ST7735_Defines.h │ │ ├── ST7735_Init.h │ │ ├── ST7735_Rotation.h │ │ ├── ST7789_2_Defines.h │ │ ├── ST7789_2_Init.h │ │ ├── ST7789_2_Rotation.h │ │ ├── ST7789_Defines.h │ │ ├── ST7789_Init.h │ │ ├── ST7789_Rotation.h │ │ ├── ST7796_Defines.h │ │ ├── ST7796_Init.h │ │ └── ST7796_Rotation.h │ ├── TFT_eSPI.cpp │ ├── TFT_eSPI.h │ ├── Tools │ │ ├── Create_Smooth_Font │ │ │ └── Create_font │ │ │ │ ├── Create_font.pde │ │ │ │ ├── FontFiles │ │ │ │ └── Final-Frontier28.vlw │ │ │ │ └── data │ │ │ │ └── Final-Frontier.ttf │ │ ├── ESP32 UNO board mod │ │ │ ├── ESP32 UNO board mod.jpg │ │ │ └── ESP32 UNO board pinout.jpg │ │ ├── Images │ │ │ ├── README.md │ │ │ ├── bmp2array4bit.py │ │ │ └── star.bmp │ │ ├── PlatformIO │ │ │ └── Configuring options.txt │ │ ├── RPi_TFT_Connections.png │ │ ├── RPi_TFT_mod.png │ │ └── Screenshot_client │ │ │ └── Screenshot_client.pde │ ├── User_Setup.h │ ├── User_Setup_Select.h │ ├── User_Setups │ │ ├── Setup10_RPi_touch_ILI9486.h │ │ ├── Setup11_RPi_touch_ILI9486.h │ │ ├── Setup12_M5Stack.h │ │ ├── Setup135_ST7789.h │ │ ├── Setup13_ILI9481_Parallel.h │ │ ├── Setup14_ILI9341_Parallel.h │ │ ├── Setup15_HX8357D.h │ │ ├── Setup16_ILI9488_Parallel.h │ │ ├── Setup17_ePaper.h │ │ ├── Setup18_ST7789.h │ │ ├── Setup19_RM68140_Parallel.h │ │ ├── Setup1_ILI9341.h │ │ ├── Setup20_ILI9488.h │ │ ├── Setup21_ILI9488.h │ │ ├── Setup22_TTGO_T4.h │ │ ├── Setup22_TTGO_T4_v1.3.h │ │ ├── Setup23_TTGO_TM.h │ │ ├── Setup24_ST7789.h │ │ ├── Setup25_TTGO_T_Display.h │ │ ├── Setup26_TTGO_T_Wristband.h │ │ ├── Setup27_RPi_ST7796_ESP32.h │ │ ├── Setup28_RPi_ST7796_ESP8266.h │ │ ├── Setup29_ILI9341_STM32.h │ │ ├── Setup2_ST7735.h │ │ ├── Setup30_ILI9341_Parallel_STM32.h │ │ ├── Setup31_ST7796_Parallel_STM32.h │ │ ├── Setup32_ILI9341_STM32F103.h │ │ ├── Setup33_RPi_ILI9486_STM32.h │ │ ├── Setup34_ILI9481_Parallel_STM32.h │ │ ├── Setup35_ILI9341_STM32_Port_Bus.h │ │ ├── Setup36_RPi_touch_ST7796.h │ │ ├── Setup3_ILI9163.h │ │ ├── Setup43_ST7735.h │ │ ├── Setup44_TTGO_CameraPlus.h │ │ ├── Setup45_TTGO_T_Watch.h │ │ ├── Setup46_GC9A01_ESP32.h │ │ ├── Setup47_ST7735.h │ │ ├── Setup4_S6D02A1.h │ │ ├── Setup50_SSD1963_Parallel.h │ │ ├── Setup5_RPi_ILI9486.h │ │ ├── Setup6_RPi_Wr_ILI9486.h │ │ ├── Setup7_ST7735_128x128.h │ │ ├── Setup8_ILI9163_128x128.h │ │ ├── Setup9_ST7735_Overlap.h │ │ ├── SetupX_Template.h │ │ └── User_Custom_Fonts.h │ ├── examples │ │ ├── 160 x 128 │ │ │ ├── Arduino_Life │ │ │ │ └── Arduino_Life.ino │ │ │ ├── Pong_v3 │ │ │ │ └── Pong_v3.ino │ │ │ ├── RLE_Font_test │ │ │ │ └── RLE_Font_test.ino │ │ │ ├── TFT_Char_times │ │ │ │ └── TFT_Char_times.ino │ │ │ ├── TFT_Clock │ │ │ │ └── TFT_Clock.ino │ │ │ ├── TFT_Clock_Digital │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ ├── TFT_Ellipse │ │ │ │ └── TFT_Ellipse.ino │ │ │ ├── TFT_Meter_5 │ │ │ │ └── TFT_Meter_5.ino │ │ │ ├── TFT_Print_Test │ │ │ │ └── TFT_Print_Test.ino │ │ │ ├── TFT_Rainbow │ │ │ │ └── TFT_Rainbow.ino │ │ │ ├── TFT_flash_jpg │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ ├── jpeg1.h │ │ │ │ ├── jpeg2.h │ │ │ │ ├── jpeg3.h │ │ │ │ └── jpeg4.h │ │ │ ├── TFT_graphicstest_PDQ3 │ │ │ │ └── TFT_graphicstest_PDQ3.ino │ │ │ ├── TFT_graphicstest_small │ │ │ │ └── TFT_graphicstest_small.ino │ │ │ └── UTFT_demo_fast │ │ │ │ └── UTFT_demo_fast.ino │ │ ├── 320 x 240 │ │ │ ├── All_Free_Fonts_Demo │ │ │ │ ├── All_Free_Fonts_Demo.ino │ │ │ │ └── Free_Fonts.h │ │ │ ├── Cellular_Automata │ │ │ │ └── Cellular_Automata.ino │ │ │ ├── Free_Font_Demo │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ └── Free_Fonts.h │ │ │ ├── Keypad_240x320 │ │ │ │ └── Keypad_240x320.ino │ │ │ ├── RLE_Font_test │ │ │ │ └── RLE_Font_test.ino │ │ │ ├── Read_ID_bitbash │ │ │ │ └── Read_ID_bitbash.ino │ │ │ ├── TFT_ArcFill │ │ │ │ └── TFT_ArcFill.ino │ │ │ ├── TFT_Char_times │ │ │ │ └── TFT_Char_times.ino │ │ │ ├── TFT_Clock │ │ │ │ └── TFT_Clock.ino │ │ │ ├── TFT_Clock_Digital │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ ├── TFT_Custom_Fonts │ │ │ │ └── TFT_Custom_Fonts.ino │ │ │ ├── TFT_Ellipse │ │ │ │ └── TFT_Ellipse.ino │ │ │ ├── TFT_FillArcSpiral │ │ │ │ └── TFT_FillArcSpiral.ino │ │ │ ├── TFT_Float_Test │ │ │ │ └── TFT_Float_Test.ino │ │ │ ├── TFT_Mandlebrot │ │ │ │ └── TFT_Mandlebrot.ino │ │ │ ├── TFT_Matrix │ │ │ │ └── TFT_Matrix.ino │ │ │ ├── TFT_Meter_linear │ │ │ │ └── TFT_Meter_linear.ino │ │ │ ├── TFT_Meters │ │ │ │ └── TFT_Meters.ino │ │ │ ├── TFT_Pie_Chart │ │ │ │ └── TFT_Pie_Chart.ino │ │ │ ├── TFT_Pong │ │ │ │ └── TFT_Pong.ino │ │ │ ├── TFT_Print_Test │ │ │ │ └── TFT_Print_Test.ino │ │ │ ├── TFT_Rainbow_one_lib │ │ │ │ └── TFT_Rainbow_one_lib.ino │ │ │ ├── TFT_Read_Reg │ │ │ │ └── TFT_Read_Reg.ino │ │ │ ├── TFT_Spiro │ │ │ │ └── TFT_Spiro.ino │ │ │ ├── TFT_Starfield │ │ │ │ └── TFT_Starfield.ino │ │ │ ├── TFT_String_Align │ │ │ │ └── TFT_String_Align.ino │ │ │ ├── TFT_Terminal │ │ │ │ └── TFT_Terminal.ino │ │ │ ├── TFT_graphicstest_PDQ │ │ │ │ └── TFT_graphicstest_PDQ.ino │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ └── UTFT_demo │ │ │ │ └── UTFT_demo.ino │ │ ├── 480 x 320 │ │ │ ├── Cellular_Automata │ │ │ │ └── Cellular_Automata.ino │ │ │ ├── Demo_3D_cube │ │ │ │ └── Demo_3D_cube.ino │ │ │ ├── Free_Font_Demo │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ └── Free_Fonts.h │ │ │ ├── Graph_2 │ │ │ │ └── Graph_2.ino │ │ │ ├── Keypad_480x320 │ │ │ │ └── Keypad_480x320.ino │ │ │ ├── TFT_Char_times │ │ │ │ └── TFT_Char_times.ino │ │ │ ├── TFT_Ellipse │ │ │ │ └── TFT_Ellipse.ino │ │ │ ├── TFT_Meter_4 │ │ │ │ └── TFT_Meter_4.ino │ │ │ ├── TFT_Meters │ │ │ │ └── TFT_Meters.ino │ │ │ ├── TFT_Padding_demo │ │ │ │ └── TFT_Padding_demo.ino │ │ │ ├── TFT_Print_Test │ │ │ │ └── TFT_Print_Test.ino │ │ │ ├── TFT_Rainbow480 │ │ │ │ └── TFT_Rainbow480.ino │ │ │ ├── TFT_String_Align │ │ │ │ └── TFT_String_Align.ino │ │ │ ├── TFT_flash_jpg │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ ├── jpeg1.h │ │ │ │ ├── jpeg2.h │ │ │ │ ├── jpeg3.h │ │ │ │ └── jpeg4.h │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ ├── TFT_ring_meter │ │ │ │ ├── Alert.h │ │ │ │ └── TFT_ring_meter.ino │ │ │ ├── Touch_Controller_Demo │ │ │ │ └── Touch_Controller_Demo.ino │ │ │ └── UTFT_Demo_480x320 │ │ │ │ └── UTFT_Demo_480x320.ino │ │ ├── DMA test │ │ │ ├── Flash_Jpg_DMA │ │ │ │ ├── Flash_Jpg_DMA.ino │ │ │ │ └── panda.h │ │ │ ├── SpriteRotatingCube │ │ │ │ └── SpriteRotatingCube.ino │ │ │ └── boing_ball │ │ │ │ ├── boing_ball.ino │ │ │ │ └── graphic.h │ │ ├── Generic │ │ │ ├── Animated_Eyes_1 │ │ │ │ ├── Animated_Eyes_1.ino │ │ │ │ ├── config.h │ │ │ │ ├── data │ │ │ │ │ ├── catEye.h │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ ├── doeEye.h │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ ├── goatEye.h │ │ │ │ │ ├── logo.h │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ ├── newtEye.h │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ ├── owlEye.h │ │ │ │ │ └── terminatorEye.h │ │ │ │ ├── eye_functions.ino │ │ │ │ ├── user.cpp │ │ │ │ ├── user_bat.cpp │ │ │ │ └── user_xmas.cpp │ │ │ ├── Animated_Eyes_2 │ │ │ │ ├── Animated_Eyes_2.ino │ │ │ │ ├── config.h │ │ │ │ ├── data │ │ │ │ │ ├── catEye.h │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ ├── doeEye.h │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ ├── goatEye.h │ │ │ │ │ ├── logo.h │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ ├── newtEye.h │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ ├── owlEye.h │ │ │ │ │ └── terminatorEye.h │ │ │ │ ├── eye_functions.ino │ │ │ │ ├── user.cpp │ │ │ │ ├── user_bat.cpp │ │ │ │ ├── user_xmas.cpp │ │ │ │ └── wiring.ino │ │ │ ├── ESP32_SDcard_jpeg │ │ │ │ ├── Data │ │ │ │ │ ├── Baboon40.jpg │ │ │ │ │ ├── EagleEye.jpg │ │ │ │ │ ├── Mouse480.jpg │ │ │ │ │ └── lena20k.jpg │ │ │ │ └── ESP32_SDcard_jpeg.ino │ │ │ ├── ESP8266_uncannyEyes │ │ │ │ ├── ESP8266_uncannyEyes.ino │ │ │ │ ├── defaultEye.h │ │ │ │ ├── dragonEye.h │ │ │ │ ├── goatEye.h │ │ │ │ ├── noScleraEye.h │ │ │ │ └── screenshotToConsole.ino │ │ │ ├── Local_Custom_Fonts │ │ │ │ ├── Local_Custom_Fonts.ino │ │ │ │ └── MyFont.h │ │ │ ├── On_Off_Button │ │ │ │ └── On_Off_Button.ino │ │ │ ├── TFT_Button_Label_Datum │ │ │ │ └── TFT_Button_Label_Datum.ino │ │ │ ├── TFT_Flash_Bitmap │ │ │ │ ├── Alert.h │ │ │ │ ├── Close.h │ │ │ │ ├── Info.h │ │ │ │ └── TFT_Flash_Bitmap.ino │ │ │ ├── TFT_SPIFFS_BMP │ │ │ │ ├── BMP_functions.ino │ │ │ │ ├── TFT_SPIFFS_BMP.ino │ │ │ │ └── data │ │ │ │ │ └── parrot.bmp │ │ │ ├── TFT_Screen_Capture │ │ │ │ ├── TFT_Screen_Capture.ino │ │ │ │ ├── processing_sketch.ino │ │ │ │ └── screenServer.ino │ │ │ ├── Touch_calibrate │ │ │ │ └── Touch_calibrate.ino │ │ │ ├── Viewport_Demo │ │ │ │ ├── Viewport_Demo.ino │ │ │ │ └── Viewport_commands.ino │ │ │ ├── Viewport_graphicstest │ │ │ │ └── Viewport_graphicstest.ino │ │ │ ├── alphaBlend_Test │ │ │ │ └── alphaBlend_Test.ino │ │ │ └── drawXBitmap │ │ │ │ ├── drawXBitmap.ino │ │ │ │ └── xbm.h │ │ ├── Smooth Fonts │ │ │ ├── FLASH_Array │ │ │ │ ├── Font_Demo_1_Array │ │ │ │ │ ├── Font_Demo_1_Array.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ ├── Font_Demo_2_Array │ │ │ │ │ ├── Font_Demo_2_Array.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ ├── Font_Demo_3_Array │ │ │ │ │ ├── Font_Demo_3_Array.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ └── NotoSansMonoSCB20.h │ │ │ │ ├── Font_Demo_4_Array │ │ │ │ │ ├── Font_Demo_4_Array.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ └── Print_Smooth_Font.ino │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ └── Smooth_font_gradient.ino │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ └── Smooth_font_reading_TFT.ino │ │ │ │ └── Unicode_test │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ ├── Latin_Hiragana_24.h │ │ │ │ │ ├── Unicode_Test_72.h │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ └── data │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ ├── LittleFS │ │ │ │ ├── Font_Demo_1 │ │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Font_Demo_2 │ │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Font_Demo_3 │ │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ ├── Font_Demo_4 │ │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ │ └── data │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ └── Unicode_test │ │ │ │ │ ├── LittleFS_functions.ino │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ └── data │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ ├── SD_Card │ │ │ │ └── ESP32_Smooth_Font_SD │ │ │ │ │ ├── ESP32_Smooth_Font_SD.ino │ │ │ │ │ └── data │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ └── SPIFFS │ │ │ │ ├── Font_Demo_1 │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ ├── Notes.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Font_Demo_2 │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ ├── Notes.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Font_Demo_3 │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ ├── Notes.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ ├── Font_Demo_4 │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ ├── Notes.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Print_Smooth_Font │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ └── data │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ ├── Smooth_font_gradient │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ └── Unicode_test │ │ │ │ ├── SPIFFS_functions.ino │ │ │ │ ├── Unicode_test.ino │ │ │ │ └── data │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ └── Unicode-Test-72.vlw │ │ ├── Sprite │ │ │ ├── Animated_dial │ │ │ │ ├── Animated_dial.ino │ │ │ │ ├── NotoSansBold36.h │ │ │ │ ├── data │ │ │ │ │ └── dial.jpg │ │ │ │ └── dial.h │ │ │ ├── One_bit_Sprite_Demo │ │ │ │ └── One_bit_Sprite_Demo.ino │ │ │ ├── One_bit_Yin_Yang │ │ │ │ └── One_bit_Yin_Yang.ino │ │ │ ├── Orrery │ │ │ │ ├── Orrery.ino │ │ │ │ ├── astronomy.c │ │ │ │ └── astronomy.h │ │ │ ├── Rotated_Sprite_1 │ │ │ │ └── Rotated_Sprite_1.ino │ │ │ ├── Rotated_Sprite_2 │ │ │ │ └── Rotated_Sprite_2.ino │ │ │ ├── Rotated_Sprite_3 │ │ │ │ ├── Rotated_Sprite_3.ino │ │ │ │ └── data │ │ │ │ │ ├── EagleEye.jpg │ │ │ │ │ └── Eye_80x64.jpg │ │ │ ├── Sprite_RLE_Font_test │ │ │ │ └── Sprite_RLE_Font_test.ino │ │ │ ├── Sprite_TFT_Rainbow │ │ │ │ └── Sprite_TFT_Rainbow.ino │ │ │ ├── Sprite_draw │ │ │ │ └── Sprite_draw.ino │ │ │ ├── Sprite_draw_4bit │ │ │ │ └── Sprite_draw_4bit.ino │ │ │ ├── Sprite_image_4bit │ │ │ │ ├── Sprite_image_4bit.ino │ │ │ │ ├── sample_images.h │ │ │ │ └── starImage.cpp │ │ │ ├── Sprite_scroll │ │ │ │ └── Sprite_scroll.ino │ │ │ ├── Sprite_scroll_16bit │ │ │ │ └── Sprite_scroll_16bit.ino │ │ │ ├── Sprite_scroll_1bit │ │ │ │ └── Sprite_scroll_1bit.ino │ │ │ ├── Sprite_scroll_4bit │ │ │ │ └── Sprite_scroll_4bit.ino │ │ │ ├── Sprite_scroll_8bit │ │ │ │ └── Sprite_scroll_8bit.ino │ │ │ ├── Sprite_scroll_wrap_1bit │ │ │ │ └── Sprite_scroll_wrap_1bit.ino │ │ │ ├── Transparent_Sprite_Demo │ │ │ │ └── Transparent_Sprite_Demo.ino │ │ │ └── Transparent_Sprite_Demo_4bit │ │ │ │ └── Transparent_Sprite_Demo_4bit.ino │ │ ├── Test and diagnostics │ │ │ ├── Colour_Test │ │ │ │ └── Colour_Test.ino │ │ │ ├── Read_User_Setup │ │ │ │ └── Read_User_Setup.ino │ │ │ └── Test_Touch_Controller │ │ │ │ └── Test_Touch_Controller.ino │ │ └── ePaper │ │ │ └── Floyd_Steinberg │ │ │ ├── EPD_Support.h │ │ │ ├── Floyd_Steinberg.ino │ │ │ ├── Floyd_Steinberg_BMP.ino │ │ │ ├── SPIFFS.ino │ │ │ └── data │ │ │ ├── TestCard.bmp │ │ │ └── Tiger.bmp │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── license.txt │ ├── WIFIMANAGER-ESP32-master │ ├── .gitattributes │ ├── LICENSE │ ├── README.md │ ├── WiFiManager.cpp │ ├── WiFiManager.h │ ├── examples │ │ ├── AutoConnect │ │ │ └── AutoConnect.ino │ │ ├── AutoConnectWithFSParameters │ │ │ └── AutoConnectWithFSParameters.ino │ │ ├── AutoConnectWithFSParametersAndCustomIP │ │ │ └── AutoConnectWithFSParametersAndCustomIP.ino │ │ ├── AutoConnectWithFeedback │ │ │ └── AutoConnectWithFeedback.ino │ │ ├── AutoConnectWithFeedbackLED │ │ │ └── AutoConnectWithFeedbackLED.ino │ │ ├── AutoConnectWithReset │ │ │ └── AutoConnectWithReset.ino │ │ ├── AutoConnectWithStaticIP │ │ │ └── AutoConnectWithStaticIP.ino │ │ ├── AutoConnectWithTimeout │ │ │ └── AutoConnectWithTimeout.ino │ │ └── OnDemandConfigPortal │ │ │ └── OnDemandConfigPortal.ino │ ├── extras │ │ ├── WiFiManager.template.html │ │ ├── parse.js │ │ └── template.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── travis │ │ └── common.sh │ ├── eSPI_TouchUI-master │ ├── Keywords.txt │ ├── README.md │ ├── TFT_eSPI_TouchUI.cpp │ ├── TFT_eSPI_TouchUI.h │ ├── examples │ │ ├── TFT_eSPI_TouchUI_Button_480x320 │ │ │ └── TFT_eSPI_TouchUI_Button_480x320.ino │ │ ├── TFT_eSPI_TouchUI_Slider_480x320 │ │ │ └── TFT_eSPI_TouchUI_Slider_480x320.ino │ │ └── TFT_eSPI_TouchUI_Slider_Button_1 │ │ │ └── TFT_eSPI_TouchUI_Slider_Button_1.ino │ └── library.properties │ └── modbus-esp8266-master │ ├── .gitignore │ ├── API.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ ├── IP-bridge │ │ └── IP-bridge.ino │ ├── IP-client-Pull │ │ └── IP-client-Pull.ino │ ├── IP-client-SimpleRead │ │ └── IP-client-SimpleRead.ino │ ├── IP-client-WriteMultiple │ │ └── IP-client-WriteMultiple.ino │ ├── IP-server-AnalogInput │ │ └── IP-server-AnalogInput.ino │ ├── IP-server-Callback │ │ └── IP-server-Callback.ino │ ├── IP-server-HoldingReg │ │ └── IP-server-HoldingReg.ino │ ├── IP-server-Led │ │ └── IP-server-Led.ino │ ├── IP-server-MassOperations │ │ └── IP-server-MassOperations.ino │ ├── IP-server-MultipleHRegDebug │ │ └── IP-server-MultipleHRegDebug.ino │ ├── IP-server-SwitchStatus │ │ └── IP-server-SwitchStatus.ino │ ├── RTU-master │ │ └── RTU-Master.ino │ └── RTU-slave │ │ └── RTU-slave.ino │ ├── keywords.txt │ ├── library.properties │ ├── src │ ├── Modbus.cpp │ ├── Modbus.h │ ├── ModbusIP_ESP8266.cpp │ ├── ModbusIP_ESP8266.h │ ├── ModbusRTU.cpp │ └── ModbusRTU.h │ └── tests │ ├── README.md │ ├── common.h │ ├── read.h │ ├── tests.ino │ └── write.h ├── README.md ├── build └── lib │ └── installer │ └── MPGInstaller.py ├── dist ├── MPGInstaller.exe ├── MPGInstaller.log ├── MPGWiz.mcs ├── ModbusMPG.lua ├── VCRUNTIME140.dll ├── _asyncio.pyd ├── _bz2.pyd ├── _ctypes.pyd ├── _decimal.pyd ├── _elementtree.pyd ├── _hashlib.pyd ├── _lzma.pyd ├── _multiprocessing.pyd ├── _overlapped.pyd ├── _queue.pyd ├── _socket.pyd ├── _ssl.pyd ├── _testcapi.pyd ├── _testinternalcapi.pyd ├── _tkinter.pyd ├── gReg_ini_settings ├── lib │ ├── tcl │ │ ├── auto.tcl │ │ ├── clock.tcl │ │ ├── encoding │ │ │ ├── ascii.enc │ │ │ ├── big5.enc │ │ │ ├── cns11643.enc │ │ │ ├── cp1250.enc │ │ │ ├── cp1251.enc │ │ │ ├── cp1252.enc │ │ │ ├── cp1253.enc │ │ │ ├── cp1254.enc │ │ │ ├── cp1255.enc │ │ │ ├── cp1256.enc │ │ │ ├── cp1257.enc │ │ │ ├── cp1258.enc │ │ │ ├── cp437.enc │ │ │ ├── cp737.enc │ │ │ ├── cp775.enc │ │ │ ├── cp850.enc │ │ │ ├── cp852.enc │ │ │ ├── cp855.enc │ │ │ ├── cp857.enc │ │ │ ├── cp860.enc │ │ │ ├── cp861.enc │ │ │ ├── cp862.enc │ │ │ ├── cp863.enc │ │ │ ├── cp864.enc │ │ │ ├── cp865.enc │ │ │ ├── cp866.enc │ │ │ ├── cp869.enc │ │ │ ├── cp874.enc │ │ │ ├── cp932.enc │ │ │ ├── cp936.enc │ │ │ ├── cp949.enc │ │ │ ├── cp950.enc │ │ │ ├── dingbats.enc │ │ │ ├── ebcdic.enc │ │ │ ├── euc-cn.enc │ │ │ ├── euc-jp.enc │ │ │ ├── euc-kr.enc │ │ │ ├── gb12345.enc │ │ │ ├── gb1988.enc │ │ │ ├── gb2312-raw.enc │ │ │ ├── gb2312.enc │ │ │ ├── iso2022-jp.enc │ │ │ ├── iso2022-kr.enc │ │ │ ├── iso2022.enc │ │ │ ├── iso8859-1.enc │ │ │ ├── iso8859-10.enc │ │ │ ├── iso8859-11.enc │ │ │ ├── iso8859-13.enc │ │ │ ├── iso8859-14.enc │ │ │ ├── iso8859-15.enc │ │ │ ├── iso8859-16.enc │ │ │ ├── iso8859-2.enc │ │ │ ├── iso8859-3.enc │ │ │ ├── iso8859-4.enc │ │ │ ├── iso8859-5.enc │ │ │ ├── iso8859-6.enc │ │ │ ├── iso8859-7.enc │ │ │ ├── iso8859-8.enc │ │ │ ├── iso8859-9.enc │ │ │ ├── jis0201.enc │ │ │ ├── jis0208.enc │ │ │ ├── jis0212.enc │ │ │ ├── koi8-r.enc │ │ │ ├── koi8-u.enc │ │ │ ├── ksc5601.enc │ │ │ ├── macCentEuro.enc │ │ │ ├── macCroatian.enc │ │ │ ├── macCyrillic.enc │ │ │ ├── macDingbats.enc │ │ │ ├── macGreek.enc │ │ │ ├── macIceland.enc │ │ │ ├── macJapan.enc │ │ │ ├── macRoman.enc │ │ │ ├── macRomania.enc │ │ │ ├── macThai.enc │ │ │ ├── macTurkish.enc │ │ │ ├── macUkraine.enc │ │ │ ├── shiftjis.enc │ │ │ ├── symbol.enc │ │ │ └── tis-620.enc │ │ ├── history.tcl │ │ ├── http1.0 │ │ │ ├── http.tcl │ │ │ └── pkgIndex.tcl │ │ ├── init.tcl │ │ ├── msgs │ │ │ ├── af.msg │ │ │ ├── af_za.msg │ │ │ ├── ar.msg │ │ │ ├── ar_in.msg │ │ │ ├── ar_jo.msg │ │ │ ├── ar_lb.msg │ │ │ ├── ar_sy.msg │ │ │ ├── be.msg │ │ │ ├── bg.msg │ │ │ ├── bn.msg │ │ │ ├── bn_in.msg │ │ │ ├── ca.msg │ │ │ ├── cs.msg │ │ │ ├── da.msg │ │ │ ├── de.msg │ │ │ ├── de_at.msg │ │ │ ├── de_be.msg │ │ │ ├── el.msg │ │ │ ├── en_au.msg │ │ │ ├── en_be.msg │ │ │ ├── en_bw.msg │ │ │ ├── en_ca.msg │ │ │ ├── en_gb.msg │ │ │ ├── en_hk.msg │ │ │ ├── en_ie.msg │ │ │ ├── en_in.msg │ │ │ ├── en_nz.msg │ │ │ ├── en_ph.msg │ │ │ ├── en_sg.msg │ │ │ ├── en_za.msg │ │ │ ├── en_zw.msg │ │ │ ├── eo.msg │ │ │ ├── es.msg │ │ │ ├── es_ar.msg │ │ │ ├── es_bo.msg │ │ │ ├── es_cl.msg │ │ │ ├── es_co.msg │ │ │ ├── es_cr.msg │ │ │ ├── es_do.msg │ │ │ ├── es_ec.msg │ │ │ ├── es_gt.msg │ │ │ ├── es_hn.msg │ │ │ ├── es_mx.msg │ │ │ ├── es_ni.msg │ │ │ ├── es_pa.msg │ │ │ ├── es_pe.msg │ │ │ ├── es_pr.msg │ │ │ ├── es_py.msg │ │ │ ├── es_sv.msg │ │ │ ├── es_uy.msg │ │ │ ├── es_ve.msg │ │ │ ├── et.msg │ │ │ ├── eu.msg │ │ │ ├── eu_es.msg │ │ │ ├── fa.msg │ │ │ ├── fa_in.msg │ │ │ ├── fa_ir.msg │ │ │ ├── fi.msg │ │ │ ├── fo.msg │ │ │ ├── fo_fo.msg │ │ │ ├── fr.msg │ │ │ ├── fr_be.msg │ │ │ ├── fr_ca.msg │ │ │ ├── fr_ch.msg │ │ │ ├── ga.msg │ │ │ ├── ga_ie.msg │ │ │ ├── gl.msg │ │ │ ├── gl_es.msg │ │ │ ├── gv.msg │ │ │ ├── gv_gb.msg │ │ │ ├── he.msg │ │ │ ├── hi.msg │ │ │ ├── hi_in.msg │ │ │ ├── hr.msg │ │ │ ├── hu.msg │ │ │ ├── id.msg │ │ │ ├── id_id.msg │ │ │ ├── is.msg │ │ │ ├── it.msg │ │ │ ├── it_ch.msg │ │ │ ├── ja.msg │ │ │ ├── kl.msg │ │ │ ├── kl_gl.msg │ │ │ ├── ko.msg │ │ │ ├── ko_kr.msg │ │ │ ├── kok.msg │ │ │ ├── kok_in.msg │ │ │ ├── kw.msg │ │ │ ├── kw_gb.msg │ │ │ ├── lt.msg │ │ │ ├── lv.msg │ │ │ ├── mk.msg │ │ │ ├── mr.msg │ │ │ ├── mr_in.msg │ │ │ ├── ms.msg │ │ │ ├── ms_my.msg │ │ │ ├── mt.msg │ │ │ ├── nb.msg │ │ │ ├── nl.msg │ │ │ ├── nl_be.msg │ │ │ ├── nn.msg │ │ │ ├── pl.msg │ │ │ ├── pt.msg │ │ │ ├── pt_br.msg │ │ │ ├── ro.msg │ │ │ ├── ru.msg │ │ │ ├── ru_ua.msg │ │ │ ├── sh.msg │ │ │ ├── sk.msg │ │ │ ├── sl.msg │ │ │ ├── sq.msg │ │ │ ├── sr.msg │ │ │ ├── sv.msg │ │ │ ├── sw.msg │ │ │ ├── ta.msg │ │ │ ├── ta_in.msg │ │ │ ├── te.msg │ │ │ ├── te_in.msg │ │ │ ├── th.msg │ │ │ ├── tr.msg │ │ │ ├── uk.msg │ │ │ ├── vi.msg │ │ │ ├── zh.msg │ │ │ ├── zh_cn.msg │ │ │ ├── zh_hk.msg │ │ │ ├── zh_sg.msg │ │ │ └── zh_tw.msg │ │ ├── opt0.4 │ │ │ ├── optparse.tcl │ │ │ └── pkgIndex.tcl │ │ ├── package.tcl │ │ ├── parray.tcl │ │ ├── safe.tcl │ │ ├── tclIndex │ │ ├── tm.tcl │ │ ├── tzdata │ │ │ ├── Africa │ │ │ │ ├── Abidjan │ │ │ │ ├── Accra │ │ │ │ ├── Addis_Ababa │ │ │ │ ├── Algiers │ │ │ │ ├── Asmara │ │ │ │ ├── Asmera │ │ │ │ ├── Bamako │ │ │ │ ├── Bangui │ │ │ │ ├── Banjul │ │ │ │ ├── Bissau │ │ │ │ ├── Blantyre │ │ │ │ ├── Brazzaville │ │ │ │ ├── Bujumbura │ │ │ │ ├── Cairo │ │ │ │ ├── Casablanca │ │ │ │ ├── Ceuta │ │ │ │ ├── Conakry │ │ │ │ ├── Dakar │ │ │ │ ├── Dar_es_Salaam │ │ │ │ ├── Djibouti │ │ │ │ ├── Douala │ │ │ │ ├── El_Aaiun │ │ │ │ ├── Freetown │ │ │ │ ├── Gaborone │ │ │ │ ├── Harare │ │ │ │ ├── Johannesburg │ │ │ │ ├── Juba │ │ │ │ ├── Kampala │ │ │ │ ├── Khartoum │ │ │ │ ├── Kigali │ │ │ │ ├── Kinshasa │ │ │ │ ├── Lagos │ │ │ │ ├── Libreville │ │ │ │ ├── Lome │ │ │ │ ├── Luanda │ │ │ │ ├── Lubumbashi │ │ │ │ ├── Lusaka │ │ │ │ ├── Malabo │ │ │ │ ├── Maputo │ │ │ │ ├── Maseru │ │ │ │ ├── Mbabane │ │ │ │ ├── Mogadishu │ │ │ │ ├── Monrovia │ │ │ │ ├── Nairobi │ │ │ │ ├── Ndjamena │ │ │ │ ├── Niamey │ │ │ │ ├── Nouakchott │ │ │ │ ├── Ouagadougou │ │ │ │ ├── Porto-Novo │ │ │ │ ├── Sao_Tome │ │ │ │ ├── Timbuktu │ │ │ │ ├── Tripoli │ │ │ │ ├── Tunis │ │ │ │ └── Windhoek │ │ │ ├── America │ │ │ │ ├── Adak │ │ │ │ ├── Anchorage │ │ │ │ ├── Anguilla │ │ │ │ ├── Antigua │ │ │ │ ├── Araguaina │ │ │ │ ├── Argentina │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── La_Rioja │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ ├── Salta │ │ │ │ │ ├── San_Juan │ │ │ │ │ ├── San_Luis │ │ │ │ │ ├── Tucuman │ │ │ │ │ └── Ushuaia │ │ │ │ ├── Aruba │ │ │ │ ├── Asuncion │ │ │ │ ├── Atikokan │ │ │ │ ├── Atka │ │ │ │ ├── Bahia │ │ │ │ ├── Bahia_Banderas │ │ │ │ ├── Barbados │ │ │ │ ├── Belem │ │ │ │ ├── Belize │ │ │ │ ├── Blanc-Sablon │ │ │ │ ├── Boa_Vista │ │ │ │ ├── Bogota │ │ │ │ ├── Boise │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Cambridge_Bay │ │ │ │ ├── Campo_Grande │ │ │ │ ├── Cancun │ │ │ │ ├── Caracas │ │ │ │ ├── Catamarca │ │ │ │ ├── Cayenne │ │ │ │ ├── Cayman │ │ │ │ ├── Chicago │ │ │ │ ├── Chihuahua │ │ │ │ ├── Coral_Harbour │ │ │ │ ├── Cordoba │ │ │ │ ├── Costa_Rica │ │ │ │ ├── Creston │ │ │ │ ├── Cuiaba │ │ │ │ ├── Curacao │ │ │ │ ├── Danmarkshavn │ │ │ │ ├── Dawson │ │ │ │ ├── Dawson_Creek │ │ │ │ ├── Denver │ │ │ │ ├── Detroit │ │ │ │ ├── Dominica │ │ │ │ ├── Edmonton │ │ │ │ ├── Eirunepe │ │ │ │ ├── El_Salvador │ │ │ │ ├── Ensenada │ │ │ │ ├── Fort_Nelson │ │ │ │ ├── Fort_Wayne │ │ │ │ ├── Fortaleza │ │ │ │ ├── Glace_Bay │ │ │ │ ├── Godthab │ │ │ │ ├── Goose_Bay │ │ │ │ ├── Grand_Turk │ │ │ │ ├── Grenada │ │ │ │ ├── Guadeloupe │ │ │ │ ├── Guatemala │ │ │ │ ├── Guayaquil │ │ │ │ ├── Guyana │ │ │ │ ├── Halifax │ │ │ │ ├── Havana │ │ │ │ ├── Hermosillo │ │ │ │ ├── Indiana │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Knox │ │ │ │ │ ├── Marengo │ │ │ │ │ ├── Petersburg │ │ │ │ │ ├── Tell_City │ │ │ │ │ ├── Vevay │ │ │ │ │ ├── Vincennes │ │ │ │ │ └── Winamac │ │ │ │ ├── Indianapolis │ │ │ │ ├── Inuvik │ │ │ │ ├── Iqaluit │ │ │ │ ├── Jamaica │ │ │ │ ├── Jujuy │ │ │ │ ├── Juneau │ │ │ │ ├── Kentucky │ │ │ │ │ ├── Louisville │ │ │ │ │ └── Monticello │ │ │ │ ├── Knox_IN │ │ │ │ ├── Kralendijk │ │ │ │ ├── La_Paz │ │ │ │ ├── Lima │ │ │ │ ├── Los_Angeles │ │ │ │ ├── Louisville │ │ │ │ ├── Lower_Princes │ │ │ │ ├── Maceio │ │ │ │ ├── Managua │ │ │ │ ├── Manaus │ │ │ │ ├── Marigot │ │ │ │ ├── Martinique │ │ │ │ ├── Matamoros │ │ │ │ ├── Mazatlan │ │ │ │ ├── Mendoza │ │ │ │ ├── Menominee │ │ │ │ ├── Merida │ │ │ │ ├── Metlakatla │ │ │ │ ├── Mexico_City │ │ │ │ ├── Miquelon │ │ │ │ ├── Moncton │ │ │ │ ├── Monterrey │ │ │ │ ├── Montevideo │ │ │ │ ├── Montreal │ │ │ │ ├── Montserrat │ │ │ │ ├── Nassau │ │ │ │ ├── New_York │ │ │ │ ├── Nipigon │ │ │ │ ├── Nome │ │ │ │ ├── Noronha │ │ │ │ ├── North_Dakota │ │ │ │ │ ├── Beulah │ │ │ │ │ ├── Center │ │ │ │ │ └── New_Salem │ │ │ │ ├── Nuuk │ │ │ │ ├── Ojinaga │ │ │ │ ├── Panama │ │ │ │ ├── Pangnirtung │ │ │ │ ├── Paramaribo │ │ │ │ ├── Phoenix │ │ │ │ ├── Port-au-Prince │ │ │ │ ├── Port_of_Spain │ │ │ │ ├── Porto_Acre │ │ │ │ ├── Porto_Velho │ │ │ │ ├── Puerto_Rico │ │ │ │ ├── Punta_Arenas │ │ │ │ ├── Rainy_River │ │ │ │ ├── Rankin_Inlet │ │ │ │ ├── Recife │ │ │ │ ├── Regina │ │ │ │ ├── Resolute │ │ │ │ ├── Rio_Branco │ │ │ │ ├── Rosario │ │ │ │ ├── Santa_Isabel │ │ │ │ ├── Santarem │ │ │ │ ├── Santiago │ │ │ │ ├── Santo_Domingo │ │ │ │ ├── Sao_Paulo │ │ │ │ ├── Scoresbysund │ │ │ │ ├── Shiprock │ │ │ │ ├── Sitka │ │ │ │ ├── St_Barthelemy │ │ │ │ ├── St_Johns │ │ │ │ ├── St_Kitts │ │ │ │ ├── St_Lucia │ │ │ │ ├── St_Thomas │ │ │ │ ├── St_Vincent │ │ │ │ ├── Swift_Current │ │ │ │ ├── Tegucigalpa │ │ │ │ ├── Thule │ │ │ │ ├── Thunder_Bay │ │ │ │ ├── Tijuana │ │ │ │ ├── Toronto │ │ │ │ ├── Tortola │ │ │ │ ├── Vancouver │ │ │ │ ├── Virgin │ │ │ │ ├── Whitehorse │ │ │ │ ├── Winnipeg │ │ │ │ ├── Yakutat │ │ │ │ └── Yellowknife │ │ │ ├── Antarctica │ │ │ │ ├── Casey │ │ │ │ ├── Davis │ │ │ │ ├── DumontDUrville │ │ │ │ ├── Macquarie │ │ │ │ ├── Mawson │ │ │ │ ├── McMurdo │ │ │ │ ├── Palmer │ │ │ │ ├── Rothera │ │ │ │ ├── South_Pole │ │ │ │ ├── Syowa │ │ │ │ ├── Troll │ │ │ │ └── Vostok │ │ │ ├── Arctic │ │ │ │ └── Longyearbyen │ │ │ ├── Asia │ │ │ │ ├── Aden │ │ │ │ ├── Almaty │ │ │ │ ├── Amman │ │ │ │ ├── Anadyr │ │ │ │ ├── Aqtau │ │ │ │ ├── Aqtobe │ │ │ │ ├── Ashgabat │ │ │ │ ├── Ashkhabad │ │ │ │ ├── Atyrau │ │ │ │ ├── Baghdad │ │ │ │ ├── Bahrain │ │ │ │ ├── Baku │ │ │ │ ├── Bangkok │ │ │ │ ├── Barnaul │ │ │ │ ├── Beirut │ │ │ │ ├── Bishkek │ │ │ │ ├── Brunei │ │ │ │ ├── Calcutta │ │ │ │ ├── Chita │ │ │ │ ├── Choibalsan │ │ │ │ ├── Chongqing │ │ │ │ ├── Chungking │ │ │ │ ├── Colombo │ │ │ │ ├── Dacca │ │ │ │ ├── Damascus │ │ │ │ ├── Dhaka │ │ │ │ ├── Dili │ │ │ │ ├── Dubai │ │ │ │ ├── Dushanbe │ │ │ │ ├── Famagusta │ │ │ │ ├── Gaza │ │ │ │ ├── Harbin │ │ │ │ ├── Hebron │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ ├── Hong_Kong │ │ │ │ ├── Hovd │ │ │ │ ├── Irkutsk │ │ │ │ ├── Istanbul │ │ │ │ ├── Jakarta │ │ │ │ ├── Jayapura │ │ │ │ ├── Jerusalem │ │ │ │ ├── Kabul │ │ │ │ ├── Kamchatka │ │ │ │ ├── Karachi │ │ │ │ ├── Kashgar │ │ │ │ ├── Kathmandu │ │ │ │ ├── Katmandu │ │ │ │ ├── Khandyga │ │ │ │ ├── Kolkata │ │ │ │ ├── Krasnoyarsk │ │ │ │ ├── Kuala_Lumpur │ │ │ │ ├── Kuching │ │ │ │ ├── Kuwait │ │ │ │ ├── Macao │ │ │ │ ├── Macau │ │ │ │ ├── Magadan │ │ │ │ ├── Makassar │ │ │ │ ├── Manila │ │ │ │ ├── Muscat │ │ │ │ ├── Nicosia │ │ │ │ ├── Novokuznetsk │ │ │ │ ├── Novosibirsk │ │ │ │ ├── Omsk │ │ │ │ ├── Oral │ │ │ │ ├── Phnom_Penh │ │ │ │ ├── Pontianak │ │ │ │ ├── Pyongyang │ │ │ │ ├── Qatar │ │ │ │ ├── Qostanay │ │ │ │ ├── Qyzylorda │ │ │ │ ├── Rangoon │ │ │ │ ├── Riyadh │ │ │ │ ├── Saigon │ │ │ │ ├── Sakhalin │ │ │ │ ├── Samarkand │ │ │ │ ├── Seoul │ │ │ │ ├── Shanghai │ │ │ │ ├── Singapore │ │ │ │ ├── Srednekolymsk │ │ │ │ ├── Taipei │ │ │ │ ├── Tashkent │ │ │ │ ├── Tbilisi │ │ │ │ ├── Tehran │ │ │ │ ├── Tel_Aviv │ │ │ │ ├── Thimbu │ │ │ │ ├── Thimphu │ │ │ │ ├── Tokyo │ │ │ │ ├── Tomsk │ │ │ │ ├── Ujung_Pandang │ │ │ │ ├── Ulaanbaatar │ │ │ │ ├── Ulan_Bator │ │ │ │ ├── Urumqi │ │ │ │ ├── Ust-Nera │ │ │ │ ├── Vientiane │ │ │ │ ├── Vladivostok │ │ │ │ ├── Yakutsk │ │ │ │ ├── Yangon │ │ │ │ ├── Yekaterinburg │ │ │ │ └── Yerevan │ │ │ ├── Atlantic │ │ │ │ ├── Azores │ │ │ │ ├── Bermuda │ │ │ │ ├── Canary │ │ │ │ ├── Cape_Verde │ │ │ │ ├── Faeroe │ │ │ │ ├── Faroe │ │ │ │ ├── Jan_Mayen │ │ │ │ ├── Madeira │ │ │ │ ├── Reykjavik │ │ │ │ ├── South_Georgia │ │ │ │ ├── St_Helena │ │ │ │ └── Stanley │ │ │ ├── Australia │ │ │ │ ├── ACT │ │ │ │ ├── Adelaide │ │ │ │ ├── Brisbane │ │ │ │ ├── Broken_Hill │ │ │ │ ├── Canberra │ │ │ │ ├── Currie │ │ │ │ ├── Darwin │ │ │ │ ├── Eucla │ │ │ │ ├── Hobart │ │ │ │ ├── LHI │ │ │ │ ├── Lindeman │ │ │ │ ├── Lord_Howe │ │ │ │ ├── Melbourne │ │ │ │ ├── NSW │ │ │ │ ├── North │ │ │ │ ├── Perth │ │ │ │ ├── Queensland │ │ │ │ ├── South │ │ │ │ ├── Sydney │ │ │ │ ├── Tasmania │ │ │ │ ├── Victoria │ │ │ │ ├── West │ │ │ │ └── Yancowinna │ │ │ ├── Brazil │ │ │ │ ├── Acre │ │ │ │ ├── DeNoronha │ │ │ │ ├── East │ │ │ │ └── West │ │ │ ├── CET │ │ │ ├── CST6CDT │ │ │ ├── Canada │ │ │ │ ├── Atlantic │ │ │ │ ├── Central │ │ │ │ ├── East-Saskatchewan │ │ │ │ ├── Eastern │ │ │ │ ├── Mountain │ │ │ │ ├── Newfoundland │ │ │ │ ├── Pacific │ │ │ │ ├── Saskatchewan │ │ │ │ └── Yukon │ │ │ ├── Chile │ │ │ │ ├── Continental │ │ │ │ └── EasterIsland │ │ │ ├── Cuba │ │ │ ├── EET │ │ │ ├── EST │ │ │ ├── EST5EDT │ │ │ ├── Egypt │ │ │ ├── Eire │ │ │ ├── Etc │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT+1 │ │ │ │ ├── GMT+10 │ │ │ │ ├── GMT+11 │ │ │ │ ├── GMT+12 │ │ │ │ ├── GMT+2 │ │ │ │ ├── GMT+3 │ │ │ │ ├── GMT+4 │ │ │ │ ├── GMT+5 │ │ │ │ ├── GMT+6 │ │ │ │ ├── GMT+7 │ │ │ │ ├── GMT+8 │ │ │ │ ├── GMT+9 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT-1 │ │ │ │ ├── GMT-10 │ │ │ │ ├── GMT-11 │ │ │ │ ├── GMT-12 │ │ │ │ ├── GMT-13 │ │ │ │ ├── GMT-14 │ │ │ │ ├── GMT-2 │ │ │ │ ├── GMT-3 │ │ │ │ ├── GMT-4 │ │ │ │ ├── GMT-5 │ │ │ │ ├── GMT-6 │ │ │ │ ├── GMT-7 │ │ │ │ ├── GMT-8 │ │ │ │ ├── GMT-9 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── UCT │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ └── Zulu │ │ │ ├── Europe │ │ │ │ ├── Amsterdam │ │ │ │ ├── Andorra │ │ │ │ ├── Astrakhan │ │ │ │ ├── Athens │ │ │ │ ├── Belfast │ │ │ │ ├── Belgrade │ │ │ │ ├── Berlin │ │ │ │ ├── Bratislava │ │ │ │ ├── Brussels │ │ │ │ ├── Bucharest │ │ │ │ ├── Budapest │ │ │ │ ├── Busingen │ │ │ │ ├── Chisinau │ │ │ │ ├── Copenhagen │ │ │ │ ├── Dublin │ │ │ │ ├── Gibraltar │ │ │ │ ├── Guernsey │ │ │ │ ├── Helsinki │ │ │ │ ├── Isle_of_Man │ │ │ │ ├── Istanbul │ │ │ │ ├── Jersey │ │ │ │ ├── Kaliningrad │ │ │ │ ├── Kiev │ │ │ │ ├── Kirov │ │ │ │ ├── Lisbon │ │ │ │ ├── Ljubljana │ │ │ │ ├── London │ │ │ │ ├── Luxembourg │ │ │ │ ├── Madrid │ │ │ │ ├── Malta │ │ │ │ ├── Mariehamn │ │ │ │ ├── Minsk │ │ │ │ ├── Monaco │ │ │ │ ├── Moscow │ │ │ │ ├── Nicosia │ │ │ │ ├── Oslo │ │ │ │ ├── Paris │ │ │ │ ├── Podgorica │ │ │ │ ├── Prague │ │ │ │ ├── Riga │ │ │ │ ├── Rome │ │ │ │ ├── Samara │ │ │ │ ├── San_Marino │ │ │ │ ├── Sarajevo │ │ │ │ ├── Saratov │ │ │ │ ├── Simferopol │ │ │ │ ├── Skopje │ │ │ │ ├── Sofia │ │ │ │ ├── Stockholm │ │ │ │ ├── Tallinn │ │ │ │ ├── Tirane │ │ │ │ ├── Tiraspol │ │ │ │ ├── Ulyanovsk │ │ │ │ ├── Uzhgorod │ │ │ │ ├── Vaduz │ │ │ │ ├── Vatican │ │ │ │ ├── Vienna │ │ │ │ ├── Vilnius │ │ │ │ ├── Volgograd │ │ │ │ ├── Warsaw │ │ │ │ ├── Zagreb │ │ │ │ ├── Zaporozhye │ │ │ │ └── Zurich │ │ │ ├── GB │ │ │ ├── GB-Eire │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT-0 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── HST │ │ │ ├── Hongkong │ │ │ ├── Iceland │ │ │ ├── Indian │ │ │ │ ├── Antananarivo │ │ │ │ ├── Chagos │ │ │ │ ├── Christmas │ │ │ │ ├── Cocos │ │ │ │ ├── Comoro │ │ │ │ ├── Kerguelen │ │ │ │ ├── Mahe │ │ │ │ ├── Maldives │ │ │ │ ├── Mauritius │ │ │ │ ├── Mayotte │ │ │ │ └── Reunion │ │ │ ├── Iran │ │ │ ├── Israel │ │ │ ├── Jamaica │ │ │ ├── Japan │ │ │ ├── Kwajalein │ │ │ ├── Libya │ │ │ ├── MET │ │ │ ├── MST │ │ │ ├── MST7MDT │ │ │ ├── Mexico │ │ │ │ ├── BajaNorte │ │ │ │ ├── BajaSur │ │ │ │ └── General │ │ │ ├── NZ │ │ │ ├── NZ-CHAT │ │ │ ├── Navajo │ │ │ ├── PRC │ │ │ ├── PST8PDT │ │ │ ├── Pacific │ │ │ │ ├── Apia │ │ │ │ ├── Auckland │ │ │ │ ├── Bougainville │ │ │ │ ├── Chatham │ │ │ │ ├── Chuuk │ │ │ │ ├── Easter │ │ │ │ ├── Efate │ │ │ │ ├── Enderbury │ │ │ │ ├── Fakaofo │ │ │ │ ├── Fiji │ │ │ │ ├── Funafuti │ │ │ │ ├── Galapagos │ │ │ │ ├── Gambier │ │ │ │ ├── Guadalcanal │ │ │ │ ├── Guam │ │ │ │ ├── Honolulu │ │ │ │ ├── Johnston │ │ │ │ ├── Kanton │ │ │ │ ├── Kiritimati │ │ │ │ ├── Kosrae │ │ │ │ ├── Kwajalein │ │ │ │ ├── Majuro │ │ │ │ ├── Marquesas │ │ │ │ ├── Midway │ │ │ │ ├── Nauru │ │ │ │ ├── Niue │ │ │ │ ├── Norfolk │ │ │ │ ├── Noumea │ │ │ │ ├── Pago_Pago │ │ │ │ ├── Palau │ │ │ │ ├── Pitcairn │ │ │ │ ├── Pohnpei │ │ │ │ ├── Ponape │ │ │ │ ├── Port_Moresby │ │ │ │ ├── Rarotonga │ │ │ │ ├── Saipan │ │ │ │ ├── Samoa │ │ │ │ ├── Tahiti │ │ │ │ ├── Tarawa │ │ │ │ ├── Tongatapu │ │ │ │ ├── Truk │ │ │ │ ├── Wake │ │ │ │ ├── Wallis │ │ │ │ └── Yap │ │ │ ├── Poland │ │ │ ├── Portugal │ │ │ ├── ROC │ │ │ ├── ROK │ │ │ ├── Singapore │ │ │ ├── SystemV │ │ │ │ ├── AST4 │ │ │ │ ├── AST4ADT │ │ │ │ ├── CST6 │ │ │ │ ├── CST6CDT │ │ │ │ ├── EST5 │ │ │ │ ├── EST5EDT │ │ │ │ ├── HST10 │ │ │ │ ├── MST7 │ │ │ │ ├── MST7MDT │ │ │ │ ├── PST8 │ │ │ │ ├── PST8PDT │ │ │ │ ├── YST9 │ │ │ │ └── YST9YDT │ │ │ ├── Turkey │ │ │ ├── UCT │ │ │ ├── US │ │ │ │ ├── Alaska │ │ │ │ ├── Aleutian │ │ │ │ ├── Arizona │ │ │ │ ├── Central │ │ │ │ ├── East-Indiana │ │ │ │ ├── Eastern │ │ │ │ ├── Hawaii │ │ │ │ ├── Indiana-Starke │ │ │ │ ├── Michigan │ │ │ │ ├── Mountain │ │ │ │ ├── Pacific │ │ │ │ ├── Pacific-New │ │ │ │ └── Samoa │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ ├── W-SU │ │ │ ├── WET │ │ │ └── Zulu │ │ └── word.tcl │ └── tk │ │ ├── bgerror.tcl │ │ ├── button.tcl │ │ ├── choosedir.tcl │ │ ├── clrpick.tcl │ │ ├── comdlg.tcl │ │ ├── console.tcl │ │ ├── demos │ │ ├── README │ │ ├── anilabel.tcl │ │ ├── aniwave.tcl │ │ ├── arrow.tcl │ │ ├── bind.tcl │ │ ├── bitmap.tcl │ │ ├── browse │ │ ├── button.tcl │ │ ├── check.tcl │ │ ├── clrpick.tcl │ │ ├── colors.tcl │ │ ├── combo.tcl │ │ ├── cscroll.tcl │ │ ├── ctext.tcl │ │ ├── dialog1.tcl │ │ ├── dialog2.tcl │ │ ├── en.msg │ │ ├── entry1.tcl │ │ ├── entry2.tcl │ │ ├── entry3.tcl │ │ ├── filebox.tcl │ │ ├── floor.tcl │ │ ├── fontchoose.tcl │ │ ├── form.tcl │ │ ├── goldberg.tcl │ │ ├── hello │ │ ├── hscale.tcl │ │ ├── icon.tcl │ │ ├── image1.tcl │ │ ├── image2.tcl │ │ ├── images │ │ │ ├── earth.gif │ │ │ ├── earthmenu.png │ │ │ ├── earthris.gif │ │ │ ├── flagdown.xbm │ │ │ ├── flagup.xbm │ │ │ ├── gray25.xbm │ │ │ ├── letters.xbm │ │ │ ├── noletter.xbm │ │ │ ├── ouster.png │ │ │ ├── pattern.xbm │ │ │ ├── tcllogo.gif │ │ │ └── teapot.ppm │ │ ├── items.tcl │ │ ├── ixset │ │ ├── knightstour.tcl │ │ ├── label.tcl │ │ ├── labelframe.tcl │ │ ├── license.terms │ │ ├── mclist.tcl │ │ ├── menu.tcl │ │ ├── menubu.tcl │ │ ├── msgbox.tcl │ │ ├── nl.msg │ │ ├── paned1.tcl │ │ ├── paned2.tcl │ │ ├── pendulum.tcl │ │ ├── plot.tcl │ │ ├── puzzle.tcl │ │ ├── radio.tcl │ │ ├── rmt │ │ ├── rolodex │ │ ├── ruler.tcl │ │ ├── sayings.tcl │ │ ├── search.tcl │ │ ├── spin.tcl │ │ ├── square │ │ ├── states.tcl │ │ ├── style.tcl │ │ ├── tclIndex │ │ ├── tcolor │ │ ├── text.tcl │ │ ├── textpeer.tcl │ │ ├── timer │ │ ├── toolbar.tcl │ │ ├── tree.tcl │ │ ├── ttkbut.tcl │ │ ├── ttkmenu.tcl │ │ ├── ttknote.tcl │ │ ├── ttkpane.tcl │ │ ├── ttkprogress.tcl │ │ ├── ttkscale.tcl │ │ ├── twind.tcl │ │ ├── unicodeout.tcl │ │ ├── vscale.tcl │ │ └── widget │ │ ├── dialog.tcl │ │ ├── entry.tcl │ │ ├── focus.tcl │ │ ├── fontchooser.tcl │ │ ├── iconlist.tcl │ │ ├── icons.tcl │ │ ├── images │ │ ├── README │ │ ├── logo.eps │ │ ├── logo100.gif │ │ ├── logo64.gif │ │ ├── logoLarge.gif │ │ ├── logoMed.gif │ │ ├── pwrdLogo.eps │ │ ├── pwrdLogo100.gif │ │ ├── pwrdLogo150.gif │ │ ├── pwrdLogo175.gif │ │ ├── pwrdLogo200.gif │ │ ├── pwrdLogo75.gif │ │ └── tai-ku.gif │ │ ├── license.terms │ │ ├── listbox.tcl │ │ ├── megawidget.tcl │ │ ├── menu.tcl │ │ ├── mkpsenc.tcl │ │ ├── msgbox.tcl │ │ ├── msgs │ │ ├── cs.msg │ │ ├── da.msg │ │ ├── de.msg │ │ ├── el.msg │ │ ├── en.msg │ │ ├── en_gb.msg │ │ ├── eo.msg │ │ ├── es.msg │ │ ├── fr.msg │ │ ├── hu.msg │ │ ├── it.msg │ │ ├── nl.msg │ │ ├── pl.msg │ │ ├── pt.msg │ │ ├── ru.msg │ │ └── sv.msg │ │ ├── obsolete.tcl │ │ ├── optMenu.tcl │ │ ├── palette.tcl │ │ ├── panedwindow.tcl │ │ ├── pkgIndex.tcl │ │ ├── safetk.tcl │ │ ├── scale.tcl │ │ ├── scrlbar.tcl │ │ ├── spinbox.tcl │ │ ├── tclIndex │ │ ├── tearoff.tcl │ │ ├── text.tcl │ │ ├── tk.tcl │ │ ├── tkfbox.tcl │ │ ├── ttk │ │ ├── altTheme.tcl │ │ ├── aquaTheme.tcl │ │ ├── button.tcl │ │ ├── clamTheme.tcl │ │ ├── classicTheme.tcl │ │ ├── combobox.tcl │ │ ├── cursors.tcl │ │ ├── defaults.tcl │ │ ├── entry.tcl │ │ ├── fonts.tcl │ │ ├── menubutton.tcl │ │ ├── notebook.tcl │ │ ├── panedwindow.tcl │ │ ├── progress.tcl │ │ ├── scale.tcl │ │ ├── scrollbar.tcl │ │ ├── sizegrip.tcl │ │ ├── spinbox.tcl │ │ ├── treeview.tcl │ │ ├── ttk.tcl │ │ ├── utils.tcl │ │ ├── vistaTheme.tcl │ │ ├── winTheme.tcl │ │ └── xpTheme.tcl │ │ ├── unsupported.tcl │ │ └── xmfbox.tcl ├── libcrypto-1_1.dll ├── libffi-7.dll ├── libffi-8.dll ├── library.zip ├── libssl-1_1.dll ├── modbus_ini_settings ├── modbus_ini_settings_display ├── psutil._psutil_windows.pyd ├── pyexpat.pyd ├── python3.dll ├── python311.dll ├── python38.dll ├── python39.dll ├── select.pyd ├── tcl86t.dll ├── tk86t.dll ├── unicodedata.pyd ├── update_plc ├── update_screen_load ├── wx._adv.pyd ├── wx._core.pyd ├── wx._html.pyd ├── wx._msw.pyd ├── wx.siplib.pyd ├── wxbase314u_net_vc140_x64.dll ├── wxbase314u_vc140_x64.dll ├── wxbase315u_net_vc140_x64.dll ├── wxbase315u_vc140_x64.dll ├── wxbase32u_net_vc140_x64.dll ├── wxbase32u_vc140_x64.dll ├── wxmsw314u_core_vc140_x64.dll ├── wxmsw314u_html_vc140_x64.dll ├── wxmsw315u_core_vc140_x64.dll ├── wxmsw315u_html_vc140_x64.dll ├── wxmsw32u_core_vc140_x64.dll └── wxmsw32u_html_vc140_x64.dll ├── fw-build └── Mach4MPGModbus-ILI9341-Display.ino.bin ├── img ├── IMG_1540.jpeg ├── IMG_1541.jpeg ├── PCB-exploded.png ├── PCB-programming-port.png ├── PCB.PNG ├── WirelessMPG_bb.png ├── captive_portal.png ├── captive_portal2.PNG ├── esp32-ili9341-wiring.png ├── fw-upload.PNG ├── ip_address.PNG ├── modbus_diag.PNG ├── mpg-ins.PNG ├── mpg_installer.PNG └── wizard.PNG ├── requirements.txt ├── setup.py └── src ├── 3d Print Files ├── mpg-bottom.stl ├── mpg-top-no-knobs.stl └── mpg-top.stl ├── Mach4Module └── ModbusMPG.lua ├── Mach4Wizard └── MPGWiz.mcs ├── PCB ├── BOM_PCB_open_source_MPG_2022-04-03.csv ├── Gerber_PCB_open_source_MPG_2022-04-03.zip └── PickAndPlace_PCB_open_source_MPG_2022-04-03.csv ├── ini_settings ├── gReg_ini_settings ├── modbus_ini_settings ├── modbus_ini_settings_display ├── update_plc └── update_screen_load ├── installer └── MPGInstaller.py └── wxForms ├── MPGInstaller.fbp └── MPGWiz.fbp /Arduino/libraries/ESP32Encoder-master/library.properties: -------------------------------------------------------------------------------- 1 | name=ESP32Encoder 2 | version=0.3.8 3 | author=Kevin Harrington 4 | maintainer=Kevin Harrington 5 | sentence=Encoder library for the ESP32 using interrupts. 6 | paragraph=Encoder library for the ESP32 using interrupts. This library supports quadrature and half quadrature. 7 | category=Device Control 8 | url=https://github.com/madhephaestus/ESP32Encoder/ 9 | architectures=esp32 10 | includes=ESP32Encoder.h 11 | 12 | -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define nr_chrs_f16 96 4 | #define chr_hgt_f16 16 5 | #define baseline_f16 13 6 | #define data_size_f16 8 7 | #define firstchr_f16 32 8 | 9 | extern const unsigned char widtbl_f16[96]; 10 | extern const unsigned char* const chrtbl_f16[96]; 11 | -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define nr_chrs_f32 96 4 | #define chr_hgt_f32 26 5 | #define baseline_f32 19 6 | #define data_size_f32 8 7 | #define firstchr_f32 32 8 | 9 | extern const unsigned char widtbl_f32[96]; 10 | extern const unsigned char* const chrtbl_f32[96]; 11 | -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define nr_chrs_f64 96 4 | #define chr_hgt_f64 48 5 | #define baseline_f64 36 6 | #define data_size_f64 8 7 | #define firstchr_f64 32 8 | 9 | extern const unsigned char widtbl_f64[96]; 10 | extern const unsigned char* const chrtbl_f64[96]; 11 | -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define nr_chrs_f72 96 4 | #define chr_hgt_f72 75 5 | #define baseline_f72 73 6 | #define data_size_f72 8 7 | #define firstchr_f72 32 8 | 9 | extern const unsigned char widtbl_f72[96]; 10 | extern const unsigned char* const chrtbl_f72[96]; 11 | -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define nr_chrs_f72 96 4 | #define chr_hgt_f72 75 5 | #define baseline_f72 73 6 | #define data_size_f72 8 7 | #define firstchr_f72 32 8 | 9 | extern const unsigned char widtbl_f72[96]; 10 | extern const unsigned char* const chrtbl_f72[96]; 11 | -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define nr_chrs_f7s 96 4 | #define chr_hgt_f7s 48 5 | #define baseline_f7s 47 6 | #define data_size_f7s 8 7 | #define firstchr_f7s 32 8 | 9 | extern const unsigned char widtbl_f7s[96]; 10 | extern const unsigned char* const chrtbl_f7s[96]; 11 | -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Fonts/TrueType/Not_yet_supported.txt: -------------------------------------------------------------------------------- 1 | TO DO: Add support for converted True Type fonts in an RLE format. -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- 1 | This is a standalone library that contains both graphics functions 2 | and the TFT chip driver library. It supports the ESP8266, ESP32 and 3 | STM32 processors with performance optimised code. Other Arduino IDE 4 | compatible boards are also supported but the library then uses 5 | generic functions which will be slower. The library uses 32 bit 6 | variables extensively so this will affect performance on 8 and 16 7 | bit processors. 8 | -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Tools/Create_Smooth_Font/Create_font/FontFiles/Final-Frontier28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/Tools/Create_Smooth_Font/Create_font/FontFiles/Final-Frontier28.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Tools/Create_Smooth_Font/Create_font/data/Final-Frontier.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/Tools/Create_Smooth_Font/Create_font/data/Final-Frontier.ttf -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Tools/ESP32 UNO board mod/ESP32 UNO board mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/Tools/ESP32 UNO board mod/ESP32 UNO board mod.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Tools/ESP32 UNO board mod/ESP32 UNO board pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/Tools/ESP32 UNO board mod/ESP32 UNO board pinout.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Tools/Images/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/Tools/Images/star.bmp -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Tools/RPi_TFT_Connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/Tools/RPi_TFT_Connections.png -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/Tools/RPi_TFT_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/Tools/RPi_TFT_mod.png -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/Baboon40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/Baboon40.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/EagleEye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/EagleEye.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/Mouse480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/Mouse480.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/lena20k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/lena20k.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Generic/TFT_SPIFFS_BMP/data/parrot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Generic/TFT_SPIFFS_BMP/data/parrot.bmp -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Latin-Hiragana-24.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Latin-Hiragana-24.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Unicode-Test-72.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Unicode-Test-72.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_1/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_1/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_1/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_1/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_2/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_2/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_2/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_2/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_3/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_3/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_3/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_3/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_3/data/NotoSansMonoSCB20.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_3/data/NotoSansMonoSCB20.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_4/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_4/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_4/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Font_Demo_4/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Print_Smooth_Font/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Print_Smooth_Font/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Smooth_font_gradient/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Smooth_font_gradient/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Smooth_font_gradient/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Smooth_font_gradient/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Smooth_font_reading_TFT/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Smooth_font_reading_TFT/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Smooth_font_reading_TFT/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Smooth_font_reading_TFT/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Unicode_test/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Unicode_test/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Unicode_test/data/Latin-Hiragana-24.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Unicode_test/data/Latin-Hiragana-24.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Unicode_test/data/Unicode-Test-72.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/LittleFS/Unicode_test/data/Unicode-Test-72.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansMonoSCB20.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansMonoSCB20.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Latin-Hiragana-24.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Latin-Hiragana-24.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Unicode-Test-72.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Unicode-Test-72.vlw -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Sprite/Animated_dial/data/dial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Sprite/Animated_dial/data/dial.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Sprite/Rotated_Sprite_3/data/EagleEye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Sprite/Rotated_Sprite_3/data/EagleEye.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Sprite/Rotated_Sprite_3/data/Eye_80x64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/Sprite/Rotated_Sprite_3/data/Eye_80x64.jpg -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/Sprite/Sprite_image_4bit/sample_images.h: -------------------------------------------------------------------------------- 1 | #include // Include the graphics library (this includes the sprite functions) 2 | 3 | extern const uint8_t stars[12800] PROGMEM ; -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/ePaper/Floyd_Steinberg/data/TestCard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/ePaper/Floyd_Steinberg/data/TestCard.bmp -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/examples/ePaper/Floyd_Steinberg/data/Tiger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/TFT_eSPI/examples/ePaper/Floyd_Steinberg/data/Tiger.bmp -------------------------------------------------------------------------------- /Arduino/libraries/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- 1 | name=TFT_eSPI 2 | version=2.3.59 3 | author=Bodmer 4 | maintainer=Bodmer 5 | sentence=TFT graphics library for Arduino processors with performance optimisation for STM32, ESP8266 and ESP32 6 | paragraph=Supports TFT displays using drivers (ILI9341 etc) that operate with hardware SPI or 8 bit parallel. 7 | category=Display 8 | url=https://github.com/Bodmer/TFT_eSPI 9 | architectures=* 10 | includes=TFT_eSPI.h 11 | 12 | -------------------------------------------------------------------------------- /Arduino/libraries/WIFIMANAGER-ESP32-master/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /Arduino/libraries/WIFIMANAGER-ESP32-master/library.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WifiManager", 3 | "keywords": "wifi, wi-fi", 4 | "description": "ESP8266/ESP32 WiFi Connection manager with fallback web configuration portal", 5 | "repository": 6 | { 7 | "type": "git", 8 | "url": "https://github.com/bbx10/WiFiManager.git" 9 | }, 10 | "frameworks": "arduino", 11 | "platforms": "espressif8266", 12 | "version": "0.99.9" 13 | } 14 | -------------------------------------------------------------------------------- /Arduino/libraries/WIFIMANAGER-ESP32-master/library.properties: -------------------------------------------------------------------------------- 1 | name=WiFiManager 2 | version=0.99.9 3 | author=tzapu 4 | maintainer=bbx10 5 | sentence=ESP8266/ESP32 WiFi Connection manager with fallback web configuration portal 6 | paragraph=Library for configuring ESP8266 modules WiFi credentials at runtime. 7 | category=Communication 8 | url=https://github.com/bbx10/WiFiManager.git 9 | architectures=esp8266,esp32 10 | -------------------------------------------------------------------------------- /Arduino/libraries/eSPI_TouchUI-master/README.md: -------------------------------------------------------------------------------- 1 | # eSPI_TouchUI 2 | Buttons and Slider controls based on Bodmer eSPI TFT library and Touch XPT2046 3 | 4 | 5 | TODO: 6 | 7 | Graphich Button 8 | 9 | Add more examples 10 | -------------------------------------------------------------------------------- /Arduino/libraries/eSPI_TouchUI-master/library.properties: -------------------------------------------------------------------------------- 1 | name=TFT_eSPI_TouchUI 2 | version=1.0.0 3 | author=Jlgoasis 4 | maintainer=Jlgoasis 5 | sentence=Touch Buttons and Slider based on Bodmer TFT eSPI library 6 | paragraph=based on Bodmer TFT eSPI library. 7 | category=Display 8 | url=http: 9 | architectures=esp8266,esp32 10 | includes=TFT_eSPI_TouchUI.h 11 | -------------------------------------------------------------------------------- /Arduino/libraries/modbus-esp8266-master/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/arduino.json 2 | .vscode/c_cpp_properties.json 3 | .vscode/* 4 | src/ModbusSerial.cpp 5 | src/ModbusSerial.h 6 | -------------------------------------------------------------------------------- /Arduino/libraries/modbus-esp8266-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/Arduino/libraries/modbus-esp8266-master/LICENSE.txt -------------------------------------------------------------------------------- /Arduino/libraries/modbus-esp8266-master/tests/README.md: -------------------------------------------------------------------------------- 1 | # Modbus RTU tests 2 | 3 | There are not autotests. Just sketch executing Master and Slave on single ESP device and run Modbus calls with checking results. 4 | 5 | ## Required libraries 6 | [StreamBuf](https://github.com/emelianov/StreamBuf) -------------------------------------------------------------------------------- /dist/MPGInstaller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/MPGInstaller.exe -------------------------------------------------------------------------------- /dist/VCRUNTIME140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/VCRUNTIME140.dll -------------------------------------------------------------------------------- /dist/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_asyncio.pyd -------------------------------------------------------------------------------- /dist/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_bz2.pyd -------------------------------------------------------------------------------- /dist/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_ctypes.pyd -------------------------------------------------------------------------------- /dist/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_decimal.pyd -------------------------------------------------------------------------------- /dist/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_elementtree.pyd -------------------------------------------------------------------------------- /dist/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_hashlib.pyd -------------------------------------------------------------------------------- /dist/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_lzma.pyd -------------------------------------------------------------------------------- /dist/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_multiprocessing.pyd -------------------------------------------------------------------------------- /dist/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_overlapped.pyd -------------------------------------------------------------------------------- /dist/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_queue.pyd -------------------------------------------------------------------------------- /dist/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_socket.pyd -------------------------------------------------------------------------------- /dist/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_ssl.pyd -------------------------------------------------------------------------------- /dist/_testcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_testcapi.pyd -------------------------------------------------------------------------------- /dist/_testinternalcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_testinternalcapi.pyd -------------------------------------------------------------------------------- /dist/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/_tkinter.pyd -------------------------------------------------------------------------------- /dist/lib/tcl/encoding/iso2022-jp.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022-jp, escape-driven 2 | E 3 | name iso2022-jp 4 | init {} 5 | final {} 6 | ascii \x1b(B 7 | jis0201 \x1b(J 8 | jis0208 \x1b$B 9 | jis0208 \x1b$@ 10 | jis0212 \x1b$(D 11 | gb2312 \x1b$A 12 | ksc5601 \x1b$(C 13 | -------------------------------------------------------------------------------- /dist/lib/tcl/encoding/iso2022-kr.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022-kr, escape-driven 2 | E 3 | name iso2022-kr 4 | init \x1b$)C 5 | final {} 6 | iso8859-1 \x0f 7 | ksc5601 \x0e 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/encoding/iso2022.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022, escape-driven 2 | E 3 | name iso2022 4 | init {} 5 | final {} 6 | iso8859-1 \x1b(B 7 | jis0201 \x1b(J 8 | gb1988 \x1b(T 9 | jis0208 \x1b$B 10 | jis0208 \x1b$@ 11 | jis0212 \x1b$(D 12 | gb2312 \x1b$A 13 | ksc5601 \x1b$(C 14 | jis0208 \x1b&@\x1b$B 15 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/af_za.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset af_ZA DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset af_ZA TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset af_ZA DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/ar_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ar_IN DATE_FORMAT "%A %d %B %Y" 4 | ::msgcat::mcset ar_IN TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset ar_IN DATE_TIME_FORMAT "%A %d %B %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/bn_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset bn_IN DATE_FORMAT "%A %d %b %Y" 4 | ::msgcat::mcset bn_IN TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset bn_IN DATE_TIME_FORMAT "%A %d %b %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_au.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_AU DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset en_AU TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset en_AU TIME_FORMAT_12 "%I:%M:%S %P %z" 6 | ::msgcat::mcset en_AU DATE_TIME_FORMAT "%e/%m/%Y %H:%M:%S %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_be.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_BE DATE_FORMAT "%d %b %Y" 4 | ::msgcat::mcset en_BE TIME_FORMAT "%k:%M:%S" 5 | ::msgcat::mcset en_BE TIME_FORMAT_12 "%k h %M min %S s %z" 6 | ::msgcat::mcset en_BE DATE_TIME_FORMAT "%d %b %Y %k:%M:%S %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_bw.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_BW DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset en_BW TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset en_BW DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_ca.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_CA DATE_FORMAT "%d/%m/%y" 4 | ::msgcat::mcset en_CA TIME_FORMAT "%r" 5 | ::msgcat::mcset en_CA TIME_FORMAT_12 "%I:%M:%S %p" 6 | ::msgcat::mcset en_CA DATE_TIME_FORMAT "%a %d %b %Y %r %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_gb.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_GB DATE_FORMAT "%d/%m/%y" 4 | ::msgcat::mcset en_GB TIME_FORMAT "%T" 5 | ::msgcat::mcset en_GB TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset en_GB DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_hk.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_HK AM "AM" 4 | ::msgcat::mcset en_HK PM "PM" 5 | ::msgcat::mcset en_HK DATE_FORMAT "%B %e, %Y" 6 | ::msgcat::mcset en_HK TIME_FORMAT_12 "%l:%M:%S %P" 7 | ::msgcat::mcset en_HK DATE_TIME_FORMAT "%B %e, %Y %l:%M:%S %P %z" 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_ie.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_IE DATE_FORMAT "%d/%m/%y" 4 | ::msgcat::mcset en_IE TIME_FORMAT "%T" 5 | ::msgcat::mcset en_IE TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset en_IE DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_IN AM "AM" 4 | ::msgcat::mcset en_IN PM "PM" 5 | ::msgcat::mcset en_IN DATE_FORMAT "%d %B %Y" 6 | ::msgcat::mcset en_IN TIME_FORMAT "%H:%M:%S" 7 | ::msgcat::mcset en_IN DATE_TIME_FORMAT "%d %B %Y %H:%M:%S %z" 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_nz.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_NZ DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset en_NZ TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset en_NZ TIME_FORMAT_12 "%I:%M:%S %P %z" 6 | ::msgcat::mcset en_NZ DATE_TIME_FORMAT "%e/%m/%Y %H:%M:%S %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_ph.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_PH AM "AM" 4 | ::msgcat::mcset en_PH PM "PM" 5 | ::msgcat::mcset en_PH DATE_FORMAT "%B %e, %Y" 6 | ::msgcat::mcset en_PH TIME_FORMAT_12 "%l:%M:%S %P" 7 | ::msgcat::mcset en_PH DATE_TIME_FORMAT "%B %e, %Y %l:%M:%S %P %z" 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_sg.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_SG DATE_FORMAT "%d %b %Y" 4 | ::msgcat::mcset en_SG TIME_FORMAT_12 "%P %I:%M:%S" 5 | ::msgcat::mcset en_SG DATE_TIME_FORMAT "%d %b %Y %P %I:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_za.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_ZA DATE_FORMAT "%Y/%m/%d" 4 | ::msgcat::mcset en_ZA TIME_FORMAT_12 "%I:%M:%S" 5 | ::msgcat::mcset en_ZA DATE_TIME_FORMAT "%Y/%m/%d %I:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/en_zw.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_ZW DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset en_ZW TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset en_ZW DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_ar.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_AR DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_AR TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset es_AR DATE_TIME_FORMAT "%d/%m/%Y %H:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_bo.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_BO DATE_FORMAT "%d-%m-%Y" 4 | ::msgcat::mcset es_BO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_BO DATE_TIME_FORMAT "%d-%m-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_cl.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CL DATE_FORMAT "%d-%m-%Y" 4 | ::msgcat::mcset es_CL TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CL DATE_TIME_FORMAT "%d-%m-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_co.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CO DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_CO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CO DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_cr.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CR DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_CR TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CR DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_do.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_DO DATE_FORMAT "%m/%d/%Y" 4 | ::msgcat::mcset es_DO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_DO DATE_TIME_FORMAT "%m/%d/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_ec.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_EC DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_EC TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_EC DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_gt.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_GT DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_GT TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_GT DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_hn.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_HN DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_HN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_HN DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_mx.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_MX DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_MX TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_MX DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_ni.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_NI DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_NI TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_NI DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_pa.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PA DATE_FORMAT "%m/%d/%Y" 4 | ::msgcat::mcset es_PA TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PA DATE_TIME_FORMAT "%m/%d/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_pe.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PE DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_PE TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PE DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_pr.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PR DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_PR TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PR DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_py.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PY DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_PY TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PY DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_sv.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_SV DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_SV TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_SV DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_uy.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_UY DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_UY TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_UY DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/es_ve.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_VE DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_VE TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_VE DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/eu_es.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset eu_ES DATE_FORMAT "%a, %Yeko %bren %da" 4 | ::msgcat::mcset eu_ES TIME_FORMAT "%T" 5 | ::msgcat::mcset eu_ES TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset eu_ES DATE_TIME_FORMAT "%y-%m-%d %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/fa_ir.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fa_IR AM "\u0635\u0628\u062d" 4 | ::msgcat::mcset fa_IR PM "\u0639\u0635\u0631" 5 | ::msgcat::mcset fa_IR DATE_FORMAT "%d\u2044%m\u2044%Y" 6 | ::msgcat::mcset fa_IR TIME_FORMAT "%S:%M:%H" 7 | ::msgcat::mcset fa_IR TIME_FORMAT_12 "%S:%M:%l %P" 8 | ::msgcat::mcset fa_IR DATE_TIME_FORMAT "%d\u2044%m\u2044%Y %S:%M:%H %z" 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/fo_fo.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fo_FO DATE_FORMAT "%d/%m-%Y" 4 | ::msgcat::mcset fo_FO TIME_FORMAT "%T" 5 | ::msgcat::mcset fo_FO TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset fo_FO DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/fr_be.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fr_BE DATE_FORMAT "%d/%m/%y" 4 | ::msgcat::mcset fr_BE TIME_FORMAT "%T" 5 | ::msgcat::mcset fr_BE TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset fr_BE DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/fr_ca.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fr_CA DATE_FORMAT "%Y-%m-%d" 4 | ::msgcat::mcset fr_CA TIME_FORMAT "%T" 5 | ::msgcat::mcset fr_CA TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset fr_CA DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/fr_ch.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fr_CH DATE_FORMAT "%d. %m. %y" 4 | ::msgcat::mcset fr_CH TIME_FORMAT "%T" 5 | ::msgcat::mcset fr_CH TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset fr_CH DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/ga_ie.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ga_IE DATE_FORMAT "%d.%m.%y" 4 | ::msgcat::mcset ga_IE TIME_FORMAT "%T" 5 | ::msgcat::mcset ga_IE TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset ga_IE DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/gl_es.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset gl_ES DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset gl_ES TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset gl_ES DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/gv_gb.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset gv_GB DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset gv_GB TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset gv_GB DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/hi_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset hi_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset hi_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset hi_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/id_id.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset id_ID DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset id_ID TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset id_ID DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/it_ch.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset it_CH DATE_FORMAT "%e. %B %Y" 4 | ::msgcat::mcset it_CH TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset it_CH DATE_TIME_FORMAT "%e. %B %Y %H:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/kl_gl.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset kl_GL DATE_FORMAT "%d %b %Y" 4 | ::msgcat::mcset kl_GL TIME_FORMAT "%T" 5 | ::msgcat::mcset kl_GL TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset kl_GL DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/ko_kr.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ko_KR BCE "\uae30\uc6d0\uc804" 4 | ::msgcat::mcset ko_KR CE "\uc11c\uae30" 5 | ::msgcat::mcset ko_KR DATE_FORMAT "%Y.%m.%d" 6 | ::msgcat::mcset ko_KR TIME_FORMAT_12 "%P %l:%M:%S" 7 | ::msgcat::mcset ko_KR DATE_TIME_FORMAT "%Y.%m.%d %P %l:%M:%S %z" 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/kok_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset kok_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset kok_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset kok_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/kw_gb.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset kw_GB DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset kw_GB TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset kw_GB DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/mr_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset mr_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset mr_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset mr_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/ms_my.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ms_MY DATE_FORMAT "%A %d %b %Y" 4 | ::msgcat::mcset ms_MY TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset ms_MY DATE_TIME_FORMAT "%A %d %b %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/nl_be.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset nl_BE DATE_FORMAT "%d-%m-%y" 4 | ::msgcat::mcset nl_BE TIME_FORMAT "%T" 5 | ::msgcat::mcset nl_BE TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset nl_BE DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/pt_br.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset pt_BR DATE_FORMAT "%d-%m-%Y" 4 | ::msgcat::mcset pt_BR TIME_FORMAT "%T" 5 | ::msgcat::mcset pt_BR TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset pt_BR DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/ru_ua.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ru_UA DATE_FORMAT "%d.%m.%Y" 4 | ::msgcat::mcset ru_UA TIME_FORMAT "%k:%M:%S" 5 | ::msgcat::mcset ru_UA DATE_TIME_FORMAT "%d.%m.%Y %k:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/ta_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ta_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset ta_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset ta_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/te_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset te_IN AM "\u0c2a\u0c42\u0c30\u0c4d\u0c35\u0c3e\u0c39\u0c4d\u0c28" 4 | ::msgcat::mcset te_IN PM "\u0c05\u0c2a\u0c30\u0c3e\u0c39\u0c4d\u0c28" 5 | ::msgcat::mcset te_IN DATE_FORMAT "%d/%m/%Y" 6 | ::msgcat::mcset te_IN TIME_FORMAT_12 "%I:%M:%S %P" 7 | ::msgcat::mcset te_IN DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/zh_cn.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset zh_CN DATE_FORMAT "%Y-%m-%e" 4 | ::msgcat::mcset zh_CN TIME_FORMAT "%k:%M:%S" 5 | ::msgcat::mcset zh_CN TIME_FORMAT_12 "%P%I\u65f6%M\u5206%S\u79d2" 6 | ::msgcat::mcset zh_CN DATE_TIME_FORMAT "%Y-%m-%e %k:%M:%S %z" 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/zh_sg.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset zh_SG AM "\u4e0a\u5348" 4 | ::msgcat::mcset zh_SG PM "\u4e2d\u5348" 5 | ::msgcat::mcset zh_SG DATE_FORMAT "%d %B %Y" 6 | ::msgcat::mcset zh_SG TIME_FORMAT_12 "%P %I:%M:%S" 7 | ::msgcat::mcset zh_SG DATE_TIME_FORMAT "%d %B %Y %P %I:%M:%S %z" 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/msgs/zh_tw.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset zh_TW BCE "\u6c11\u570b\u524d" 4 | ::msgcat::mcset zh_TW CE "\u6c11\u570b" 5 | ::msgcat::mcset zh_TW DATE_FORMAT "%Y/%m/%e" 6 | ::msgcat::mcset zh_TW TIME_FORMAT_12 "%P %I:%M:%S" 7 | ::msgcat::mcset zh_TW DATE_TIME_FORMAT "%Y/%m/%e %P %I:%M:%S %z" 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Abidjan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Abidjan) { 4 | {-9223372036854775808 -968 0 LMT} 5 | {-1830383032 0 0 GMT} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Accra: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Accra) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Addis_Ababa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Addis_Ababa) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Asmara: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmara) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Asmera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmera) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Bamako: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Bamako) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Bangui: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Bangui) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Banjul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Banjul) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Bissau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Bissau) { 4 | {-9223372036854775808 -3740 0 LMT} 5 | {-1830380400 -3600 0 -01} 6 | {157770000 0 0 GMT} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Blantyre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Blantyre) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Brazzaville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Brazzaville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Bujumbura: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Bujumbura) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Conakry: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Conakry) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Dakar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Dakar) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Dar_es_Salaam: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Dar_es_Salaam) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Djibouti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Djibouti) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Douala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Douala) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Freetown: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Freetown) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Gaborone: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Gaborone) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Harare: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Harare) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Johannesburg: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Johannesburg) { 4 | {-9223372036854775808 6720 0 LMT} 5 | {-2458173120 5400 0 SAST} 6 | {-2109288600 7200 0 SAST} 7 | {-860976000 10800 1 SAST} 8 | {-845254800 7200 0 SAST} 9 | {-829526400 10800 1 SAST} 10 | {-813805200 7200 0 SAST} 11 | } 12 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Kampala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Kampala) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Kigali: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Kigali) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Kinshasa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Kinshasa) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Lagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Lagos) { 4 | {-9223372036854775808 815 0 LMT} 5 | {-2035584815 0 0 GMT} 6 | {-1940889600 815 0 LMT} 7 | {-1767226415 1800 0 +0030} 8 | {-1588465800 3600 0 WAT} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Libreville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Libreville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Lome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Lome) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Luanda: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Luanda) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Lubumbashi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lubumbashi) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Lusaka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lusaka) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Malabo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Malabo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Maputo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Maputo) { 4 | {-9223372036854775808 7820 0 LMT} 5 | {-2109291020 7200 0 CAT} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Maseru: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Maseru) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Mbabane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Mbabane) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Mogadishu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Mogadishu) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Monrovia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Monrovia) { 4 | {-9223372036854775808 -2588 0 LMT} 5 | {-2776979812 -2588 0 MMT} 6 | {-1604359012 -2670 0 MMT} 7 | {63593070 0 0 GMT} 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Nairobi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Nairobi) { 4 | {-9223372036854775808 8836 0 LMT} 5 | {-1946168836 9000 0 +0230} 6 | {-1309746600 10800 0 EAT} 7 | {-1261969200 9000 0 +0230} 8 | {-1041388200 9900 0 +0245} 9 | {-865305900 10800 0 EAT} 10 | } 11 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Ndjamena: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Ndjamena) { 4 | {-9223372036854775808 3612 0 LMT} 5 | {-1830387612 3600 0 WAT} 6 | {308703600 7200 1 WAST} 7 | {321314400 3600 0 WAT} 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Niamey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Niamey) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Nouakchott: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Nouakchott) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Ouagadougou: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Ouagadougou) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Porto-Novo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Porto-Novo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Sao_Tome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Sao_Tome) { 4 | {-9223372036854775808 1616 0 LMT} 5 | {-2713912016 -2205 0 LMT} 6 | {-1830384000 0 0 GMT} 7 | {1514768400 3600 0 WAT} 8 | {1546304400 0 0 GMT} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Africa/Timbuktu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Timbuktu) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Anguilla: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Anguilla) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Antigua: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Antigua) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Argentina/ComodRivadavia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Catamarca)]} { 3 | LoadTimeZoneFile America/Argentina/Catamarca 4 | } 5 | set TZData(:America/Argentina/ComodRivadavia) $TZData(:America/Argentina/Catamarca) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Aruba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Aruba) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Atikokan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Panama)]} { 3 | LoadTimeZoneFile America/Panama 4 | } 5 | set TZData(:America/Atikokan) $TZData(:America/Panama) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Atka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:America/Atka) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Blanc-Sablon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Blanc-Sablon) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Bogota: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Bogota) { 4 | {-9223372036854775808 -17776 0 LMT} 5 | {-2707671824 -17776 0 BMT} 6 | {-1739041424 -18000 0 -05} 7 | {704869200 -14400 1 -05} 8 | {733896000 -18000 0 -05} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Buenos_Aires: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Buenos_Aires)]} { 3 | LoadTimeZoneFile America/Argentina/Buenos_Aires 4 | } 5 | set TZData(:America/Buenos_Aires) $TZData(:America/Argentina/Buenos_Aires) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Caracas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Caracas) { 4 | {-9223372036854775808 -16064 0 LMT} 5 | {-2524505536 -16060 0 CMT} 6 | {-1826739140 -16200 0 -0430} 7 | {-157750200 -14400 0 -04} 8 | {1197183600 -16200 0 -0430} 9 | {1462086000 -14400 0 -04} 10 | } 11 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Catamarca: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Catamarca)]} { 3 | LoadTimeZoneFile America/Argentina/Catamarca 4 | } 5 | set TZData(:America/Catamarca) $TZData(:America/Argentina/Catamarca) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Cayenne: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Cayenne) { 4 | {-9223372036854775808 -12560 0 LMT} 5 | {-1846269040 -14400 0 -04} 6 | {-71092800 -10800 0 -03} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Cayman: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Panama)]} { 3 | LoadTimeZoneFile America/Panama 4 | } 5 | set TZData(:America/Cayman) $TZData(:America/Panama) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Coral_Harbour: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Panama)]} { 3 | LoadTimeZoneFile America/Panama 4 | } 5 | set TZData(:America/Coral_Harbour) $TZData(:America/Panama) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Cordoba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Cordoba)]} { 3 | LoadTimeZoneFile America/Argentina/Cordoba 4 | } 5 | set TZData(:America/Cordoba) $TZData(:America/Argentina/Cordoba) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Costa_Rica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Costa_Rica) { 4 | {-9223372036854775808 -20173 0 LMT} 5 | {-2524501427 -20173 0 SJMT} 6 | {-1545071027 -21600 0 CST} 7 | {288770400 -18000 1 CDT} 8 | {297234000 -21600 0 CST} 9 | {320220000 -18000 1 CDT} 10 | {328683600 -21600 0 CST} 11 | {664264800 -18000 1 CDT} 12 | {678344400 -21600 0 CST} 13 | {695714400 -18000 1 CDT} 14 | {700635600 -21600 0 CST} 15 | } 16 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Creston: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:America/Creston) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Curacao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Curacao) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Dominica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Dominica) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/El_Salvador: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/El_Salvador) { 4 | {-9223372036854775808 -21408 0 LMT} 5 | {-1546279392 -21600 0 CST} 6 | {547020000 -18000 1 CDT} 7 | {559717200 -21600 0 CST} 8 | {578469600 -18000 1 CDT} 9 | {591166800 -21600 0 CST} 10 | } 11 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Ensenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Ensenada) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Fort_Wayne: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indiana/Indianapolis 4 | } 5 | set TZData(:America/Fort_Wayne) $TZData(:America/Indiana/Indianapolis) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Godthab: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Nuuk)]} { 3 | LoadTimeZoneFile America/Nuuk 4 | } 5 | set TZData(:America/Godthab) $TZData(:America/Nuuk) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Grenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Grenada) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Guadeloupe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Guadeloupe) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Guatemala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Guatemala) { 4 | {-9223372036854775808 -21724 0 LMT} 5 | {-1617040676 -21600 0 CST} 6 | {123055200 -18000 1 CDT} 7 | {130914000 -21600 0 CST} 8 | {422344800 -18000 1 CDT} 9 | {433054800 -21600 0 CST} 10 | {669708000 -18000 1 CDT} 11 | {684219600 -21600 0 CST} 12 | {1146376800 -18000 1 CDT} 13 | {1159678800 -21600 0 CST} 14 | } 15 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Guayaquil: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Guayaquil) { 4 | {-9223372036854775808 -19160 0 LMT} 5 | {-2524502440 -18840 0 QMT} 6 | {-1230749160 -18000 0 -05} 7 | {722926800 -14400 1 -05} 8 | {728884800 -18000 0 -05} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Guyana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Guyana) { 4 | {-9223372036854775808 -13959 0 LMT} 5 | {-1843589241 -14400 0 -04} 6 | {-1730577600 -13500 0 -0345} 7 | {176096700 -10800 0 -03} 8 | {701841600 -14400 0 -04} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Indianapolis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indiana/Indianapolis 4 | } 5 | set TZData(:America/Indianapolis) $TZData(:America/Indiana/Indianapolis) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Jujuy: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Jujuy)]} { 3 | LoadTimeZoneFile America/Argentina/Jujuy 4 | } 5 | set TZData(:America/Jujuy) $TZData(:America/Argentina/Jujuy) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Knox_IN: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:America/Knox_IN) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Kralendijk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Kralendijk) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/La_Paz: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/La_Paz) { 4 | {-9223372036854775808 -16356 0 LMT} 5 | {-2524505244 -16356 0 CMT} 6 | {-1205954844 -12756 1 BST} 7 | {-1192307244 -14400 0 -04} 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Lima: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Lima) { 4 | {-9223372036854775808 -18492 0 LMT} 5 | {-2524503108 -18516 0 LMT} 6 | {-1938538284 -14400 0 -05} 7 | {-1002052800 -18000 0 -05} 8 | {-986756400 -14400 1 -05} 9 | {-971035200 -18000 0 -05} 10 | {-955306800 -14400 1 -05} 11 | {-939585600 -18000 0 -05} 12 | {512712000 -18000 0 -05} 13 | {544248000 -18000 0 -05} 14 | {638942400 -18000 0 -05} 15 | {765172800 -18000 0 -05} 16 | } 17 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Louisville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Kentucky/Louisville)]} { 3 | LoadTimeZoneFile America/Kentucky/Louisville 4 | } 5 | set TZData(:America/Louisville) $TZData(:America/Kentucky/Louisville) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Lower_Princes: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Lower_Princes) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Marigot: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Marigot) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Martinique: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Martinique) { 4 | {-9223372036854775808 -14660 0 LMT} 5 | {-2524506940 -14660 0 FFMT} 6 | {-1851537340 -14400 0 AST} 7 | {323841600 -10800 1 ADT} 8 | {338958000 -14400 0 AST} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Mendoza: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Mendoza)]} { 3 | LoadTimeZoneFile America/Argentina/Mendoza 4 | } 5 | set TZData(:America/Mendoza) $TZData(:America/Argentina/Mendoza) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Montreal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:America/Montreal) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Montserrat: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Montserrat) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Nassau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:America/Nassau) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Panama: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Panama) { 4 | {-9223372036854775808 -19088 0 LMT} 5 | {-2524502512 -19176 0 CMT} 6 | {-1946918424 -18000 0 EST} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Paramaribo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Paramaribo) { 4 | {-9223372036854775808 -13240 0 LMT} 5 | {-1861906760 -13252 0 PMT} 6 | {-1104524348 -13236 0 PMT} 7 | {-765317964 -12600 0 -0330} 8 | {465449400 -10800 0 -03} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Port_of_Spain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Port_of_Spain) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Porto_Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:America/Porto_Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Puerto_Rico: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Puerto_Rico) { 4 | {-9223372036854775808 -15865 0 LMT} 5 | {-2233035335 -14400 0 AST} 6 | {-873057600 -10800 0 AWT} 7 | {-769395600 -10800 1 APT} 8 | {-765399600 -14400 0 AST} 9 | {-757368000 -14400 0 AST} 10 | } 11 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Rosario: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Cordoba)]} { 3 | LoadTimeZoneFile America/Argentina/Cordoba 4 | } 5 | set TZData(:America/Rosario) $TZData(:America/Argentina/Cordoba) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Santa_Isabel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Santa_Isabel) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Shiprock: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:America/Shiprock) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/St_Barthelemy: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/St_Barthelemy) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/St_Kitts: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/St_Kitts) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/St_Lucia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/St_Lucia) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/St_Thomas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/St_Thomas) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/St_Vincent: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/St_Vincent) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Tegucigalpa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Tegucigalpa) { 4 | {-9223372036854775808 -20932 0 LMT} 5 | {-1538503868 -21600 0 CST} 6 | {547020000 -18000 1 CDT} 7 | {559717200 -21600 0 CST} 8 | {578469600 -18000 1 CDT} 9 | {591166800 -21600 0 CST} 10 | {1146981600 -18000 1 CDT} 11 | {1154926800 -21600 0 CST} 12 | } 13 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Tortola: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Tortola) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/America/Virgin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:America/Virgin) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Antarctica/Davis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Davis) { 4 | {-9223372036854775808 0 0 -00} 5 | {-409190400 25200 0 +07} 6 | {-163062000 0 0 -00} 7 | {-28857600 25200 0 +07} 8 | {1255806000 18000 0 +05} 9 | {1268251200 25200 0 +07} 10 | {1319742000 18000 0 +05} 11 | {1329854400 25200 0 +07} 12 | } 13 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Antarctica/DumontDUrville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Port_Moresby)]} { 3 | LoadTimeZoneFile Pacific/Port_Moresby 4 | } 5 | set TZData(:Antarctica/DumontDUrville) $TZData(:Pacific/Port_Moresby) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Antarctica/Mawson: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Mawson) { 4 | {-9223372036854775808 0 0 -00} 5 | {-501206400 21600 0 +06} 6 | {1255809600 18000 0 +05} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Antarctica/McMurdo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/McMurdo) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Antarctica/Rothera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Rothera) { 4 | {-9223372036854775808 0 0 -00} 5 | {218246400 -10800 0 -03} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Antarctica/South_Pole: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/South_Pole) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Antarctica/Syowa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Antarctica/Syowa) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Antarctica/Vostok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Vostok) { 4 | {-9223372036854775808 0 0 -00} 5 | {-380073600 21600 0 +06} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Arctic/Longyearbyen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Arctic/Longyearbyen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Aden: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Aden) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Ashkhabad: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ashgabat)]} { 3 | LoadTimeZoneFile Asia/Ashgabat 4 | } 5 | set TZData(:Asia/Ashkhabad) $TZData(:Asia/Ashgabat) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Bahrain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Qatar)]} { 3 | LoadTimeZoneFile Asia/Qatar 4 | } 5 | set TZData(:Asia/Bahrain) $TZData(:Asia/Qatar) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Bangkok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Bangkok) { 4 | {-9223372036854775808 24124 0 LMT} 5 | {-2840164924 24124 0 BMT} 6 | {-1570084924 25200 0 +07} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Brunei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Brunei) { 4 | {-9223372036854775808 27580 0 LMT} 5 | {-1383464380 27000 0 +0730} 6 | {-1167636600 28800 0 +08} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Calcutta: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kolkata)]} { 3 | LoadTimeZoneFile Asia/Kolkata 4 | } 5 | set TZData(:Asia/Calcutta) $TZData(:Asia/Kolkata) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Chongqing: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chongqing) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Chungking: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chungking) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Colombo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Colombo) { 4 | {-9223372036854775808 19164 0 LMT} 5 | {-2840159964 19172 0 MMT} 6 | {-2019705572 19800 0 +0530} 7 | {-883287000 21600 1 +06} 8 | {-862639200 23400 1 +0630} 9 | {-764051400 19800 0 +0530} 10 | {832962600 23400 0 +0630} 11 | {846266400 21600 0 +06} 12 | {1145039400 19800 0 +0530} 13 | } 14 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Dacca: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dhaka)]} { 3 | LoadTimeZoneFile Asia/Dhaka 4 | } 5 | set TZData(:Asia/Dacca) $TZData(:Asia/Dhaka) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Dhaka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dhaka) { 4 | {-9223372036854775808 21700 0 LMT} 5 | {-2524543300 21200 0 HMT} 6 | {-891582800 23400 0 +0630} 7 | {-872058600 19800 0 +0530} 8 | {-862637400 23400 0 +0630} 9 | {-576138600 21600 0 +06} 10 | {1230746400 21600 0 +06} 11 | {1245430800 25200 1 +06} 12 | {1262278800 21600 0 +06} 13 | } 14 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Dili: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dili) { 4 | {-9223372036854775808 30140 0 LMT} 5 | {-1830414140 28800 0 +08} 6 | {-879152400 32400 0 +09} 7 | {199897200 28800 0 +08} 8 | {969120000 32400 0 +09} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Dubai: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dubai) { 4 | {-9223372036854775808 13272 0 LMT} 5 | {-1577936472 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Harbin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Harbin) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Ho_Chi_Minh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Ho_Chi_Minh) { 4 | {-9223372036854775808 25600 0 LMT} 5 | {-2004073600 25590 0 PLMT} 6 | {-1851577590 25200 0 +07} 7 | {-852105600 28800 0 +08} 8 | {-782643600 32400 0 +09} 9 | {-767869200 25200 0 +07} 10 | {-718095600 28800 0 +08} 11 | {-457776000 25200 0 +07} 12 | {-315648000 28800 0 +08} 13 | {171820800 25200 0 +07} 14 | } 15 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Istanbul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Asia/Istanbul) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Jakarta: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Jakarta) { 4 | {-9223372036854775808 25632 0 LMT} 5 | {-3231299232 25632 0 BMT} 6 | {-1451719200 26400 0 +0720} 7 | {-1172906400 27000 0 +0730} 8 | {-876641400 32400 0 +09} 9 | {-766054800 27000 0 +0730} 10 | {-683883000 28800 0 +08} 11 | {-620812800 27000 0 +0730} 12 | {-189415800 25200 0 WIB} 13 | } 14 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Jayapura: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Jayapura) { 4 | {-9223372036854775808 33768 0 LMT} 5 | {-1172913768 32400 0 +09} 6 | {-799491600 34200 0 +0930} 7 | {-189423000 32400 0 WIT} 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Kabul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kabul) { 4 | {-9223372036854775808 16608 0 LMT} 5 | {-2524538208 14400 0 +04} 6 | {-788932800 16200 0 +0430} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Karachi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Karachi) { 4 | {-9223372036854775808 16092 0 LMT} 5 | {-1988166492 19800 0 +0530} 6 | {-862637400 23400 1 +0630} 7 | {-764145000 19800 0 +0530} 8 | {-576135000 18000 0 +05} 9 | {38775600 18000 0 PKT} 10 | {1018119600 21600 1 PKST} 11 | {1033840800 18000 0 PKT} 12 | {1212260400 21600 1 PKST} 13 | {1225476000 18000 0 PKT} 14 | {1239735600 21600 1 PKST} 15 | {1257012000 18000 0 PKT} 16 | } 17 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Kashgar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Urumqi)]} { 3 | LoadTimeZoneFile Asia/Urumqi 4 | } 5 | set TZData(:Asia/Kashgar) $TZData(:Asia/Urumqi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Kathmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kathmandu) { 4 | {-9223372036854775808 20476 0 LMT} 5 | {-1577943676 19800 0 +0530} 6 | {504901800 20700 0 +0545} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Katmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kathmandu)]} { 3 | LoadTimeZoneFile Asia/Kathmandu 4 | } 5 | set TZData(:Asia/Katmandu) $TZData(:Asia/Kathmandu) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Kolkata: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kolkata) { 4 | {-9223372036854775808 21208 0 LMT} 5 | {-3645237208 21200 0 HMT} 6 | {-3155694800 19270 0 MMT} 7 | {-2019705670 19800 0 IST} 8 | {-891581400 23400 1 +0630} 9 | {-872058600 19800 0 IST} 10 | {-862637400 23400 1 +0630} 11 | {-764145000 19800 0 IST} 12 | } 13 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Kuala_Lumpur: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kuala_Lumpur) { 4 | {-9223372036854775808 24406 0 LMT} 5 | {-2177477206 24925 0 SMT} 6 | {-2038200925 25200 0 +07} 7 | {-1167634800 26400 1 +0720} 8 | {-1073028000 26400 0 +0720} 9 | {-894180000 27000 0 +0730} 10 | {-879665400 32400 0 +09} 11 | {-767005200 27000 0 +0730} 12 | {378664200 28800 0 +08} 13 | } 14 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Kuwait: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Kuwait) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Macao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Macau)]} { 3 | LoadTimeZoneFile Asia/Macau 4 | } 5 | set TZData(:Asia/Macao) $TZData(:Asia/Macau) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Makassar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Makassar) { 4 | {-9223372036854775808 28656 0 LMT} 5 | {-1577951856 28656 0 MMT} 6 | {-1172908656 28800 0 +08} 7 | {-880272000 32400 0 +09} 8 | {-766054800 28800 0 WITA} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Manila: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Manila) { 4 | {-9223372036854775808 -57360 0 LMT} 5 | {-3944621040 29040 0 LMT} 6 | {-2229321840 28800 0 PST} 7 | {-1046678400 32400 1 PDT} 8 | {-1038733200 28800 0 PST} 9 | {-873273600 32400 0 JST} 10 | {-794221200 28800 0 PST} 11 | {-496224000 32400 1 PDT} 12 | {-489315600 28800 0 PST} 13 | {259344000 32400 1 PDT} 14 | {275151600 28800 0 PST} 15 | } 16 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Muscat: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dubai)]} { 3 | LoadTimeZoneFile Asia/Dubai 4 | } 5 | set TZData(:Asia/Muscat) $TZData(:Asia/Dubai) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Phnom_Penh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Phnom_Penh) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Pontianak: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Pontianak) { 4 | {-9223372036854775808 26240 0 LMT} 5 | {-1946186240 26240 0 PMT} 6 | {-1172906240 27000 0 +0730} 7 | {-881220600 32400 0 +09} 8 | {-766054800 27000 0 +0730} 9 | {-683883000 28800 0 +08} 10 | {-620812800 27000 0 +0730} 11 | {-189415800 28800 0 WITA} 12 | {567964800 25200 0 WIB} 13 | } 14 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Pyongyang: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Pyongyang) { 4 | {-9223372036854775808 30180 0 LMT} 5 | {-1948782180 30600 0 KST} 6 | {-1830414600 32400 0 JST} 7 | {-768646800 32400 0 KST} 8 | {1439564400 30600 0 KST} 9 | {1525446000 32400 0 KST} 10 | } 11 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Qatar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Qatar) { 4 | {-9223372036854775808 12368 0 LMT} 5 | {-1577935568 14400 0 +04} 6 | {76190400 10800 0 +03} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Rangoon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Yangon)]} { 3 | LoadTimeZoneFile Asia/Yangon 4 | } 5 | set TZData(:Asia/Rangoon) $TZData(:Asia/Yangon) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Riyadh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Riyadh) { 4 | {-9223372036854775808 11212 0 LMT} 5 | {-719636812 10800 0 +03} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Saigon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ho_Chi_Minh)]} { 3 | LoadTimeZoneFile Asia/Ho_Chi_Minh 4 | } 5 | set TZData(:Asia/Saigon) $TZData(:Asia/Ho_Chi_Minh) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Singapore: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Singapore) { 4 | {-9223372036854775808 24925 0 LMT} 5 | {-2177477725 24925 0 SMT} 6 | {-2038200925 25200 0 +07} 7 | {-1167634800 26400 1 +0720} 8 | {-1073028000 26400 0 +0720} 9 | {-894180000 27000 0 +0730} 10 | {-879665400 32400 0 +09} 11 | {-767005200 27000 0 +0730} 12 | {378664200 28800 0 +08} 13 | } 14 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Tel_Aviv: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Asia/Tel_Aviv) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Thimbu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Thimphu)]} { 3 | LoadTimeZoneFile Asia/Thimphu 4 | } 5 | set TZData(:Asia/Thimbu) $TZData(:Asia/Thimphu) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Thimphu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Thimphu) { 4 | {-9223372036854775808 21516 0 LMT} 5 | {-706341516 19800 0 +0530} 6 | {560025000 21600 0 +06} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Tokyo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Tokyo) { 4 | {-9223372036854775808 33539 0 LMT} 5 | {-2587712400 32400 0 JST} 6 | {-683802000 36000 1 JDT} 7 | {-672310800 32400 0 JST} 8 | {-654771600 36000 1 JDT} 9 | {-640861200 32400 0 JST} 10 | {-620298000 36000 1 JDT} 11 | {-609411600 32400 0 JST} 12 | {-588848400 36000 1 JDT} 13 | {-577962000 32400 0 JST} 14 | } 15 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Ujung_Pandang: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Makassar)]} { 3 | LoadTimeZoneFile Asia/Makassar 4 | } 5 | set TZData(:Asia/Ujung_Pandang) $TZData(:Asia/Makassar) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Ulan_Bator: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ulaanbaatar)]} { 3 | LoadTimeZoneFile Asia/Ulaanbaatar 4 | } 5 | set TZData(:Asia/Ulan_Bator) $TZData(:Asia/Ulaanbaatar) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Urumqi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Urumqi) { 4 | {-9223372036854775808 21020 0 LMT} 5 | {-1325483420 21600 0 +06} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Vientiane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Vientiane) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Asia/Yangon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Yangon) { 4 | {-9223372036854775808 23087 0 LMT} 5 | {-2840163887 23087 0 RMT} 6 | {-1577946287 23400 0 +0630} 7 | {-873268200 32400 0 +09} 8 | {-778410000 23400 0 +0630} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Atlantic/Cape_Verde: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Atlantic/Cape_Verde) { 4 | {-9223372036854775808 -5644 0 LMT} 5 | {-1830376800 -7200 0 -02} 6 | {-862610400 -3600 1 -01} 7 | {-764118000 -7200 0 -02} 8 | {186120000 -3600 0 -01} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Atlantic/Faeroe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Faroe)]} { 3 | LoadTimeZoneFile Atlantic/Faroe 4 | } 5 | set TZData(:Atlantic/Faeroe) $TZData(:Atlantic/Faroe) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Atlantic/Jan_Mayen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Atlantic/Jan_Mayen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Atlantic/South_Georgia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Atlantic/South_Georgia) { 4 | {-9223372036854775808 -8768 0 LMT} 5 | {-2524512832 -7200 0 -02} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Atlantic/St_Helena: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Atlantic/St_Helena) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/ACT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/ACT) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/Canberra: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/Canberra) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/Currie: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Hobart)]} { 3 | LoadTimeZoneFile Australia/Hobart 4 | } 5 | set TZData(:Australia/Currie) $TZData(:Australia/Hobart) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/Darwin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Australia/Darwin) { 4 | {-9223372036854775808 31400 0 LMT} 5 | {-2364108200 32400 0 ACST} 6 | {-2230189200 34200 0 ACST} 7 | {-1672558200 37800 1 ACDT} 8 | {-1665387000 34200 0 ACST} 9 | {-883639800 37800 1 ACDT} 10 | {-876123000 34200 0 ACST} 11 | {-860398200 37800 1 ACDT} 12 | {-844673400 34200 0 ACST} 13 | {-828343800 37800 1 ACDT} 14 | {-813223800 34200 0 ACST} 15 | } 16 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/LHI: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Lord_Howe)]} { 3 | LoadTimeZoneFile Australia/Lord_Howe 4 | } 5 | set TZData(:Australia/LHI) $TZData(:Australia/Lord_Howe) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/NSW: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/NSW) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/North: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Darwin)]} { 3 | LoadTimeZoneFile Australia/Darwin 4 | } 5 | set TZData(:Australia/North) $TZData(:Australia/Darwin) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/Queensland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Brisbane)]} { 3 | LoadTimeZoneFile Australia/Brisbane 4 | } 5 | set TZData(:Australia/Queensland) $TZData(:Australia/Brisbane) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/South: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Adelaide)]} { 3 | LoadTimeZoneFile Australia/Adelaide 4 | } 5 | set TZData(:Australia/South) $TZData(:Australia/Adelaide) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/Tasmania: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Hobart)]} { 3 | LoadTimeZoneFile Australia/Hobart 4 | } 5 | set TZData(:Australia/Tasmania) $TZData(:Australia/Hobart) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/Victoria: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Melbourne)]} { 3 | LoadTimeZoneFile Australia/Melbourne 4 | } 5 | set TZData(:Australia/Victoria) $TZData(:Australia/Melbourne) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Perth)]} { 3 | LoadTimeZoneFile Australia/Perth 4 | } 5 | set TZData(:Australia/West) $TZData(:Australia/Perth) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Australia/Yancowinna: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Broken_Hill)]} { 3 | LoadTimeZoneFile Australia/Broken_Hill 4 | } 5 | set TZData(:Australia/Yancowinna) $TZData(:Australia/Broken_Hill) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Brazil/Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:Brazil/Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Brazil/DeNoronha: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Noronha)]} { 3 | LoadTimeZoneFile America/Noronha 4 | } 5 | set TZData(:Brazil/DeNoronha) $TZData(:America/Noronha) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Brazil/East: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Sao_Paulo)]} { 3 | LoadTimeZoneFile America/Sao_Paulo 4 | } 5 | set TZData(:Brazil/East) $TZData(:America/Sao_Paulo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Brazil/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Manaus)]} { 3 | LoadTimeZoneFile America/Manaus 4 | } 5 | set TZData(:Brazil/West) $TZData(:America/Manaus) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/Atlantic: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:Canada/Atlantic) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Winnipeg)]} { 3 | LoadTimeZoneFile America/Winnipeg 4 | } 5 | set TZData(:Canada/Central) $TZData(:America/Winnipeg) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/East-Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/East-Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:Canada/Eastern) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Edmonton)]} { 3 | LoadTimeZoneFile America/Edmonton 4 | } 5 | set TZData(:Canada/Mountain) $TZData(:America/Edmonton) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/Newfoundland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/St_Johns)]} { 3 | LoadTimeZoneFile America/St_Johns 4 | } 5 | set TZData(:Canada/Newfoundland) $TZData(:America/St_Johns) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Vancouver)]} { 3 | LoadTimeZoneFile America/Vancouver 4 | } 5 | set TZData(:Canada/Pacific) $TZData(:America/Vancouver) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Canada/Yukon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Whitehorse)]} { 3 | LoadTimeZoneFile America/Whitehorse 4 | } 5 | set TZData(:Canada/Yukon) $TZData(:America/Whitehorse) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Chile/Continental: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Santiago)]} { 3 | LoadTimeZoneFile America/Santiago 4 | } 5 | set TZData(:Chile/Continental) $TZData(:America/Santiago) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Chile/EasterIsland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Easter)]} { 3 | LoadTimeZoneFile Pacific/Easter 4 | } 5 | set TZData(:Chile/EasterIsland) $TZData(:Pacific/Easter) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Cuba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Havana)]} { 3 | LoadTimeZoneFile America/Havana 4 | } 5 | set TZData(:Cuba) $TZData(:America/Havana) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/EST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:EST) { 4 | {-9223372036854775808 -18000 0 EST} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Egypt: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Cairo)]} { 3 | LoadTimeZoneFile Africa/Cairo 4 | } 5 | set TZData(:Egypt) $TZData(:Africa/Cairo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Dublin)]} { 3 | LoadTimeZoneFile Europe/Dublin 4 | } 5 | set TZData(:Eire) $TZData(:Europe/Dublin) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT) { 4 | {-9223372036854775808 0 0 GMT} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+1: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+1) { 4 | {-9223372036854775808 -3600 0 -01} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+10: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+10) { 4 | {-9223372036854775808 -36000 0 -10} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+11: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+11) { 4 | {-9223372036854775808 -39600 0 -11} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+12: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+12) { 4 | {-9223372036854775808 -43200 0 -12} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+2: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+2) { 4 | {-9223372036854775808 -7200 0 -02} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+3: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+3) { 4 | {-9223372036854775808 -10800 0 -03} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+4: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+4) { 4 | {-9223372036854775808 -14400 0 -04} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+5: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+5) { 4 | {-9223372036854775808 -18000 0 -05} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+6: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+6) { 4 | {-9223372036854775808 -21600 0 -06} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+7: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+7) { 4 | {-9223372036854775808 -25200 0 -07} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+8: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+8) { 4 | {-9223372036854775808 -28800 0 -08} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT+9: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+9) { 4 | {-9223372036854775808 -32400 0 -09} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-1) { 4 | {-9223372036854775808 3600 0 +01} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-10: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-10) { 4 | {-9223372036854775808 36000 0 +10} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-11: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-11) { 4 | {-9223372036854775808 39600 0 +11} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-12: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-12) { 4 | {-9223372036854775808 43200 0 +12} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-13: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-13) { 4 | {-9223372036854775808 46800 0 +13} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-14: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-14) { 4 | {-9223372036854775808 50400 0 +14} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-2) { 4 | {-9223372036854775808 7200 0 +02} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-3) { 4 | {-9223372036854775808 10800 0 +03} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-4) { 4 | {-9223372036854775808 14400 0 +04} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-5) { 4 | {-9223372036854775808 18000 0 +05} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-6) { 4 | {-9223372036854775808 21600 0 +06} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-7) { 4 | {-9223372036854775808 25200 0 +07} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-8: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-8) { 4 | {-9223372036854775808 28800 0 +08} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT-9: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-9) { 4 | {-9223372036854775808 32400 0 +09} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/UCT) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/UTC) { 4 | {-9223372036854775808 0 0 UTC} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Etc/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Belfast: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Belfast) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Bratislava: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Prague)]} { 3 | LoadTimeZoneFile Europe/Prague 4 | } 5 | set TZData(:Europe/Bratislava) $TZData(:Europe/Prague) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Busingen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Busingen) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Guernsey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Guernsey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Isle_of_Man: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Isle_of_Man) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Jersey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Jersey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Ljubljana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Ljubljana) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Mariehamn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Helsinki)]} { 3 | LoadTimeZoneFile Europe/Helsinki 4 | } 5 | set TZData(:Europe/Mariehamn) $TZData(:Europe/Helsinki) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Nicosia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Nicosia)]} { 3 | LoadTimeZoneFile Asia/Nicosia 4 | } 5 | set TZData(:Europe/Nicosia) $TZData(:Asia/Nicosia) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Podgorica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Podgorica) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/San_Marino: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/San_Marino) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Sarajevo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Sarajevo) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Skopje: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Skopje) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Tiraspol: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Chisinau)]} { 3 | LoadTimeZoneFile Europe/Chisinau 4 | } 5 | set TZData(:Europe/Tiraspol) $TZData(:Europe/Chisinau) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Vaduz: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Vaduz) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Vatican: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/Vatican) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Europe/Zagreb: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Zagreb) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/GB: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/GB-Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB-Eire) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/HST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:HST) { 4 | {-9223372036854775808 -36000 0 HST} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Hongkong: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Hong_Kong)]} { 3 | LoadTimeZoneFile Asia/Hong_Kong 4 | } 5 | set TZData(:Hongkong) $TZData(:Asia/Hong_Kong) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Iceland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Reykjavik)]} { 3 | LoadTimeZoneFile Atlantic/Reykjavik 4 | } 5 | set TZData(:Iceland) $TZData(:Atlantic/Reykjavik) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Antananarivo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Antananarivo) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Chagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Chagos) { 4 | {-9223372036854775808 17380 0 LMT} 5 | {-1988167780 18000 0 +05} 6 | {820436400 21600 0 +06} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Christmas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Christmas) { 4 | {-9223372036854775808 25372 0 LMT} 5 | {-2364102172 25200 0 +07} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Cocos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Cocos) { 4 | {-9223372036854775808 23260 0 LMT} 5 | {-2209012060 23400 0 +0630} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Comoro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Comoro) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Kerguelen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Kerguelen) { 4 | {-9223372036854775808 0 0 -00} 5 | {-631152000 18000 0 +05} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Mahe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Mahe) { 4 | {-9223372036854775808 13308 0 LMT} 5 | {-1988163708 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Maldives: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Maldives) { 4 | {-9223372036854775808 17640 0 LMT} 5 | {-2840158440 17640 0 MMT} 6 | {-315636840 18000 0 +05} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Mauritius: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Mauritius) { 4 | {-9223372036854775808 13800 0 LMT} 5 | {-1988164200 14400 0 +04} 6 | {403041600 18000 1 +04} 7 | {417034800 14400 0 +04} 8 | {1224972000 18000 1 +04} 9 | {1238274000 14400 0 +04} 10 | } 11 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Mayotte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Mayotte) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Indian/Reunion: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Reunion) { 4 | {-9223372036854775808 13312 0 LMT} 5 | {-1848886912 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Iran: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tehran)]} { 3 | LoadTimeZoneFile Asia/Tehran 4 | } 5 | set TZData(:Iran) $TZData(:Asia/Tehran) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Israel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Israel) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Jamaica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Jamaica)]} { 3 | LoadTimeZoneFile America/Jamaica 4 | } 5 | set TZData(:Jamaica) $TZData(:America/Jamaica) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Japan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tokyo)]} { 3 | LoadTimeZoneFile Asia/Tokyo 4 | } 5 | set TZData(:Japan) $TZData(:Asia/Tokyo) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Kwajalein: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Kwajalein)]} { 3 | LoadTimeZoneFile Pacific/Kwajalein 4 | } 5 | set TZData(:Kwajalein) $TZData(:Pacific/Kwajalein) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Libya: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Tripoli)]} { 3 | LoadTimeZoneFile Africa/Tripoli 4 | } 5 | set TZData(:Libya) $TZData(:Africa/Tripoli) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/MST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:MST) { 4 | {-9223372036854775808 -25200 0 MST} 5 | } 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Mexico/BajaNorte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:Mexico/BajaNorte) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Mexico/BajaSur: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mazatlan)]} { 3 | LoadTimeZoneFile America/Mazatlan 4 | } 5 | set TZData(:Mexico/BajaSur) $TZData(:America/Mazatlan) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Mexico/General: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mexico_City)]} { 3 | LoadTimeZoneFile America/Mexico_City 4 | } 5 | set TZData(:Mexico/General) $TZData(:America/Mexico_City) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/NZ: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:NZ) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/NZ-CHAT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chatham)]} { 3 | LoadTimeZoneFile Pacific/Chatham 4 | } 5 | set TZData(:NZ-CHAT) $TZData(:Pacific/Chatham) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Navajo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:Navajo) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/PRC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:PRC) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Bougainville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Bougainville) { 4 | {-9223372036854775808 37336 0 LMT} 5 | {-2840178136 35312 0 PMMT} 6 | {-2366790512 36000 0 +10} 7 | {-868010400 32400 0 +09} 8 | {-768906000 36000 0 +10} 9 | {1419696000 39600 0 +11} 10 | } 11 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Chuuk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Chuuk) { 4 | {-9223372036854775808 -49972 0 LMT} 5 | {-3944628428 36428 0 LMT} 6 | {-2177489228 36000 0 +10} 7 | {-1743674400 32400 0 +09} 8 | {-1606813200 36000 0 +10} 9 | {-907408800 32400 0 +09} 10 | {-770634000 36000 0 +10} 11 | } 12 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Enderbury: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Kanton)]} { 3 | LoadTimeZoneFile Pacific/Kanton 4 | } 5 | set TZData(:Pacific/Enderbury) $TZData(:Pacific/Kanton) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Fakaofo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Fakaofo) { 4 | {-9223372036854775808 -41096 0 LMT} 5 | {-2177411704 -39600 0 -11} 6 | {1325242800 46800 0 +13} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Funafuti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Funafuti) { 4 | {-9223372036854775808 43012 0 LMT} 5 | {-2177495812 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Galapagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Galapagos) { 4 | {-9223372036854775808 -21504 0 LMT} 5 | {-1230746496 -18000 0 -05} 6 | {504939600 -21600 0 -06} 7 | {722930400 -18000 1 -06} 8 | {728888400 -21600 0 -06} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Gambier: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Gambier) { 4 | {-9223372036854775808 -32388 0 LMT} 5 | {-1806678012 -32400 0 -09} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Guadalcanal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Guadalcanal) { 4 | {-9223372036854775808 38388 0 LMT} 5 | {-1806748788 39600 0 +11} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Honolulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Honolulu) { 4 | {-9223372036854775808 -37886 0 LMT} 5 | {-2334101314 -37800 0 HST} 6 | {-1157283000 -34200 1 HDT} 7 | {-1155436200 -34200 0 HST} 8 | {-880201800 -34200 1 HWT} 9 | {-769395600 -34200 1 HPT} 10 | {-765376200 -37800 0 HST} 11 | {-712150200 -36000 0 HST} 12 | } 13 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Johnston: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:Pacific/Johnston) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Kanton: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kanton) { 4 | {-9223372036854775808 0 0 -00} 5 | {-1020470400 -43200 0 -12} 6 | {307627200 -39600 0 -11} 7 | {788871600 46800 0 +13} 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Kiritimati: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kiritimati) { 4 | {-9223372036854775808 -37760 0 LMT} 5 | {-2177415040 -38400 0 -1040} 6 | {307622400 -36000 0 -10} 7 | {788868000 50400 0 +14} 8 | } 9 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Kosrae: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kosrae) { 4 | {-9223372036854775808 -47284 0 LMT} 5 | {-3944631116 39116 0 LMT} 6 | {-2177491916 39600 0 +11} 7 | {-1743678000 32400 0 +09} 8 | {-1606813200 39600 0 +11} 9 | {-1041418800 36000 0 +10} 10 | {-907408800 32400 0 +09} 11 | {-770634000 39600 0 +11} 12 | {-7988400 43200 0 +12} 13 | {915105600 39600 0 +11} 14 | } 15 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Kwajalein: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kwajalein) { 4 | {-9223372036854775808 40160 0 LMT} 5 | {-2177492960 39600 0 +11} 6 | {-1041418800 36000 0 +10} 7 | {-907408800 32400 0 +09} 8 | {-817462800 39600 0 +11} 9 | {-7988400 -43200 0 -12} 10 | {745934400 43200 0 +12} 11 | } 12 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Majuro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Majuro) { 4 | {-9223372036854775808 41088 0 LMT} 5 | {-2177493888 39600 0 +11} 6 | {-1743678000 32400 0 +09} 7 | {-1606813200 39600 0 +11} 8 | {-1041418800 36000 0 +10} 9 | {-907408800 32400 0 +09} 10 | {-818067600 39600 0 +11} 11 | {-7988400 43200 0 +12} 12 | } 13 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Marquesas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Marquesas) { 4 | {-9223372036854775808 -33480 0 LMT} 5 | {-1806676920 -34200 0 -0930} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Midway: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Midway) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Nauru: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Nauru) { 4 | {-9223372036854775808 40060 0 LMT} 5 | {-1545131260 41400 0 +1130} 6 | {-862918200 32400 0 +09} 7 | {-767350800 41400 0 +1130} 8 | {287418600 43200 0 +12} 9 | } 10 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Niue: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Niue) { 4 | {-9223372036854775808 -40780 0 LMT} 5 | {-543069620 -40800 0 -1120} 6 | {-173623200 -39600 0 -11} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Noumea: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Noumea) { 4 | {-9223372036854775808 39948 0 LMT} 5 | {-1829387148 39600 0 +11} 6 | {250002000 43200 1 +11} 7 | {257342400 39600 0 +11} 8 | {281451600 43200 1 +11} 9 | {288878400 39600 0 +11} 10 | {849366000 43200 1 +11} 11 | {857228400 39600 0 +11} 12 | } 13 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Pago_Pago: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pago_Pago) { 4 | {-9223372036854775808 45432 0 LMT} 5 | {-2445424632 -40968 0 LMT} 6 | {-1861879032 -39600 0 SST} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Palau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Palau) { 4 | {-9223372036854775808 -54124 0 LMT} 5 | {-3944624276 32276 0 LMT} 6 | {-2177485076 32400 0 +09} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Pitcairn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pitcairn) { 4 | {-9223372036854775808 -31220 0 LMT} 5 | {-2177421580 -30600 0 -0830} 6 | {893665800 -28800 0 -08} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Pohnpei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pohnpei) { 4 | {-9223372036854775808 -48428 0 LMT} 5 | {-3944629972 37972 0 LMT} 6 | {-2177490772 39600 0 +11} 7 | {-1743678000 32400 0 +09} 8 | {-1606813200 39600 0 +11} 9 | {-1041418800 36000 0 +10} 10 | {-907408800 32400 0 +09} 11 | {-770634000 39600 0 +11} 12 | } 13 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Ponape: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pohnpei)]} { 3 | LoadTimeZoneFile Pacific/Pohnpei 4 | } 5 | set TZData(:Pacific/Ponape) $TZData(:Pacific/Pohnpei) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Port_Moresby: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Port_Moresby) { 4 | {-9223372036854775808 35320 0 LMT} 5 | {-2840176120 35312 0 PMMT} 6 | {-2366790512 36000 0 +10} 7 | } 8 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Saipan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Guam)]} { 3 | LoadTimeZoneFile Pacific/Guam 4 | } 5 | set TZData(:Pacific/Saipan) $TZData(:Pacific/Guam) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Tahiti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tahiti) { 4 | {-9223372036854775808 -35896 0 LMT} 5 | {-1806674504 -36000 0 -10} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Tarawa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tarawa) { 4 | {-9223372036854775808 41524 0 LMT} 5 | {-2177494324 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Tongatapu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tongatapu) { 4 | {-9223372036854775808 44352 0 LMT} 5 | {-767189952 44400 0 +1220} 6 | {-284041200 46800 0 +13} 7 | {915102000 46800 0 +13} 8 | {939214800 50400 1 +13} 9 | {953384400 46800 0 +13} 10 | {973342800 50400 1 +13} 11 | {980596800 46800 0 +13} 12 | {1004792400 50400 1 +13} 13 | {1012046400 46800 0 +13} 14 | {1478350800 50400 1 +13} 15 | {1484398800 46800 0 +13} 16 | } 17 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Truk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Truk) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Wake: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wake) { 4 | {-9223372036854775808 39988 0 LMT} 5 | {-2177492788 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Wallis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wallis) { 4 | {-9223372036854775808 44120 0 LMT} 5 | {-2177496920 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Pacific/Yap: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Yap) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Poland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Warsaw)]} { 3 | LoadTimeZoneFile Europe/Warsaw 4 | } 5 | set TZData(:Poland) $TZData(:Europe/Warsaw) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Portugal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Lisbon)]} { 3 | LoadTimeZoneFile Europe/Lisbon 4 | } 5 | set TZData(:Portugal) $TZData(:Europe/Lisbon) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/ROC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Taipei)]} { 3 | LoadTimeZoneFile Asia/Taipei 4 | } 5 | set TZData(:ROC) $TZData(:Asia/Taipei) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/ROK: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Seoul)]} { 3 | LoadTimeZoneFile Asia/Seoul 4 | } 5 | set TZData(:ROK) $TZData(:Asia/Seoul) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Singapore: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Singapore)]} { 3 | LoadTimeZoneFile Asia/Singapore 4 | } 5 | set TZData(:Singapore) $TZData(:Asia/Singapore) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/AST4: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:SystemV/AST4) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/AST4ADT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:SystemV/AST4ADT) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/CST6: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:SystemV/CST6) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/CST6CDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:SystemV/CST6CDT) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/EST5: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indianapolis 4 | } 5 | set TZData(:SystemV/EST5) $TZData(:America/Indianapolis) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/EST5EDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:SystemV/EST5EDT) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/HST10: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:SystemV/HST10) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/MST7: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:SystemV/MST7) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/MST7MDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:SystemV/MST7MDT) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/PST8: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pitcairn)]} { 3 | LoadTimeZoneFile Pacific/Pitcairn 4 | } 5 | set TZData(:SystemV/PST8) $TZData(:Pacific/Pitcairn) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/PST8PDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:SystemV/PST8PDT) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/YST9: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Gambier)]} { 3 | LoadTimeZoneFile Pacific/Gambier 4 | } 5 | set TZData(:SystemV/YST9) $TZData(:Pacific/Gambier) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/SystemV/YST9YDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:SystemV/YST9YDT) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Turkey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Turkey) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:UCT) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Alaska: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:US/Alaska) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Aleutian: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:US/Aleutian) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Arizona: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:US/Arizona) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:US/Central) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/East-Indiana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indiana/Indianapolis 4 | } 5 | set TZData(:US/East-Indiana) $TZData(:America/Indiana/Indianapolis) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:US/Eastern) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Hawaii: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:US/Hawaii) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Indiana-Starke: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:US/Indiana-Starke) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Michigan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Detroit)]} { 3 | LoadTimeZoneFile America/Detroit 4 | } 5 | set TZData(:US/Michigan) $TZData(:America/Detroit) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:US/Mountain) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Pacific-New: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific-New) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/US/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:US/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:UTC) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/W-SU: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Moscow)]} { 3 | LoadTimeZoneFile Europe/Moscow 4 | } 5 | set TZData(:W-SU) $TZData(:Europe/Moscow) 6 | -------------------------------------------------------------------------------- /dist/lib/tcl/tzdata/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /dist/lib/tk/demos/images/earth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/demos/images/earth.gif -------------------------------------------------------------------------------- /dist/lib/tk/demos/images/earthmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/demos/images/earthmenu.png -------------------------------------------------------------------------------- /dist/lib/tk/demos/images/earthris.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/demos/images/earthris.gif -------------------------------------------------------------------------------- /dist/lib/tk/demos/images/gray25.xbm: -------------------------------------------------------------------------------- 1 | #define grey_width 16 2 | #define grey_height 16 3 | static char grey_bits[] = { 4 | 0x11, 0x11, 0x44, 0x44, 0x11, 0x11, 0x44, 0x44, 0x11, 0x11, 0x44, 0x44, 5 | 0x11, 0x11, 0x44, 0x44, 0x11, 0x11, 0x44, 0x44, 0x11, 0x11, 0x44, 0x44, 6 | 0x11, 0x11, 0x44, 0x44, 0x11, 0x11, 0x44, 0x44}; 7 | -------------------------------------------------------------------------------- /dist/lib/tk/demos/images/ouster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/demos/images/ouster.png -------------------------------------------------------------------------------- /dist/lib/tk/demos/images/pattern.xbm: -------------------------------------------------------------------------------- 1 | #define foo_width 16 2 | #define foo_height 16 3 | static char foo_bits[] = { 4 | 0x60, 0x06, 0x90, 0x09, 0x90, 0x09, 0xb0, 0x0d, 0x4e, 0x72, 0x49, 0x92, 5 | 0x71, 0x8e, 0x8e, 0x71, 0x8e, 0x71, 0x71, 0x8e, 0x49, 0x92, 0x4e, 0x72, 6 | 0xb0, 0x0d, 0x90, 0x09, 0x90, 0x09, 0x60, 0x06}; 7 | -------------------------------------------------------------------------------- /dist/lib/tk/demos/images/tcllogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/demos/images/tcllogo.gif -------------------------------------------------------------------------------- /dist/lib/tk/demos/images/teapot.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/demos/images/teapot.ppm -------------------------------------------------------------------------------- /dist/lib/tk/images/README: -------------------------------------------------------------------------------- 1 | README - images directory 2 | 3 | This directory includes images for the Tcl Logo and the Tcl Powered 4 | Logo. Please feel free to use the Tcl Powered Logo on any of your 5 | products that employ the use of Tcl or Tk. The Tcl logo may also be 6 | used to promote Tcl in your product documentation, web site or other 7 | places you so desire. 8 | -------------------------------------------------------------------------------- /dist/lib/tk/images/logo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/logo100.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/logo64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/logo64.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/logoLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/logoLarge.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/logoMed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/logoMed.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/pwrdLogo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/pwrdLogo100.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/pwrdLogo150.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/pwrdLogo150.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/pwrdLogo175.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/pwrdLogo175.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/pwrdLogo200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/pwrdLogo200.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/pwrdLogo75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/pwrdLogo75.gif -------------------------------------------------------------------------------- /dist/lib/tk/images/tai-ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/lib/tk/images/tai-ku.gif -------------------------------------------------------------------------------- /dist/lib/tk/msgs/en_gb.msg: -------------------------------------------------------------------------------- 1 | namespace eval ::tk { 2 | ::msgcat::mcset en_gb Color Colour 3 | } 4 | -------------------------------------------------------------------------------- /dist/lib/tk/pkgIndex.tcl: -------------------------------------------------------------------------------- 1 | if {![package vsatisfies [package provide Tcl] 8.6.0]} return 2 | if {($::tcl_platform(platform) eq "unix") && ([info exists ::env(DISPLAY)] 3 | || ([info exists ::argv] && ("-display" in $::argv)))} { 4 | package ifneeded Tk 8.6.12 [list load [file join $dir .. .. bin libtk8.6.dll]] 5 | } else { 6 | package ifneeded Tk 8.6.12 [list load [file join $dir .. .. bin tk86t.dll]] 7 | } 8 | -------------------------------------------------------------------------------- /dist/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/libcrypto-1_1.dll -------------------------------------------------------------------------------- /dist/libffi-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/libffi-7.dll -------------------------------------------------------------------------------- /dist/libffi-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/libffi-8.dll -------------------------------------------------------------------------------- /dist/library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/library.zip -------------------------------------------------------------------------------- /dist/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/libssl-1_1.dll -------------------------------------------------------------------------------- /dist/psutil._psutil_windows.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/psutil._psutil_windows.pyd -------------------------------------------------------------------------------- /dist/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/pyexpat.pyd -------------------------------------------------------------------------------- /dist/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/python3.dll -------------------------------------------------------------------------------- /dist/python311.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/python311.dll -------------------------------------------------------------------------------- /dist/python38.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/python38.dll -------------------------------------------------------------------------------- /dist/python39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/python39.dll -------------------------------------------------------------------------------- /dist/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/select.pyd -------------------------------------------------------------------------------- /dist/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/tcl86t.dll -------------------------------------------------------------------------------- /dist/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/tk86t.dll -------------------------------------------------------------------------------- /dist/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/unicodedata.pyd -------------------------------------------------------------------------------- /dist/wx._adv.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wx._adv.pyd -------------------------------------------------------------------------------- /dist/wx._core.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wx._core.pyd -------------------------------------------------------------------------------- /dist/wx._html.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wx._html.pyd -------------------------------------------------------------------------------- /dist/wx._msw.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wx._msw.pyd -------------------------------------------------------------------------------- /dist/wx.siplib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wx.siplib.pyd -------------------------------------------------------------------------------- /dist/wxbase314u_net_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxbase314u_net_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxbase314u_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxbase314u_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxbase315u_net_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxbase315u_net_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxbase315u_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxbase315u_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxbase32u_net_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxbase32u_net_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxbase32u_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxbase32u_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxmsw314u_core_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxmsw314u_core_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxmsw314u_html_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxmsw314u_html_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxmsw315u_core_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxmsw315u_core_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxmsw315u_html_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxmsw315u_html_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxmsw32u_core_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxmsw32u_core_vc140_x64.dll -------------------------------------------------------------------------------- /dist/wxmsw32u_html_vc140_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/dist/wxmsw32u_html_vc140_x64.dll -------------------------------------------------------------------------------- /fw-build/Mach4MPGModbus-ILI9341-Display.ino.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/fw-build/Mach4MPGModbus-ILI9341-Display.ino.bin -------------------------------------------------------------------------------- /img/IMG_1540.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/IMG_1540.jpeg -------------------------------------------------------------------------------- /img/IMG_1541.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/IMG_1541.jpeg -------------------------------------------------------------------------------- /img/PCB-exploded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/PCB-exploded.png -------------------------------------------------------------------------------- /img/PCB-programming-port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/PCB-programming-port.png -------------------------------------------------------------------------------- /img/PCB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/PCB.PNG -------------------------------------------------------------------------------- /img/WirelessMPG_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/WirelessMPG_bb.png -------------------------------------------------------------------------------- /img/captive_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/captive_portal.png -------------------------------------------------------------------------------- /img/captive_portal2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/captive_portal2.PNG -------------------------------------------------------------------------------- /img/esp32-ili9341-wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/esp32-ili9341-wiring.png -------------------------------------------------------------------------------- /img/fw-upload.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/fw-upload.PNG -------------------------------------------------------------------------------- /img/ip_address.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/ip_address.PNG -------------------------------------------------------------------------------- /img/modbus_diag.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/modbus_diag.PNG -------------------------------------------------------------------------------- /img/mpg-ins.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/mpg-ins.PNG -------------------------------------------------------------------------------- /img/mpg_installer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/mpg_installer.PNG -------------------------------------------------------------------------------- /img/wizard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/img/wizard.PNG -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cachetools==4.1.1 2 | future==0.18.3 3 | numpy==1.22.0 4 | pefile==2019.4.18 5 | Pillow==10.3.0 6 | psutil==5.9.5 7 | py2exe>=0.10.1.0 8 | six==1.15.0 9 | wxPython>=4.1.1 10 | -------------------------------------------------------------------------------- /src/3d Print Files/mpg-bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/src/3d Print Files/mpg-bottom.stl -------------------------------------------------------------------------------- /src/3d Print Files/mpg-top-no-knobs.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/src/3d Print Files/mpg-top-no-knobs.stl -------------------------------------------------------------------------------- /src/3d Print Files/mpg-top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/src/3d Print Files/mpg-top.stl -------------------------------------------------------------------------------- /src/PCB/BOM_PCB_open_source_MPG_2022-04-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/src/PCB/BOM_PCB_open_source_MPG_2022-04-03.csv -------------------------------------------------------------------------------- /src/PCB/Gerber_PCB_open_source_MPG_2022-04-03.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/src/PCB/Gerber_PCB_open_source_MPG_2022-04-03.zip -------------------------------------------------------------------------------- /src/PCB/PickAndPlace_PCB_open_source_MPG_2022-04-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kethort/esp32-cnc-mpg-handwheel-conversion-mach4/d53d7e38ccc8fe169f3d82d7b6903b6a9d29f5ed/src/PCB/PickAndPlace_PCB_open_source_MPG_2022-04-03.csv --------------------------------------------------------------------------------